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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
|
Pixel/Barrel/Shell_mI/Layer_1/Ladder_01H/Module_1 302056720 20 9 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_01H/Module_2 302056716 20 8 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_01H/Module_3 302056712 20 7 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_01H/Module_4 302056708 20 3 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_02F/Module_1 302056464 23 22 23
Pixel/Barrel/Shell_mI/Layer_1/Ladder_02F/Module_2 302056460 20 5 6
Pixel/Barrel/Shell_mI/Layer_1/Ladder_02F/Module_3 302056456 20 12 4
Pixel/Barrel/Shell_mI/Layer_1/Ladder_02F/Module_4 302056452 20 10 11
Pixel/Barrel/Shell_mI/Layer_1/Ladder_03F/Module_1 302056208 22 10 11
Pixel/Barrel/Shell_mI/Layer_1/Ladder_03F/Module_2 302056204 22 12 4
Pixel/Barrel/Shell_mI/Layer_1/Ladder_03F/Module_3 302056200 22 5 6
Pixel/Barrel/Shell_mI/Layer_1/Ladder_03F/Module_4 302056196 22 22 23
Pixel/Barrel/Shell_mI/Layer_1/Ladder_04F/Module_1 302055952 21 22 23
Pixel/Barrel/Shell_mI/Layer_1/Ladder_04F/Module_2 302055948 21 5 6
Pixel/Barrel/Shell_mI/Layer_1/Ladder_04F/Module_3 302055944 21 12 4
Pixel/Barrel/Shell_mI/Layer_1/Ladder_04F/Module_4 302055940 21 10 11
Pixel/Barrel/Shell_mI/Layer_1/Ladder_05F/Module_1 302055696 20 22 23
Pixel/Barrel/Shell_mI/Layer_1/Ladder_05F/Module_2 302055692 23 5 6
Pixel/Barrel/Shell_mI/Layer_1/Ladder_05F/Module_3 302055688 23 12 4
Pixel/Barrel/Shell_mI/Layer_1/Ladder_05F/Module_4 302055684 23 10 11
Pixel/Barrel/Shell_mI/Layer_1/Ladder_06F/Module_1 302060560 27 8 9
Pixel/Barrel/Shell_mI/Layer_1/Ladder_06F/Module_2 302060556 27 3 7
Pixel/Barrel/Shell_mI/Layer_1/Ladder_06F/Module_3 302060552 27 1 2
Pixel/Barrel/Shell_mI/Layer_1/Ladder_06F/Module_4 302060548 27 20 21
Pixel/Barrel/Shell_mI/Layer_1/Ladder_07F/Module_1 302060304 26 8 9
Pixel/Barrel/Shell_mI/Layer_1/Ladder_07F/Module_2 302060300 26 3 7
Pixel/Barrel/Shell_mI/Layer_1/Ladder_07F/Module_3 302060296 26 1 2
Pixel/Barrel/Shell_mI/Layer_1/Ladder_07F/Module_4 302060292 26 20 21
Pixel/Barrel/Shell_mI/Layer_1/Ladder_08F/Module_1 302060048 25 20 21
Pixel/Barrel/Shell_mI/Layer_1/Ladder_08F/Module_2 302060044 25 1 2
Pixel/Barrel/Shell_mI/Layer_1/Ladder_08F/Module_3 302060040 25 3 7
Pixel/Barrel/Shell_mI/Layer_1/Ladder_08F/Module_4 302060036 25 8 9
Pixel/Barrel/Shell_mI/Layer_1/Ladder_09F/Module_1 302059792 24 8 9
Pixel/Barrel/Shell_mI/Layer_1/Ladder_09F/Module_2 302059788 24 3 7
Pixel/Barrel/Shell_mI/Layer_1/Ladder_09F/Module_3 302059784 24 1 2
Pixel/Barrel/Shell_mI/Layer_1/Ladder_09F/Module_4 302059780 24 20 21
Pixel/Barrel/Shell_mI/Layer_1/Ladder_10H/Module_1 302059536 24 4 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_10H/Module_2 302059532 24 12 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_10H/Module_3 302059528 24 11 0
Pixel/Barrel/Shell_mI/Layer_1/Ladder_10H/Module_4 302059524 24 10 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_01H/Module_1 302123024 23 20 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_01H/Module_2 302123020 23 21 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_01H/Module_3 302123016 20 1 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_01H/Module_4 302123012 20 2 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_02F/Module_1 302122768 23 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_02F/Module_2 302122764 23 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_02F/Module_3 302122760 23 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_02F/Module_4 302122756 23 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_03F/Module_1 302122512 22 20 21
Pixel/Barrel/Shell_mI/Layer_2/Ladder_03F/Module_2 302122508 22 1 2
Pixel/Barrel/Shell_mI/Layer_2/Ladder_03F/Module_3 302122504 22 9 8
Pixel/Barrel/Shell_mI/Layer_2/Ladder_03F/Module_4 302122500 22 7 3
Pixel/Barrel/Shell_mI/Layer_2/Ladder_04F/Module_1 302122256 22 18 13
Pixel/Barrel/Shell_mI/Layer_2/Ladder_04F/Module_2 302122252 22 17 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_04F/Module_3 302122248 22 16 15
Pixel/Barrel/Shell_mI/Layer_2/Ladder_04F/Module_4 302122244 22 24 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_05F/Module_1 302122000 21 20 21
Pixel/Barrel/Shell_mI/Layer_2/Ladder_05F/Module_2 302121996 21 1 2
Pixel/Barrel/Shell_mI/Layer_2/Ladder_05F/Module_3 302121992 21 3 7
Pixel/Barrel/Shell_mI/Layer_2/Ladder_05F/Module_4 302121988 21 8 9
Pixel/Barrel/Shell_mI/Layer_2/Ladder_06F/Module_1 302121744 21 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_06F/Module_2 302121740 21 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_06F/Module_3 302121736 21 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_06F/Module_4 302121732 21 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_07F/Module_1 302121488 20 9 20
Pixel/Barrel/Shell_mI/Layer_2/Ladder_07F/Module_2 302121484 20 8 21
Pixel/Barrel/Shell_mI/Layer_2/Ladder_07F/Module_3 302121480 23 7 1
Pixel/Barrel/Shell_mI/Layer_2/Ladder_07F/Module_4 302121476 23 3 2
Pixel/Barrel/Shell_mI/Layer_2/Ladder_08F/Module_1 302121232 20 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_08F/Module_2 302121228 20 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_08F/Module_3 302121224 20 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_08F/Module_4 302121220 20 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_09F/Module_1 302129168 27 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_09F/Module_2 302129164 27 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_09F/Module_3 302129160 27 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_09F/Module_4 302129156 27 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_10F/Module_1 302128912 27 4 5
Pixel/Barrel/Shell_mI/Layer_2/Ladder_10F/Module_2 302128908 27 12 6
Pixel/Barrel/Shell_mI/Layer_2/Ladder_10F/Module_3 302128904 27 11 22
Pixel/Barrel/Shell_mI/Layer_2/Ladder_10F/Module_4 302128900 27 10 23
Pixel/Barrel/Shell_mI/Layer_2/Ladder_11F/Module_1 302128656 26 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_11F/Module_2 302128652 26 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_11F/Module_3 302128648 26 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_11F/Module_4 302128644 26 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_12F/Module_1 302128400 26 10 11
Pixel/Barrel/Shell_mI/Layer_2/Ladder_12F/Module_2 302128396 26 12 4
Pixel/Barrel/Shell_mI/Layer_2/Ladder_12F/Module_3 302128392 26 5 6
Pixel/Barrel/Shell_mI/Layer_2/Ladder_12F/Module_4 302128388 26 22 23
Pixel/Barrel/Shell_mI/Layer_2/Ladder_13F/Module_1 302128144 25 19 24
Pixel/Barrel/Shell_mI/Layer_2/Ladder_13F/Module_2 302128140 25 15 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_13F/Module_3 302128136 25 14 17
Pixel/Barrel/Shell_mI/Layer_2/Ladder_13F/Module_4 302128132 25 13 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_14F/Module_1 302127888 25 4 12
Pixel/Barrel/Shell_mI/Layer_2/Ladder_14F/Module_2 302127884 25 11 10
Pixel/Barrel/Shell_mI/Layer_2/Ladder_14F/Module_3 302127880 25 5 6
Pixel/Barrel/Shell_mI/Layer_2/Ladder_14F/Module_4 302127876 25 22 23
Pixel/Barrel/Shell_mI/Layer_2/Ladder_15F/Module_1 302127632 24 15 19
Pixel/Barrel/Shell_mI/Layer_2/Ladder_15F/Module_2 302127628 24 13 14
Pixel/Barrel/Shell_mI/Layer_2/Ladder_15F/Module_3 302127624 24 17 18
Pixel/Barrel/Shell_mI/Layer_2/Ladder_15F/Module_4 302127620 24 24 16
Pixel/Barrel/Shell_mI/Layer_2/Ladder_16H/Module_1 302127376 24 5 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_16H/Module_2 302127372 24 6 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_16H/Module_3 302127368 24 22 0
Pixel/Barrel/Shell_mI/Layer_2/Ladder_16H/Module_4 302127364 24 23 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_01H/Module_1 302189328 23 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_01H/Module_2 302189324 23 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_01H/Module_3 302189320 23 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_01H/Module_4 302189316 23 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_02F/Module_1 302189072 23 29 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_02F/Module_2 302189068 23 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_02F/Module_3 302189064 23 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_02F/Module_4 302189060 23 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_03F/Module_1 302188816 23 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_03F/Module_2 302188812 23 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_03F/Module_3 302188808 23 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_03F/Module_4 302188804 23 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_04F/Module_1 302188560 22 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_04F/Module_2 302188556 22 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_04F/Module_3 302188552 22 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_04F/Module_4 302188548 22 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_05F/Module_1 302188304 22 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_05F/Module_2 302188300 22 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_05F/Module_3 302188296 22 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_05F/Module_4 302188292 22 29 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_06F/Module_1 302188048 22 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_06F/Module_2 302188044 22 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_06F/Module_3 302188040 22 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_06F/Module_4 302188036 22 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_07F/Module_1 302187792 21 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_07F/Module_2 302187788 21 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_07F/Module_3 302187784 21 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_07F/Module_4 302187780 21 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_08F/Module_1 302187536 21 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_08F/Module_2 302187532 21 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_08F/Module_3 302187528 21 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_08F/Module_4 302187524 21 29 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_09F/Module_1 302187280 21 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_09F/Module_2 302187276 21 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_09F/Module_3 302187272 21 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_09F/Module_4 302187268 21 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_10F/Module_1 302187024 20 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_10F/Module_2 302187020 20 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_10F/Module_3 302187016 20 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_10F/Module_4 302187012 20 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_11F/Module_1 302186768 20 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_11F/Module_2 302186764 20 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_11F/Module_3 302186760 20 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_11F/Module_4 302186756 20 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_12F/Module_1 302197776 27 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_12F/Module_2 302197772 27 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_12F/Module_3 302197768 27 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_12F/Module_4 302197764 27 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_13F/Module_1 302197520 27 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_13F/Module_2 302197516 27 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_13F/Module_3 302197512 27 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_13F/Module_4 302197508 27 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_14F/Module_1 302197264 26 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_14F/Module_2 302197260 26 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_14F/Module_3 302197256 26 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_14F/Module_4 302197252 26 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_15F/Module_1 302197008 26 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_15F/Module_2 302197004 26 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_15F/Module_3 302197000 26 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_15F/Module_4 302196996 26 29 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_16F/Module_1 302196752 26 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_16F/Module_2 302196748 26 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_16F/Module_3 302196744 26 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_16F/Module_4 302196740 26 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_17F/Module_1 302196496 25 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_17F/Module_2 302196492 25 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_17F/Module_3 302196488 25 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_17F/Module_4 302196484 25 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_18F/Module_1 302196240 25 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_18F/Module_2 302196236 25 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_18F/Module_3 302196232 25 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_18F/Module_4 302196228 25 29 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_19F/Module_1 302195984 25 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_19F/Module_2 302195980 25 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_19F/Module_3 302195976 25 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_19F/Module_4 302195972 25 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_20F/Module_1 302195728 24 33 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_20F/Module_2 302195724 24 32 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_20F/Module_3 302195720 24 31 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_20F/Module_4 302195716 24 27 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_21F/Module_1 302195472 24 28 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_21F/Module_2 302195468 24 36 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_21F/Module_3 302195464 24 35 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_21F/Module_4 302195460 24 34 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_22H/Module_1 302195216 24 26 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_22H/Module_2 302195212 24 25 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_22H/Module_3 302195208 24 30 0
Pixel/Barrel/Shell_mI/Layer_3/Ladder_22H/Module_4 302195204 24 29 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_01H/Module_1 302056976 16 4 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_01H/Module_2 302056972 16 12 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_01H/Module_3 302056968 16 11 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_01H/Module_4 302056964 16 10 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_02F/Module_1 302057232 16 8 9
Pixel/Barrel/Shell_mO/Layer_1/Ladder_02F/Module_2 302057228 16 3 7
Pixel/Barrel/Shell_mO/Layer_1/Ladder_02F/Module_3 302057224 16 1 2
Pixel/Barrel/Shell_mO/Layer_1/Ladder_02F/Module_4 302057220 16 20 21
Pixel/Barrel/Shell_mO/Layer_1/Ladder_03F/Module_1 302057488 17 20 21
Pixel/Barrel/Shell_mO/Layer_1/Ladder_03F/Module_2 302057484 17 1 2
Pixel/Barrel/Shell_mO/Layer_1/Ladder_03F/Module_3 302057480 17 3 7
Pixel/Barrel/Shell_mO/Layer_1/Ladder_03F/Module_4 302057476 17 8 9
Pixel/Barrel/Shell_mO/Layer_1/Ladder_04F/Module_1 302057744 18 8 9
Pixel/Barrel/Shell_mO/Layer_1/Ladder_04F/Module_2 302057740 18 3 7
Pixel/Barrel/Shell_mO/Layer_1/Ladder_04F/Module_3 302057736 18 1 2
Pixel/Barrel/Shell_mO/Layer_1/Ladder_04F/Module_4 302057732 18 20 21
Pixel/Barrel/Shell_mO/Layer_1/Ladder_05F/Module_1 302058000 19 8 9
Pixel/Barrel/Shell_mO/Layer_1/Ladder_05F/Module_2 302057996 19 3 7
Pixel/Barrel/Shell_mO/Layer_1/Ladder_05F/Module_3 302057992 19 1 2
Pixel/Barrel/Shell_mO/Layer_1/Ladder_05F/Module_4 302057988 19 20 21
Pixel/Barrel/Shell_mO/Layer_1/Ladder_06F/Module_1 302058256 28 22 23
Pixel/Barrel/Shell_mO/Layer_1/Ladder_06F/Module_2 302058252 28 5 6
Pixel/Barrel/Shell_mO/Layer_1/Ladder_06F/Module_3 302058248 28 12 4
Pixel/Barrel/Shell_mO/Layer_1/Ladder_06F/Module_4 302058244 28 10 11
Pixel/Barrel/Shell_mO/Layer_1/Ladder_07F/Module_1 302058512 29 22 23
Pixel/Barrel/Shell_mO/Layer_1/Ladder_07F/Module_2 302058508 29 5 6
Pixel/Barrel/Shell_mO/Layer_1/Ladder_07F/Module_3 302058504 29 12 4
Pixel/Barrel/Shell_mO/Layer_1/Ladder_07F/Module_4 302058500 29 10 11
Pixel/Barrel/Shell_mO/Layer_1/Ladder_08F/Module_1 302058768 30 10 11
Pixel/Barrel/Shell_mO/Layer_1/Ladder_08F/Module_2 302058764 30 12 4
Pixel/Barrel/Shell_mO/Layer_1/Ladder_08F/Module_3 302058760 30 5 6
Pixel/Barrel/Shell_mO/Layer_1/Ladder_08F/Module_4 302058756 30 22 23
Pixel/Barrel/Shell_mO/Layer_1/Ladder_09F/Module_1 302059024 31 22 23
Pixel/Barrel/Shell_mO/Layer_1/Ladder_09F/Module_2 302059020 31 5 6
Pixel/Barrel/Shell_mO/Layer_1/Ladder_09F/Module_3 302059016 31 12 4
Pixel/Barrel/Shell_mO/Layer_1/Ladder_09F/Module_4 302059012 31 10 11
Pixel/Barrel/Shell_mO/Layer_1/Ladder_10H/Module_1 302059280 31 9 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_10H/Module_2 302059276 31 8 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_10H/Module_3 302059272 31 7 0
Pixel/Barrel/Shell_mO/Layer_1/Ladder_10H/Module_4 302059268 31 3 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_01H/Module_1 302123280 16 5 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_01H/Module_2 302123276 16 6 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_01H/Module_3 302123272 16 22 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_01H/Module_4 302123268 16 23 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_02F/Module_1 302123536 16 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_02F/Module_2 302123532 16 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_02F/Module_3 302123528 16 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_02F/Module_4 302123524 16 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_03F/Module_1 302123792 17 4 12
Pixel/Barrel/Shell_mO/Layer_2/Ladder_03F/Module_2 302123788 17 11 10
Pixel/Barrel/Shell_mO/Layer_2/Ladder_03F/Module_3 302123784 17 5 6
Pixel/Barrel/Shell_mO/Layer_2/Ladder_03F/Module_4 302123780 17 22 23
Pixel/Barrel/Shell_mO/Layer_2/Ladder_04F/Module_1 302124048 17 19 24
Pixel/Barrel/Shell_mO/Layer_2/Ladder_04F/Module_2 302124044 17 15 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_04F/Module_3 302124040 17 14 17
Pixel/Barrel/Shell_mO/Layer_2/Ladder_04F/Module_4 302124036 17 13 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_05F/Module_1 302124304 18 10 11
Pixel/Barrel/Shell_mO/Layer_2/Ladder_05F/Module_2 302124300 18 12 4
Pixel/Barrel/Shell_mO/Layer_2/Ladder_05F/Module_3 302124296 18 5 6
Pixel/Barrel/Shell_mO/Layer_2/Ladder_05F/Module_4 302124292 18 22 23
Pixel/Barrel/Shell_mO/Layer_2/Ladder_06F/Module_1 302124560 18 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_06F/Module_2 302124556 18 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_06F/Module_3 302124552 18 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_06F/Module_4 302124548 18 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_07F/Module_1 302124816 19 4 5
Pixel/Barrel/Shell_mO/Layer_2/Ladder_07F/Module_2 302124812 19 12 6
Pixel/Barrel/Shell_mO/Layer_2/Ladder_07F/Module_3 302124808 19 11 22
Pixel/Barrel/Shell_mO/Layer_2/Ladder_07F/Module_4 302124804 19 10 23
Pixel/Barrel/Shell_mO/Layer_2/Ladder_08F/Module_1 302125072 19 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_08F/Module_2 302125068 19 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_08F/Module_3 302125064 19 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_08F/Module_4 302125060 19 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_09F/Module_1 302125328 28 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_09F/Module_2 302125324 28 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_09F/Module_3 302125320 28 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_09F/Module_4 302125316 28 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_10F/Module_1 302125584 28 9 20
Pixel/Barrel/Shell_mO/Layer_2/Ladder_10F/Module_2 302125580 28 8 21
Pixel/Barrel/Shell_mO/Layer_2/Ladder_10F/Module_3 302125576 28 7 1
Pixel/Barrel/Shell_mO/Layer_2/Ladder_10F/Module_4 302125572 28 3 2
Pixel/Barrel/Shell_mO/Layer_2/Ladder_11F/Module_1 302125840 29 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_11F/Module_2 302125836 29 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_11F/Module_3 302125832 29 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_11F/Module_4 302125828 29 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_12F/Module_1 302126096 29 20 21
Pixel/Barrel/Shell_mO/Layer_2/Ladder_12F/Module_2 302126092 29 1 2
Pixel/Barrel/Shell_mO/Layer_2/Ladder_12F/Module_3 302126088 29 3 7
Pixel/Barrel/Shell_mO/Layer_2/Ladder_12F/Module_4 302126084 29 8 9
Pixel/Barrel/Shell_mO/Layer_2/Ladder_13F/Module_1 302126352 30 18 13
Pixel/Barrel/Shell_mO/Layer_2/Ladder_13F/Module_2 302126348 30 17 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_13F/Module_3 302126344 30 16 15
Pixel/Barrel/Shell_mO/Layer_2/Ladder_13F/Module_4 302126340 30 24 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_14F/Module_1 302126608 30 20 21
Pixel/Barrel/Shell_mO/Layer_2/Ladder_14F/Module_2 302126604 30 1 2
Pixel/Barrel/Shell_mO/Layer_2/Ladder_14F/Module_3 302126600 30 9 8
Pixel/Barrel/Shell_mO/Layer_2/Ladder_14F/Module_4 302126596 30 7 3
Pixel/Barrel/Shell_mO/Layer_2/Ladder_15F/Module_1 302126864 31 15 19
Pixel/Barrel/Shell_mO/Layer_2/Ladder_15F/Module_2 302126860 31 13 14
Pixel/Barrel/Shell_mO/Layer_2/Ladder_15F/Module_3 302126856 31 17 18
Pixel/Barrel/Shell_mO/Layer_2/Ladder_15F/Module_4 302126852 31 24 16
Pixel/Barrel/Shell_mO/Layer_2/Ladder_16H/Module_1 302127120 31 20 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_16H/Module_2 302127116 31 21 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_16H/Module_3 302127112 31 1 0
Pixel/Barrel/Shell_mO/Layer_2/Ladder_16H/Module_4 302127108 31 2 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_01H/Module_1 302189584 16 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_01H/Module_2 302189580 16 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_01H/Module_3 302189576 16 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_01H/Module_4 302189572 16 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_02F/Module_1 302189840 16 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_02F/Module_2 302189836 16 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_02F/Module_3 302189832 16 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_02F/Module_4 302189828 16 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_03F/Module_1 302190096 16 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_03F/Module_2 302190092 16 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_03F/Module_3 302190088 16 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_03F/Module_4 302190084 16 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_04F/Module_1 302190352 17 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_04F/Module_2 302190348 17 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_04F/Module_3 302190344 17 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_04F/Module_4 302190340 17 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_05F/Module_1 302190608 17 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_05F/Module_2 302190604 17 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_05F/Module_3 302190600 17 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_05F/Module_4 302190596 17 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_06F/Module_1 302190864 17 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_06F/Module_2 302190860 17 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_06F/Module_3 302190856 17 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_06F/Module_4 302190852 17 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_07F/Module_1 302191120 18 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_07F/Module_2 302191116 18 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_07F/Module_3 302191112 18 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_07F/Module_4 302191108 18 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_08F/Module_1 302191376 18 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_08F/Module_2 302191372 18 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_08F/Module_3 302191368 18 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_08F/Module_4 302191364 18 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_09F/Module_1 302191632 18 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_09F/Module_2 302191628 18 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_09F/Module_3 302191624 18 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_09F/Module_4 302191620 18 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_10F/Module_1 302191888 19 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_10F/Module_2 302191884 19 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_10F/Module_3 302191880 19 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_10F/Module_4 302191876 19 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_11F/Module_1 302192144 19 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_11F/Module_2 302192140 19 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_11F/Module_3 302192136 19 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_11F/Module_4 302192132 19 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_12F/Module_1 302192400 28 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_12F/Module_2 302192396 28 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_12F/Module_3 302192392 28 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_12F/Module_4 302192388 28 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_13F/Module_1 302192656 28 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_13F/Module_2 302192652 28 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_13F/Module_3 302192648 28 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_13F/Module_4 302192644 28 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_14F/Module_1 302192912 29 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_14F/Module_2 302192908 29 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_14F/Module_3 302192904 29 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_14F/Module_4 302192900 29 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_15F/Module_1 302193168 29 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_15F/Module_2 302193164 29 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_15F/Module_3 302193160 29 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_15F/Module_4 302193156 29 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_16F/Module_1 302193424 29 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_16F/Module_2 302193420 29 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_16F/Module_3 302193416 29 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_16F/Module_4 302193412 29 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_17F/Module_1 302193680 30 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_17F/Module_2 302193676 30 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_17F/Module_3 302193672 30 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_17F/Module_4 302193668 30 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_18F/Module_1 302193936 30 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_18F/Module_2 302193932 30 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_18F/Module_3 302193928 30 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_18F/Module_4 302193924 30 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_19F/Module_1 302194192 30 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_19F/Module_2 302194188 30 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_19F/Module_3 302194184 30 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_19F/Module_4 302194180 30 33 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_20F/Module_1 302194448 31 28 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_20F/Module_2 302194444 31 36 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_20F/Module_3 302194440 31 35 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_20F/Module_4 302194436 31 34 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_21F/Module_1 302194704 31 29 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_21F/Module_2 302194700 31 30 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_21F/Module_3 302194696 31 25 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_21F/Module_4 302194692 31 26 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_22H/Module_1 302194960 31 27 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_22H/Module_2 302194956 31 31 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_22H/Module_3 302194952 31 32 0
Pixel/Barrel/Shell_mO/Layer_3/Ladder_22H/Module_4 302194948 31 33 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_01H/Module_1 302056724 3 10 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_01H/Module_2 302056728 3 11 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_01H/Module_3 302056732 3 12 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_01H/Module_4 302056736 3 4 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_02F/Module_1 302056468 0 20 21
Pixel/Barrel/Shell_pI/Layer_1/Ladder_02F/Module_2 302056472 3 1 2
Pixel/Barrel/Shell_pI/Layer_1/Ladder_02F/Module_3 302056476 3 3 7
Pixel/Barrel/Shell_pI/Layer_1/Ladder_02F/Module_4 302056480 3 8 9
Pixel/Barrel/Shell_pI/Layer_1/Ladder_03F/Module_1 302056212 1 8 9
Pixel/Barrel/Shell_pI/Layer_1/Ladder_03F/Module_2 302056216 1 3 7
Pixel/Barrel/Shell_pI/Layer_1/Ladder_03F/Module_3 302056220 1 1 2
Pixel/Barrel/Shell_pI/Layer_1/Ladder_03F/Module_4 302056224 1 20 21
Pixel/Barrel/Shell_pI/Layer_1/Ladder_04F/Module_1 302055956 2 20 21
Pixel/Barrel/Shell_pI/Layer_1/Ladder_04F/Module_2 302055960 2 1 2
Pixel/Barrel/Shell_pI/Layer_1/Ladder_04F/Module_3 302055964 2 3 7
Pixel/Barrel/Shell_pI/Layer_1/Ladder_04F/Module_4 302055968 2 8 9
Pixel/Barrel/Shell_pI/Layer_1/Ladder_05F/Module_1 302055700 3 20 21
Pixel/Barrel/Shell_pI/Layer_1/Ladder_05F/Module_2 302055704 0 1 2
Pixel/Barrel/Shell_pI/Layer_1/Ladder_05F/Module_3 302055708 0 3 7
Pixel/Barrel/Shell_pI/Layer_1/Ladder_05F/Module_4 302055712 0 8 9
Pixel/Barrel/Shell_pI/Layer_1/Ladder_06F/Module_1 302060564 12 10 11
Pixel/Barrel/Shell_pI/Layer_1/Ladder_06F/Module_2 302060568 12 12 4
Pixel/Barrel/Shell_pI/Layer_1/Ladder_06F/Module_3 302060572 12 5 6
Pixel/Barrel/Shell_pI/Layer_1/Ladder_06F/Module_4 302060576 12 22 23
Pixel/Barrel/Shell_pI/Layer_1/Ladder_07F/Module_1 302060308 13 10 11
Pixel/Barrel/Shell_pI/Layer_1/Ladder_07F/Module_2 302060312 13 12 4
Pixel/Barrel/Shell_pI/Layer_1/Ladder_07F/Module_3 302060316 13 5 6
Pixel/Barrel/Shell_pI/Layer_1/Ladder_07F/Module_4 302060320 13 22 23
Pixel/Barrel/Shell_pI/Layer_1/Ladder_08F/Module_1 302060052 14 22 23
Pixel/Barrel/Shell_pI/Layer_1/Ladder_08F/Module_2 302060056 14 5 6
Pixel/Barrel/Shell_pI/Layer_1/Ladder_08F/Module_3 302060060 14 12 4
Pixel/Barrel/Shell_pI/Layer_1/Ladder_08F/Module_4 302060064 14 10 11
Pixel/Barrel/Shell_pI/Layer_1/Ladder_09F/Module_1 302059796 15 10 11
Pixel/Barrel/Shell_pI/Layer_1/Ladder_09F/Module_2 302059800 15 12 4
Pixel/Barrel/Shell_pI/Layer_1/Ladder_09F/Module_3 302059804 15 5 6
Pixel/Barrel/Shell_pI/Layer_1/Ladder_09F/Module_4 302059808 15 22 23
Pixel/Barrel/Shell_pI/Layer_1/Ladder_10H/Module_1 302059540 15 3 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_10H/Module_2 302059544 15 7 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_10H/Module_3 302059548 15 8 0
Pixel/Barrel/Shell_pI/Layer_1/Ladder_10H/Module_4 302059552 15 9 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_01H/Module_1 302123028 0 23 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_01H/Module_2 302123032 0 22 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_01H/Module_3 302123036 3 6 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_01H/Module_4 302123040 3 5 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_02F/Module_1 302122772 0 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_02F/Module_2 302122776 0 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_02F/Module_3 302122780 0 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_02F/Module_4 302122784 0 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_03F/Module_1 302122516 1 22 23
Pixel/Barrel/Shell_pI/Layer_2/Ladder_03F/Module_2 302122520 1 5 6
Pixel/Barrel/Shell_pI/Layer_2/Ladder_03F/Module_3 302122524 1 11 10
Pixel/Barrel/Shell_pI/Layer_2/Ladder_03F/Module_4 302122528 1 4 12
Pixel/Barrel/Shell_pI/Layer_2/Ladder_04F/Module_1 302122260 1 18 13
Pixel/Barrel/Shell_pI/Layer_2/Ladder_04F/Module_2 302122264 1 17 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_04F/Module_3 302122268 1 16 15
Pixel/Barrel/Shell_pI/Layer_2/Ladder_04F/Module_4 302122272 1 24 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_05F/Module_1 302122004 2 22 23
Pixel/Barrel/Shell_pI/Layer_2/Ladder_05F/Module_2 302122008 2 5 6
Pixel/Barrel/Shell_pI/Layer_2/Ladder_05F/Module_3 302122012 2 12 4
Pixel/Barrel/Shell_pI/Layer_2/Ladder_05F/Module_4 302122016 2 10 11
Pixel/Barrel/Shell_pI/Layer_2/Ladder_06F/Module_1 302121748 2 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_06F/Module_2 302121752 2 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_06F/Module_3 302121756 2 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_06F/Module_4 302121760 2 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_07F/Module_1 302121492 0 23 10
Pixel/Barrel/Shell_pI/Layer_2/Ladder_07F/Module_2 302121496 0 22 11
Pixel/Barrel/Shell_pI/Layer_2/Ladder_07F/Module_3 302121500 0 6 12
Pixel/Barrel/Shell_pI/Layer_2/Ladder_07F/Module_4 302121504 0 5 4
Pixel/Barrel/Shell_pI/Layer_2/Ladder_08F/Module_1 302121236 3 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_08F/Module_2 302121240 3 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_08F/Module_3 302121244 3 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_08F/Module_4 302121248 3 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_09F/Module_1 302129172 12 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_09F/Module_2 302129176 12 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_09F/Module_3 302129180 12 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_09F/Module_4 302129184 12 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_10F/Module_1 302128916 12 2 3
Pixel/Barrel/Shell_pI/Layer_2/Ladder_10F/Module_2 302128920 12 1 7
Pixel/Barrel/Shell_pI/Layer_2/Ladder_10F/Module_3 302128924 12 21 8
Pixel/Barrel/Shell_pI/Layer_2/Ladder_10F/Module_4 302128928 12 20 9
Pixel/Barrel/Shell_pI/Layer_2/Ladder_11F/Module_1 302128660 13 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_11F/Module_2 302128664 13 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_11F/Module_3 302128668 13 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_11F/Module_4 302128672 13 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_12F/Module_1 302128404 13 8 9
Pixel/Barrel/Shell_pI/Layer_2/Ladder_12F/Module_2 302128408 13 3 7
Pixel/Barrel/Shell_pI/Layer_2/Ladder_12F/Module_3 302128412 13 1 2
Pixel/Barrel/Shell_pI/Layer_2/Ladder_12F/Module_4 302128416 13 20 21
Pixel/Barrel/Shell_pI/Layer_2/Ladder_13F/Module_1 302128148 14 19 24
Pixel/Barrel/Shell_pI/Layer_2/Ladder_13F/Module_2 302128152 14 15 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_13F/Module_3 302128156 14 14 17
Pixel/Barrel/Shell_pI/Layer_2/Ladder_13F/Module_4 302128160 14 13 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_14F/Module_1 302127892 14 7 3
Pixel/Barrel/Shell_pI/Layer_2/Ladder_14F/Module_2 302127896 14 9 8
Pixel/Barrel/Shell_pI/Layer_2/Ladder_14F/Module_3 302127900 14 1 2
Pixel/Barrel/Shell_pI/Layer_2/Ladder_14F/Module_4 302127904 14 20 21
Pixel/Barrel/Shell_pI/Layer_2/Ladder_15F/Module_1 302127636 15 24 16
Pixel/Barrel/Shell_pI/Layer_2/Ladder_15F/Module_2 302127640 15 17 18
Pixel/Barrel/Shell_pI/Layer_2/Ladder_15F/Module_3 302127644 15 13 14
Pixel/Barrel/Shell_pI/Layer_2/Ladder_15F/Module_4 302127648 15 15 19
Pixel/Barrel/Shell_pI/Layer_2/Ladder_16H/Module_1 302127380 15 2 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_16H/Module_2 302127384 15 1 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_16H/Module_3 302127388 15 21 0
Pixel/Barrel/Shell_pI/Layer_2/Ladder_16H/Module_4 302127392 15 20 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_01H/Module_1 302189332 0 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_01H/Module_2 302189336 0 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_01H/Module_3 302189340 0 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_01H/Module_4 302189344 0 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_02F/Module_1 302189076 0 26 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_02F/Module_2 302189080 0 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_02F/Module_3 302189084 0 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_02F/Module_4 302189088 0 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_03F/Module_1 302188820 0 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_03F/Module_2 302188824 0 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_03F/Module_3 302188828 0 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_03F/Module_4 302188832 0 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_04F/Module_1 302188564 1 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_04F/Module_2 302188568 1 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_04F/Module_3 302188572 1 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_04F/Module_4 302188576 1 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_05F/Module_1 302188308 1 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_05F/Module_2 302188312 1 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_05F/Module_3 302188316 1 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_05F/Module_4 302188320 1 26 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_06F/Module_1 302188052 1 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_06F/Module_2 302188056 1 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_06F/Module_3 302188060 1 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_06F/Module_4 302188064 1 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_07F/Module_1 302187796 2 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_07F/Module_2 302187800 2 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_07F/Module_3 302187804 2 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_07F/Module_4 302187808 2 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_08F/Module_1 302187540 2 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_08F/Module_2 302187544 2 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_08F/Module_3 302187548 2 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_08F/Module_4 302187552 2 26 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_09F/Module_1 302187284 2 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_09F/Module_2 302187288 2 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_09F/Module_3 302187292 2 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_09F/Module_4 302187296 2 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_10F/Module_1 302187028 3 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_10F/Module_2 302187032 3 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_10F/Module_3 302187036 3 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_10F/Module_4 302187040 3 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_11F/Module_1 302186772 3 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_11F/Module_2 302186776 3 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_11F/Module_3 302186780 3 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_11F/Module_4 302186784 3 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_12F/Module_1 302197780 12 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_12F/Module_2 302197784 12 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_12F/Module_3 302197788 12 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_12F/Module_4 302197792 12 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_13F/Module_1 302197524 12 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_13F/Module_2 302197528 12 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_13F/Module_3 302197532 12 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_13F/Module_4 302197536 12 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_14F/Module_1 302197268 13 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_14F/Module_2 302197272 13 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_14F/Module_3 302197276 13 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_14F/Module_4 302197280 13 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_15F/Module_1 302197012 13 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_15F/Module_2 302197016 13 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_15F/Module_3 302197020 13 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_15F/Module_4 302197024 13 26 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_16F/Module_1 302196756 13 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_16F/Module_2 302196760 13 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_16F/Module_3 302196764 13 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_16F/Module_4 302196768 13 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_17F/Module_1 302196500 14 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_17F/Module_2 302196504 14 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_17F/Module_3 302196508 14 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_17F/Module_4 302196512 14 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_18F/Module_1 302196244 14 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_18F/Module_2 302196248 14 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_18F/Module_3 302196252 14 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_18F/Module_4 302196256 14 26 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_19F/Module_1 302195988 14 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_19F/Module_2 302195992 14 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_19F/Module_3 302195996 14 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_19F/Module_4 302196000 14 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_20F/Module_1 302195732 15 28 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_20F/Module_2 302195736 15 36 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_20F/Module_3 302195740 15 35 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_20F/Module_4 302195744 15 34 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_21F/Module_1 302195476 15 27 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_21F/Module_2 302195480 15 31 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_21F/Module_3 302195484 15 32 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_21F/Module_4 302195488 15 33 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_22H/Module_1 302195220 15 29 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_22H/Module_2 302195224 15 30 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_22H/Module_3 302195228 15 25 0
Pixel/Barrel/Shell_pI/Layer_3/Ladder_22H/Module_4 302195232 15 26 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_01H/Module_1 302056980 7 3 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_01H/Module_2 302056984 7 7 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_01H/Module_3 302056988 7 8 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_01H/Module_4 302056992 7 9 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_02F/Module_1 302057236 7 10 11
Pixel/Barrel/Shell_pO/Layer_1/Ladder_02F/Module_2 302057240 7 12 4
Pixel/Barrel/Shell_pO/Layer_1/Ladder_02F/Module_3 302057244 7 5 6
Pixel/Barrel/Shell_pO/Layer_1/Ladder_02F/Module_4 302057248 7 22 23
Pixel/Barrel/Shell_pO/Layer_1/Ladder_03F/Module_1 302057492 6 22 23
Pixel/Barrel/Shell_pO/Layer_1/Ladder_03F/Module_2 302057496 6 5 6
Pixel/Barrel/Shell_pO/Layer_1/Ladder_03F/Module_3 302057500 6 12 4
Pixel/Barrel/Shell_pO/Layer_1/Ladder_03F/Module_4 302057504 6 10 11
Pixel/Barrel/Shell_pO/Layer_1/Ladder_04F/Module_1 302057748 5 10 11
Pixel/Barrel/Shell_pO/Layer_1/Ladder_04F/Module_2 302057752 5 12 4
Pixel/Barrel/Shell_pO/Layer_1/Ladder_04F/Module_3 302057756 5 5 6
Pixel/Barrel/Shell_pO/Layer_1/Ladder_04F/Module_4 302057760 5 22 23
Pixel/Barrel/Shell_pO/Layer_1/Ladder_05F/Module_1 302058004 4 10 11
Pixel/Barrel/Shell_pO/Layer_1/Ladder_05F/Module_2 302058008 4 12 4
Pixel/Barrel/Shell_pO/Layer_1/Ladder_05F/Module_3 302058012 4 5 6
Pixel/Barrel/Shell_pO/Layer_1/Ladder_05F/Module_4 302058016 4 22 23
Pixel/Barrel/Shell_pO/Layer_1/Ladder_06F/Module_1 302058260 11 20 21
Pixel/Barrel/Shell_pO/Layer_1/Ladder_06F/Module_2 302058264 11 1 2
Pixel/Barrel/Shell_pO/Layer_1/Ladder_06F/Module_3 302058268 11 3 7
Pixel/Barrel/Shell_pO/Layer_1/Ladder_06F/Module_4 302058272 11 8 9
Pixel/Barrel/Shell_pO/Layer_1/Ladder_07F/Module_1 302058516 10 20 21
Pixel/Barrel/Shell_pO/Layer_1/Ladder_07F/Module_2 302058520 10 1 2
Pixel/Barrel/Shell_pO/Layer_1/Ladder_07F/Module_3 302058524 10 3 7
Pixel/Barrel/Shell_pO/Layer_1/Ladder_07F/Module_4 302058528 10 8 9
Pixel/Barrel/Shell_pO/Layer_1/Ladder_08F/Module_1 302058772 9 8 9
Pixel/Barrel/Shell_pO/Layer_1/Ladder_08F/Module_2 302058776 9 3 7
Pixel/Barrel/Shell_pO/Layer_1/Ladder_08F/Module_3 302058780 9 1 2
Pixel/Barrel/Shell_pO/Layer_1/Ladder_08F/Module_4 302058784 9 20 21
Pixel/Barrel/Shell_pO/Layer_1/Ladder_09F/Module_1 302059028 8 20 21
Pixel/Barrel/Shell_pO/Layer_1/Ladder_09F/Module_2 302059032 8 1 2
Pixel/Barrel/Shell_pO/Layer_1/Ladder_09F/Module_3 302059036 8 3 7
Pixel/Barrel/Shell_pO/Layer_1/Ladder_09F/Module_4 302059040 8 8 9
Pixel/Barrel/Shell_pO/Layer_1/Ladder_10H/Module_1 302059284 8 10 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_10H/Module_2 302059288 8 11 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_10H/Module_3 302059292 8 12 0
Pixel/Barrel/Shell_pO/Layer_1/Ladder_10H/Module_4 302059296 8 4 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_01H/Module_1 302123284 7 2 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_01H/Module_2 302123288 7 1 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_01H/Module_3 302123292 7 21 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_01H/Module_4 302123296 7 20 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_02F/Module_1 302123540 7 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_02F/Module_2 302123544 7 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_02F/Module_3 302123548 7 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_02F/Module_4 302123552 7 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_03F/Module_1 302123796 6 7 3
Pixel/Barrel/Shell_pO/Layer_2/Ladder_03F/Module_2 302123800 6 9 8
Pixel/Barrel/Shell_pO/Layer_2/Ladder_03F/Module_3 302123804 6 1 2
Pixel/Barrel/Shell_pO/Layer_2/Ladder_03F/Module_4 302123808 6 20 21
Pixel/Barrel/Shell_pO/Layer_2/Ladder_04F/Module_1 302124052 6 19 24
Pixel/Barrel/Shell_pO/Layer_2/Ladder_04F/Module_2 302124056 6 14 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_04F/Module_3 302124060 6 15 17
Pixel/Barrel/Shell_pO/Layer_2/Ladder_04F/Module_4 302124064 6 13 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_05F/Module_1 302124308 5 8 9
Pixel/Barrel/Shell_pO/Layer_2/Ladder_05F/Module_2 302124312 5 3 7
Pixel/Barrel/Shell_pO/Layer_2/Ladder_05F/Module_3 302124316 5 1 2
Pixel/Barrel/Shell_pO/Layer_2/Ladder_05F/Module_4 302124320 5 20 21
Pixel/Barrel/Shell_pO/Layer_2/Ladder_06F/Module_1 302124564 5 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_06F/Module_2 302124568 5 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_06F/Module_3 302124572 5 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_06F/Module_4 302124576 5 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_07F/Module_1 302124820 4 2 3
Pixel/Barrel/Shell_pO/Layer_2/Ladder_07F/Module_2 302124824 4 1 7
Pixel/Barrel/Shell_pO/Layer_2/Ladder_07F/Module_3 302124828 4 21 8
Pixel/Barrel/Shell_pO/Layer_2/Ladder_07F/Module_4 302124832 4 20 9
Pixel/Barrel/Shell_pO/Layer_2/Ladder_08F/Module_1 302125076 4 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_08F/Module_2 302125080 4 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_08F/Module_3 302125084 4 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_08F/Module_4 302125088 4 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_09F/Module_1 302125332 11 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_09F/Module_2 302125336 11 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_09F/Module_3 302125340 11 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_09F/Module_4 302125344 11 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_10F/Module_1 302125588 11 23 10
Pixel/Barrel/Shell_pO/Layer_2/Ladder_10F/Module_2 302125592 11 22 11
Pixel/Barrel/Shell_pO/Layer_2/Ladder_10F/Module_3 302125596 11 6 12
Pixel/Barrel/Shell_pO/Layer_2/Ladder_10F/Module_4 302125600 11 5 4
Pixel/Barrel/Shell_pO/Layer_2/Ladder_11F/Module_1 302125844 10 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_11F/Module_2 302125848 10 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_11F/Module_3 302125852 10 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_11F/Module_4 302125856 10 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_12F/Module_1 302126100 10 22 23
Pixel/Barrel/Shell_pO/Layer_2/Ladder_12F/Module_2 302126104 10 5 6
Pixel/Barrel/Shell_pO/Layer_2/Ladder_12F/Module_3 302126108 10 12 4
Pixel/Barrel/Shell_pO/Layer_2/Ladder_12F/Module_4 302126112 10 10 11
Pixel/Barrel/Shell_pO/Layer_2/Ladder_13F/Module_1 302126356 9 18 13
Pixel/Barrel/Shell_pO/Layer_2/Ladder_13F/Module_2 302126360 9 17 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_13F/Module_3 302126364 9 16 15
Pixel/Barrel/Shell_pO/Layer_2/Ladder_13F/Module_4 302126368 9 24 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_14F/Module_1 302126612 9 22 23
Pixel/Barrel/Shell_pO/Layer_2/Ladder_14F/Module_2 302126616 9 5 6
Pixel/Barrel/Shell_pO/Layer_2/Ladder_14F/Module_3 302126620 9 11 10
Pixel/Barrel/Shell_pO/Layer_2/Ladder_14F/Module_4 302126624 9 4 12
Pixel/Barrel/Shell_pO/Layer_2/Ladder_15F/Module_1 302126868 8 24 16
Pixel/Barrel/Shell_pO/Layer_2/Ladder_15F/Module_2 302126872 8 17 18
Pixel/Barrel/Shell_pO/Layer_2/Ladder_15F/Module_3 302126876 8 13 14
Pixel/Barrel/Shell_pO/Layer_2/Ladder_15F/Module_4 302126880 8 15 19
Pixel/Barrel/Shell_pO/Layer_2/Ladder_16H/Module_1 302127124 8 23 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_16H/Module_2 302127128 8 22 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_16H/Module_3 302127132 8 6 0
Pixel/Barrel/Shell_pO/Layer_2/Ladder_16H/Module_4 302127136 8 5 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_01H/Module_1 302189588 7 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_01H/Module_2 302189592 7 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_01H/Module_3 302189596 7 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_01H/Module_4 302189600 7 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_02F/Module_1 302189844 7 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_02F/Module_2 302189848 7 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_02F/Module_3 302189852 7 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_02F/Module_4 302189856 7 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_03F/Module_1 302190100 7 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_03F/Module_2 302190104 7 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_03F/Module_3 302190108 7 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_03F/Module_4 302190112 7 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_04F/Module_1 302190356 6 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_04F/Module_2 302190360 6 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_04F/Module_3 302190364 6 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_04F/Module_4 302190368 6 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_05F/Module_1 302190612 6 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_05F/Module_2 302190616 6 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_05F/Module_3 302190620 6 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_05F/Module_4 302190624 6 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_06F/Module_1 302190868 6 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_06F/Module_2 302190872 6 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_06F/Module_3 302190876 6 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_06F/Module_4 302190880 6 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_07F/Module_1 302191124 5 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_07F/Module_2 302191128 5 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_07F/Module_3 302191132 5 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_07F/Module_4 302191136 5 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_08F/Module_1 302191380 5 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_08F/Module_2 302191384 5 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_08F/Module_3 302191388 5 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_08F/Module_4 302191392 5 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_09F/Module_1 302191636 5 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_09F/Module_2 302191640 5 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_09F/Module_3 302191644 5 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_09F/Module_4 302191648 5 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_10F/Module_1 302191892 4 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_10F/Module_2 302191896 4 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_10F/Module_3 302191900 4 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_10F/Module_4 302191904 4 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_11F/Module_1 302192148 4 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_11F/Module_2 302192152 4 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_11F/Module_3 302192156 4 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_11F/Module_4 302192160 4 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_12F/Module_1 302192404 11 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_12F/Module_2 302192408 11 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_12F/Module_3 302192412 11 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_12F/Module_4 302192416 11 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_13F/Module_1 302192660 11 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_13F/Module_2 302192664 11 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_13F/Module_3 302192668 11 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_13F/Module_4 302192672 11 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_14F/Module_1 302192916 10 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_14F/Module_2 302192920 10 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_14F/Module_3 302192924 10 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_14F/Module_4 302192928 10 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_15F/Module_1 302193172 10 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_15F/Module_2 302193176 10 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_15F/Module_3 302193180 10 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_15F/Module_4 302193184 10 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_16F/Module_1 302193428 10 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_16F/Module_2 302193432 10 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_16F/Module_3 302193436 10 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_16F/Module_4 302193440 10 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_17F/Module_1 302193684 9 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_17F/Module_2 302193688 9 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_17F/Module_3 302193692 9 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_17F/Module_4 302193696 9 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_18F/Module_1 302193940 9 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_18F/Module_2 302193944 9 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_18F/Module_3 302193948 9 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_18F/Module_4 302193952 9 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_19F/Module_1 302194196 9 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_19F/Module_2 302194200 9 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_19F/Module_3 302194204 9 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_19F/Module_4 302194208 9 34 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_20F/Module_1 302194452 8 33 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_20F/Module_2 302194456 8 32 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_20F/Module_3 302194460 8 31 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_20F/Module_4 302194464 8 27 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_21F/Module_1 302194708 8 26 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_21F/Module_2 302194712 8 25 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_21F/Module_3 302194716 8 30 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_21F/Module_4 302194720 8 29 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_22H/Module_1 302194964 8 28 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_22H/Module_2 302194968 8 36 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_22H/Module_3 302194972 8 35 0
Pixel/Barrel/Shell_pO/Layer_3/Ladder_22H/Module_4 302194976 8 34 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_1/Module_1 344004868 37 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_1/Module_2 344004872 37 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_1/Module_3 344004876 37 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_1/Module_4 344004880 37 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_2/Module_1 344005124 37 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_2/Module_2 344005128 37 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_01/Panel_2/Module_3 344005132 37 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_1/Module_1 344003844 37 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_1/Module_2 344003848 37 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_1/Module_3 344003852 37 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_1/Module_4 344003856 37 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_2/Module_1 344004100 37 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_2/Module_2 344004104 37 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_02/Panel_2/Module_3 344004108 37 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_1/Module_1 344002820 37 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_1/Module_2 344002824 37 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_1/Module_3 344002828 37 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_1/Module_4 344002832 37 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_2/Module_1 344003076 37 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_2/Module_2 344003080 37 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_03/Panel_2/Module_3 344003084 37 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_1/Module_1 344001796 37 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_1/Module_2 344001800 37 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_1/Module_3 344001804 37 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_1/Module_4 344001808 37 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_2/Module_1 344002052 37 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_2/Module_2 344002056 37 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_04/Panel_2/Module_3 344002060 37 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_1/Module_1 344000772 37 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_1/Module_2 344000776 37 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_1/Module_3 344000780 37 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_1/Module_4 344000784 37 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_2/Module_1 344001028 37 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_2/Module_2 344001032 37 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_05/Panel_2/Module_3 344001036 37 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_1/Module_1 343999748 37 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_1/Module_2 343999752 37 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_1/Module_3 343999756 37 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_1/Module_4 343999760 37 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_2/Module_1 344000004 37 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_2/Module_2 344000008 37 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_06/Panel_2/Module_3 344000012 37 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_1/Module_1 344023300 38 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_1/Module_2 344023304 38 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_1/Module_3 344023308 38 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_1/Module_4 344023312 38 13 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_2/Module_1 344023556 38 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_2/Module_2 344023560 38 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_07/Panel_2/Module_3 344023564 38 14 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_1/Module_1 344022276 38 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_1/Module_2 344022280 38 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_1/Module_3 344022284 38 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_1/Module_4 344022288 38 15 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_2/Module_1 344022532 38 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_2/Module_2 344022536 38 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_08/Panel_2/Module_3 344022540 38 16 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_1/Module_1 344021252 38 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_1/Module_2 344021256 38 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_1/Module_3 344021260 38 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_1/Module_4 344021264 38 17 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_2/Module_1 344021508 38 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_2/Module_2 344021512 38 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_09/Panel_2/Module_3 344021516 38 18 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_1/Module_1 344020228 38 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_1/Module_2 344020232 38 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_1/Module_3 344020236 38 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_1/Module_4 344020240 38 1 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_2/Module_1 344020484 38 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_2/Module_2 344020488 38 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_10/Panel_2/Module_3 344020492 38 2 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_1/Module_1 344019204 38 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_1/Module_2 344019208 38 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_1/Module_3 344019212 38 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_1/Module_4 344019216 38 3 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_2/Module_1 344019460 38 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_2/Module_2 344019464 38 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_11/Panel_2/Module_3 344019468 38 4 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_1/Module_1 344018180 38 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_1/Module_2 344018184 38 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_1/Module_3 344018188 38 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_1/Module_4 344018192 38 5 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_2/Module_1 344018436 38 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_2/Module_2 344018440 38 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_1/Blade_12/Panel_2/Module_3 344018444 38 6 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_1/Module_1 344070404 37 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_1/Module_2 344070408 37 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_1/Module_3 344070412 37 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_1/Module_4 344070416 37 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_2/Module_1 344070660 37 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_2/Module_2 344070664 37 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_01/Panel_2/Module_3 344070668 37 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_1/Module_1 344069380 37 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_1/Module_2 344069384 37 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_1/Module_3 344069388 37 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_1/Module_4 344069392 37 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_2/Module_1 344069636 37 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_2/Module_2 344069640 37 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_02/Panel_2/Module_3 344069644 37 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_1/Module_1 344068356 37 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_1/Module_2 344068360 37 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_1/Module_3 344068364 37 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_1/Module_4 344068368 37 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_2/Module_1 344068612 37 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_2/Module_2 344068616 37 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_03/Panel_2/Module_3 344068620 37 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_1/Module_1 344067332 37 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_1/Module_2 344067336 37 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_1/Module_3 344067340 37 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_1/Module_4 344067344 37 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_2/Module_1 344067588 37 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_2/Module_2 344067592 37 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_04/Panel_2/Module_3 344067596 37 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_1/Module_1 344066308 37 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_1/Module_2 344066312 37 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_1/Module_3 344066316 37 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_1/Module_4 344066320 37 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_2/Module_1 344066564 37 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_2/Module_2 344066568 37 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_05/Panel_2/Module_3 344066572 37 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_1/Module_1 344065284 37 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_1/Module_2 344065288 37 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_1/Module_3 344065292 37 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_1/Module_4 344065296 37 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_2/Module_1 344065540 37 12 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_2/Module_2 344065544 37 12 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_06/Panel_2/Module_3 344065548 37 12 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_1/Module_1 344088836 38 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_1/Module_2 344088840 38 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_1/Module_3 344088844 38 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_1/Module_4 344088848 38 19 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_2/Module_1 344089092 38 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_2/Module_2 344089096 38 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_07/Panel_2/Module_3 344089100 38 20 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_1/Module_1 344087812 38 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_1/Module_2 344087816 38 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_1/Module_3 344087820 38 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_1/Module_4 344087824 38 21 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_2/Module_1 344088068 38 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_2/Module_2 344088072 38 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_08/Panel_2/Module_3 344088076 38 22 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_1/Module_1 344086788 38 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_1/Module_2 344086792 38 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_1/Module_3 344086796 38 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_1/Module_4 344086800 38 23 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_2/Module_1 344087044 38 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_2/Module_2 344087048 38 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_09/Panel_2/Module_3 344087052 38 24 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_1/Module_1 344085764 38 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_1/Module_2 344085768 38 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_1/Module_3 344085772 38 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_1/Module_4 344085776 38 7 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_2/Module_1 344086020 38 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_2/Module_2 344086024 38 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_10/Panel_2/Module_3 344086028 38 8 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_1/Module_1 344084740 38 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_1/Module_2 344084744 38 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_1/Module_3 344084748 38 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_1/Module_4 344084752 38 9 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_2/Module_1 344084996 38 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_2/Module_2 344085000 38 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_11/Panel_2/Module_3 344085004 38 10 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_1/Module_1 344083716 38 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_1/Module_2 344083720 38 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_1/Module_3 344083724 38 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_1/Module_4 344083728 38 11 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_2/Module_1 344083972 38 12 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_2/Module_2 344083976 38 12 0
Pixel/Endcap/HalfCylinder_mI/Disk_2/Blade_12/Panel_2/Module_3 344083980 38 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_1/Module_1 344005892 36 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_1/Module_2 344005896 36 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_1/Module_3 344005900 36 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_1/Module_4 344005904 36 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_2/Module_1 344006148 36 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_2/Module_2 344006152 36 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_01/Panel_2/Module_3 344006156 36 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_1/Module_1 344006916 36 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_1/Module_2 344006920 36 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_1/Module_3 344006924 36 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_1/Module_4 344006928 36 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_2/Module_1 344007172 36 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_2/Module_2 344007176 36 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_02/Panel_2/Module_3 344007180 36 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_1/Module_1 344007940 36 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_1/Module_2 344007944 36 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_1/Module_3 344007948 36 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_1/Module_4 344007952 36 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_2/Module_1 344008196 36 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_2/Module_2 344008200 36 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_03/Panel_2/Module_3 344008204 36 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_1/Module_1 344008964 36 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_1/Module_2 344008968 36 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_1/Module_3 344008972 36 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_1/Module_4 344008976 36 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_2/Module_1 344009220 36 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_2/Module_2 344009224 36 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_04/Panel_2/Module_3 344009228 36 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_1/Module_1 344009988 36 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_1/Module_2 344009992 36 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_1/Module_3 344009996 36 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_1/Module_4 344010000 36 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_2/Module_1 344010244 36 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_2/Module_2 344010248 36 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_05/Panel_2/Module_3 344010252 36 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_1/Module_1 344011012 36 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_1/Module_2 344011016 36 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_1/Module_3 344011020 36 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_1/Module_4 344011024 36 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_2/Module_1 344011268 36 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_2/Module_2 344011272 36 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_06/Panel_2/Module_3 344011276 36 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_1/Module_1 344012036 39 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_1/Module_2 344012040 39 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_1/Module_3 344012044 39 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_1/Module_4 344012048 39 5 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_2/Module_1 344012292 39 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_2/Module_2 344012296 39 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_07/Panel_2/Module_3 344012300 39 6 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_1/Module_1 344013060 39 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_1/Module_2 344013064 39 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_1/Module_3 344013068 39 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_1/Module_4 344013072 39 3 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_2/Module_1 344013316 39 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_2/Module_2 344013320 39 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_08/Panel_2/Module_3 344013324 39 4 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_1/Module_1 344014084 39 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_1/Module_2 344014088 39 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_1/Module_3 344014092 39 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_1/Module_4 344014096 39 1 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_2/Module_1 344014340 39 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_2/Module_2 344014344 39 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_09/Panel_2/Module_3 344014348 39 2 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_1/Module_1 344015108 39 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_1/Module_2 344015112 39 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_1/Module_3 344015116 39 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_1/Module_4 344015120 39 17 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_2/Module_1 344015364 39 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_2/Module_2 344015368 39 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_10/Panel_2/Module_3 344015372 39 18 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_1/Module_1 344016132 39 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_1/Module_2 344016136 39 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_1/Module_3 344016140 39 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_1/Module_4 344016144 39 15 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_2/Module_1 344016388 39 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_2/Module_2 344016392 39 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_11/Panel_2/Module_3 344016396 39 16 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_1/Module_1 344017156 39 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_1/Module_2 344017160 39 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_1/Module_3 344017164 39 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_1/Module_4 344017168 39 13 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_2/Module_1 344017412 39 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_2/Module_2 344017416 39 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_1/Blade_12/Panel_2/Module_3 344017420 39 14 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_1/Module_1 344071428 36 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_1/Module_2 344071432 36 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_1/Module_3 344071436 36 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_1/Module_4 344071440 36 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_2/Module_1 344071684 36 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_2/Module_2 344071688 36 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_01/Panel_2/Module_3 344071692 36 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_1/Module_1 344072452 36 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_1/Module_2 344072456 36 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_1/Module_3 344072460 36 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_1/Module_4 344072464 36 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_2/Module_1 344072708 36 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_2/Module_2 344072712 36 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_02/Panel_2/Module_3 344072716 36 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_1/Module_1 344073476 36 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_1/Module_2 344073480 36 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_1/Module_3 344073484 36 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_1/Module_4 344073488 36 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_2/Module_1 344073732 36 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_2/Module_2 344073736 36 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_03/Panel_2/Module_3 344073740 36 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_1/Module_1 344074500 36 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_1/Module_2 344074504 36 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_1/Module_3 344074508 36 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_1/Module_4 344074512 36 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_2/Module_1 344074756 36 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_2/Module_2 344074760 36 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_04/Panel_2/Module_3 344074764 36 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_1/Module_1 344075524 36 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_1/Module_2 344075528 36 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_1/Module_3 344075532 36 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_1/Module_4 344075536 36 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_2/Module_1 344075780 36 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_2/Module_2 344075784 36 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_05/Panel_2/Module_3 344075788 36 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_1/Module_1 344076548 36 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_1/Module_2 344076552 36 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_1/Module_3 344076556 36 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_1/Module_4 344076560 36 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_2/Module_1 344076804 36 20 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_2/Module_2 344076808 36 20 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_06/Panel_2/Module_3 344076812 36 20 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_1/Module_1 344077572 39 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_1/Module_2 344077576 39 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_1/Module_3 344077580 39 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_1/Module_4 344077584 39 11 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_2/Module_1 344077828 39 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_2/Module_2 344077832 39 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_07/Panel_2/Module_3 344077836 39 12 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_1/Module_1 344078596 39 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_1/Module_2 344078600 39 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_1/Module_3 344078604 39 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_1/Module_4 344078608 39 9 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_2/Module_1 344078852 39 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_2/Module_2 344078856 39 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_08/Panel_2/Module_3 344078860 39 10 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_1/Module_1 344079620 39 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_1/Module_2 344079624 39 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_1/Module_3 344079628 39 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_1/Module_4 344079632 39 7 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_2/Module_1 344079876 39 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_2/Module_2 344079880 39 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_09/Panel_2/Module_3 344079884 39 8 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_1/Module_1 344080644 39 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_1/Module_2 344080648 39 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_1/Module_3 344080652 39 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_1/Module_4 344080656 39 23 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_2/Module_1 344080900 39 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_2/Module_2 344080904 39 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_10/Panel_2/Module_3 344080908 39 24 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_1/Module_1 344081668 39 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_1/Module_2 344081672 39 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_1/Module_3 344081676 39 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_1/Module_4 344081680 39 21 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_2/Module_1 344081924 39 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_2/Module_2 344081928 39 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_11/Panel_2/Module_3 344081932 39 22 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_1/Module_1 344082692 39 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_1/Module_2 344082696 39 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_1/Module_3 344082700 39 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_1/Module_4 344082704 39 19 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_2/Module_1 344082948 39 20 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_2/Module_2 344082952 39 20 0
Pixel/Endcap/HalfCylinder_mO/Disk_2/Blade_12/Panel_2/Module_3 344082956 39 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_1/Module_1 352393476 32 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_1/Module_2 352393480 32 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_1/Module_3 352393484 32 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_1/Module_4 352393488 32 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_2/Module_1 352393732 32 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_2/Module_2 352393736 32 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_01/Panel_2/Module_3 352393740 32 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_1/Module_1 352392452 32 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_1/Module_2 352392456 32 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_1/Module_3 352392460 32 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_1/Module_4 352392464 32 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_2/Module_1 352392708 32 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_2/Module_2 352392712 32 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_02/Panel_2/Module_3 352392716 32 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_1/Module_1 352391428 32 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_1/Module_2 352391432 32 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_1/Module_3 352391436 32 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_1/Module_4 352391440 32 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_2/Module_1 352391684 32 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_2/Module_2 352391688 32 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_03/Panel_2/Module_3 352391692 32 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_1/Module_1 352390404 32 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_1/Module_2 352390408 32 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_1/Module_3 352390412 32 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_1/Module_4 352390416 32 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_2/Module_1 352390660 32 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_2/Module_2 352390664 32 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_04/Panel_2/Module_3 352390668 32 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_1/Module_1 352389380 32 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_1/Module_2 352389384 32 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_1/Module_3 352389388 32 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_1/Module_4 352389392 32 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_2/Module_1 352389636 32 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_2/Module_2 352389640 32 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_05/Panel_2/Module_3 352389644 32 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_1/Module_1 352388356 32 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_1/Module_2 352388360 32 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_1/Module_3 352388364 32 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_1/Module_4 352388368 32 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_2/Module_1 352388612 32 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_2/Module_2 352388616 32 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_06/Panel_2/Module_3 352388620 32 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_1/Module_1 352411908 35 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_1/Module_2 352411912 35 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_1/Module_3 352411916 35 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_1/Module_4 352411920 35 5 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_2/Module_1 352412164 35 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_2/Module_2 352412168 35 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_07/Panel_2/Module_3 352412172 35 6 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_1/Module_1 352410884 35 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_1/Module_2 352410888 35 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_1/Module_3 352410892 35 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_1/Module_4 352410896 35 3 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_2/Module_1 352411140 35 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_2/Module_2 352411144 35 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_08/Panel_2/Module_3 352411148 35 4 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_1/Module_1 352409860 35 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_1/Module_2 352409864 35 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_1/Module_3 352409868 35 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_1/Module_4 352409872 35 1 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_2/Module_1 352410116 35 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_2/Module_2 352410120 35 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_09/Panel_2/Module_3 352410124 35 2 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_1/Module_1 352408836 35 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_1/Module_2 352408840 35 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_1/Module_3 352408844 35 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_1/Module_4 352408848 35 17 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_2/Module_1 352409092 35 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_2/Module_2 352409096 35 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_10/Panel_2/Module_3 352409100 35 18 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_1/Module_1 352407812 35 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_1/Module_2 352407816 35 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_1/Module_3 352407820 35 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_1/Module_4 352407824 35 15 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_2/Module_1 352408068 35 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_2/Module_2 352408072 35 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_11/Panel_2/Module_3 352408076 35 16 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_1/Module_1 352406788 35 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_1/Module_2 352406792 35 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_1/Module_3 352406796 35 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_1/Module_4 352406800 35 13 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_2/Module_1 352407044 35 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_2/Module_2 352407048 35 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_1/Blade_12/Panel_2/Module_3 352407052 35 14 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_1/Module_1 352459012 32 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_1/Module_2 352459016 32 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_1/Module_3 352459020 32 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_1/Module_4 352459024 32 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_2/Module_1 352459268 32 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_2/Module_2 352459272 32 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_01/Panel_2/Module_3 352459276 32 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_1/Module_1 352457988 32 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_1/Module_2 352457992 32 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_1/Module_3 352457996 32 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_1/Module_4 352458000 32 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_2/Module_1 352458244 32 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_2/Module_2 352458248 32 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_02/Panel_2/Module_3 352458252 32 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_1/Module_1 352456964 32 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_1/Module_2 352456968 32 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_1/Module_3 352456972 32 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_1/Module_4 352456976 32 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_2/Module_1 352457220 32 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_2/Module_2 352457224 32 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_03/Panel_2/Module_3 352457228 32 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_1/Module_1 352455940 32 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_1/Module_2 352455944 32 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_1/Module_3 352455948 32 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_1/Module_4 352455952 32 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_2/Module_1 352456196 32 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_2/Module_2 352456200 32 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_04/Panel_2/Module_3 352456204 32 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_1/Module_1 352454916 32 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_1/Module_2 352454920 32 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_1/Module_3 352454924 32 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_1/Module_4 352454928 32 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_2/Module_1 352455172 32 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_2/Module_2 352455176 32 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_05/Panel_2/Module_3 352455180 32 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_1/Module_1 352453892 32 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_1/Module_2 352453896 32 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_1/Module_3 352453900 32 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_1/Module_4 352453904 32 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_2/Module_1 352454148 32 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_2/Module_2 352454152 32 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_06/Panel_2/Module_3 352454156 32 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_1/Module_1 352477444 35 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_1/Module_2 352477448 35 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_1/Module_3 352477452 35 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_1/Module_4 352477456 35 11 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_2/Module_1 352477700 35 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_2/Module_2 352477704 35 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_07/Panel_2/Module_3 352477708 35 12 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_1/Module_1 352476420 35 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_1/Module_2 352476424 35 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_1/Module_3 352476428 35 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_1/Module_4 352476432 35 9 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_2/Module_1 352476676 35 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_2/Module_2 352476680 35 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_08/Panel_2/Module_3 352476684 35 10 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_1/Module_1 352475396 35 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_1/Module_2 352475400 35 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_1/Module_3 352475404 35 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_1/Module_4 352475408 35 7 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_2/Module_1 352475652 35 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_2/Module_2 352475656 35 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_09/Panel_2/Module_3 352475660 35 8 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_1/Module_1 352474372 35 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_1/Module_2 352474376 35 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_1/Module_3 352474380 35 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_1/Module_4 352474384 35 23 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_2/Module_1 352474628 35 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_2/Module_2 352474632 35 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_10/Panel_2/Module_3 352474636 35 24 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_1/Module_1 352473348 35 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_1/Module_2 352473352 35 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_1/Module_3 352473356 35 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_1/Module_4 352473360 35 21 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_2/Module_1 352473604 35 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_2/Module_2 352473608 35 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_11/Panel_2/Module_3 352473612 35 22 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_1/Module_1 352472324 35 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_1/Module_2 352472328 35 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_1/Module_3 352472332 35 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_1/Module_4 352472336 35 19 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_2/Module_1 352472580 35 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_2/Module_2 352472584 35 20 0
Pixel/Endcap/HalfCylinder_pI/Disk_2/Blade_12/Panel_2/Module_3 352472588 35 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_1/Module_1 352394500 33 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_1/Module_2 352394504 33 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_1/Module_3 352394508 33 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_1/Module_4 352394512 33 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_2/Module_1 352394756 33 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_2/Module_2 352394760 33 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_01/Panel_2/Module_3 352394764 33 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_1/Module_1 352395524 33 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_1/Module_2 352395528 33 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_1/Module_3 352395532 33 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_1/Module_4 352395536 33 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_2/Module_1 352395780 33 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_2/Module_2 352395784 33 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_02/Panel_2/Module_3 352395788 33 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_1/Module_1 352396548 33 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_1/Module_2 352396552 33 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_1/Module_3 352396556 33 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_1/Module_4 352396560 33 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_2/Module_1 352396804 33 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_2/Module_2 352396808 33 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_03/Panel_2/Module_3 352396812 33 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_1/Module_1 352397572 33 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_1/Module_2 352397576 33 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_1/Module_3 352397580 33 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_1/Module_4 352397584 33 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_2/Module_1 352397828 33 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_2/Module_2 352397832 33 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_04/Panel_2/Module_3 352397836 33 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_1/Module_1 352398596 33 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_1/Module_2 352398600 33 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_1/Module_3 352398604 33 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_1/Module_4 352398608 33 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_2/Module_1 352398852 33 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_2/Module_2 352398856 33 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_05/Panel_2/Module_3 352398860 33 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_1/Module_1 352399620 33 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_1/Module_2 352399624 33 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_1/Module_3 352399628 33 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_1/Module_4 352399632 33 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_2/Module_1 352399876 33 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_2/Module_2 352399880 33 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_06/Panel_2/Module_3 352399884 33 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_1/Module_1 352400644 34 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_1/Module_2 352400648 34 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_1/Module_3 352400652 34 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_1/Module_4 352400656 34 13 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_2/Module_1 352400900 34 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_2/Module_2 352400904 34 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_07/Panel_2/Module_3 352400908 34 14 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_1/Module_1 352401668 34 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_1/Module_2 352401672 34 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_1/Module_3 352401676 34 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_1/Module_4 352401680 34 15 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_2/Module_1 352401924 34 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_2/Module_2 352401928 34 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_08/Panel_2/Module_3 352401932 34 16 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_1/Module_1 352402692 34 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_1/Module_2 352402696 34 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_1/Module_3 352402700 34 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_1/Module_4 352402704 34 17 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_2/Module_1 352402948 34 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_2/Module_2 352402952 34 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_09/Panel_2/Module_3 352402956 34 18 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_1/Module_1 352403716 34 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_1/Module_2 352403720 34 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_1/Module_3 352403724 34 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_1/Module_4 352403728 34 1 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_2/Module_1 352403972 34 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_2/Module_2 352403976 34 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_10/Panel_2/Module_3 352403980 34 2 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_1/Module_1 352404740 34 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_1/Module_2 352404744 34 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_1/Module_3 352404748 34 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_1/Module_4 352404752 34 3 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_2/Module_1 352404996 34 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_2/Module_2 352405000 34 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_11/Panel_2/Module_3 352405004 34 4 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_1/Module_1 352405764 34 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_1/Module_2 352405768 34 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_1/Module_3 352405772 34 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_1/Module_4 352405776 34 5 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_2/Module_1 352406020 34 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_2/Module_2 352406024 34 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_1/Blade_12/Panel_2/Module_3 352406028 34 6 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_1/Module_1 352460036 33 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_1/Module_2 352460040 33 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_1/Module_3 352460044 33 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_1/Module_4 352460048 33 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_2/Module_1 352460292 33 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_2/Module_2 352460296 33 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_01/Panel_2/Module_3 352460300 33 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_1/Module_1 352461060 33 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_1/Module_2 352461064 33 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_1/Module_3 352461068 33 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_1/Module_4 352461072 33 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_2/Module_1 352461316 33 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_2/Module_2 352461320 33 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_02/Panel_2/Module_3 352461324 33 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_1/Module_1 352462084 33 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_1/Module_2 352462088 33 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_1/Module_3 352462092 33 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_1/Module_4 352462096 33 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_2/Module_1 352462340 33 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_2/Module_2 352462344 33 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_03/Panel_2/Module_3 352462348 33 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_1/Module_1 352463108 33 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_1/Module_2 352463112 33 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_1/Module_3 352463116 33 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_1/Module_4 352463120 33 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_2/Module_1 352463364 33 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_2/Module_2 352463368 33 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_04/Panel_2/Module_3 352463372 33 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_1/Module_1 352464132 33 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_1/Module_2 352464136 33 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_1/Module_3 352464140 33 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_1/Module_4 352464144 33 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_2/Module_1 352464388 33 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_2/Module_2 352464392 33 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_05/Panel_2/Module_3 352464396 33 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_1/Module_1 352465156 33 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_1/Module_2 352465160 33 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_1/Module_3 352465164 33 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_1/Module_4 352465168 33 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_2/Module_1 352465412 33 12 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_2/Module_2 352465416 33 12 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_06/Panel_2/Module_3 352465420 33 12 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_1/Module_1 352466180 34 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_1/Module_2 352466184 34 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_1/Module_3 352466188 34 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_1/Module_4 352466192 34 19 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_2/Module_1 352466436 34 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_2/Module_2 352466440 34 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_07/Panel_2/Module_3 352466444 34 20 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_1/Module_1 352467204 34 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_1/Module_2 352467208 34 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_1/Module_3 352467212 34 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_1/Module_4 352467216 34 21 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_2/Module_1 352467460 34 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_2/Module_2 352467464 34 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_08/Panel_2/Module_3 352467468 34 22 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_1/Module_1 352468228 34 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_1/Module_2 352468232 34 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_1/Module_3 352468236 34 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_1/Module_4 352468240 34 23 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_2/Module_1 352468484 34 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_2/Module_2 352468488 34 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_09/Panel_2/Module_3 352468492 34 24 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_1/Module_1 352469252 34 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_1/Module_2 352469256 34 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_1/Module_3 352469260 34 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_1/Module_4 352469264 34 7 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_2/Module_1 352469508 34 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_2/Module_2 352469512 34 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_10/Panel_2/Module_3 352469516 34 8 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_1/Module_1 352470276 34 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_1/Module_2 352470280 34 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_1/Module_3 352470284 34 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_1/Module_4 352470288 34 9 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_2/Module_1 352470532 34 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_2/Module_2 352470536 34 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_11/Panel_2/Module_3 352470540 34 10 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_1/Module_1 352471300 34 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_1/Module_2 352471304 34 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_1/Module_3 352471308 34 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_1/Module_4 352471312 34 11 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_2/Module_1 352471556 34 12 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_2/Module_2 352471560 34 12 0
Pixel/Endcap/HalfCylinder_pO/Disk_2/Blade_12/Panel_2/Module_3 352471564 34 12 0
|