Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
84f0aa47
Commit
84f0aa47
authored
Feb 16, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New system monitor
parent
b58cc16f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9178 additions
and
0 deletions
+9178
-0
src/exe/rt_sysmon/src/os_linux/hw_x86/makefile
src/exe/rt_sysmon/src/os_linux/hw_x86/makefile
+15
-0
src/exe/rt_sysmon/src/os_linux/link_rule.mk
src/exe/rt_sysmon/src/os_linux/link_rule.mk
+11
-0
src/exe/rt_sysmon/src/rt_sysmon.cpp
src/exe/rt_sysmon/src/rt_sysmon.cpp
+357
-0
src/exe/rt_sysmon/src/rt_sysmon.h
src/exe/rt_sysmon/src/rt_sysmon.h
+77
-0
xtt/exp/ge/src/pwr_c_disksup.pwg
xtt/exp/ge/src/pwr_c_disksup.pwg
+1926
-0
xtt/exp/ge/src/pwr_c_sysmonconfig.pwg
xtt/exp/ge/src/pwr_c_sysmonconfig.pwg
+6792
-0
No files found.
src/exe/rt_sysmon/src/os_linux/hw_x86/makefile
0 → 100644
View file @
84f0aa47
include
$(pwre_dir_symbols)
-include
$(pwre_sroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_sroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_sroot)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
-include
../special.mk
-include
special.mk
src/exe/rt_sysmon/src/os_linux/link_rule.mk
0 → 100644
View file @
84f0aa47
ifndef
link_rule_mk
link_rule_mk
:=
1
link
=
$(ldxx)
$(linkflags)
$(domap)
-o
$(export_exe)
\
$(export_obj)
$(objects)
$(rt_msg_objs)
\
$(pwr_obj)
/rt_io_user.o
\
-lpwr_rt
-lpwr_co
\
-lpwr_msg_dummy
\
-lrpcsvc
-lpthread
-lm
-lrt
endif
src/exe/rt_sysmon/src/rt_sysmon.cpp
0 → 100644
View file @
84f0aa47
#if not defined _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <sys/vfs.h>
#include <stdlib.h>
#include <math.h>
#include <float.h>
#include <errno.h>
#include "rt_sysmon.h"
#include "co_error.h"
#include "rt_smon_msg.h"
extern
"C"
{
#include "rt_gdh.h"
#include "co_cdh.h"
#include "co_errno.h"
#include "co_time.h"
#include "rt_errh.h"
#include "rt_qcom.h"
#include "rt_ini_event.h"
#include "rt_aproc.h"
#include "rt_pwr_msg.h"
#include "rt_qcom_msg.h"
#include "rt_mh_msg.h"
#include "rt_mh_net.h"
#include "rt_mh_appl.h"
}
void
sysmon_object
::
open
(
double
base_scantime
)
{
pwr_tStatus
sts
;
// Link to object
sts
=
gdh_DLRefObjectInfoAttrref
(
&
aref
,
(
void
**
)
&
p
,
&
p_dlid
);
if
(
EVEN
(
sts
))
throw
co_error
(
sts
);
sts
=
gdh_GetAttrRefTid
(
&
aref
,
&
cid
);
if
(
EVEN
(
sts
))
throw
co_error
(
sts
);
switch
(
cid
)
{
case
pwr_cClass_DiskSup
:
if
(
((
pwr_sClass_DiskSup
*
)
p
)
->
ScanTime
)
scan_div
=
int
(
((
pwr_sClass_DiskSup
*
)
p
)
->
ScanTime
/
base_scantime
+
0.5
);
else
scan_div
=
1
;
break
;
default:
;
}
}
pwr_tStatus
sysmon_object
::
status
()
{
switch
(
cid
)
{
case
pwr_cClass_DiskSup
:
return
((
pwr_sClass_DiskSup
*
)
p
)
->
Status
;
default:
;
}
return
SMON__UNKNOWN
;
}
void
sysmon_object
::
close
()
{
gdh_DLUnrefObjectInfo
(
p_dlid
);
}
void
sysmon_object
::
scan
()
{
scan_cnt
++
;
if
(
scan_cnt
>=
scan_div
)
scan_cnt
=
0
;
else
return
;
exec
();
}
void
rt_sysmon
::
open
()
{
pwr_tStatus
sts
;
pwr_sAttrRef
aref
;
pwr_tObjid
oid
;
// Open server configuration object SysMonConfig
sts
=
gdh_GetClassList
(
pwr_cClass_SysMonConfig
,
&
oid
);
if
(
ODD
(
sts
))
{
aref
=
cdh_ObjidToAref
(
oid
);
sts
=
gdh_DLRefObjectInfoAttrref
(
&
aref
,
(
void
**
)
&
conf
,
&
conf_dlid
);
if
(
EVEN
(
sts
))
throw
co_error
(
sts
);
}
if
(
ODD
(
sts
))
{
scan_time
=
1.0
/
conf
->
ScanTime
;
}
else
{
scan_time
=
1
;
errh_Info
(
"No sysmon configuration, using base frequency 1 Hz"
);
oid
=
pwr_cNObjid
;
conf
=
0
;
}
aproc_RegisterObject
(
oid
);
// Open DiskSup objects
for
(
sts
=
gdh_GetClassListAttrRef
(
pwr_cClass_DiskSup
,
&
aref
);
ODD
(
sts
);
sts
=
gdh_GetNextAttrRef
(
pwr_cClass_DiskSup
,
&
aref
,
&
aref
))
{
disksup_object
*
o
=
new
disksup_object
(
&
aref
);
objects
.
push_back
(
o
);
try
{
o
->
open
(
scan_time
);
if
(
conf
)
conf
->
DiskSupObjects
[
sysmon_cnt
]
=
aref
.
Objid
;
sysmon_cnt
++
;
}
catch
(
co_error
&
e
)
{
delete
o
;
objects
.
pop_back
();
errh_Error
(
"DiskSup configuration error: &s"
,
(
char
*
)
e
.
what
().
c_str
());
}
}
}
void
rt_sysmon
::
close
()
{
for
(
int
i
=
objects
.
size
()
-
1
;
i
>=
0
;
i
--
)
{
objects
[
i
]
->
close
();
delete
objects
[
i
];
objects
.
pop_back
();
}
sysmon_cnt
=
0
;
}
void
rt_sysmon
::
scan
()
{
pwr_tStatus
osts
,
sts
;
errh_eSeverity
severity
,
oseverity
;
aproc_TimeStamp
();
// Find most severe status
sts
=
PWR__SRUN
;
severity
=
errh_Severity
(
sts
);
for
(
int
i
=
0
;
i
<
(
int
)
objects
.
size
();
i
++
)
{
objects
[
i
]
->
scan
();
osts
=
objects
[
i
]
->
status
();
oseverity
=
errh_Severity
(
osts
);
if
(
oseverity
>
severity
)
{
sts
=
osts
;
severity
=
oseverity
;
}
}
errh_SetStatus
(
sts
);
}
void
init
(
qcom_sQid
*
qid
)
{
qcom_sQid
qini
;
qcom_sQattr
qAttr
;
pwr_tStatus
sts
;
sts
=
gdh_Init
(
"rt_sysmon"
);
if
(
EVEN
(
sts
))
{
errh_Fatal
(
"gdh_Init, %m"
,
sts
);
exit
(
sts
);
}
errh_Init
(
"pwr_sysmon"
,
errh_eAnix_sysmon
);
errh_SetStatus
(
PWR__SRVSTARTUP
);
if
(
!
qcom_Init
(
&
sts
,
0
,
"pwr_sysmon"
))
{
errh_Fatal
(
"qcom_Init, %m"
,
sts
);
errh_SetStatus
(
PWR__SRVTERM
);
exit
(
sts
);
}
qAttr
.
type
=
qcom_eQtype_private
;
qAttr
.
quota
=
100
;
if
(
!
qcom_CreateQ
(
&
sts
,
qid
,
&
qAttr
,
"events"
))
{
errh_Fatal
(
"qcom_CreateQ, %m"
,
sts
);
errh_SetStatus
(
PWR__SRVTERM
);
exit
(
sts
);
}
qini
=
qcom_cQini
;
if
(
!
qcom_Bind
(
&
sts
,
qid
,
&
qini
))
{
errh_Fatal
(
"qcom_Bind(Qini), %m"
,
sts
);
errh_SetStatus
(
PWR__SRVTERM
);
exit
(
-
1
);
}
}
int
main
()
{
pwr_tStatus
sts
;
rt_sysmon
sysmon
;
int
tmo
;
char
mp
[
2000
];
qcom_sQid
qid
=
qcom_cNQid
;
qcom_sGet
get
;
int
swap
=
0
;
bool
first_scan
=
true
;
init
(
&
qid
);
try
{
sysmon
.
open
();
}
catch
(
co_error
&
e
)
{
errh_Error
(
(
char
*
)
e
.
what
().
c_str
());
errh_Fatal
(
"rt_sysmon aborting"
);
errh_SetStatus
(
PWR__SRVTERM
);
exit
(
0
);
}
aproc_TimeStamp
();
errh_SetStatus
(
PWR__SRUN
);
first_scan
=
true
;
for
(;;)
{
if
(
first_scan
)
{
tmo
=
(
int
)
(
sysmon
.
scantime
()
*
1000
-
1
);
}
get
.
maxSize
=
sizeof
(
mp
);
get
.
data
=
mp
;
qcom_Get
(
&
sts
,
&
qid
,
&
get
,
tmo
);
if
(
sts
==
QCOM__TMO
||
sts
==
QCOM__QEMPTY
)
{
if
(
!
swap
)
sysmon
.
scan
();
}
else
{
ini_mEvent
new_event
;
qcom_sEvent
*
ep
=
(
qcom_sEvent
*
)
get
.
data
;
new_event
.
m
=
ep
->
mask
;
if
(
new_event
.
b
.
oldPlcStop
&&
!
swap
)
{
errh_SetStatus
(
PWR__SRVRESTART
);
swap
=
1
;
sysmon
.
close
();
}
else
if
(
new_event
.
b
.
swapDone
&&
swap
)
{
swap
=
0
;
sysmon
.
open
();
errh_SetStatus
(
PWR__SRUN
);
}
else
if
(
new_event
.
b
.
terminate
)
{
exit
(
0
);
}
}
first_scan
=
false
;
}
}
void
disksup_object
::
exec
()
{
struct
statfs
buf
;
int
sts
;
pwr_sClass_DiskSup
*
o
=
(
pwr_sClass_DiskSup
*
)
p
;
sts
=
statfs
(
o
->
DiskName
,
&
buf
);
if
(
sts
!=
0
)
{
sts
=
errno_GetStatus
();
if
(
o
->
Status
!=
sts
)
{
o
->
Status
=
sts
;
printf
(
"Can't find disk
\n
"
);
}
return
;
}
o
->
CurrentUse
=
100.0
-
100.0
*
buf
.
f_bfree
/
buf
.
f_blocks
;
// Check if limit is exceeded
if
(
!
(
o
->
CurrentUse
<
o
->
UsedMaxLimit
))
{
if
(
o
->
Status
!=
SMON__DISKHIGHLIMIT
)
{
o
->
Status
=
SMON__DISKHIGHLIMIT
;
if
(
o
->
Action
&
pwr_mDiskSupActionMask_Alarm
)
{
pwr_tOName
name
;
sts
=
gdh_ObjidToName
(
aref
.
Objid
,
name
,
sizeof
(
name
),
cdh_mNName
);
rt_sysmon
::
alarm_send
(
aref
.
Objid
,
o
->
DetectText
,
name
,
o
->
EventPriority
);
}
if
(
o
->
Action
&
pwr_mDiskSupActionMask_Command
)
{
if
(
strcmp
(
o
->
Command
,
""
)
!=
0
)
{
char
msg
[
200
];
system
(
o
->
Command
);
sprintf
(
msg
,
"Command %s: %s"
,
o
->
DiskName
,
o
->
Command
);
errh_Info
(
msg
);
}
}
}
}
else
o
->
Status
=
SMON__SUCCESS
;
}
int
rt_sysmon
::
connect_alarm
()
{
static
int
alarm_connected
=
0
;
int
sts
;
mh_eEvent
AbortEventType
=
mh_eEvent_Alarm
;
mh_eEventPrio
AbortEventPrio
=
mh_eEventPrio_A
;
pwr_tUInt32
NoOfActMessages
;
if
(
alarm_connected
)
/* We are already connected */
return
SMON__SUCCESS
;
sts
=
mh_ApplConnect
(
pwr_cNObjid
,
(
mh_mApplFlags
)
0
,
"AbortEventName"
,
AbortEventType
,
AbortEventPrio
,
(
mh_mEventFlags
)(
mh_mEventFlags_Bell
|
mh_mEventFlags_Ack
|
mh_mEventFlags_Return
),
"AbortEventText"
,
&
NoOfActMessages
);
if
(
EVEN
(
sts
))
return
sts
;
alarm_connected
=
1
;
return
SMON__SUCCESS
;
}
int
rt_sysmon
::
alarm_send
(
pwr_tOid
oid
,
char
*
alarm_text
,
char
*
alarm_name
,
int
alarm_prio
)
{
mh_sApplMessage
mh_msg
;
pwr_tUInt32
mh_id
;
int
sts
;
sts
=
connect_alarm
();
if
(
EVEN
(
sts
))
return
sts
;
mh_msg
.
Object
=
oid
;
mh_msg
.
EventFlags
=
(
mh_mEventFlags
)(
mh_mEventFlags_Returned
|
mh_mEventFlags_NoObject
|
mh_mEventFlags_Bell
);
clock_gettime
(
CLOCK_REALTIME
,
&
mh_msg
.
EventTime
);
mh_msg
.
SupObject
=
pwr_cNObjid
;
mh_msg
.
Outunit
=
pwr_cNObjid
;
strcpy
(
mh_msg
.
EventName
,
alarm_name
);
strcpy
(
mh_msg
.
EventText
,
alarm_text
);
mh_msg
.
EventType
=
mh_eEvent_Alarm
;
mh_msg
.
SupInfo
.
SupType
=
mh_eSupType_None
;
mh_msg
.
EventPrio
=
(
mh_eEventPrio
)
alarm_prio
;
sts
=
mh_ApplMessage
(
&
mh_id
,
&
mh_msg
);
if
(
EVEN
(
sts
))
return
sts
;
return
SMON__SUCCESS
;
}
src/exe/rt_sysmon/src/rt_sysmon.h
0 → 100644
View file @
84f0aa47
#ifndef rt_sysmon_h
#define rt_sysmon_h
using
namespace
std
;
#include <string.h>
#include <vector>
extern
"C"
{
#include "pwr.h"
#include "pwr_baseclasses.h"
#include "rt_qcom.h"
}
/*! \file rt_sysmon.h
\brief Contains the rt_sysmon class. */
/*! \addtogroup rt */
/*@{*/
class
sysmon_object
{
public:
sysmon_object
(
pwr_sAttrRef
*
arp
)
:
aref
(
*
arp
),
p
(
0
),
scan_div
(
0
),
scan_cnt
(
0
)
{}
void
open
(
double
base_scantime
);
void
close
();
void
scan
();
pwr_tStatus
status
();
protected:
pwr_sAttrRef
aref
;
pwr_tAddress
p
;
pwr_tRefId
p_dlid
;
pwr_tCid
cid
;
int
scan_div
;
int
scan_cnt
;
virtual
void
exec
()
{};
};
class
disksup_object
:
public
sysmon_object
{
public:
disksup_object
(
pwr_sAttrRef
*
arp
)
:
sysmon_object
(
arp
)
{}
void
exec
();
};
//! Monitoring of system supervisory objects.
/*! ...
*/
class
rt_sysmon
{
public:
rt_sysmon
()
:
sysmon_cnt
(
0
),
scan_time
(
10
)
{}
void
init
(
qcom_sQid
*
qid
);
void
open
();
void
close
();
void
scan
();
double
scantime
()
{
return
scan_time
;}
static
int
connect_alarm
();
static
int
alarm_send
(
pwr_tOid
oid
,
char
*
alarm_text
,
char
*
alarm_name
,
int
alarm_prio
);
private:
vector
<
sysmon_object
*>
objects
;
pwr_sClass_SysMonConfig
*
conf
;
pwr_tRefId
conf_dlid
;
int
sysmon_cnt
;
double
scan_time
;
};
/*@}*/
#endif
xtt/exp/ge/src/pwr_c_disksup.pwg
0 → 100644
View file @
84f0aa47
1
100 20
135 20
101 20
102 -14
103 -105
104 6.33914
136 6.33914
105 100
106 -4
107 -33
108 30.85
109 0.8
110 10.1642
111 0.649997
116 0
117 0
118 178
119 138
120 0
121 Claes context
122 0
126 1
127 1
128 0
129 0.3
130 1.5
131 0.8
132 3
133 2
137 4001
134
22
2200 0
2201 201
2202 pwr_c_disksup
2203 51
2205 0
2204
2206 0
2207
2208
2209 0.35
2210 0.35
2211 31.5
2212 10.3
2213 4
2214
pwrp_pop:
pwrp_exe:
ssab_exe:
pwr_exe:
2215 0
2236 0
2216 0
2221 0
2237 0
2238 0
2239 0
2240 0
2241 0
2242 0
2217 0
2218 0
2219 0
2220
2230 0
2231 1
2222
2223 1
2224 0.5
2232 0.5
2225 0.5
2226 700
2227
2228 0
2229 1
2233 1
2234 3
2235 1
2243 0
2244
99
123
2
3
300 pwr_indsquare
301
2
19
1904
1900 0.75
1901 0.15
1902 0.75
1903 0.1
1908 0
1909 293
1910 293
1911 1
1915 0
1913 15
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0.15
701 0.1
99
503
7
700 0.75
701 0.75
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 4
321 0
309 29
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_valuelong
301
2
19
1904
1900 26.6
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 26.6
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_valuesmall
301
2
19
1904
1900 2.3
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 2.3
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
99
124
2
99
125
2
19
1904
1900 30.85
1901 0.8
1902 10.1642
1903 0.649998
1908 33
1909 31
1910 31
1911 0
1915 1
1913 1
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 33
501 1
504 1
505 0
502
7
700 0.8
701 0.65
99
503
7
700 30.85
701 6.25
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1.69896
2805 -0.454327
2806 0
99
99
30
3004
3000 4.05
3001 1.1
3002 7.5
3003 6.8
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 ScanTime
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 4.85
2806 0
99
99
30
3004
3000 3.05
3001 1.05
3002 4.56052
3003 3.86052
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Status
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.05
2803 0
2804 1
2805 1.91052
2806 0
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O153
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.95
1007 6.35
1008 4.55
1009 3.9
1013 6.95
1014 6.35
1015 4.55
1016 3.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.2
2803 0
2804 1
2805 3.8
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $object.Status##Status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O154
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.556
1007 7.15
1008 4.55
1009 3.85
1013 30.556
1014 7.15
1015 4.55
1016 3.85
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.879925
2801 0
2802 7.15
2803 0
2804 1
2805 3.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.Status##Status
1201 %1m
1202 1
1203 1
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O161
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.4614
1007 6.3182
1008 1.87
1009 0.96
1013 30.4614
1014 6.3182
1015 1.87
1016 0.96
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.907638
2801 0
2802 6.3182
2803 0
2804 1.3
2805 0.96
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.Description##String80
1201 %s
1202 1
1203 1
99
99
99
30
3004
3000 4.45
3001 1.1
3002 1.65
3003 0.95
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Description
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 -1
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O162
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.6
1007 6.3
1008 7.5
1009 6.8
1013 8.6
1014 6.3
1015 7.5
1016 6.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.3
2803 0
2804 1
2805 6.8
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ScanTime##Float32
1201 %6.0f
1202 1
1203 1
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O195
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.4614
1007 6.3182
1008 2.97
1009 2.06
1013 30.4614
1014 6.3182
1015 2.97
1016 2.06
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.907638
2801 0
2802 6.3182
2803 0
2804 1.3
2805 2.06
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.DiskName##String80
1201 %s
1202 1
1203 1
99
99
99
30
3004
3000 4.1
3001 1.1
3002 2.75
3003 2.05
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 DiskName
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 0.1
2806 0
99
99
30
3004
3000 4.45
3001 1.1
3002 5.75
3003 5.05
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 CurrentUse
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 3.1
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O197
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.6
1007 6.3
1008 5.75
1009 5.05
1013 8.6
1014 6.3
1015 5.75
1016 5.05
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.3
2803 0
2804 1
2805 5.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.CurrentUse##Float32
1201 %7.2f
1202 1
1203 1
99
99
99
30
3004
3000 9.5
3001 8.95
3002 5.75
3003 5.05
3008 103
3007 0
3006
3005
9
900 2
901 303
904 0
902 %
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 7.85
2803 0
2804 1
2805 3.1
2806 0
99
99
30
3004
3000 14.15
3001 11.45
3002 5.75
3003 5.05
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 MaxLimit
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 10.35
2803 0
2804 1
2805 3.1
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O198
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 17.55
1007 15.25
1008 5.75
1009 5.05
1013 17.55
1014 15.25
1015 5.75
1016 5.05
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 15.25
2803 0
2804 1
2805 5.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.UsedMaxLImit##Float32
1201 %7.2f
1202 1
1203 1
99
99
99
30
3004
3000 18.45
3001 17.9
3002 5.75
3003 5.05
3008 103
3007 0
3006
3005
9
900 2
901 303
904 0
902 %
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 16.8
2803 0
2804 1
2805 3.1
2806 0
99
99
30
3004
3000 2.95
3001 1.1
3002 8.5
3003 7.8
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Action
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 5.85
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O199
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.6
1007 6.3
1008 8.5
1009 7.8
1013 8.6
1014 6.3
1015 8.5
1016 7.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.3
2803 0
2804 1
2805 7.8
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.Action##Int32
1201 %d
1202 1
1203 1
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O200
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.4614
1007 6.3182
1008 9.72
1009 8.81
1013 30.4614
1014 6.3182
1015 9.72
1016 8.81
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.907638
2801 0
2802 6.3182
2803 0
2804 1.3
2805 8.81
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.Command##String80
1201 %s
1202 1
1203 1
99
99
99
30
3004
3000 4
3001 1.1
3002 9.5
3003 8.8
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Command
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 6.85
2806 0
99
99
19
1904
1900 30.7486
1901 0.95067
1902 6.21418
1903 3.5185
1908 33
1909 31
1910 31
1911 0
1915 1
1913 1
1916 2
1914 1
1918 0
1917 0
1907 0
1906
1905
5
500 33
501 1
504 1
505 0
502
7
700 0.8
701 0.65
99
503
7
700 30.85
701 6.25
99
99
1912
28
2800 0.991611
2801 0
2802 0.157382
2803 0
2804 0.481372
2805 3.2056
2806 0
99
99
99
99
xtt/exp/ge/src/pwr_c_sysmonconfig.pwg
0 → 100644
View file @
84f0aa47
1
100 20
135 20
101 20
102 -25
103 0
104 6.23053
136 6.23053
105 100
106 -7
107 0
108 30.85
109 0.8
110 30.5303
111 0.65
116 0
117 0
118 174
119 136
120 0
121 Claes context
122 0
126 1
127 1
128 0
129 0.3
130 1.5
131 0.8
132 3
133 2
137 4001
134
22
2200 0
2201 195
2202 pwr_c_sysmonconfig
2203 51
2205 0
2204
2206 0
2207
2208
2209 0.35
2210 0.35
2211 31.5
2212 30.8
2213 4
2214
pwrp_pop:
pwrp_exe:
ssab_exe:
pwr_exe:
2215 0
2236 0
2216 0
2221 0
2237 0
2238 0
2239 0
2240 0
2241 0
2242 0
2217 0
2218 0
2219 0
2220
2230 0
2231 1
2222
2223 1
2224 0.5
2232 0.5
2225 0.5
2226 700
2227
2228 0
2229 1
2233 1
2234 3
2235 1
2243 0
2244
99
123
2
3
300 pwr_indsquare
301
2
19
1904
1900 0.75
1901 0.15
1902 0.75
1903 0.1
1908 0
1909 293
1910 293
1911 1
1915 0
1913 15
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0.15
701 0.1
99
503
7
700 0.75
701 0.75
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 4
321 0
309 29
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_valuelong
301
2
19
1904
1900 26.6
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 26.6
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_valuesmall
301
2
19
1904
1900 2.3
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 2.3
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
99
124
2
99
125
2
19
1904
1900 30.85
1901 0.8
1902 30.5303
1903 5.4
1908 33
1909 31
1910 31
1911 0
1915 1
1913 0.2
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 33
501 1
504 1
505 0
502
7
700 0.8
701 0.65
99
503
7
700 30.85
701 6.25
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 4.48755
2805 2.48309
2806 0
99
99
19
1904
1900 30.85
1901 0.8
1902 5.13
1903 0.65
1908 33
1909 31
1910 31
1911 0
1915 1
1913 1
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 33
501 1
504 1
505 0
502
7
700 0.8
701 0.65
99
503
7
700 30.85
701 6.25
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 0.8
2805 0.13
2806 0
99
99
30
3004
3000 4.05
3001 1.1
3002 2.6
3003 1.9
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 ScanTime
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 -0.05
2806 0
99
99
30
3004
3000 3.05
3001 1.05
3002 3.66052
3003 2.96052
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Status
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.05
2803 0
2804 1
2805 1.01052
2806 0
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp60_
1002 Grp59_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 7.65
1009 6.9
1013 1.95388
1014 1.1
1015 7.65
1016 6.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 -0.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[0]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[0]
99
99
99
3501
36
3600
3
300 Grp60_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp65_
1002 Grp64_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 8.55
1009 7.8
1013 1.95388
1014 1.1
1015 8.55
1016 7.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 0.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[1]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[1]
99
99
99
3501
36
3600
3
300 Grp65_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
42
4203 0.5
4206 20
4207 24
4204 0
4205 1
4208 1
4209 25
4210 5
4211 1
4212 1
4213 2
4214 303
4217 0
4218 2
4219 304
4220 0
4221 1
4215 1
4216 0.9
4222 0
4240 4
4241 DiskSup
4242 8
4243 Device
4244 4
4245 Used (%)
4246 4
4247 Limit (%)
4248 24
4249 Status
4250 0
4251
4252 0
4253
4254 0
4255
4256 0
4257
4258 0
4259
4260 0
4261
4262 0
4263
4200
19
1904
1900 30.6023
1901 2.49422
1902 29.8283
1903 5.8217
1908 33
1909 31
1910 31
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 33
501 1
504 1
505 1
502
7
700 11.05
701 7.35
99
503
7
700 19.05
701 13.35
99
99
1912
28
2800 3.51351
2801 0
2802 -36.33
2803 0
2804 4.00111
2805 -23.5864
2806 0
99
99
4202
1
100 16777216
101 0
102 65532
103 1
30
3000 $object.DiskSupObjects##Objid#24
3001 %o
3002
3003 $header.DiskName##String80
3004 %s
3005
3006 $header.CurrentUse##Float32
3007 %5.2f
3008
3009 $header.UsedMaxLimit##Float32
3010 %5.2f
3011
3012 $header.Status##Status
3013 %m
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp76_
1002 Grp75_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 9.45
1009 8.7
1013 1.95388
1014 1.1
1015 9.45
1016 8.7
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 1.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[2]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[2]
99
99
99
3501
36
3600
3
300 Grp76_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp78_
1002 Grp77_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 10.35
1009 9.6
1013 1.95388
1014 1.1
1015 10.35
1016 9.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 2.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[3]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[3]
99
99
99
3501
36
3600
3
300 Grp78_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp80_
1002 Grp79_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 11.25
1009 10.5
1013 1.95388
1014 1.1
1015 11.25
1016 10.5
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 3.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[4]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[4]
99
99
99
3501
36
3600
3
300 Grp80_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp88_
1002 Grp87_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 12.15
1009 11.4
1013 1.95388
1014 1.1
1015 12.15
1016 11.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 4.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[5]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[5]
99
99
99
3501
36
3600
3
300 Grp88_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp90_
1002 Grp89_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 13.05
1009 12.3
1013 1.95388
1014 1.1
1015 13.05
1016 12.3
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 4.95
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[6]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[6]
99
99
99
3501
36
3600
3
300 Grp90_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp92_
1002 Grp91_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 13.95
1009 13.2
1013 1.95388
1014 1.1
1015 13.95
1016 13.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 5.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[7]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[7]
99
99
99
3501
36
3600
3
300 Grp92_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp100_
1002 Grp99_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 14.85
1009 14.1
1013 1.95388
1014 1.1
1015 14.85
1016 14.1
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 6.75
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 open graph/classgraph/instance=&$object.PlcThreadObjects[8]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[8]
99
99
99
3501
36
3600
3
300 Grp100_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp102_
1002 Grp101_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 15.75
1009 15
1013 1.95388
1014 1.1
1015 15.75
1016 15
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 7.65
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[9]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[9]
99
99
99
3501
36
3600
3
300 Grp102_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp104_
1002 Grp103_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 16.65
1009 15.9
1013 1.95388
1014 1.1
1015 16.65
1016 15.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 8.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[10]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[10]
99
99
99
3501
36
3600
3
300 Grp104_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp112_
1002 Grp111_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 17.55
1009 16.8
1013 1.95388
1014 1.1
1015 17.55
1016 16.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 9.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[11]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[11]
99
99
99
3501
36
3600
3
300 Grp112_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp114_
1002 Grp113_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 18.45
1009 17.7
1013 1.95388
1014 1.1
1015 18.45
1016 17.7
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 10.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[12]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[12]
99
99
99
3501
36
3600
3
300 Grp114_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp116_
1002 Grp115_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 19.35
1009 18.6
1013 1.95388
1014 1.1
1015 19.35
1016 18.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 11.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[13]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[13]
99
99
99
3501
36
3600
3
300 Grp116_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp124_
1002 Grp123_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 20.25
1009 19.5
1013 1.95388
1014 1.1
1015 20.25
1016 19.5
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 12.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[14]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[14]
99
99
99
3501
36
3600
3
300 Grp124_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp126_
1002 Grp125_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 21.15
1009 20.4
1013 1.95388
1014 1.1
1015 21.15
1016 20.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 13.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[15]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[15]
99
99
99
3501
36
3600
3
300 Grp126_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp128_
1002 Grp127_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 22.05
1009 21.3
1013 1.95388
1014 1.1
1015 22.05
1016 21.3
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 13.95
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[16]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[16]
99
99
99
3501
36
3600
3
300 Grp128_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp136_
1002 Grp135_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 22.95
1009 22.2
1013 1.95388
1014 1.1
1015 22.95
1016 22.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 14.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[17]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[17]
99
99
99
3501
36
3600
3
300 Grp136_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp138_
1002 Grp137_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 23.85
1009 23.1
1013 1.95388
1014 1.1
1015 23.85
1016 23.1
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 15.75
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[18]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[18]
99
99
99
3501
36
3600
3
300 Grp138_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp150_
1002 Grp149_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 24.75
1009 24
1013 1.95388
1014 1.1
1015 24.75
1016 24
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 16.65
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[19]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[19]
99
99
99
3501
36
3600
3
300 Grp150_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O153
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.95
1007 6.35
1008 3.65
1009 3
1013 6.95
1014 6.35
1015 3.65
1016 3
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.2
2803 0
2804 1
2805 2.9
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $node.ProcStatus[15]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O154
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.556
1007 7.15
1008 3.65
1009 2.95
1013 30.556
1014 7.15
1015 3.65
1016 2.95
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.879925
2801 0
2802 7.15
2803 0
2804 1
2805 2.95
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $node.ProcStatus[15]##Status
1201 %1m
1202 1
1203 1
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O155
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.95
1007 6.35
1008 4.55
1009 3.9
1013 6.95
1014 6.35
1015 4.55
1016 3.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.2
2803 0
2804 1
2805 3.8
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $node.ProcMsgSeverity[15]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O156
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.5632
1007 7.15
1008 4.6
1009 3.9
1013 30.5632
1014 7.15
1015 4.6
1016 3.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.880194
2801 0
2802 7.15
2803 0
2804 1
2805 3.9
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $node.ProcMessage[15]##String80
1201 %s
1202 1
1203 1
99
99
99
30
3004
3000 4.75
3001 1.05
3002 4.66052
3003 3.96052
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 LogMessage
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.05
2803 0
2804 1
2805 2.01052
2806 0
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O161
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.4614
1007 6.3182
1008 1.87
1009 0.96
1013 30.4614
1014 6.3182
1015 1.87
1016 0.96
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.907638
2801 0
2802 6.3182
2803 0
2804 1.3
2805 0.96
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.Description##String80
1201 %s
1202 1
1203 1
99
99
99
30
3004
3000 4.45
3001 1.1
3002 1.65
3003 0.95
3008 103
3007 0
3006
3005
9
900 2
901 304
904 0
902 Description
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 2.91434e-16
2803 0
2804 1
2805 -1
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O162
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.6
1007 6.3
1008 2.7
1009 2
1013 8.6
1014 6.3
1015 2.7
1016 2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.3
2803 0
2804 1
2805 2
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ScanTime##Float32
1201 %6.0f
1202 1
1203 1
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp176_
1002 Grp175_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 25.65
1009 24.9
1013 1.95388
1014 1.1
1015 25.65
1016 24.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 17.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[20]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[20]
99
99
99
3501
36
3600
3
300 Grp176_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp178_
1002 Grp177_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 26.55
1009 25.8
1013 1.95388
1014 1.1
1015 26.55
1016 25.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 18.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[21]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[21]
99
99
99
3501
36
3600
3
300 Grp178_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp180_
1002 Grp179_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 27.45
1009 26.7
1013 1.95388
1014 1.1
1015 27.45
1016 26.7
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 19.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[22]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[22]
99
99
99
3501
36
3600
3
300 Grp180_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp182_
1002 Grp181_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 28.35
1009 27.6
1013 1.95388
1014 1.1
1015 28.35
1016 27.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 20.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[23]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[23]
99
99
99
3501
36
3600
3
300 Grp182_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2702 0
2701
2700
10
1000 Grp184_
1002 Grp183_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.95388
1007 1.1
1008 29.25
1009 28.5
1013 1.95388
1014 1.1
1015 29.25
1016 28.5
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0.1
2803 0
2804 1
2805 21.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.DiskSupObjects[24]
99
55
5500 open graph/classgraph/instance=&$object.DiskSupObjects[24]
99
99
99
3501
36
3600
3
300 Grp184_
301
2
19
1904
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1917 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
99
99
99
99
99
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment