-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode_info.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 2820 should actually have 4 columns, instead of 5 in line 2819.
2853 lines (2853 loc) · 284 KB
/
node_info.csv
File metadata and controls
2853 lines (2853 loc) · 284 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Node Path,Node Address,Access Level,Data Type
/Objects,n=0;,,
/Objects/Server,n=0;,,
/Objects/Server/Auditing,n=0;i=2994,currentRead,Boolean
/Objects/Server/GetMonitoredItems,n=0;,,
/Objects/Server/GetMonitoredItems/InputArguments,n=0;i=11493,currentRead,Argument
/Objects/Server/GetMonitoredItems/OutputArguments,n=0;i=11494,currentRead,Argument
/Objects/Server/NamespaceArray,n=0;i=2255,currentRead,String
/Objects/Server/ServerArray,n=0;i=2254,currentRead,String
/Objects/Server/ServerCapabilities,n=0;,,
/Objects/Server/ServerCapabilities/AggregateFunctions,n=0;,,
/Objects/Server/ServerCapabilities/LocaleIdArray,n=0;i=2271,currentRead,LocaleId
/Objects/Server/ServerCapabilities/MaxArrayLength,n=0;i=11702,currentRead,UInt32
/Objects/Server/ServerCapabilities/MaxBrowseContinuationPoints,n=0;i=2735,currentRead,UInt16
/Objects/Server/ServerCapabilities/MaxByteStringLength,n=0;i=12911,currentRead,UInt32
/Objects/Server/ServerCapabilities/MaxHistoryContinuationPoints,n=0;i=2737,currentRead,UInt16
/Objects/Server/ServerCapabilities/MaxQueryContinuationPoints,n=0;i=2736,currentRead,UInt16
/Objects/Server/ServerCapabilities/MaxStringLength,n=0;i=11703,currentRead,UInt32
/Objects/Server/ServerCapabilities/MinSupportedSampleRate,n=0;i=2272,currentRead,Duration
/Objects/Server/ServerCapabilities/ModellingRules,n=0;,,
/Objects/Server/ServerCapabilities/ModellingRules/ExposesItsArray,n=0;,,
/Objects/Server/ServerCapabilities/ModellingRules/ExposesItsArray/NamingRule,n=0;i=114,currentRead,NamingRuleType
/Objects/Server/ServerCapabilities/ModellingRules/Mandatory,n=0;,,
/Objects/Server/ServerCapabilities/ModellingRules/Mandatory/NamingRule,n=0;i=112,currentRead,NamingRuleType
/Objects/Server/ServerCapabilities/ModellingRules/MandatoryShared,n=0;,,
/Objects/Server/ServerCapabilities/ModellingRules/MandatoryShared/NamingRule,n=0;i=116,currentRead,NamingRuleType
/Objects/Server/ServerCapabilities/ModellingRules/Optional,n=0;,,
/Objects/Server/ServerCapabilities/ModellingRules/Optional/NamingRule,n=0;i=113,currentRead,NamingRuleType
/Objects/Server/ServerCapabilities/OperationLimits,n=0;,,
/Objects/Server/ServerCapabilities/OperationLimits/MaxMonitoredItemsPerCall,n=0;i=11714,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerBrowse,n=0;i=11710,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerHistoryReadData,n=0;i=12165,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerHistoryReadEvents,n=0;i=12166,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerHistoryUpdateData,n=0;i=12167,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerHistoryUpdateEvents,n=0;i=12168,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerMethodCall,n=0;i=11709,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerRead,n=0;i=11705,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerRegisterNodes,n=0;i=11711,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerTranslateBrowsePathsToNodeIds,n=0;i=11712,currentRead,UInt32
/Objects/Server/ServerCapabilities/OperationLimits/MaxNodesPerWrite,n=0;i=11707,currentRead,UInt32
/Objects/Server/ServerCapabilities/ServerProfileArray,n=0;i=2269,currentRead,String
/Objects/Server/ServerCapabilities/SoftwareCertificates,n=0;i=3704,currentRead,SignedSoftwareCertificate
/Objects/Server/ServerCapabilities/MaxInactiveLockTime,n=2;i=6387,currentRead,Duration
/Objects/Server/ServerConfiguration,n=0;,,
/Objects/Server/ServerConfiguration/ApplyChanges,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/CertificateTypes,n=0;i=14161,currentRead,NodeId
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/AddCertificate,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/AddCertificate/InputArguments,n=0;i=12669,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Close,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Close/InputArguments,n=0;i=12651,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/CloseAndUpdate,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/CloseAndUpdate/InputArguments,n=0;i=14160,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/CloseAndUpdate/OutputArguments,n=0;i=12667,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/GetPosition,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/GetPosition/InputArguments,n=0;i=12658,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/GetPosition/OutputArguments,n=0;i=12659,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/LastUpdateTime,n=0;i=12662,currentRead,UtcTime
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Open,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Open/InputArguments,n=0;i=12648,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Open/OutputArguments,n=0;i=12649,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/OpenCount,n=0;i=12646,currentRead,UInt16
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/OpenWithMasks,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/OpenWithMasks/InputArguments,n=0;i=12664,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/OpenWithMasks/OutputArguments,n=0;i=12665,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Read,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Read/InputArguments,n=0;i=12653,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Read/OutputArguments,n=0;i=12654,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/RemoveCertificate,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/RemoveCertificate/InputArguments,n=0;i=12671,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/SetPosition,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/SetPosition/InputArguments,n=0;i=12661,currentRead,Argument
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Size,n=0;i=12643,currentRead,UInt64
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/UserWritable,n=0;i=14158,currentRead,Boolean
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Writable,n=0;i=14157,currentRead,Boolean
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Write,n=0;,,
/Objects/Server/ServerConfiguration/CertificateGroups/DefaultApplicationGroup/TrustList/Write/InputArguments,n=0;i=12656,currentRead,Argument
/Objects/Server/ServerConfiguration/CreateSigningRequest,n=0;,,
/Objects/Server/ServerConfiguration/CreateSigningRequest/InputArguments,n=0;i=12738,currentRead,Argument
/Objects/Server/ServerConfiguration/CreateSigningRequest/OutputArguments,n=0;i=12739,currentRead,Argument
/Objects/Server/ServerConfiguration/GetRejectedList,n=0;,,
/Objects/Server/ServerConfiguration/GetRejectedList/OutputArguments,n=0;i=12778,currentRead,Argument
/Objects/Server/ServerConfiguration/MaxTrustListSize,n=0;i=12640,currentRead,UInt32
/Objects/Server/ServerConfiguration/MulticastDnsEnabled,n=0;i=12641,currentRead,Boolean
/Objects/Server/ServerConfiguration/ServerCapabilities,n=0;i=12710,currentRead,String
/Objects/Server/ServerConfiguration/SupportedPrivateKeyFormats,n=0;i=12639,currentRead,String
/Objects/Server/ServerConfiguration/UpdateCertificate,n=0;,,
/Objects/Server/ServerConfiguration/UpdateCertificate/InputArguments,n=0;i=13738,currentRead,Argument
/Objects/Server/ServerConfiguration/UpdateCertificate/OutputArguments,n=0;i=13739,currentRead,Argument
/Objects/Server/ServerDiagnostics,n=0;,,
/Objects/Server/ServerDiagnostics/EnabledFlag,n=0;i=2294,currentRead,Boolean
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary,n=0;i=2275,currentRead,ServerDiagnosticsSummaryDataType
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/CumulatedSessionCount,n=0;i=2278,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/CumulatedSubscriptionCount,n=0;i=2286,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/CurrentSessionCount,n=0;i=2277,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/CurrentSubscriptionCount,n=0;i=2285,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/PublishingIntervalCount,n=0;i=2284,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/RejectedRequestsCount,n=0;i=2288,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/RejectedSessionCount,n=0;i=3705,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/SecurityRejectedRequestsCount,n=0;i=2287,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/SecurityRejectedSessionCount,n=0;i=2279,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/ServerViewCount,n=0;i=2276,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/SessionAbortCount,n=0;i=2282,currentRead,UInt32
/Objects/Server/ServerDiagnostics/ServerDiagnosticsSummary/SessionTimeoutCount,n=0;i=2281,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary,n=0;,,
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray,n=0;i=3707,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics,n=1;s=Session_3274624042.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionId,n=1;s=Session_3274624042.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionName,n=1;s=Session_3274624042.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624042.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ServerUri,n=1;s=Session_3274624042.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624042.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624042.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624042.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624042.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624042.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624042.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624042.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624042.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624042.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ReadCount,n=1;s=Session_3274624042.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624042.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/WriteCount,n=1;s=Session_3274624042.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624042.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CallCount,n=1;s=Session_3274624042.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624042.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624042.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624042.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624042.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624042.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/PublishCount,n=1;s=Session_3274624042.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624042.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624042.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624042.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624042.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624042.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624042.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624042.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics,n=1;s=Session_3274624047.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionId,n=1;s=Session_3274624047.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionName,n=1;s=Session_3274624047.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624047.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ServerUri,n=1;s=Session_3274624047.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624047.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624047.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624047.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624047.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624047.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624047.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624047.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624047.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624047.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ReadCount,n=1;s=Session_3274624047.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624047.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/WriteCount,n=1;s=Session_3274624047.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624047.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CallCount,n=1;s=Session_3274624047.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624047.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624047.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624047.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624047.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624047.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/PublishCount,n=1;s=Session_3274624047.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624047.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624047.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624047.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624047.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624047.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624047.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624047.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics,n=1;s=Session_3274624048.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionId,n=1;s=Session_3274624048.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SessionName,n=1;s=Session_3274624048.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624048.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ServerUri,n=1;s=Session_3274624048.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624048.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624048.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624048.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624048.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624048.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624048.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624048.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624048.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624048.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ReadCount,n=1;s=Session_3274624048.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624048.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/WriteCount,n=1;s=Session_3274624048.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624048.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CallCount,n=1;s=Session_3274624048.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624048.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624048.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624048.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624048.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624048.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/PublishCount,n=1;s=Session_3274624048.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624048.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624048.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624048.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624048.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624048.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624048.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624048.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/SessionDiagnosticsArray/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert,n=1;,,
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics,n=1;s=Session_3274624042.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/SessionId,n=1;s=Session_3274624042.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/SessionName,n=1;s=Session_3274624042.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624042.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ServerUri,n=1;s=Session_3274624042.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624042.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624042.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624042.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624042.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624042.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624042.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624042.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624042.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624042.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ReadCount,n=1;s=Session_3274624042.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624042.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/WriteCount,n=1;s=Session_3274624042.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624042.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CallCount,n=1;s=Session_3274624042.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624042.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624042.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624042.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624042.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624042.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/PublishCount,n=1;s=Session_3274624042.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624042.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624042.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624042.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624042.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624042.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624042.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624042.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624042.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624042.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray,n=1;s=Session_3274624042.SubscriptionDiagnosticsArray,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038,n=1;s=Subscription_3274624038,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/SessionId,n=1;s=Subscription_3274624038.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/SubscriptionId,n=1;s=Subscription_3274624038.SubscriptionId,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/Priority,n=1;s=Subscription_3274624038.Priority,currentRead,Byte
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/PublishingInterval,n=1;s=Subscription_3274624038.PublishingInterval,currentRead,Double
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/MaxKeepAliveCount,n=1;s=Subscription_3274624038.MaxKeepAliveCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/MaxLifetimeCount,n=1;s=Subscription_3274624038.MaxLifetimeCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/MaxNotificationsPerPublish,n=1;s=Subscription_3274624038.MaxNotificationsPerPublish,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/PublishingEnabled,n=1;s=Subscription_3274624038.PublishingEnabled,currentRead,Boolean
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/ModifyCount,n=1;s=Subscription_3274624038.ModifyCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/EnableCount,n=1;s=Subscription_3274624038.EnableCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/DisableCount,n=1;s=Subscription_3274624038.DisableCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/RepublishRequestCount,n=1;s=Subscription_3274624038.RepublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/RepublishMessageRequestCount,n=1;s=Subscription_3274624038.RepublishMessageRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/RepublishMessageCount,n=1;s=Subscription_3274624038.RepublishMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/TransferRequestCount,n=1;s=Subscription_3274624038.TransferRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/TransferredToAltClientCount,n=1;s=Subscription_3274624038.TransferredToAltClientCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/TransferredToSameClientCount,n=1;s=Subscription_3274624038.TransferredToSameClientCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/PublishRequestCount,n=1;s=Subscription_3274624038.PublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/DataChangeNotificationsCount,n=1;s=Subscription_3274624038.DataChangeNotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/EventNotificationsCount,n=1;s=Subscription_3274624038.EventNotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/NotificationsCount,n=1;s=Subscription_3274624038.NotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/LatePublishRequestCount,n=1;s=Subscription_3274624038.LatePublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/CurrentKeepAliveCount,n=1;s=Subscription_3274624038.CurrentKeepAliveCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/CurrentLifetimeCount,n=1;s=Subscription_3274624038.CurrentLifetimeCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/UnacknowledgedMessageCount,n=1;s=Subscription_3274624038.UnacknowledgedMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/DiscardedMessageCount,n=1;s=Subscription_3274624038.DiscardedMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/MonitoredItemCount,n=1;s=Subscription_3274624038.MonitoredItemCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/DisabledMonitoredItemCount,n=1;s=Subscription_3274624038.DisabledMonitoredItemCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/MonitoringQueueOverflowCount,n=1;s=Subscription_3274624038.MonitoringQueueOverflowCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/NextSequenceNumber,n=1;s=Subscription_3274624038.NextSequenceNumber,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/urn:LAPTOP-VI4T7MK9:UnifiedAutomation:UaExpert/SubscriptionDiagnosticsArray/3274624038/EventQueueOverFlowCount,n=1;s=Subscription_3274624038.EventQueueOverFlowCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307,n=1;,,
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics,n=1;s=Session_3274624047.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/SessionId,n=1;s=Session_3274624047.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/SessionName,n=1;s=Session_3274624047.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624047.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ServerUri,n=1;s=Session_3274624047.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624047.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624047.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624047.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624047.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624047.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624047.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624047.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624047.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624047.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ReadCount,n=1;s=Session_3274624047.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624047.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/WriteCount,n=1;s=Session_3274624047.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624047.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CallCount,n=1;s=Session_3274624047.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624047.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624047.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624047.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624047.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624047.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/PublishCount,n=1;s=Session_3274624047.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624047.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624047.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624047.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624047.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624047.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624047.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624047.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624047.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624047.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479555307/SubscriptionDiagnosticsArray,n=1;s=Session_3274624047.SubscriptionDiagnosticsArray,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628,n=1;,,
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics,n=1;s=Session_3274624048.SessionDiagnostics,currentRead,SessionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/SessionId,n=1;s=Session_3274624048.SessionDiagnostics.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/SessionName,n=1;s=Session_3274624048.SessionDiagnostics.SessionName,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ClientDescription,n=1;s=Session_3274624048.SessionDiagnostics.ClientDescription,currentRead,ApplicationDescription
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ServerUri,n=1;s=Session_3274624048.SessionDiagnostics.ServerUri,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/EndpointUrl,n=1;s=Session_3274624048.SessionDiagnostics.EndpointUrl,currentRead,String
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/LocaleIds,n=1;s=Session_3274624048.SessionDiagnostics.LocaleIds,currentRead,LocaleId
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/MaxResponseMessageSize,n=1;s=Session_3274624048.SessionDiagnostics.MaxResponseMessageSize,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ActualSessionTimeout,n=1;s=Session_3274624048.SessionDiagnostics.ActualSessionTimeout,currentRead,Duration
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ClientConnectionTime,n=1;s=Session_3274624048.SessionDiagnostics.ClientConnectionTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ClientLastContactTime,n=1;s=Session_3274624048.SessionDiagnostics.ClientLastContactTime,currentRead,UtcTime
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CurrentSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.CurrentSubscriptionsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CurrentMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.CurrentMonitoredItemsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CurrentPublishRequestsInQueue,n=1;s=Session_3274624048.SessionDiagnostics.CurrentPublishRequestsInQueue,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/TotalRequestCount,n=1;s=Session_3274624048.SessionDiagnostics.TotalRequestCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/UnauthorizedRequestCount,n=1;s=Session_3274624048.SessionDiagnostics.UnauthorizedRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ReadCount,n=1;s=Session_3274624048.SessionDiagnostics.ReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/HistoryReadCount,n=1;s=Session_3274624048.SessionDiagnostics.HistoryReadCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/WriteCount,n=1;s=Session_3274624048.SessionDiagnostics.WriteCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/HistoryUpdateCount,n=1;s=Session_3274624048.SessionDiagnostics.HistoryUpdateCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CallCount,n=1;s=Session_3274624048.SessionDiagnostics.CallCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CreateMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.CreateMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ModifyMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.ModifyMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/SetMonitoringModeCount,n=1;s=Session_3274624048.SessionDiagnostics.SetMonitoringModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/SetTriggeringCount,n=1;s=Session_3274624048.SessionDiagnostics.SetTriggeringCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/DeleteMonitoredItemsCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteMonitoredItemsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/CreateSubscriptionCount,n=1;s=Session_3274624048.SessionDiagnostics.CreateSubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/ModifySubscriptionCount,n=1;s=Session_3274624048.SessionDiagnostics.ModifySubscriptionCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/SetPublishingModeCount,n=1;s=Session_3274624048.SessionDiagnostics.SetPublishingModeCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/PublishCount,n=1;s=Session_3274624048.SessionDiagnostics.PublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/RepublishCount,n=1;s=Session_3274624048.SessionDiagnostics.RepublishCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/TransferSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.TransferSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/DeleteSubscriptionsCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteSubscriptionsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/AddNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.AddNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/AddReferencesCount,n=1;s=Session_3274624048.SessionDiagnostics.AddReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/DeleteNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/DeleteReferencesCount,n=1;s=Session_3274624048.SessionDiagnostics.DeleteReferencesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/BrowseCount,n=1;s=Session_3274624048.SessionDiagnostics.BrowseCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/BrowseNextCount,n=1;s=Session_3274624048.SessionDiagnostics.BrowseNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/TranslateBrowsePathsToNodeIdsCount,n=1;s=Session_3274624048.SessionDiagnostics.TranslateBrowsePathsToNodeIdsCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/QueryFirstCount,n=1;s=Session_3274624048.SessionDiagnostics.QueryFirstCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/QueryNextCount,n=1;s=Session_3274624048.SessionDiagnostics.QueryNextCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/RegisterNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.RegisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SessionDiagnostics/UnregisterNodesCount,n=1;s=Session_3274624048.SessionDiagnostics.UnregisterNodesCount,currentRead,ServiceCounterDataType
/Objects/Server/ServerDiagnostics/SessionsDiagnosticsSummary/UaSession:Eclipse Milo application name not configured:1693479595628/SubscriptionDiagnosticsArray,n=1;s=Session_3274624048.SubscriptionDiagnosticsArray,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray,n=0;i=2290,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038,n=1;s=Subscription_3274624038,currentRead,SubscriptionDiagnosticsDataType
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/SessionId,n=1;s=Subscription_3274624038.SessionId,currentRead,NodeId
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/SubscriptionId,n=1;s=Subscription_3274624038.SubscriptionId,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/Priority,n=1;s=Subscription_3274624038.Priority,currentRead,Byte
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/PublishingInterval,n=1;s=Subscription_3274624038.PublishingInterval,currentRead,Double
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/MaxKeepAliveCount,n=1;s=Subscription_3274624038.MaxKeepAliveCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/MaxLifetimeCount,n=1;s=Subscription_3274624038.MaxLifetimeCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/MaxNotificationsPerPublish,n=1;s=Subscription_3274624038.MaxNotificationsPerPublish,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/PublishingEnabled,n=1;s=Subscription_3274624038.PublishingEnabled,currentRead,Boolean
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/ModifyCount,n=1;s=Subscription_3274624038.ModifyCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/EnableCount,n=1;s=Subscription_3274624038.EnableCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/DisableCount,n=1;s=Subscription_3274624038.DisableCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/RepublishRequestCount,n=1;s=Subscription_3274624038.RepublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/RepublishMessageRequestCount,n=1;s=Subscription_3274624038.RepublishMessageRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/RepublishMessageCount,n=1;s=Subscription_3274624038.RepublishMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/TransferRequestCount,n=1;s=Subscription_3274624038.TransferRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/TransferredToAltClientCount,n=1;s=Subscription_3274624038.TransferredToAltClientCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/TransferredToSameClientCount,n=1;s=Subscription_3274624038.TransferredToSameClientCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/PublishRequestCount,n=1;s=Subscription_3274624038.PublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/DataChangeNotificationsCount,n=1;s=Subscription_3274624038.DataChangeNotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/EventNotificationsCount,n=1;s=Subscription_3274624038.EventNotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/NotificationsCount,n=1;s=Subscription_3274624038.NotificationsCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/LatePublishRequestCount,n=1;s=Subscription_3274624038.LatePublishRequestCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/CurrentKeepAliveCount,n=1;s=Subscription_3274624038.CurrentKeepAliveCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/CurrentLifetimeCount,n=1;s=Subscription_3274624038.CurrentLifetimeCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/UnacknowledgedMessageCount,n=1;s=Subscription_3274624038.UnacknowledgedMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/DiscardedMessageCount,n=1;s=Subscription_3274624038.DiscardedMessageCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/MonitoredItemCount,n=1;s=Subscription_3274624038.MonitoredItemCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/DisabledMonitoredItemCount,n=1;s=Subscription_3274624038.DisabledMonitoredItemCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/MonitoringQueueOverflowCount,n=1;s=Subscription_3274624038.MonitoringQueueOverflowCount,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/NextSequenceNumber,n=1;s=Subscription_3274624038.NextSequenceNumber,currentRead,UInt32
/Objects/Server/ServerDiagnostics/SubscriptionDiagnosticsArray/3274624038/EventQueueOverFlowCount,n=1;s=Subscription_3274624038.EventQueueOverFlowCount,currentRead,UInt32
/Objects/Server/ServerRedundancy,n=0;,,
/Objects/Server/ServerRedundancy/RedundancySupport,n=0;i=3709,currentRead,RedundancySupport
/Objects/Server/ServerStatus,n=0;i=2256,currentRead,ServerStatusDataType
/Objects/Server/ServerStatus/BuildInfo,n=0;i=2260,currentRead,BuildInfo
/Objects/Server/ServerStatus/BuildInfo/BuildDate,n=0;i=2266,currentRead,DateTime
/Objects/Server/ServerStatus/BuildInfo/BuildNumber,n=0;i=2265,currentRead,String
/Objects/Server/ServerStatus/BuildInfo/ManufacturerName,n=0;i=2263,currentRead,String
/Objects/Server/ServerStatus/BuildInfo/ProductName,n=0;i=2261,currentRead,String
/Objects/Server/ServerStatus/BuildInfo/ProductUri,n=0;i=2262,currentRead,String
/Objects/Server/ServerStatus/BuildInfo/SoftwareVersion,n=0;i=2264,currentRead,String
/Objects/Server/ServerStatus/CurrentTime,n=0;i=2258,currentRead,DateTime
/Objects/Server/ServerStatus/SecondsTillShutdown,n=0;i=2992,currentRead,UInt32
/Objects/Server/ServerStatus/ShutdownReason,n=0;i=2993,currentRead,LocalizedText
/Objects/Server/ServerStatus/StartTime,n=0;i=2257,currentRead,DateTime
/Objects/Server/ServerStatus/State,n=0;i=2259,currentRead,ServerState
/Objects/Server/ServiceLevel,n=0;i=2267,currentRead,Byte
/Objects/Server/VendorServerInfo,n=0;,,
/Objects/Server/Machine,n=4;,,
/Objects/Server/Machine/HeaterSwitch,n=4;i=6257,currentRead + currentWrite,Boolean
/Objects/Server/Machine/TemperatureSensor,n=4;,,
/Objects/Server/Machine/TemperatureSensor/Temperature,n=4;i=6252,currentRead,Double
/Objects/Server/Machine/TemperatureSensor/Temperature/EURange,n=4;i=6253,currentRead,Range
/Objects/Server/Machine/TemperatureSensor,n=4;,,
/Objects/Server/Machine/TemperatureSensor/Temperature,n=4;i=6252,currentRead,Double
/Objects/Server/Machine/TemperatureSensor/Temperature/EURange,n=4;i=6253,currentRead,Range
/Objects/Server/SampleEventNotifier,n=4;,,
/Objects/Server/SampleEventNotifier/SampleEventSource,n=4;,,
/Objects/Server/SampleEventNotifier/SampleEventSource,n=4;,,
/Objects/DeviceSet,n=2;,,
/Objects/NetworkSet,n=2;,,
/Objects/DeviceTopology,n=2;,,
/Objects/DeviceTopology/OnlineAccess,n=2;i=6095,currentRead,Boolean
/Objects/Demo,n=4;,,
/Objects/Demo/Static,n=4;,,
/Objects/Demo/Static/Arrays,n=4;,,
/Objects/Demo/Static/Arrays/Boolean,n=4;s=Demo.Static.Arrays.Boolean,currentRead + currentWrite,Boolean
/Objects/Demo/Static/Arrays/Byte,n=4;s=Demo.Static.Arrays.Byte,currentRead + currentWrite,Byte
/Objects/Demo/Static/Arrays/ByteString,n=4;s=Demo.Static.Arrays.ByteString,currentRead + currentWrite,ByteString
/Objects/Demo/Static/Arrays/DateTime,n=4;s=Demo.Static.Arrays.DateTime,currentRead + currentWrite,DateTime
/Objects/Demo/Static/Arrays/Double,n=4;s=Demo.Static.Arrays.Double,currentRead + currentWrite,Double
/Objects/Demo/Static/Arrays/ExpandedNodeId,n=4;s=Demo.Static.Arrays.ExpandedNodeId,currentRead + currentWrite,ExpandedNodeId
/Objects/Demo/Static/Arrays/Float,n=4;s=Demo.Static.Arrays.Float,currentRead + currentWrite,Float
/Objects/Demo/Static/Arrays/Guid,n=4;s=Demo.Static.Arrays.Guid,currentRead + currentWrite,Guid
/Objects/Demo/Static/Arrays/Int16,n=4;s=Demo.Static.Arrays.Int16,currentRead + currentWrite,Int16
/Objects/Demo/Static/Arrays/Int32,n=4;s=Demo.Static.Arrays.Int32,currentRead + currentWrite,Int32
/Objects/Demo/Static/Arrays/Int64,n=4;s=Demo.Static.Arrays.Int64,currentRead + currentWrite,Int64
/Objects/Demo/Static/Arrays/LocalizedText,n=4;s=Demo.Static.Arrays.LocalizedText,currentRead + currentWrite,LocalizedText
/Objects/Demo/Static/Arrays/NodeId,n=4;s=Demo.Static.Arrays.NodeId,currentRead + currentWrite,NodeId
/Objects/Demo/Static/Arrays/QualifiedName,n=4;s=Demo.Static.Arrays.QualifiedName,currentRead + currentWrite,QualifiedName
/Objects/Demo/Static/Arrays/SByte,n=4;s=Demo.Static.Arrays.SByte,currentRead + currentWrite,SByte
/Objects/Demo/Static/Arrays/StatusCode,n=4;s=Demo.Static.Arrays.StatusCode,currentRead + currentWrite,StatusCode
/Objects/Demo/Static/Arrays/String,n=4;s=Demo.Static.Arrays.String,currentRead + currentWrite,String
/Objects/Demo/Static/Arrays/UInt16,n=4;s=Demo.Static.Arrays.UInt16,currentRead + currentWrite,UInt16
/Objects/Demo/Static/Arrays/UInt32,n=4;s=Demo.Static.Arrays.UInt32,currentRead + currentWrite,UInt32
/Objects/Demo/Static/Arrays/UInt64,n=4;s=Demo.Static.Arrays.UInt64,currentRead + currentWrite,UInt64
/Objects/Demo/Static/Arrays/Vector,n=4;s=Demo.Static.Arrays.Vector,currentRead + currentWrite,Vector
/Objects/Demo/Static/Arrays/XmlElement,n=4;s=Demo.Static.Arrays.XmlElement,currentRead + currentWrite,XmlElement
/Objects/Demo/Static/Matrix,n=4;,,
/Objects/Demo/Static/Matrix/Boolean,n=4;s=Demo.Static.Matrix.Boolean,currentRead + currentWrite,Boolean
/Objects/Demo/Static/Matrix/Byte,n=4;s=Demo.Static.Matrix.Byte,currentRead + currentWrite,Byte
/Objects/Demo/Static/Matrix/ByteString,n=4;s=Demo.Static.Matrix.ByteString,currentRead + currentWrite,ByteString
/Objects/Demo/Static/Matrix/DateTime,n=4;s=Demo.Static.Matrix.DateTime,currentRead + currentWrite,DateTime
/Objects/Demo/Static/Matrix/Double,n=4;s=Demo.Static.Matrix.Double,currentRead + currentWrite,Double
/Objects/Demo/Static/Matrix/ExpandedNodeId,n=4;s=Demo.Static.Matrix.ExpandedNodeId,currentRead + currentWrite,ExpandedNodeId
/Objects/Demo/Static/Matrix/Float,n=4;s=Demo.Static.Matrix.Float,currentRead + currentWrite,Float
/Objects/Demo/Static/Matrix/Guid,n=4;s=Demo.Static.Matrix.Guid,currentRead + currentWrite,Guid
/Objects/Demo/Static/Matrix/Int16,n=4;s=Demo.Static.Matrix.Int16,currentRead + currentWrite,Int16
/Objects/Demo/Static/Matrix/Int32,n=4;s=Demo.Static.Matrix.Int32,currentRead + currentWrite,Int32
/Objects/Demo/Static/Matrix/Int64,n=4;s=Demo.Static.Matrix.Int64,currentRead + currentWrite,Int64
/Objects/Demo/Static/Matrix/LocalizedText,n=4;s=Demo.Static.Matrix.LocalizedText,currentRead + currentWrite,LocalizedText
/Objects/Demo/Static/Matrix/NodeId,n=4;s=Demo.Static.Matrix.NodeId,currentRead + currentWrite,NodeId
/Objects/Demo/Static/Matrix/QualifiedName,n=4;s=Demo.Static.Matrix.QualifiedName,currentRead + currentWrite,QualifiedName
/Objects/Demo/Static/Matrix/SByte,n=4;s=Demo.Static.Matrix.SByte,currentRead + currentWrite,SByte
/Objects/Demo/Static/Matrix/StatusCode,n=4;s=Demo.Static.Matrix.StatusCode,currentRead + currentWrite,StatusCode
/Objects/Demo/Static/Matrix/String,n=4;s=Demo.Static.Matrix.String,currentRead + currentWrite,String
/Objects/Demo/Static/Matrix/UInt16,n=4;s=Demo.Static.Matrix.UInt16,currentRead + currentWrite,UInt16
/Objects/Demo/Static/Matrix/UInt32,n=4;s=Demo.Static.Matrix.UInt32,currentRead + currentWrite,UInt32
/Objects/Demo/Static/Matrix/UInt64,n=4;s=Demo.Static.Matrix.UInt64,currentRead + currentWrite,UInt64
/Objects/Demo/Static/Matrix/Vector,n=4;s=Demo.Static.Matrix.Vector,currentRead + currentWrite,Vector
/Objects/Demo/Static/Matrix/XmlElement,n=4;s=Demo.Static.Matrix.XmlElement,currentRead + currentWrite,XmlElement
/Objects/Demo/Static/Scalar,n=4;,,
/Objects/Demo/Static/Scalar/Boolean,n=4;s=Demo.Static.Scalar.Boolean,currentRead + currentWrite,Boolean
/Objects/Demo/Static/Scalar/Byte,n=4;s=Demo.Static.Scalar.Byte,currentRead + currentWrite,Byte
/Objects/Demo/Static/Scalar/ByteString,n=4;s=Demo.Static.Scalar.ByteString,currentRead + currentWrite,ByteString
/Objects/Demo/Static/Scalar/DateTime,n=4;s=Demo.Static.Scalar.DateTime,currentRead + currentWrite,DateTime
/Objects/Demo/Static/Scalar/Double,n=4;s=Demo.Static.Scalar.Double,currentRead + currentWrite,Double
/Objects/Demo/Static/Scalar/ExpandedNodeId,n=4;s=Demo.Static.Scalar.ExpandedNodeId,currentRead + currentWrite,ExpandedNodeId
/Objects/Demo/Static/Scalar/Float,n=4;s=Demo.Static.Scalar.Float,currentRead + currentWrite,Float
/Objects/Demo/Static/Scalar/Guid,n=4;s=Demo.Static.Scalar.Guid,currentRead + currentWrite,Guid
/Objects/Demo/Static/Scalar/Int16,n=4;s=Demo.Static.Scalar.Int16,currentRead + currentWrite,Int16
/Objects/Demo/Static/Scalar/Int32,n=4;s=Demo.Static.Scalar.Int32,currentRead + currentWrite,Int32
/Objects/Demo/Static/Scalar/Int64,n=4;s=Demo.Static.Scalar.Int64,currentRead + currentWrite,Int64
/Objects/Demo/Static/Scalar/LocalizedText,n=4;s=Demo.Static.Scalar.LocalizedText,currentRead + currentWrite,LocalizedText
/Objects/Demo/Static/Scalar/NodeId,n=4;s=Demo.Static.Scalar.NodeId,currentRead + currentWrite,NodeId
/Objects/Demo/Static/Scalar/QualifiedName,n=4;s=Demo.Static.Scalar.QualifiedName,currentRead + currentWrite,QualifiedName
/Objects/Demo/Static/Scalar/SByte,n=4;s=Demo.Static.Scalar.SByte,currentRead + currentWrite,SByte
/Objects/Demo/Static/Scalar/StatusCode,n=4;s=Demo.Static.Scalar.StatusCode,currentRead + currentWrite,StatusCode
/Objects/Demo/Static/Scalar/String,n=4;s=Demo.Static.Scalar.String,currentRead + currentWrite,String
/Objects/Demo/Static/Scalar/UInt16,n=4;s=Demo.Static.Scalar.UInt16,currentRead + currentWrite,UInt16
/Objects/Demo/Static/Scalar/UInt32,n=4;s=Demo.Static.Scalar.UInt32,currentRead + currentWrite,UInt32
/Objects/Demo/Static/Scalar/UInt64,n=4;s=Demo.Static.Scalar.UInt64,currentRead + currentWrite,UInt64
/Objects/Demo/Static/Scalar/Vector,n=4;s=Demo.Static.Scalar.Vector,currentRead + currentWrite,Vector
/Objects/Demo/Static/Scalar/XmlElement,n=4;s=Demo.Static.Scalar.XmlElement,currentRead + currentWrite,XmlElement
/Objects/Demo/Dynamic,n=4;,,
/Objects/Demo/Dynamic/Arrays,n=4;,,
/Objects/Demo/Dynamic/Arrays/Boolean,n=4;s=Demo.Dynamic.Arrays.Boolean,currentRead + currentWrite,Boolean
/Objects/Demo/Dynamic/Arrays/Byte,n=4;s=Demo.Dynamic.Arrays.Byte,currentRead + currentWrite,Byte
/Objects/Demo/Dynamic/Arrays/ByteString,n=4;s=Demo.Dynamic.Arrays.ByteString,currentRead + currentWrite,ByteString
/Objects/Demo/Dynamic/Arrays/DateTime,n=4;s=Demo.Dynamic.Arrays.DateTime,currentRead + currentWrite,DateTime
/Objects/Demo/Dynamic/Arrays/Double,n=4;s=Demo.Dynamic.Arrays.Double,currentRead + currentWrite,Double
/Objects/Demo/Dynamic/Arrays/ExpandedNodeId,n=4;s=Demo.Dynamic.Arrays.ExpandedNodeId,currentRead + currentWrite,ExpandedNodeId
/Objects/Demo/Dynamic/Arrays/Float,n=4;s=Demo.Dynamic.Arrays.Float,currentRead + currentWrite,Float
/Objects/Demo/Dynamic/Arrays/Guid,n=4;s=Demo.Dynamic.Arrays.Guid,currentRead + currentWrite,Guid
/Objects/Demo/Dynamic/Arrays/Int16,n=4;s=Demo.Dynamic.Arrays.Int16,currentRead + currentWrite,Int16
/Objects/Demo/Dynamic/Arrays/Int32,n=4;s=Demo.Dynamic.Arrays.Int32,currentRead + currentWrite,Int32
/Objects/Demo/Dynamic/Arrays/Int64,n=4;s=Demo.Dynamic.Arrays.Int64,currentRead + currentWrite,Int64
/Objects/Demo/Dynamic/Arrays/LocalizedText,n=4;s=Demo.Dynamic.Arrays.LocalizedText,currentRead + currentWrite,LocalizedText
/Objects/Demo/Dynamic/Arrays/NodeId,n=4;s=Demo.Dynamic.Arrays.NodeId,currentRead + currentWrite,NodeId
/Objects/Demo/Dynamic/Arrays/QualifiedName,n=4;s=Demo.Dynamic.Arrays.QualifiedName,currentRead + currentWrite,QualifiedName
/Objects/Demo/Dynamic/Arrays/SByte,n=4;s=Demo.Dynamic.Arrays.SByte,currentRead + currentWrite,SByte
/Objects/Demo/Dynamic/Arrays/StatusCode,n=4;s=Demo.Dynamic.Arrays.StatusCode,currentRead + currentWrite,StatusCode
/Objects/Demo/Dynamic/Arrays/String,n=4;s=Demo.Dynamic.Arrays.String,currentRead + currentWrite,String
/Objects/Demo/Dynamic/Arrays/UInt16,n=4;s=Demo.Dynamic.Arrays.UInt16,currentRead + currentWrite,UInt16
/Objects/Demo/Dynamic/Arrays/UInt32,n=4;s=Demo.Dynamic.Arrays.UInt32,currentRead + currentWrite,UInt32
/Objects/Demo/Dynamic/Arrays/UInt64,n=4;s=Demo.Dynamic.Arrays.UInt64,currentRead + currentWrite,UInt64
/Objects/Demo/Dynamic/Arrays/XmlElement,n=4;s=Demo.Dynamic.Arrays.XmlElement,currentRead + currentWrite,XmlElement
/Objects/Demo/Dynamic/Scalar,n=4;,,
/Objects/Demo/Dynamic/Scalar/Boolean,n=4;s=Demo.Dynamic.Scalar.Boolean,currentRead + currentWrite,Boolean
/Objects/Demo/Dynamic/Scalar/Byte,n=4;s=Demo.Dynamic.Scalar.Byte,currentRead + currentWrite,Byte
/Objects/Demo/Dynamic/Scalar/ByteString,n=4;s=Demo.Dynamic.Scalar.ByteString,currentRead + currentWrite,ByteString
/Objects/Demo/Dynamic/Scalar/DateTime,n=4;s=Demo.Dynamic.Scalar.DateTime,currentRead + currentWrite,DateTime
/Objects/Demo/Dynamic/Scalar/Double,n=4;s=Demo.Dynamic.Scalar.Double,currentRead + currentWrite,Double
/Objects/Demo/Dynamic/Scalar/ExpandedNodeId,n=4;s=Demo.Dynamic.Scalar.ExpandedNodeId,currentRead + currentWrite,ExpandedNodeId
/Objects/Demo/Dynamic/Scalar/Float,n=4;s=Demo.Dynamic.Scalar.Float,currentRead + currentWrite,Float
/Objects/Demo/Dynamic/Scalar/Guid,n=4;s=Demo.Dynamic.Scalar.Guid,currentRead + currentWrite,Guid
/Objects/Demo/Dynamic/Scalar/Int16,n=4;s=Demo.Dynamic.Scalar.Int16,currentRead + currentWrite,Int16
/Objects/Demo/Dynamic/Scalar/Int32,n=4;s=Demo.Dynamic.Scalar.Int32,currentRead + currentWrite,Int32
/Objects/Demo/Dynamic/Scalar/Int64,n=4;s=Demo.Dynamic.Scalar.Int64,currentRead + currentWrite,Int64
/Objects/Demo/Dynamic/Scalar/LocalizedText,n=4;s=Demo.Dynamic.Scalar.LocalizedText,currentRead + currentWrite,LocalizedText
/Objects/Demo/Dynamic/Scalar/NodeId,n=4;s=Demo.Dynamic.Scalar.NodeId,currentRead + currentWrite,NodeId
/Objects/Demo/Dynamic/Scalar/QualifiedName,n=4;s=Demo.Dynamic.Scalar.QualifiedName,currentRead + currentWrite,QualifiedName
/Objects/Demo/Dynamic/Scalar/SByte,n=4;s=Demo.Dynamic.Scalar.SByte,currentRead + currentWrite,SByte
/Objects/Demo/Dynamic/Scalar/StatusCode,n=4;s=Demo.Dynamic.Scalar.StatusCode,currentRead + currentWrite,StatusCode
/Objects/Demo/Dynamic/Scalar/String,n=4;s=Demo.Dynamic.Scalar.String,currentRead + currentWrite,String
/Objects/Demo/Dynamic/Scalar/UInt16,n=4;s=Demo.Dynamic.Scalar.UInt16,currentRead + currentWrite,UInt16
/Objects/Demo/Dynamic/Scalar/UInt32,n=4;s=Demo.Dynamic.Scalar.UInt32,currentRead + currentWrite,UInt32
/Objects/Demo/Dynamic/Scalar/UInt64,n=4;s=Demo.Dynamic.Scalar.UInt64,currentRead + currentWrite,UInt64
/Objects/Demo/Dynamic/Scalar/XmlElement,n=4;s=Demo.Dynamic.Scalar.XmlElement,currentRead + currentWrite,XmlElement
/Objects/Demo/History,n=4;,,
/Objects/Demo/History/ByteWithHistory,n=4;s=Demo.History.ByteWithHistory,7,Byte
/Objects/Demo/History/DataLoggerActive,n=4;s=Demo.History.DataLoggerActive,currentRead + currentWrite,Boolean
/Objects/Demo/History/DoubleWithHistory,n=4;s=Demo.History.DoubleWithHistory,7,Double
/Objects/Demo/History/StartLogging,n=4;,,
/Objects/Demo/History/StopLogging,n=4;,,
/Objects/Demo/Method,n=4;,,
/Objects/Demo/Method/Multiply,n=4;,,
/Objects/Demo/Method/Multiply/InputArguments,n=4;i=6176,currentRead,Argument
/Objects/Demo/Method/Multiply/OutputArguments,n=4;i=6177,currentRead,Argument
/Objects/Demo/Method/VectorAdd,n=4;,,
/Objects/Demo/Method/VectorAdd/InputArguments,n=4;i=6187,currentRead,Argument
/Objects/Demo/Method/VectorAdd/OutputArguments,n=4;i=6188,currentRead,Argument
/Objects/Demo/Events,n=4;,,
/Objects/Demo/Events/Machine,n=4;,,
/Objects/Demo/Events/Machine/HeaterSwitch,n=4;i=6257,currentRead + currentWrite,Boolean
/Objects/Demo/Events/Machine/TemperatureSensor,n=4;,,
/Objects/Demo/Events/Machine/TemperatureSensor/Temperature,n=4;i=6252,currentRead,Double
/Objects/Demo/Events/Machine/TemperatureSensor/Temperature/EURange,n=4;i=6253,currentRead,Range
/Objects/Demo/Events/Machine/TemperatureSensor,n=4;,,
/Objects/Demo/Events/Machine/TemperatureSensor/Temperature,n=4;i=6252,currentRead,Double
/Objects/Demo/Events/Machine/TemperatureSensor/Temperature/EURange,n=4;i=6253,currentRead,Range
/Objects/Demo/Events/SampleEventNotifier,n=4;,,
/Objects/Demo/Events/SampleEventNotifier/SampleEventSource,n=4;,,
/Objects/Demo/Events/SampleEventNotifier/SampleEventSource,n=4;,,
/Objects/Demo/Events/Trigger_BaseEvent,n=4;i=6254,currentRead + currentWrite,Boolean
/Objects/Demo/Events/Trigger_SampleEvent,n=4;i=6255,currentRead + currentWrite,Boolean
/Objects/Demo/AccessRights,n=4;,,
/Objects/Demo/AccessRights/Access_All,n=4;,,
/Objects/Demo/AccessRights/Access_All/TestVar_RO,n=4;i=6236,currentRead + currentWrite,UInt32
/Objects/Demo/AccessRights/Access_All/TestVar_RO_John_RW,n=4;i=6237,currentRead + currentWrite,UInt32
/Objects/Demo/AccessRights/Access_All/TestVar_RO_Operators_RW,n=4;i=6238,currentRead + currentWrite,UInt32
/Objects/Demo/AccessRights/Access_All/TestVar_RW,n=4;i=6239,currentRead + currentWrite,UInt32
/Objects/Demo/AccessRights/Access_All/TestVar_WO,n=4;i=6240,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static,n=4;,,
/Objects/Demo/Massfolder_Static/Variable000,n=4;i=20000,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable001,n=4;i=20001,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable002,n=4;i=20002,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable003,n=4;i=20003,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable004,n=4;i=20004,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable005,n=4;i=20005,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable006,n=4;i=20006,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable007,n=4;i=20007,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable008,n=4;i=20008,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable009,n=4;i=20009,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable010,n=4;i=20010,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable011,n=4;i=20011,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable012,n=4;i=20012,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable013,n=4;i=20013,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable014,n=4;i=20014,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable015,n=4;i=20015,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable016,n=4;i=20016,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable017,n=4;i=20017,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable018,n=4;i=20018,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable019,n=4;i=20019,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable020,n=4;i=20020,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable021,n=4;i=20021,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable022,n=4;i=20022,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable023,n=4;i=20023,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable024,n=4;i=20024,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable025,n=4;i=20025,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable026,n=4;i=20026,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable027,n=4;i=20027,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable028,n=4;i=20028,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable029,n=4;i=20029,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable030,n=4;i=20030,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable031,n=4;i=20031,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable032,n=4;i=20032,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable033,n=4;i=20033,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable034,n=4;i=20034,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable035,n=4;i=20035,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable036,n=4;i=20036,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable037,n=4;i=20037,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable038,n=4;i=20038,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable039,n=4;i=20039,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable040,n=4;i=20040,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable041,n=4;i=20041,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable042,n=4;i=20042,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable043,n=4;i=20043,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable044,n=4;i=20044,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable045,n=4;i=20045,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable046,n=4;i=20046,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable047,n=4;i=20047,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable048,n=4;i=20048,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable049,n=4;i=20049,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable050,n=4;i=20050,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable051,n=4;i=20051,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable052,n=4;i=20052,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable053,n=4;i=20053,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable054,n=4;i=20054,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable055,n=4;i=20055,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable056,n=4;i=20056,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable057,n=4;i=20057,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable058,n=4;i=20058,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable059,n=4;i=20059,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable060,n=4;i=20060,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable061,n=4;i=20061,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable062,n=4;i=20062,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable063,n=4;i=20063,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable064,n=4;i=20064,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable065,n=4;i=20065,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable066,n=4;i=20066,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable067,n=4;i=20067,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable068,n=4;i=20068,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable069,n=4;i=20069,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable070,n=4;i=20070,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable071,n=4;i=20071,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable072,n=4;i=20072,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable073,n=4;i=20073,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable074,n=4;i=20074,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable075,n=4;i=20075,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable076,n=4;i=20076,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable077,n=4;i=20077,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable078,n=4;i=20078,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable079,n=4;i=20079,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable080,n=4;i=20080,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable081,n=4;i=20081,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable082,n=4;i=20082,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable083,n=4;i=20083,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable084,n=4;i=20084,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable085,n=4;i=20085,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable086,n=4;i=20086,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable087,n=4;i=20087,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable088,n=4;i=20088,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable089,n=4;i=20089,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable090,n=4;i=20090,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable091,n=4;i=20091,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable092,n=4;i=20092,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable093,n=4;i=20093,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable094,n=4;i=20094,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable095,n=4;i=20095,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable096,n=4;i=20096,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable097,n=4;i=20097,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable098,n=4;i=20098,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable099,n=4;i=20099,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable100,n=4;i=20100,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable101,n=4;i=20101,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable102,n=4;i=20102,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable103,n=4;i=20103,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable104,n=4;i=20104,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable105,n=4;i=20105,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable106,n=4;i=20106,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable107,n=4;i=20107,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable108,n=4;i=20108,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable109,n=4;i=20109,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable110,n=4;i=20110,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable111,n=4;i=20111,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable112,n=4;i=20112,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable113,n=4;i=20113,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable114,n=4;i=20114,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable115,n=4;i=20115,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable116,n=4;i=20116,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable117,n=4;i=20117,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable118,n=4;i=20118,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable119,n=4;i=20119,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable120,n=4;i=20120,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable121,n=4;i=20121,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable122,n=4;i=20122,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable123,n=4;i=20123,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable124,n=4;i=20124,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable125,n=4;i=20125,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable126,n=4;i=20126,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable127,n=4;i=20127,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable128,n=4;i=20128,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable129,n=4;i=20129,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable130,n=4;i=20130,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable131,n=4;i=20131,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable132,n=4;i=20132,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable133,n=4;i=20133,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable134,n=4;i=20134,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable135,n=4;i=20135,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable136,n=4;i=20136,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable137,n=4;i=20137,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable138,n=4;i=20138,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable139,n=4;i=20139,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable140,n=4;i=20140,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable141,n=4;i=20141,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable142,n=4;i=20142,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable143,n=4;i=20143,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable144,n=4;i=20144,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable145,n=4;i=20145,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable146,n=4;i=20146,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable147,n=4;i=20147,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable148,n=4;i=20148,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable149,n=4;i=20149,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable150,n=4;i=20150,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable151,n=4;i=20151,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable152,n=4;i=20152,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable153,n=4;i=20153,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable154,n=4;i=20154,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable155,n=4;i=20155,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable156,n=4;i=20156,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable157,n=4;i=20157,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable158,n=4;i=20158,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable159,n=4;i=20159,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable160,n=4;i=20160,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable161,n=4;i=20161,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable162,n=4;i=20162,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable163,n=4;i=20163,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable164,n=4;i=20164,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable165,n=4;i=20165,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable166,n=4;i=20166,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable167,n=4;i=20167,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable168,n=4;i=20168,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable169,n=4;i=20169,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable170,n=4;i=20170,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable171,n=4;i=20171,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable172,n=4;i=20172,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable173,n=4;i=20173,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable174,n=4;i=20174,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable175,n=4;i=20175,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable176,n=4;i=20176,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable177,n=4;i=20177,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable178,n=4;i=20178,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable179,n=4;i=20179,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable180,n=4;i=20180,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable181,n=4;i=20181,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable182,n=4;i=20182,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable183,n=4;i=20183,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable184,n=4;i=20184,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable185,n=4;i=20185,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable186,n=4;i=20186,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable187,n=4;i=20187,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable188,n=4;i=20188,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable189,n=4;i=20189,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable190,n=4;i=20190,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable191,n=4;i=20191,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable192,n=4;i=20192,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable193,n=4;i=20193,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable194,n=4;i=20194,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable195,n=4;i=20195,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable196,n=4;i=20196,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable197,n=4;i=20197,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable198,n=4;i=20198,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable199,n=4;i=20199,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable200,n=4;i=20200,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable201,n=4;i=20201,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable202,n=4;i=20202,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable203,n=4;i=20203,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable204,n=4;i=20204,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable205,n=4;i=20205,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable206,n=4;i=20206,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable207,n=4;i=20207,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable208,n=4;i=20208,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable209,n=4;i=20209,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable210,n=4;i=20210,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable211,n=4;i=20211,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable212,n=4;i=20212,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable213,n=4;i=20213,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable214,n=4;i=20214,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable215,n=4;i=20215,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable216,n=4;i=20216,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable217,n=4;i=20217,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable218,n=4;i=20218,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable219,n=4;i=20219,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable220,n=4;i=20220,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable221,n=4;i=20221,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable222,n=4;i=20222,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable223,n=4;i=20223,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable224,n=4;i=20224,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable225,n=4;i=20225,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable226,n=4;i=20226,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable227,n=4;i=20227,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable228,n=4;i=20228,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable229,n=4;i=20229,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable230,n=4;i=20230,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable231,n=4;i=20231,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable232,n=4;i=20232,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable233,n=4;i=20233,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable234,n=4;i=20234,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable235,n=4;i=20235,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable236,n=4;i=20236,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable237,n=4;i=20237,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable238,n=4;i=20238,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable239,n=4;i=20239,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable240,n=4;i=20240,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable241,n=4;i=20241,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable242,n=4;i=20242,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable243,n=4;i=20243,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable244,n=4;i=20244,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable245,n=4;i=20245,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable246,n=4;i=20246,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable247,n=4;i=20247,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable248,n=4;i=20248,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable249,n=4;i=20249,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable250,n=4;i=20250,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable251,n=4;i=20251,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable252,n=4;i=20252,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable253,n=4;i=20253,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable254,n=4;i=20254,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable255,n=4;i=20255,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable256,n=4;i=20256,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable257,n=4;i=20257,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable258,n=4;i=20258,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable259,n=4;i=20259,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable260,n=4;i=20260,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable261,n=4;i=20261,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable262,n=4;i=20262,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable263,n=4;i=20263,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable264,n=4;i=20264,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable265,n=4;i=20265,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable266,n=4;i=20266,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable267,n=4;i=20267,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable268,n=4;i=20268,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable269,n=4;i=20269,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable270,n=4;i=20270,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable271,n=4;i=20271,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable272,n=4;i=20272,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable273,n=4;i=20273,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable274,n=4;i=20274,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable275,n=4;i=20275,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable276,n=4;i=20276,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable277,n=4;i=20277,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable278,n=4;i=20278,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable279,n=4;i=20279,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable280,n=4;i=20280,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable281,n=4;i=20281,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable282,n=4;i=20282,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable283,n=4;i=20283,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable284,n=4;i=20284,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable285,n=4;i=20285,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable286,n=4;i=20286,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable287,n=4;i=20287,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable288,n=4;i=20288,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable289,n=4;i=20289,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable290,n=4;i=20290,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable291,n=4;i=20291,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable292,n=4;i=20292,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable293,n=4;i=20293,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable294,n=4;i=20294,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable295,n=4;i=20295,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable296,n=4;i=20296,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable297,n=4;i=20297,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable298,n=4;i=20298,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable299,n=4;i=20299,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable300,n=4;i=20300,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable301,n=4;i=20301,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable302,n=4;i=20302,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable303,n=4;i=20303,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable304,n=4;i=20304,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable305,n=4;i=20305,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable306,n=4;i=20306,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable307,n=4;i=20307,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable308,n=4;i=20308,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable309,n=4;i=20309,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable310,n=4;i=20310,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable311,n=4;i=20311,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable312,n=4;i=20312,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable313,n=4;i=20313,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable314,n=4;i=20314,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable315,n=4;i=20315,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable316,n=4;i=20316,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable317,n=4;i=20317,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable318,n=4;i=20318,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable319,n=4;i=20319,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable320,n=4;i=20320,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable321,n=4;i=20321,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable322,n=4;i=20322,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable323,n=4;i=20323,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable324,n=4;i=20324,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable325,n=4;i=20325,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable326,n=4;i=20326,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable327,n=4;i=20327,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable328,n=4;i=20328,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable329,n=4;i=20329,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable330,n=4;i=20330,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable331,n=4;i=20331,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable332,n=4;i=20332,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable333,n=4;i=20333,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable334,n=4;i=20334,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable335,n=4;i=20335,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable336,n=4;i=20336,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable337,n=4;i=20337,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable338,n=4;i=20338,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable339,n=4;i=20339,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable340,n=4;i=20340,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable341,n=4;i=20341,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable342,n=4;i=20342,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable343,n=4;i=20343,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable344,n=4;i=20344,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable345,n=4;i=20345,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable346,n=4;i=20346,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable347,n=4;i=20347,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable348,n=4;i=20348,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable349,n=4;i=20349,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable350,n=4;i=20350,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable351,n=4;i=20351,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable352,n=4;i=20352,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable353,n=4;i=20353,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable354,n=4;i=20354,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable355,n=4;i=20355,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable356,n=4;i=20356,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable357,n=4;i=20357,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable358,n=4;i=20358,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable359,n=4;i=20359,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable360,n=4;i=20360,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable361,n=4;i=20361,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable362,n=4;i=20362,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable363,n=4;i=20363,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable364,n=4;i=20364,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable365,n=4;i=20365,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable366,n=4;i=20366,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable367,n=4;i=20367,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable368,n=4;i=20368,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable369,n=4;i=20369,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable370,n=4;i=20370,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable371,n=4;i=20371,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable372,n=4;i=20372,currentRead + currentWrite,UInt32
/Objects/Demo/Massfolder_Static/Variable373,n=4;i=20373,currentRead + currentWrite,UInt32