File: check_schema.dae

package info (click to toggle)
opencollada 0.1.0~20180719.619d942%2Bdfsg0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid
  • size: 100,188 kB
  • sloc: cpp: 652,971; ansic: 214,354; python: 11,837; java: 11,005; sh: 10,177; xml: 9,726; php: 5,235; makefile: 2,021; asm: 1,852; ruby: 101; lisp: 84; perl: 67; awk: 48
file content (1382 lines) | stat: -rw-r--r-- 211,424 bytes parent folder | download
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
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <asset>
    <contributor>
      <author>jjacob</author>
      <authoring_tool>OpenCOLLADA2015;  Version: 1.6;  Revision: developer_version</authoring_tool>
      <comments>
			ColladaMaya export options: 
			bakeTransforms=1;relativePaths=1;preserveSourceTree=1;copyTextures=1;exportTriangles=0;exportCgfxFileReferences=1;
			isSampling=0;curveConstrainSampling=0;removeStaticCurves=1;exportPhysics=1;exportConvexMeshGeometries=1;exportPolygonMeshes=1;exportLights=1;
			exportCameras=1;exportAnimationsOnly=0;exportSeparateFile=0;modelNameDAE=;exportJoints=1;exportSkin=1;exportAnimations=1;exportOptimizedBezierAnimation=0;exportInvisibleNodes=0;exportDefaultCameras=0;
			exportTexCoords=1;exportNormals=1;exportNormalsPerVertex=1;exportVertexColors=1;exportVertexColorsPerVertex=1;
			exportTexTangents=0;exportTangents=0;exportReferencedMaterials=0;exportMaterialsOnly=0;
			exportXRefs=1;dereferenceXRefs=1;exportCameraAsLookat=0;cameraXFov=0;cameraYFov=1;encodedNames=1;doublePrecision=0
		</comments>
      <source_data>file:///E:/fl4re/fl4re-tests/models/PhysX/physx.ma</source_data>
    </contributor>
    <created>2017-03-08T13:35:39</created>
    <modified>2017-03-08T13:35:39</modified>
    <unit name="meter" meter="1"/>
    <up_axis>Y_UP</up_axis>
  </asset>
  <library_lights>
    <light id="_pointLight1_pointLightShape1" name="pointLightShape1">
      <technique_common>
        <point>
          <color>1 1 1</color>
          <constant_attenuation>1</constant_attenuation>
          <linear_attenuation>0</linear_attenuation>
          <quadratic_attenuation>0</quadratic_attenuation>
        </point>
      </technique_common>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId" type="string">_pointLight1_pointLightShape1</originalMayaNodeId>
          <intensity sid="intensity" type="float">1</intensity>
        </technique>
      </extra>
    </light>
  </library_lights>
  <library_materials>
    <material id="lambert1" name="lambert1">
      <instance_effect url="#lambert1-fx"/>
    </material>
  </library_materials>
  <library_effects>
    <effect id="lambert1-fx">
      <profile_COMMON>
        <technique sid="common">
          <lambert>
            <emission>
              <color>0 0 0 1</color>
            </emission>
            <ambient>
              <color>0 0 0 1</color>
            </ambient>
            <diffuse>
              <color>0.4 0.4 0.4 1</color>
            </diffuse>
            <transparent opaque="RGB_ZERO">
              <color>0 0 0 1</color>
            </transparent>
            <transparency>
              <float>1</float>
            </transparency>
          </lambert>
        </technique>
      </profile_COMMON>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId" type="string">lambert1</originalMayaNodeId>
        </technique>
      </extra>
    </effect>
  </library_effects>
  <library_geometries>
    <geometry id="pCubeShape1" name="pCubeShape1">
      <mesh>
        <source id="pCubeShape1-positions" name="pCubeShape1-positions">
          <float_array id="pCubeShape1-positions-array" count="24">-12 -1 12 12 -1 12 -12 1 12 12 1 12 -12 1 -12 12 1 -12 -12 -1 -12 12 -1 -12</float_array>
          <technique_common>
            <accessor source="#pCubeShape1-positions-array" count="8" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCubeShape1-normals" name="pCubeShape1-normals">
          <float_array id="pCubeShape1-normals-array" count="72">0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0</float_array>
          <technique_common>
            <accessor source="#pCubeShape1-normals-array" count="24" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCubeShape1-map1" name="pCubeShape1-map1">
          <float_array id="pCubeShape1-map1-array" count="28">0.375 0 0.625 0 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25</float_array>
          <technique_common>
            <accessor source="#pCubeShape1-map1-array" count="14" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pCubeShape1-vertices" name="pCubeShape1-vertices">
          <input semantic="POSITION" source="#pCubeShape1-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="6">
          <input semantic="VERTEX" source="#pCubeShape1-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pCubeShape1-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pCubeShape1-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4</vcount>
          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pCubeShape1</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pPipeShape1" name="pPipeShape1">
      <mesh>
        <source id="pPipeShape1-positions" name="pPipeShape1-positions">
          <float_array id="pPipeShape1-positions-array" count="240">4 -4 0 3.804226 -4 -1.236068 3.236068 -4 -2.351141 2.351141 -4 -3.236068 1.236068 -4 -3.804226 0 -4 -4 -1.236068 -4 -3.804226 -2.351141 -4 -3.236068 -3.236069 -4 -2.351141 -3.804227 -4 -1.236068 -4.000001 -4 0 -3.804227 -4 1.236068 -3.236069 -4 2.351142 -2.351142 -4 3.236069 -1.236068 -4 3.804228 0 -4 4.000002 1.236069 -4 3.804228 2.351143 -4 3.23607 3.23607 -4 2.351142 3.804229 -4 1.236069 4 4 0 3.804226 4 -1.236068 3.236068 4 -2.351141 2.351141 4 -3.236068 1.236068 4 -3.804226 0 4 -4 -1.236068 4 -3.804226 -2.351141 4 -3.236068 -3.236069 4 -2.351141 -3.804227 4 -1.236068 -4.000001 4 0 -3.804227 4 1.236068 -3.236069 4 2.351142 -2.351142 4 3.236069 -1.236068 4 3.804228 0 4 4.000002 1.236069 4 3.804228 2.351143 4 3.23607 3.23607 4 2.351142 3.804229 4 1.236069 5 4 0 4.755283 4 -1.545085 4.045085 4 -2.938926 2.938926 4 -4.045085 1.545085 4 -4.755283 0 4 -5.000001 -1.545085 4 -4.755284 -2.938927 4 -4.045086 -4.045086 4 -2.938927 -4.755284 4 -1.545085 -5.000001 4 0 -4.755284 4 1.545085 -4.045086 4 2.938927 -2.938927 4 4.045086 -1.545085 4 4.755284 0 4 5.000001 1.545085 4 4.755284 2.938927 4 4.045086 4.045086 4 2.938927 4.755284 4 1.545085 5 -4 0 4.755283 -4 -1.545085 4.045085 -4 -2.938926 2.938926 -4 -4.045085 1.545085 -4 -4.755283 0 -4 -5.000001 -1.545085 -4 -4.755284 -2.938927 -4 -4.045086 -4.045086 -4 -2.938927 -4.755284 -4 -1.545085 -5.000001 -4 0 -4.755284 -4 1.545085 -4.045086 -4 2.938927 -2.938927 -4 4.045086 -1.545085 -4 4.755284 0 -4 5.000001 1.545085 -4 4.755284 2.938927 -4 4.045086 4.045086 -4 2.938927 4.755284 -4 1.545085</float_array>
          <technique_common>
            <accessor source="#pPipeShape1-positions-array" count="80" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pPipeShape1-normals" name="pPipeShape1-normals">
          <float_array id="pPipeShape1-normals-array" count="480">-0.9510566 0 0.309017 -1 0 0 -1 0 0 -0.9510566 0 0.309017 -0.8090169 0 0.5877852 -0.8090169 0 0.5877852 -0.5877853 0 0.8090169 -0.5877853 0 0.8090169 -0.3090171 0 0.9510565 -0.3090171 0 0.9510565 0 0 1 0 0 1 0.3090169 0 0.9510565 0.3090169 0 0.9510565 0.5877851 0 0.809017 0.5877851 0 0.809017 0.8090169 0 0.5877853 0.8090169 0 0.5877853 0.9510565 0 0.3090171 0.9510565 0 0.3090171 1 0 0 1 0 0 0.9510566 0 -0.309017 0.9510566 0 -0.309017 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877853 0 -0.8090169 0.5877853 0 -0.8090169 0.3090171 0 -0.9510565 0.3090171 0 -0.9510565 0 0 -1 0 0 -1 -0.3090169 0 -0.9510565 -0.3090169 0 -0.9510565 -0.5877852 0 -0.8090171 -0.5877852 0 -0.8090171 -0.8090171 0 -0.5877852 -0.8090171 0 -0.5877852 -0.9510568 0 -0.3090161 -0.9510568 0 -0.3090161 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.9510565 0 -0.3090169 1 0 0 1 0 0 0.9510565 0 -0.3090169 0.809017 0 -0.5877852 0.809017 0 -0.5877852 0.5877854 0 -0.8090169 0.5877854 0 -0.8090169 0.3090172 0 -0.9510564 0.3090172 0 -0.9510564 0 0 -1 0 0 -1 -0.3090169 0 -0.9510565 -0.3090169 0 -0.9510565 -0.5877852 0 -0.8090171 -0.5877852 0 -0.8090171 -0.8090169 0 -0.5877853 -0.8090169 0 -0.5877853 -0.9510565 0 -0.309017 -0.9510565 0 -0.309017 -1 0 0 -1 0 0 -0.9510565 0 0.3090169 -0.9510565 0 0.3090169 -0.8090169 0 0.5877852 -0.8090169 0 0.5877852 -0.5877853 0 0.8090169 -0.5877853 0 0.8090169 -0.309017 0 0.9510565 -0.309017 0 0.9510565 0 0 1 0 0 1 0.309017 0 0.9510565 0.309017 0 0.9510565 0.5877852 0 0.809017 0.5877852 0 0.809017 0.8090169 0 0.5877853 0.8090169 0 0.5877853 0.9510567 0 0.3090166 0.9510567 0 0.3090166 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9999999 0 0 -0.9999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>
          <technique_common>
            <accessor source="#pPipeShape1-normals-array" count="160" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pPipeShape1-map1" name="pPipeShape1-map1">
          <float_array id="pPipeShape1-map1-array" count="210">0 1 0.05 1 0.1 1 0.15 1 0.2 1 0.25 1 0.3 1 0.35 1 0.4 1 0.45 1 0.5000001 1 0.5500001 1 0.6000001 1 0.6500001 1 0.7000001 1 0.7500001 1 0.8000001 1 0.8500001 1 0.9000002 1 0.9500002 1 1 1 0 0.75 0.05 0.75 0.1 0.75 0.15 0.75 0.2 0.75 0.25 0.75 0.3 0.75 0.35 0.75 0.4 0.75 0.45 0.75 0.5000001 0.75 0.5500001 0.75 0.6000001 0.75 0.6500001 0.75 0.7000001 0.75 0.7500001 0.75 0.8000001 0.75 0.8500001 0.75 0.9000002 0.75 0.9500002 0.75 1 0.75 0 0.5 0.05 0.5 0.1 0.5 0.15 0.5 0.2 0.5 0.25 0.5 0.3 0.5 0.35 0.5 0.4 0.5 0.45 0.5 0.5000001 0.5 0.5500001 0.5 0.6000001 0.5 0.6500001 0.5 0.7000001 0.5 0.7500001 0.5 0.8000001 0.5 0.8500001 0.5 0.9000002 0.5 0.9500002 0.5 1 0.5 0 0.25 0.05 0.25 0.1 0.25 0.15 0.25 0.2 0.25 0.25 0.25 0.3 0.25 0.35 0.25 0.4 0.25 0.45 0.25 0.5000001 0.25 0.5500001 0.25 0.6000001 0.25 0.6500001 0.25 0.7000001 0.25 0.7500001 0.25 0.8000001 0.25 0.8500001 0.25 0.9000002 0.25 0.9500002 0.25 1 0.25 0 0 0.05 0 0.1 0 0.15 0 0.2 0 0.25 0 0.3 0 0.35 0 0.4 0 0.45 0 0.5000001 0 0.5500001 0 0.6000001 0 0.6500001 0 0.7000001 0 0.7500001 0 0.8000001 0 0.8500001 0 0.9000002 0 0.9500002 0 1 0</float_array>
          <technique_common>
            <accessor source="#pPipeShape1-map1-array" count="105" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pPipeShape1-vertices" name="pPipeShape1-vertices">
          <input semantic="POSITION" source="#pPipeShape1-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="80">
          <input semantic="VERTEX" source="#pPipeShape1-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pPipeShape1-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pPipeShape1-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4</vcount>
          <p>1 0 1 0 1 0 20 2 21 21 3 22 2 4 2 1 0 1 21 3 22 22 5 23 3 6 3 2 4 2 22 5 23 23 7 24 4 8 4 3 6 3 23 7 24 24 9 25 5 10 5 4 8 4 24 9 25 25 11 26 6 12 6 5 10 5 25 11 26 26 13 27 7 14 7 6 12 6 26 13 27 27 15 28 8 16 8 7 14 7 27 15 28 28 17 29 9 18 9 8 16 8 28 17 29 29 19 30 10 20 10 9 18 9 29 19 30 30 21 31 11 22 11 10 20 10 30 21 31 31 23 32 12 24 12 11 22 11 31 23 32 32 25 33 13 26 13 12 24 12 32 25 33 33 27 34 14 28 14 13 26 13 33 27 34 34 29 35 15 30 15 14 28 14 34 29 35 35 31 36 16 32 16 15 30 15 35 31 36 36 33 37 17 34 17 16 32 16 36 33 37 37 35 38 18 36 18 17 34 17 37 35 38 38 37 39 19 38 19 18 36 18 38 37 39 39 39 40 0 1 20 19 38 19 39 39 40 20 2 41 21 40 22 20 41 21 40 42 42 41 43 43 22 44 23 21 40 22 41 43 43 42 45 44 23 46 24 22 44 23 42 45 44 43 47 45 24 48 25 23 46 24 43 47 45 44 49 46 25 50 26 24 48 25 44 49 46 45 51 47 26 52 27 25 50 26 45 51 47 46 53 48 27 54 28 26 52 27 46 53 48 47 55 49 28 56 29 27 54 28 47 55 49 48 57 50 29 58 30 28 56 29 48 57 50 49 59 51 30 60 31 29 58 30 49 59 51 50 61 52 31 62 32 30 60 31 50 61 52 51 63 53 32 64 33 31 62 32 51 63 53 52 65 54 33 66 34 32 64 33 52 65 54 53 67 55 34 68 35 33 66 34 53 67 55 54 69 56 35 70 36 34 68 35 54 69 56 55 71 57 36 72 37 35 70 36 55 71 57 56 73 58 37 74 38 36 72 37 56 73 58 57 75 59 38 76 39 37 74 38 57 75 59 58 77 60 39 78 40 38 76 39 58 77 60 59 79 61 20 41 41 39 78 40 59 79 61 40 42 62 41 80 43 40 81 42 60 82 63 61 83 64 42 84 44 41 80 43 61 83 64 62 85 65 43 86 45 42 84 44 62 85 65 63 87 66 44 88 46 43 86 45 63 87 66 64 89 67 45 90 47 44 88 46 64 89 67 65 91 68 46 92 48 45 90 47 65 91 68 66 93 69 47 94 49 46 92 48 66 93 69 67 95 70 48 96 50 47 94 49 67 95 70 68 97 71 49 98 51 48 96 50 68 97 71 69 99 72 50 100 52 49 98 51 69 99 72 70 101 73 51 102 53 50 100 52 70 101 73 71 103 74 52 104 54 51 102 53 71 103 74 72 105 75 53 106 55 52 104 54 72 105 75 73 107 76 54 108 56 53 106 55 73 107 76 74 109 77 55 110 57 54 108 56 74 109 77 75 111 78 56 112 58 55 110 57 75 111 78 76 113 79 57 114 59 56 112 58 76 113 79 77 115 80 58 116 60 57 114 59 77 115 80 78 117 81 59 118 61 58 116 60 78 117 81 79 119 82 40 81 62 59 118 61 79 119 82 60 82 83 61 120 64 60 121 63 0 122 84 1 123 85 62 124 65 61 120 64 1 123 85 2 125 86 63 126 66 62 124 65 2 125 86 3 127 87 64 128 67 63 126 66 3 127 87 4 129 88 65 130 68 64 128 67 4 129 88 5 131 89 66 132 69 65 130 68 5 131 89 6 133 90 67 134 70 66 132 69 6 133 90 7 135 91 68 136 71 67 134 70 7 135 91 8 137 92 69 138 72 68 136 71 8 137 92 9 139 93 70 140 73 69 138 72 9 139 93 10 141 94 71 142 74 70 140 73 10 141 94 11 143 95 72 144 75 71 142 74 11 143 95 12 145 96 73 146 76 72 144 75 12 145 96 13 147 97 74 148 77 73 146 76 13 147 97 14 149 98 75 150 78 74 148 77 14 149 98 15 151 99 76 152 79 75 150 78 15 151 99 16 153 100 77 154 80 76 152 79 16 153 100 17 155 101 78 156 81 77 154 80 17 155 101 18 157 102 79 158 82 78 156 81 18 157 102 19 159 103 60 121 83 79 158 82 19 159 103 0 122 104</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pPipeShape1</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pCubeShape2" name="pCubeShape2">
      <mesh>
        <source id="pCubeShape2-positions" name="pCubeShape2-positions">
          <float_array id="pCubeShape2-positions-array" count="24">-0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5</float_array>
          <technique_common>
            <accessor source="#pCubeShape2-positions-array" count="8" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCubeShape2-normals" name="pCubeShape2-normals">
          <float_array id="pCubeShape2-normals-array" count="72">0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
          <technique_common>
            <accessor source="#pCubeShape2-normals-array" count="24" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCubeShape2-map1" name="pCubeShape2-map1">
          <float_array id="pCubeShape2-map1-array" count="28">0.375 0 0.625 0 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25</float_array>
          <technique_common>
            <accessor source="#pCubeShape2-map1-array" count="14" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pCubeShape2-vertices" name="pCubeShape2-vertices">
          <input semantic="POSITION" source="#pCubeShape2-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="6">
          <input semantic="VERTEX" source="#pCubeShape2-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pCubeShape2-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pCubeShape2-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4</vcount>
          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pCubeShape2</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pSphereShape1" name="pSphereShape1">
      <mesh>
        <source id="pSphereShape1-positions" name="pSphereShape1-positions">
          <float_array id="pSphereShape1-positions-array" count="1146">0.07438906 -0.4938442 -0.02417047 0.06327912 -0.4938442 -0.04597497 0.04597497 -0.4938442 -0.06327911 0.02417047 -0.4938442 -0.07438905 0 -0.4938442 -0.07821728 -0.02417047 -0.4938442 -0.07438905 -0.04597496 -0.4938442 -0.0632791 -0.06327909 -0.4938442 -0.04597495 -0.07438904 -0.4938442 -0.02417046 -0.07821726 -0.4938442 0 -0.07438904 -0.4938442 0.02417046 -0.06327909 -0.4938442 0.04597495 -0.04597495 -0.4938442 0.06327909 -0.02417046 -0.4938442 0.07438903 0 -0.4938442 0.07821725 0.02417045 -0.4938442 0.07438902 0.04597494 -0.4938442 0.06327908 0.06327908 -0.4938442 0.04597495 0.07438902 -0.4938442 0.02417046 0.07821724 -0.4938442 0 0.1469464 -0.4755283 -0.04774578 0.1250001 -0.4755283 -0.09081787 0.09081787 -0.4755283 -0.1250001 0.04774578 -0.4755283 -0.1469464 0 -0.4755283 -0.1545086 -0.04774578 -0.4755283 -0.1469464 -0.09081785 -0.4755283 -0.1250001 -0.125 -0.4755283 -0.09081784 -0.1469464 -0.4755283 -0.04774577 -0.1545085 -0.4755283 0 -0.1469464 -0.4755283 0.04774577 -0.125 -0.4755283 0.09081783 -0.09081783 -0.4755283 0.125 -0.04774577 -0.4755283 0.1469463 0 -0.4755283 0.1545085 0.04774575 -0.4755283 0.1469463 0.09081782 -0.4755283 0.125 0.125 -0.4755283 0.09081783 0.1469463 -0.4755283 0.04774576 0.1545085 -0.4755283 0 0.2158855 -0.4455033 -0.07014544 0.1836432 -0.4455033 -0.1334245 0.1334245 -0.4455033 -0.1836431 0.07014543 -0.4455033 -0.2158854 0 -0.4455033 -0.2269954 -0.07014543 -0.4455033 -0.2158854 -0.1334245 -0.4455033 -0.1836431 -0.1836431 -0.4455033 -0.1334245 -0.2158854 -0.4455033 -0.07014541 -0.2269953 -0.4455033 0 -0.2158854 -0.4455033 0.07014541 -0.1836431 -0.4455033 0.1334245 -0.1334245 -0.4455033 0.1836431 -0.07014541 -0.4455033 0.2158854 0 -0.4455033 0.2269953 0.07014539 -0.4455033 0.2158853 0.1334245 -0.4455033 0.183643 0.183643 -0.4455033 0.1334245 0.2158853 -0.4455033 0.07014539 0.2269953 -0.4455033 0 0.2795087 -0.4045085 -0.09081787 0.2377643 -0.4045085 -0.1727459 0.1727459 -0.4045085 -0.2377643 0.09081786 -0.4045085 -0.2795086 0 -0.4045085 -0.2938928 -0.09081786 -0.4045085 -0.2795086 -0.1727458 -0.4045085 -0.2377642 -0.2377642 -0.4045085 -0.1727458 -0.2795086 -0.4045085 -0.09081783 -0.2938927 -0.4045085 0 -0.2795086 -0.4045085 0.09081783 -0.2377642 -0.4045085 0.1727458 -0.1727458 -0.4045085 0.2377642 -0.09081783 -0.4045085 0.2795086 0 -0.4045085 0.2938927 0.09081781 -0.4045085 0.2795085 0.1727457 -0.4045085 0.2377641 0.2377641 -0.4045085 0.1727458 0.2795085 -0.4045085 0.09081782 0.2938926 -0.4045085 0 0.3362495 -0.3535534 -0.1092541 0.2860309 -0.3535534 -0.2078136 0.2078136 -0.3535534 -0.2860309 0.1092541 -0.3535534 -0.3362494 0 -0.3535534 -0.3535535 -0.1092541 -0.3535534 -0.3362494 -0.2078135 -0.3535534 -0.2860308 -0.2860308 -0.3535534 -0.2078135 -0.3362494 -0.3535534 -0.109254 -0.3535535 -0.3535534 0 -0.3362494 -0.3535534 0.109254 -0.2860308 -0.3535534 0.2078135 -0.2078135 -0.3535534 0.2860308 -0.109254 -0.3535534 0.3362493 0 -0.3535534 0.3535534 0.109254 -0.3535534 0.3362493 0.2078135 -0.3535534 0.2860307 0.2860307 -0.3535534 0.2078135 0.3362493 -0.3535534 0.109254 0.3535534 -0.3535534 0 0.3847107 -0.2938926 -0.1250001 0.3272545 -0.2938926 -0.2377643 0.2377643 -0.2938926 -0.3272544 0.1250001 -0.2938926 -0.3847107 0 -0.2938926 -0.4045087 -0.1250001 -0.2938926 -0.3847107 -0.2377642 -0.2938926 -0.3272544 -0.3272544 -0.2938926 -0.2377642 -0.3847106 -0.2938926 -0.125 -0.4045086 -0.2938926 0 -0.3847106 -0.2938926 0.125 -0.3272543 -0.2938926 0.2377642 -0.2377642 -0.2938926 0.3272543 -0.125 -0.2938926 0.3847105 0 -0.2938926 0.4045086 0.125 -0.2938926 0.3847105 0.2377641 -0.2938926 0.3272543 0.3272543 -0.2938926 0.2377642 0.3847105 -0.2938926 0.125 0.4045085 -0.2938926 0 0.4236991 -0.2269953 -0.1376682 0.36042 -0.2269953 -0.2618604 0.2618604 -0.2269953 -0.3604199 0.1376682 -0.2269953 -0.423699 0 -0.2269953 -0.4455035 -0.1376682 -0.2269953 -0.423699 -0.2618604 -0.2269953 -0.3604198 -0.3604198 -0.2269953 -0.2618603 -0.4236989 -0.2269953 -0.1376681 -0.4455034 -0.2269953 0 -0.4236989 -0.2269953 0.1376681 -0.3604198 -0.2269953 0.2618603 -0.2618603 -0.2269953 0.3604198 -0.1376681 -0.2269953 0.4236988 0 -0.2269953 0.4455033 0.1376681 -0.2269953 0.4236988 0.2618603 -0.2269953 0.3604197 0.3604197 -0.2269953 0.2618603 0.4236988 -0.2269953 0.1376681 0.4455033 -0.2269953 0 0.4522546 -0.1545085 -0.1469464 0.3847107 -0.1545085 -0.2795087 0.2795087 -0.1545085 -0.3847107 0.1469464 -0.1545085 -0.4522545 0 -0.1545085 -0.4755285 -0.1469464 -0.1545085 -0.4522544 -0.2795086 -0.1545085 -0.3847106 -0.3847106 -0.1545085 -0.2795086 -0.4522544 -0.1545085 -0.1469463 -0.4755284 -0.1545085 0 -0.4522544 -0.1545085 0.1469463 -0.3847105 -0.1545085 0.2795086 -0.2795086 -0.1545085 0.3847105 -0.1469463 -0.1545085 0.4522543 0 -0.1545085 0.4755283 0.1469463 -0.1545085 0.4522543 0.2795085 -0.1545085 0.3847105 0.3847105 -0.1545085 0.2795085 0.4522543 -0.1545085 0.1469463 0.4755283 -0.1545085 0 0.469674 -0.07821719 -0.1526063 0.3995286 -0.07821719 -0.2902745 0.2902745 -0.07821719 -0.3995286 0.1526063 -0.07821719 -0.469674 0 -0.07821719 -0.4938444 -0.1526063 -0.07821719 -0.469674 -0.2902744 -0.07821719 -0.3995285 -0.3995285 -0.07821719 -0.2902744 -0.4696738 -0.07821719 -0.1526063 -0.4938443 -0.07821719 0 -0.4696738 -0.07821719 0.1526063 -0.3995284 -0.07821719 0.2902744 -0.2902744 -0.07821719 0.3995284 -0.1526063 -0.07821719 0.4696738 0 -0.07821719 0.4938443 0.1526062 -0.07821719 0.4696738 0.2902743 -0.07821719 0.3995284 0.3995284 -0.07821719 0.2902744 0.4696737 -0.07821719 0.1526062 0.4938442 -0.07821719 0 0.4755286 0 -0.1545086 0.4045088 0 -0.2938928 0.2938928 0 -0.4045087 0.1545086 0 -0.4755285 0 0 -0.5000002 -0.1545086 0 -0.4755285 -0.2938927 0 -0.4045087 -0.4045086 0 -0.2938927 -0.4755284 0 -0.1545085 -0.5000001 0 0 -0.4755284 0 0.1545085 -0.4045086 0 0.2938927 -0.2938927 0 0.4045086 -0.1545085 0 0.4755283 0 0 0.5000001 0.1545085 0 0.4755283 0.2938926 0 0.4045085 0.4045085 0 0.2938927 0.4755283 0 0.1545085 0.5 0 0 0.469674 0.07821719 -0.1526063 0.3995286 0.07821719 -0.2902745 0.2902745 0.07821719 -0.3995286 0.1526063 0.07821719 -0.469674 0 0.07821719 -0.4938444 -0.1526063 0.07821719 -0.469674 -0.2902744 0.07821719 -0.3995285 -0.3995285 0.07821719 -0.2902744 -0.4696738 0.07821719 -0.1526063 -0.4938443 0.07821719 0 -0.4696738 0.07821719 0.1526063 -0.3995284 0.07821719 0.2902744 -0.2902744 0.07821719 0.3995284 -0.1526063 0.07821719 0.4696738 0 0.07821719 0.4938443 0.1526062 0.07821719 0.4696738 0.2902743 0.07821719 0.3995284 0.3995284 0.07821719 0.2902744 0.4696737 0.07821719 0.1526062 0.4938442 0.07821719 0 0.4522546 0.1545085 -0.1469464 0.3847107 0.1545085 -0.2795087 0.2795087 0.1545085 -0.3847107 0.1469464 0.1545085 -0.4522545 0 0.1545085 -0.4755285 -0.1469464 0.1545085 -0.4522544 -0.2795086 0.1545085 -0.3847106 -0.3847106 0.1545085 -0.2795086 -0.4522544 0.1545085 -0.1469463 -0.4755284 0.1545085 0 -0.4522544 0.1545085 0.1469463 -0.3847105 0.1545085 0.2795086 -0.2795086 0.1545085 0.3847105 -0.1469463 0.1545085 0.4522543 0 0.1545085 0.4755283 0.1469463 0.1545085 0.4522543 0.2795085 0.1545085 0.3847105 0.3847105 0.1545085 0.2795085 0.4522543 0.1545085 0.1469463 0.4755283 0.1545085 0 0.4236991 0.2269953 -0.1376682 0.36042 0.2269953 -0.2618604 0.2618604 0.2269953 -0.3604199 0.1376682 0.2269953 -0.423699 0 0.2269953 -0.4455035 -0.1376682 0.2269953 -0.423699 -0.2618604 0.2269953 -0.3604198 -0.3604198 0.2269953 -0.2618603 -0.4236989 0.2269953 -0.1376681 -0.4455034 0.2269953 0 -0.4236989 0.2269953 0.1376681 -0.3604198 0.2269953 0.2618603 -0.2618603 0.2269953 0.3604198 -0.1376681 0.2269953 0.4236988 0 0.2269953 0.4455033 0.1376681 0.2269953 0.4236988 0.2618603 0.2269953 0.3604197 0.3604197 0.2269953 0.2618603 0.4236988 0.2269953 0.1376681 0.4455033 0.2269953 0 0.3847107 0.2938926 -0.1250001 0.3272545 0.2938926 -0.2377643 0.2377643 0.2938926 -0.3272544 0.1250001 0.2938926 -0.3847107 0 0.2938926 -0.4045087 -0.1250001 0.2938926 -0.3847107 -0.2377642 0.2938926 -0.3272544 -0.3272544 0.2938926 -0.2377642 -0.3847106 0.2938926 -0.125 -0.4045086 0.2938926 0 -0.3847106 0.2938926 0.125 -0.3272543 0.2938926 0.2377642 -0.2377642 0.2938926 0.3272543 -0.125 0.2938926 0.3847105 0 0.2938926 0.4045086 0.125 0.2938926 0.3847105 0.2377641 0.2938926 0.3272543 0.3272543 0.2938926 0.2377642 0.3847105 0.2938926 0.125 0.4045085 0.2938926 0 0.3362495 0.3535534 -0.1092541 0.2860309 0.3535534 -0.2078136 0.2078136 0.3535534 -0.2860309 0.1092541 0.3535534 -0.3362494 0 0.3535534 -0.3535535 -0.1092541 0.3535534 -0.3362494 -0.2078135 0.3535534 -0.2860308 -0.2860308 0.3535534 -0.2078135 -0.3362494 0.3535534 -0.109254 -0.3535535 0.3535534 0 -0.3362494 0.3535534 0.109254 -0.2860308 0.3535534 0.2078135 -0.2078135 0.3535534 0.2860308 -0.109254 0.3535534 0.3362493 0 0.3535534 0.3535534 0.109254 0.3535534 0.3362493 0.2078135 0.3535534 0.2860307 0.2860307 0.3535534 0.2078135 0.3362493 0.3535534 0.109254 0.3535534 0.3535534 0 0.2795087 0.4045085 -0.09081787 0.2377643 0.4045085 -0.1727459 0.1727459 0.4045085 -0.2377643 0.09081786 0.4045085 -0.2795086 0 0.4045085 -0.2938928 -0.09081786 0.4045085 -0.2795086 -0.1727458 0.4045085 -0.2377642 -0.2377642 0.4045085 -0.1727458 -0.2795086 0.4045085 -0.09081783 -0.2938927 0.4045085 0 -0.2795086 0.4045085 0.09081783 -0.2377642 0.4045085 0.1727458 -0.1727458 0.4045085 0.2377642 -0.09081783 0.4045085 0.2795086 0 0.4045085 0.2938927 0.09081781 0.4045085 0.2795085 0.1727457 0.4045085 0.2377641 0.2377641 0.4045085 0.1727458 0.2795085 0.4045085 0.09081782 0.2938926 0.4045085 0 0.2158855 0.4455033 -0.07014544 0.1836432 0.4455033 -0.1334245 0.1334245 0.4455033 -0.1836431 0.07014543 0.4455033 -0.2158854 0 0.4455033 -0.2269954 -0.07014543 0.4455033 -0.2158854 -0.1334245 0.4455033 -0.1836431 -0.1836431 0.4455033 -0.1334245 -0.2158854 0.4455033 -0.07014541 -0.2269953 0.4455033 0 -0.2158854 0.4455033 0.07014541 -0.1836431 0.4455033 0.1334245 -0.1334245 0.4455033 0.1836431 -0.07014541 0.4455033 0.2158854 0 0.4455033 0.2269953 0.07014539 0.4455033 0.2158853 0.1334245 0.4455033 0.183643 0.183643 0.4455033 0.1334245 0.2158853 0.4455033 0.07014539 0.2269953 0.4455033 0 0.1469464 0.4755283 -0.04774578 0.1250001 0.4755283 -0.09081787 0.09081787 0.4755283 -0.1250001 0.04774578 0.4755283 -0.1469464 0 0.4755283 -0.1545086 -0.04774578 0.4755283 -0.1469464 -0.09081785 0.4755283 -0.1250001 -0.125 0.4755283 -0.09081784 -0.1469464 0.4755283 -0.04774577 -0.1545085 0.4755283 0 -0.1469464 0.4755283 0.04774577 -0.125 0.4755283 0.09081783 -0.09081783 0.4755283 0.125 -0.04774577 0.4755283 0.1469463 0 0.4755283 0.1545085 0.04774575 0.4755283 0.1469463 0.09081782 0.4755283 0.125 0.125 0.4755283 0.09081783 0.1469463 0.4755283 0.04774576 0.1545085 0.4755283 0 0.07438906 0.4938442 -0.02417047 0.06327912 0.4938442 -0.04597497 0.04597497 0.4938442 -0.06327911 0.02417047 0.4938442 -0.07438905 0 0.4938442 -0.07821728 -0.02417047 0.4938442 -0.07438905 -0.04597496 0.4938442 -0.0632791 -0.06327909 0.4938442 -0.04597495 -0.07438904 0.4938442 -0.02417046 -0.07821726 0.4938442 0 -0.07438904 0.4938442 0.02417046 -0.06327909 0.4938442 0.04597495 -0.04597495 0.4938442 0.06327909 -0.02417046 0.4938442 0.07438903 0 0.4938442 0.07821725 0.02417045 0.4938442 0.07438902 0.04597494 0.4938442 0.06327908 0.06327908 0.4938442 0.04597495 0.07438902 0.4938442 0.02417046 0.07821724 0.4938442 0 0 -0.5 0 0 0.5 0</float_array>
          <technique_common>
            <accessor source="#pSphereShape1-positions-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pSphereShape1-normals" name="pSphereShape1-normals">
          <float_array id="pSphereShape1-normals-array" count="1146">0.190555 -0.9797221 -0.06191489 0.1620956 -0.9797221 -0.117769 0.1177694 -0.9797222 -0.1620952 0.06191502 -0.9797221 -0.1905546 0 -0.9797221 -0.2003608 -0.06191509 -0.9797221 -0.1905547 -0.1177694 -0.9797221 -0.1620954 -0.1620957 -0.9797221 -0.1177691 -0.190555 -0.9797221 -0.06191493 -0.2003613 -0.979722 0 -0.1905549 -0.9797221 0.06191491 -0.1620957 -0.9797221 0.1177691 -0.1177694 -0.9797222 0.1620951 -0.06191507 -0.9797221 0.1905547 0 -0.9797221 0.2003614 0.0619151 -0.9797221 0.1905549 0.1177694 -0.9797221 0.1620958 0.1620957 -0.9797221 0.1177696 0.190555 -0.9797221 0.06191494 0.2003613 -0.9797221 0 0.3172516 -0.9427226 -0.1030811 0.2698701 -0.9427225 -0.196072 0.1960721 -0.9427226 -0.2698701 0.1030812 -0.9427225 -0.3172516 0 -0.9427225 -0.333578 -0.1030813 -0.9427225 -0.3172515 -0.1960723 -0.9427224 -0.2698702 -0.2698703 -0.9427224 -0.1960722 -0.3172516 -0.9427225 -0.1030812 -0.3335781 -0.9427225 0 -0.3172516 -0.9427226 0.103081 -0.2698703 -0.9427224 0.1960724 -0.1960722 -0.9427226 0.2698703 -0.1030813 -0.9427226 0.3172513 0 -0.9427224 0.333578 0.1030813 -0.9427224 0.3172517 0.1960723 -0.9427225 0.2698705 0.2698703 -0.9427224 0.1960727 0.3172516 -0.9427224 0.1030814 0.333578 -0.9427224 0 0.4477114 -0.8822658 -0.1454698 0.3808459 -0.8822659 -0.2767008 0.2767007 -0.8822659 -0.3808458 0.1454702 -0.8822659 -0.4477112 0 -0.8822659 -0.4707516 -0.1454703 -0.8822659 -0.4477112 -0.276701 -0.8822659 -0.3808458 -0.3808461 -0.8822658 -0.2767009 -0.4477115 -0.8822658 -0.1454701 -0.4707517 -0.8822657 0 -0.4477115 -0.8822658 0.1454702 -0.3808461 -0.8822657 0.2767012 -0.2767009 -0.8822657 0.3808463 -0.1454702 -0.8822658 0.4477115 0 -0.8822657 0.4707518 0.1454703 -0.8822657 0.4477114 0.276701 -0.8822657 0.3808461 0.3808462 -0.8822656 0.2767012 0.4477115 -0.8822656 0.1454706 0.4707517 -0.8822657 0 0.5703146 -0.800252 -0.1853057 0.4851383 -0.8002519 -0.3524735 0.3524735 -0.8002519 -0.4851383 0.1853063 -0.8002519 -0.5703143 0 -0.800252 -0.5996639 -0.1853064 -0.800252 -0.5703141 -0.3524738 -0.800252 -0.4851382 -0.4851384 -0.8002518 -0.3524735 -0.5703143 -0.8002518 -0.1853061 -0.599664 -0.8002518 0 -0.5703143 -0.8002519 0.1853064 -0.4851383 -0.800252 0.3524737 -0.3524736 -0.8002518 0.4851384 -0.1853063 -0.8002518 0.5703146 0 -0.8002517 0.5996642 0.1853065 -0.8002518 0.5703145 0.3524738 -0.8002518 0.4851384 0.4851384 -0.8002518 0.3524737 0.5703145 -0.8002518 0.1853064 0.5996641 -0.8002518 0 0.6803179 -0.6987886 -0.2210479 0.5787126 -0.6987886 -0.4204594 0.4204593 -0.6987885 -0.5787128 0.2210485 -0.6987886 -0.6803177 0 -0.6987886 -0.7153282 -0.2210488 -0.6987887 -0.6803175 -0.4204596 -0.6987885 -0.5787126 -0.5787128 -0.6987886 -0.4204594 -0.6803176 -0.6987886 -0.2210484 -0.7153283 -0.6987885 0 -0.6803176 -0.6987885 0.2210486 -0.5787128 -0.6987884 0.4204596 -0.4204594 -0.6987884 0.5787128 -0.2210486 -0.6987884 0.6803178 0 -0.6987884 0.7153284 0.2210487 -0.6987885 0.6803176 0.4204594 -0.6987884 0.5787128 0.5787129 -0.6987883 0.4204595 0.6803178 -0.6987884 0.2210485 0.7153284 -0.6987884 0 0.774475 -0.5804009 -0.2516413 0.6588076 -0.5804008 -0.4786518 0.4786516 -0.5804006 -0.6588078 0.251642 -0.5804007 -0.7744749 0 -0.5804008 -0.814331 -0.2516423 -0.5804008 -0.7744747 -0.4786519 -0.5804007 -0.6588075 -0.6588076 -0.5804007 -0.4786518 -0.774475 -0.5804006 -0.2516421 -0.8143311 -0.5804005 0 -0.7744749 -0.5804006 0.2516422 -0.6588076 -0.5804006 0.4786519 -0.4786518 -0.5804006 0.6588078 -0.2516421 -0.5804005 0.774475 0 -0.5804006 0.8143312 0.2516423 -0.5804007 0.7744749 0.478652 -0.5804005 0.6588078 0.6588078 -0.5804005 0.4786519 0.7744749 -0.5804005 0.2516422 0.8143311 -0.5804006 0 0.8502796 -0.4479938 -0.2762716 0.7232909 -0.4479937 -0.5255017 0.5255014 -0.4479936 -0.7232911 0.2762724 -0.4479936 -0.8502795 0 -0.4479935 -0.8940368 -0.2762727 -0.4479935 -0.8502795 -0.5255018 -0.4479935 -0.7232908 -0.723291 -0.4479935 -0.5255015 -0.8502796 -0.4479933 -0.2762725 -0.8940368 -0.4479934 0 -0.8502795 -0.4479935 0.2762726 -0.7232909 -0.4479935 0.5255017 -0.5255016 -0.4479936 0.723291 -0.2762725 -0.4479935 0.8502796 0 -0.4479935 0.8940368 0.2762727 -0.4479934 0.8502795 0.5255017 -0.4479934 0.723291 0.723291 -0.4479934 0.5255017 0.8502796 -0.4479934 0.2762725 0.8940368 -0.4479937 0 0.9058056 -0.3047888 -0.294313 0.7705238 -0.3047888 -0.5598185 0.5598183 -0.3047889 -0.770524 0.2943138 -0.3047888 -0.9058053 0 -0.3047887 -0.9524201 -0.2943141 -0.3047887 -0.9058052 -0.5598187 -0.3047888 -0.7705238 -0.7705241 -0.3047886 -0.5598183 -0.9058054 -0.3047885 -0.2943139 -0.9524201 -0.3047886 0 -0.9058053 -0.3047886 0.294314 -0.770524 -0.3047886 0.5598186 -0.5598184 -0.3047886 0.770524 -0.2943139 -0.3047887 0.9058053 0 -0.3047887 0.95242 0.2943141 -0.3047886 0.9058053 0.5598184 -0.3047887 0.770524 0.770524 -0.3047888 0.5598184 0.9058053 -0.3047887 0.2943139 0.95242 -0.3047886 0 0.9396746 -0.1542487 -0.3053177 0.7993346 -0.1542489 -0.5807506 0.5807505 -0.1542488 -0.7993348 0.3053184 -0.1542488 -0.9396744 0 -0.1542488 -0.988032 -0.3053187 -0.1542488 -0.9396743 -0.5807509 -0.1542488 -0.7993345 -0.7993348 -0.1542488 -0.5807505 -0.9396744 -0.1542488 -0.3053186 -0.988032 -0.1542487 0 -0.9396744 -0.1542487 0.3053187 -0.7993346 -0.1542487 0.5807507 -0.5807506 -0.1542487 0.7993347 -0.3053187 -0.1542487 0.9396743 0 -0.1542488 0.988032 0.3053188 -0.1542487 0.9396743 0.5807507 -0.1542487 0.7993348 0.7993348 -0.1542487 0.5807506 0.9396744 -0.1542487 0.3053187 0.9880321 -0.1542485 0 0.9510569 0 -0.309016 0.809017 0 -0.5877852 0.5877851 0 -0.8090171 0.3090167 0 -0.9510566 0 0 -1 -0.309017 0 -0.9510565 -0.5877855 0 -0.8090168 -0.8090171 0 -0.5877851 -0.9510565 0 -0.3090169 -1 0 0 -0.9510565 0 0.309017 -0.8090169 0 0.5877853 -0.5877852 0 0.8090171 -0.309017 0 0.9510565 0 0 1 0.3090171 0 0.9510565 0.5877852 0 0.809017 0.809017 0 0.5877852 0.9510565 0 0.3090169 1 0 0 0.9396746 0.1542487 -0.3053177 0.7993346 0.1542489 -0.5807507 0.5807505 0.1542488 -0.7993348 0.3053185 0.1542488 -0.9396744 0 0.1542488 -0.988032 -0.3053187 0.1542488 -0.9396743 -0.5807509 0.1542488 -0.7993345 -0.7993348 0.1542488 -0.5807505 -0.9396744 0.1542488 -0.3053186 -0.988032 0.1542487 0 -0.9396744 0.1542487 0.3053187 -0.7993346 0.1542487 0.5807508 -0.5807506 0.1542487 0.7993347 -0.3053187 0.1542487 0.9396743 0 0.1542488 0.988032 0.3053188 0.1542487 0.9396743 0.5807506 0.1542487 0.7993348 0.7993347 0.1542487 0.5807506 0.9396744 0.1542486 0.3053186 0.9880321 0.1542485 0 0.9058056 0.3047888 -0.294313 0.770524 0.3047888 -0.5598185 0.5598183 0.3047889 -0.770524 0.2943137 0.3047888 -0.9058053 0 0.3047887 -0.9524201 -0.2943141 0.3047887 -0.9058052 -0.5598187 0.3047887 -0.7705238 -0.7705241 0.3047885 -0.5598183 -0.9058053 0.3047884 -0.2943139 -0.95242 0.3047886 0 -0.9058053 0.3047886 0.294314 -0.770524 0.3047885 0.5598186 -0.5598184 0.3047886 0.770524 -0.2943139 0.3047887 0.9058053 0 0.3047887 0.95242 0.2943141 0.3047886 0.9058053 0.5598184 0.3047887 0.770524 0.770524 0.3047888 0.5598184 0.9058053 0.3047886 0.2943139 0.9524201 0.3047886 0 0.8502796 0.4479937 -0.2762716 0.7232909 0.4479937 -0.5255017 0.5255014 0.4479936 -0.7232911 0.2762724 0.4479936 -0.8502795 0 0.4479935 -0.8940368 -0.2762727 0.4479935 -0.8502796 -0.5255018 0.4479935 -0.7232908 -0.7232911 0.4479934 -0.5255016 -0.8502796 0.4479933 -0.2762725 -0.8940369 0.4479933 0 -0.8502796 0.4479934 0.2762726 -0.7232909 0.4479934 0.5255018 -0.5255016 0.4479935 0.723291 -0.2762724 0.4479935 0.8502795 0 0.4479935 0.8940368 0.2762727 0.4479934 0.8502795 0.5255017 0.4479934 0.723291 0.723291 0.4479934 0.5255017 0.8502796 0.4479935 0.2762725 0.8940368 0.4479936 0 0.774475 0.5804008 -0.2516413 0.6588075 0.5804008 -0.4786518 0.4786516 0.5804007 -0.6588078 0.251642 0.5804007 -0.7744748 0 0.5804008 -0.814331 -0.2516423 0.5804008 -0.7744747 -0.4786519 0.5804008 -0.6588075 -0.6588078 0.5804006 -0.4786518 -0.7744749 0.5804005 -0.2516421 -0.8143312 0.5804005 0 -0.7744749 0.5804005 0.2516422 -0.6588078 0.5804006 0.478652 -0.4786518 0.5804006 0.6588078 -0.2516421 0.5804005 0.7744749 0 0.5804006 0.8143311 0.2516422 0.5804006 0.7744749 0.478652 0.5804005 0.6588078 0.6588078 0.5804005 0.4786519 0.7744749 0.5804005 0.2516421 0.8143311 0.5804006 0 0.6803179 0.6987886 -0.2210479 0.5787127 0.6987886 -0.4204594 0.4204593 0.6987886 -0.5787128 0.2210485 0.6987886 -0.6803177 0 0.6987886 -0.7153282 -0.2210487 0.6987886 -0.6803175 -0.4204597 0.6987885 -0.5787126 -0.5787129 0.6987885 -0.4204594 -0.6803176 0.6987886 -0.2210485 -0.7153283 0.6987885 0 -0.6803176 0.6987885 0.2210486 -0.5787128 0.6987885 0.4204595 -0.4204594 0.6987885 0.5787128 -0.2210486 0.6987884 0.6803178 0 0.6987885 0.7153284 0.2210487 0.6987885 0.6803177 0.4204594 0.6987884 0.5787128 0.5787129 0.6987883 0.4204595 0.6803178 0.6987883 0.2210486 0.7153284 0.6987883 0 0.5703146 0.8002519 -0.1853056 0.4851384 0.800252 -0.3524736 0.3524735 0.800252 -0.4851384 0.1853062 0.8002519 -0.5703143 0 0.800252 -0.5996639 -0.1853065 0.800252 -0.5703143 -0.3524739 0.8002518 -0.4851383 -0.4851384 0.8002518 -0.3524735 -0.5703143 0.800252 -0.1853062 -0.599664 0.8002518 0 -0.5703143 0.8002519 0.1853064 -0.4851383 0.8002518 0.3524737 -0.3524736 0.8002518 0.4851385 -0.1853063 0.8002518 0.5703146 0 0.8002517 0.5996642 0.1853065 0.8002517 0.5703145 0.3524737 0.8002518 0.4851384 0.4851385 0.8002518 0.3524737 0.5703145 0.8002518 0.1853064 0.5996641 0.8002518 0 0.4477114 0.8822658 -0.1454698 0.3808459 0.8822659 -0.2767008 0.2767007 0.8822659 -0.380846 0.1454701 0.8822658 -0.4477113 0 0.8822658 -0.4707514 -0.1454703 0.8822659 -0.4477112 -0.276701 0.8822658 -0.3808458 -0.3808461 0.8822658 -0.2767008 -0.4477115 0.8822658 -0.1454699 -0.4707517 0.8822657 0 -0.4477115 0.8822658 0.1454703 -0.3808461 0.8822658 0.2767011 -0.2767009 0.8822657 0.3808464 -0.1454702 0.8822657 0.4477117 0 0.8822657 0.4707519 0.1454703 0.8822657 0.4477115 0.276701 0.8822657 0.3808461 0.3808462 0.8822656 0.2767011 0.4477115 0.8822656 0.1454704 0.4707517 0.8822658 0 0.3172516 0.9427225 -0.1030811 0.2698702 0.9427226 -0.1960721 0.1960721 0.9427226 -0.2698702 0.1030812 0.9427225 -0.3172517 0 0.9427226 -0.3335781 -0.1030813 0.9427224 -0.3172515 -0.1960723 0.9427225 -0.2698702 -0.2698703 0.9427225 -0.1960723 -0.3172516 0.9427225 -0.103081 -0.3335781 0.9427224 0 -0.3172516 0.9427225 0.103081 -0.2698703 0.9427225 0.196072 -0.1960723 0.9427226 0.2698701 -0.1030813 0.9427226 0.3172514 0 0.9427226 0.3335779 0.1030813 0.9427226 0.3172515 0.1960723 0.9427225 0.2698704 0.2698704 0.9427225 0.1960726 0.3172516 0.9427224 0.1030814 0.333578 0.9427226 0 0.190555 0.9797221 -0.06191489 0.1620957 0.9797222 -0.117769 0.1177694 0.9797222 -0.1620952 0.06191503 0.9797221 -0.1905546 0 0.9797221 -0.2003609 -0.06191508 0.9797221 -0.1905547 -0.1177694 0.979722 -0.1620957 -0.1620957 0.9797221 -0.1177695 -0.190555 0.9797221 -0.06191492 -0.2003613 0.9797221 0 -0.1905549 0.9797221 0.06191492 -0.1620957 0.9797221 0.1177691 -0.1177695 0.9797222 0.1620952 -0.06191507 0.9797222 0.1905546 0 0.9797221 0.2003611 0.0619151 0.9797221 0.1905545 0.1177695 0.9797221 0.1620956 0.1620957 0.9797221 0.1177695 0.190555 0.9797221 0.06191492 0.2003613 0.9797221 0 0 -1 0 0 1 0</float_array>
          <technique_common>
            <accessor source="#pSphereShape1-normals-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pSphereShape1-map1" name="pSphereShape1-map1">
          <float_array id="pSphereShape1-map1-array" count="878">0 0.05 0.05 0.05 0.1 0.05 0.15 0.05 0.2 0.05 0.25 0.05 0.3 0.05 0.35 0.05 0.4 0.05 0.45 0.05 0.5000001 0.05 0.5500001 0.05 0.6000001 0.05 0.6500001 0.05 0.7000001 0.05 0.7500001 0.05 0.8000001 0.05 0.8500001 0.05 0.9000002 0.05 0.9500002 0.05 1 0.05 0 0.1 0.05 0.1 0.1 0.1 0.15 0.1 0.2 0.1 0.25 0.1 0.3 0.1 0.35 0.1 0.4 0.1 0.45 0.1 0.5000001 0.1 0.5500001 0.1 0.6000001 0.1 0.6500001 0.1 0.7000001 0.1 0.7500001 0.1 0.8000001 0.1 0.8500001 0.1 0.9000002 0.1 0.9500002 0.1 1 0.1 0 0.15 0.05 0.15 0.1 0.15 0.15 0.15 0.2 0.15 0.25 0.15 0.3 0.15 0.35 0.15 0.4 0.15 0.45 0.15 0.5000001 0.15 0.5500001 0.15 0.6000001 0.15 0.6500001 0.15 0.7000001 0.15 0.7500001 0.15 0.8000001 0.15 0.8500001 0.15 0.9000002 0.15 0.9500002 0.15 1 0.15 0 0.2 0.05 0.2 0.1 0.2 0.15 0.2 0.2 0.2 0.25 0.2 0.3 0.2 0.35 0.2 0.4 0.2 0.45 0.2 0.5000001 0.2 0.5500001 0.2 0.6000001 0.2 0.6500001 0.2 0.7000001 0.2 0.7500001 0.2 0.8000001 0.2 0.8500001 0.2 0.9000002 0.2 0.9500002 0.2 1 0.2 0 0.25 0.05 0.25 0.1 0.25 0.15 0.25 0.2 0.25 0.25 0.25 0.3 0.25 0.35 0.25 0.4 0.25 0.45 0.25 0.5000001 0.25 0.5500001 0.25 0.6000001 0.25 0.6500001 0.25 0.7000001 0.25 0.7500001 0.25 0.8000001 0.25 0.8500001 0.25 0.9000002 0.25 0.9500002 0.25 1 0.25 0 0.3 0.05 0.3 0.1 0.3 0.15 0.3 0.2 0.3 0.25 0.3 0.3 0.3 0.35 0.3 0.4 0.3 0.45 0.3 0.5000001 0.3 0.5500001 0.3 0.6000001 0.3 0.6500001 0.3 0.7000001 0.3 0.7500001 0.3 0.8000001 0.3 0.8500001 0.3 0.9000002 0.3 0.9500002 0.3 1 0.3 0 0.35 0.05 0.35 0.1 0.35 0.15 0.35 0.2 0.35 0.25 0.35 0.3 0.35 0.35 0.35 0.4 0.35 0.45 0.35 0.5000001 0.35 0.5500001 0.35 0.6000001 0.35 0.6500001 0.35 0.7000001 0.35 0.7500001 0.35 0.8000001 0.35 0.8500001 0.35 0.9000002 0.35 0.9500002 0.35 1 0.35 0 0.4 0.05 0.4 0.1 0.4 0.15 0.4 0.2 0.4 0.25 0.4 0.3 0.4 0.35 0.4 0.4 0.4 0.45 0.4 0.5000001 0.4 0.5500001 0.4 0.6000001 0.4 0.6500001 0.4 0.7000001 0.4 0.7500001 0.4 0.8000001 0.4 0.8500001 0.4 0.9000002 0.4 0.9500002 0.4 1 0.4 0 0.45 0.05 0.45 0.1 0.45 0.15 0.45 0.2 0.45 0.25 0.45 0.3 0.45 0.35 0.45 0.4 0.45 0.45 0.45 0.5000001 0.45 0.5500001 0.45 0.6000001 0.45 0.6500001 0.45 0.7000001 0.45 0.7500001 0.45 0.8000001 0.45 0.8500001 0.45 0.9000002 0.45 0.9500002 0.45 1 0.45 0 0.5000001 0.05 0.5000001 0.1 0.5000001 0.15 0.5000001 0.2 0.5000001 0.25 0.5000001 0.3 0.5000001 0.35 0.5000001 0.4 0.5000001 0.45 0.5000001 0.5000001 0.5000001 0.5500001 0.5000001 0.6000001 0.5000001 0.6500001 0.5000001 0.7000001 0.5000001 0.7500001 0.5000001 0.8000001 0.5000001 0.8500001 0.5000001 0.9000002 0.5000001 0.9500002 0.5000001 1 0.5000001 0 0.5500001 0.05 0.5500001 0.1 0.5500001 0.15 0.5500001 0.2 0.5500001 0.25 0.5500001 0.3 0.5500001 0.35 0.5500001 0.4 0.5500001 0.45 0.5500001 0.5000001 0.5500001 0.5500001 0.5500001 0.6000001 0.5500001 0.6500001 0.5500001 0.7000001 0.5500001 0.7500001 0.5500001 0.8000001 0.5500001 0.8500001 0.5500001 0.9000002 0.5500001 0.9500002 0.5500001 1 0.5500001 0 0.6000001 0.05 0.6000001 0.1 0.6000001 0.15 0.6000001 0.2 0.6000001 0.25 0.6000001 0.3 0.6000001 0.35 0.6000001 0.4 0.6000001 0.45 0.6000001 0.5000001 0.6000001 0.5500001 0.6000001 0.6000001 0.6000001 0.6500001 0.6000001 0.7000001 0.6000001 0.7500001 0.6000001 0.8000001 0.6000001 0.8500001 0.6000001 0.9000002 0.6000001 0.9500002 0.6000001 1 0.6000001 0 0.6500001 0.05 0.6500001 0.1 0.6500001 0.15 0.6500001 0.2 0.6500001 0.25 0.6500001 0.3 0.6500001 0.35 0.6500001 0.4 0.6500001 0.45 0.6500001 0.5000001 0.6500001 0.5500001 0.6500001 0.6000001 0.6500001 0.6500001 0.6500001 0.7000001 0.6500001 0.7500001 0.6500001 0.8000001 0.6500001 0.8500001 0.6500001 0.9000002 0.6500001 0.9500002 0.6500001 1 0.6500001 0 0.7000001 0.05 0.7000001 0.1 0.7000001 0.15 0.7000001 0.2 0.7000001 0.25 0.7000001 0.3 0.7000001 0.35 0.7000001 0.4 0.7000001 0.45 0.7000001 0.5000001 0.7000001 0.5500001 0.7000001 0.6000001 0.7000001 0.6500001 0.7000001 0.7000001 0.7000001 0.7500001 0.7000001 0.8000001 0.7000001 0.8500001 0.7000001 0.9000002 0.7000001 0.9500002 0.7000001 1 0.7000001 0 0.7500001 0.05 0.7500001 0.1 0.7500001 0.15 0.7500001 0.2 0.7500001 0.25 0.7500001 0.3 0.7500001 0.35 0.7500001 0.4 0.7500001 0.45 0.7500001 0.5000001 0.7500001 0.5500001 0.7500001 0.6000001 0.7500001 0.6500001 0.7500001 0.7000001 0.7500001 0.7500001 0.7500001 0.8000001 0.7500001 0.8500001 0.7500001 0.9000002 0.7500001 0.9500002 0.7500001 1 0.7500001 0 0.8000001 0.05 0.8000001 0.1 0.8000001 0.15 0.8000001 0.2 0.8000001 0.25 0.8000001 0.3 0.8000001 0.35 0.8000001 0.4 0.8000001 0.45 0.8000001 0.5000001 0.8000001 0.5500001 0.8000001 0.6000001 0.8000001 0.6500001 0.8000001 0.7000001 0.8000001 0.7500001 0.8000001 0.8000001 0.8000001 0.8500001 0.8000001 0.9000002 0.8000001 0.9500002 0.8000001 1 0.8000001 0 0.8500001 0.05 0.8500001 0.1 0.8500001 0.15 0.8500001 0.2 0.8500001 0.25 0.8500001 0.3 0.8500001 0.35 0.8500001 0.4 0.8500001 0.45 0.8500001 0.5000001 0.8500001 0.5500001 0.8500001 0.6000001 0.8500001 0.6500001 0.8500001 0.7000001 0.8500001 0.7500001 0.8500001 0.8000001 0.8500001 0.8500001 0.8500001 0.9000002 0.8500001 0.9500002 0.8500001 1 0.8500001 0 0.9000002 0.05 0.9000002 0.1 0.9000002 0.15 0.9000002 0.2 0.9000002 0.25 0.9000002 0.3 0.9000002 0.35 0.9000002 0.4 0.9000002 0.45 0.9000002 0.5000001 0.9000002 0.5500001 0.9000002 0.6000001 0.9000002 0.6500001 0.9000002 0.7000001 0.9000002 0.7500001 0.9000002 0.8000001 0.9000002 0.8500001 0.9000002 0.9000002 0.9000002 0.9500002 0.9000002 1 0.9000002 0 0.9500002 0.05 0.9500002 0.1 0.9500002 0.15 0.9500002 0.2 0.9500002 0.25 0.9500002 0.3 0.9500002 0.35 0.9500002 0.4 0.9500002 0.45 0.9500002 0.5000001 0.9500002 0.5500001 0.9500002 0.6000001 0.9500002 0.6500001 0.9500002 0.7000001 0.9500002 0.7500001 0.9500002 0.8000001 0.9500002 0.8500001 0.9500002 0.9000002 0.9500002 0.9500002 0.9500002 1 0.9500002 0.025 0 0.075 0 0.125 0 0.175 0 0.225 0 0.275 0 0.325 0 0.375 0 0.425 0 0.475 0 0.525 0 0.575 0 0.625 0 0.675 0 0.725 0 0.775 0 0.825 0 0.875 0 0.925 0 0.975 0 0.025 1 0.075 1 0.125 1 0.175 1 0.225 1 0.275 1 0.325 1 0.375 1 0.425 1 0.475 1 0.525 1 0.575 1 0.625 1 0.675 1 0.725 1 0.775 1 0.825 1 0.875 1 0.925 1 0.975 1</float_array>
          <technique_common>
            <accessor source="#pSphereShape1-map1-array" count="439" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pSphereShape1-vertices" name="pSphereShape1-vertices">
          <input semantic="POSITION" source="#pSphereShape1-positions"/>
          <input semantic="NORMAL" source="#pSphereShape1-normals"/>
        </vertices>
        <polylist material="initialShadingGroup" count="400">
          <input semantic="VERTEX" source="#pSphereShape1-vertices" offset="0"/>
          <input semantic="TEXCOORD" source="#pSphereShape1-map1" offset="1" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>
          <p>0 0 1 1 21 22 20 21 1 1 2 2 22 23 21 22 2 2 3 3 23 24 22 23 3 3 4 4 24 25 23 24 4 4 5 5 25 26 24 25 5 5 6 6 26 27 25 26 6 6 7 7 27 28 26 27 7 7 8 8 28 29 27 28 8 8 9 9 29 30 28 29 9 9 10 10 30 31 29 30 10 10 11 11 31 32 30 31 11 11 12 12 32 33 31 32 12 12 13 13 33 34 32 33 13 13 14 14 34 35 33 34 14 14 15 15 35 36 34 35 15 15 16 16 36 37 35 36 16 16 17 17 37 38 36 37 17 17 18 18 38 39 37 38 18 18 19 19 39 40 38 39 19 19 0 20 20 41 39 40 20 21 21 22 41 43 40 42 21 22 22 23 42 44 41 43 22 23 23 24 43 45 42 44 23 24 24 25 44 46 43 45 24 25 25 26 45 47 44 46 25 26 26 27 46 48 45 47 26 27 27 28 47 49 46 48 27 28 28 29 48 50 47 49 28 29 29 30 49 51 48 50 29 30 30 31 50 52 49 51 30 31 31 32 51 53 50 52 31 32 32 33 52 54 51 53 32 33 33 34 53 55 52 54 33 34 34 35 54 56 53 55 34 35 35 36 55 57 54 56 35 36 36 37 56 58 55 57 36 37 37 38 57 59 56 58 37 38 38 39 58 60 57 59 38 39 39 40 59 61 58 60 39 40 20 41 40 62 59 61 40 42 41 43 61 64 60 63 41 43 42 44 62 65 61 64 42 44 43 45 63 66 62 65 43 45 44 46 64 67 63 66 44 46 45 47 65 68 64 67 45 47 46 48 66 69 65 68 46 48 47 49 67 70 66 69 47 49 48 50 68 71 67 70 48 50 49 51 69 72 68 71 49 51 50 52 70 73 69 72 50 52 51 53 71 74 70 73 51 53 52 54 72 75 71 74 52 54 53 55 73 76 72 75 53 55 54 56 74 77 73 76 54 56 55 57 75 78 74 77 55 57 56 58 76 79 75 78 56 58 57 59 77 80 76 79 57 59 58 60 78 81 77 80 58 60 59 61 79 82 78 81 59 61 40 62 60 83 79 82 60 63 61 64 81 85 80 84 61 64 62 65 82 86 81 85 62 65 63 66 83 87 82 86 63 66 64 67 84 88 83 87 64 67 65 68 85 89 84 88 65 68 66 69 86 90 85 89 66 69 67 70 87 91 86 90 67 70 68 71 88 92 87 91 68 71 69 72 89 93 88 92 69 72 70 73 90 94 89 93 70 73 71 74 91 95 90 94 71 74 72 75 92 96 91 95 72 75 73 76 93 97 92 96 73 76 74 77 94 98 93 97 74 77 75 78 95 99 94 98 75 78 76 79 96 100 95 99 76 79 77 80 97 101 96 100 77 80 78 81 98 102 97 101 78 81 79 82 99 103 98 102 79 82 60 83 80 104 99 103 80 84 81 85 101 106 100 105 81 85 82 86 102 107 101 106 82 86 83 87 103 108 102 107 83 87 84 88 104 109 103 108 84 88 85 89 105 110 104 109 85 89 86 90 106 111 105 110 86 90 87 91 107 112 106 111 87 91 88 92 108 113 107 112 88 92 89 93 109 114 108 113 89 93 90 94 110 115 109 114 90 94 91 95 111 116 110 115 91 95 92 96 112 117 111 116 92 96 93 97 113 118 112 117 93 97 94 98 114 119 113 118 94 98 95 99 115 120 114 119 95 99 96 100 116 121 115 120 96 100 97 101 117 122 116 121 97 101 98 102 118 123 117 122 98 102 99 103 119 124 118 123 99 103 80 104 100 125 119 124 100 105 101 106 121 127 120 126 101 106 102 107 122 128 121 127 102 107 103 108 123 129 122 128 103 108 104 109 124 130 123 129 104 109 105 110 125 131 124 130 105 110 106 111 126 132 125 131 106 111 107 112 127 133 126 132 107 112 108 113 128 134 127 133 108 113 109 114 129 135 128 134 109 114 110 115 130 136 129 135 110 115 111 116 131 137 130 136 111 116 112 117 132 138 131 137 112 117 113 118 133 139 132 138 113 118 114 119 134 140 133 139 114 119 115 120 135 141 134 140 115 120 116 121 136 142 135 141 116 121 117 122 137 143 136 142 117 122 118 123 138 144 137 143 118 123 119 124 139 145 138 144 119 124 100 125 120 146 139 145 120 126 121 127 141 148 140 147 121 127 122 128 142 149 141 148 122 128 123 129 143 150 142 149 123 129 124 130 144 151 143 150 124 130 125 131 145 152 144 151 125 131 126 132 146 153 145 152 126 132 127 133 147 154 146 153 127 133 128 134 148 155 147 154 128 134 129 135 149 156 148 155 129 135 130 136 150 157 149 156 130 136 131 137 151 158 150 157 131 137 132 138 152 159 151 158 132 138 133 139 153 160 152 159 133 139 134 140 154 161 153 160 134 140 135 141 155 162 154 161 135 141 136 142 156 163 155 162 136 142 137 143 157 164 156 163 137 143 138 144 158 165 157 164 138 144 139 145 159 166 158 165 139 145 120 146 140 167 159 166 140 147 141 148 161 169 160 168 141 148 142 149 162 170 161 169 142 149 143 150 163 171 162 170 143 150 144 151 164 172 163 171 144 151 145 152 165 173 164 172 145 152 146 153 166 174 165 173 146 153 147 154 167 175 166 174 147 154 148 155 168 176 167 175 148 155 149 156 169 177 168 176 149 156 150 157 170 178 169 177 150 157 151 158 171 179 170 178 151 158 152 159 172 180 171 179 152 159 153 160 173 181 172 180 153 160 154 161 174 182 173 181 154 161 155 162 175 183 174 182 155 162 156 163 176 184 175 183 156 163 157 164 177 185 176 184 157 164 158 165 178 186 177 185 158 165 159 166 179 187 178 186 159 166 140 167 160 188 179 187 160 168 161 169 181 190 180 189 161 169 162 170 182 191 181 190 162 170 163 171 183 192 182 191 163 171 164 172 184 193 183 192 164 172 165 173 185 194 184 193 165 173 166 174 186 195 185 194 166 174 167 175 187 196 186 195 167 175 168 176 188 197 187 196 168 176 169 177 189 198 188 197 169 177 170 178 190 199 189 198 170 178 171 179 191 200 190 199 171 179 172 180 192 201 191 200 172 180 173 181 193 202 192 201 173 181 174 182 194 203 193 202 174 182 175 183 195 204 194 203 175 183 176 184 196 205 195 204 176 184 177 185 197 206 196 205 177 185 178 186 198 207 197 206 178 186 179 187 199 208 198 207 179 187 160 188 180 209 199 208 180 189 181 190 201 211 200 210 181 190 182 191 202 212 201 211 182 191 183 192 203 213 202 212 183 192 184 193 204 214 203 213 184 193 185 194 205 215 204 214 185 194 186 195 206 216 205 215 186 195 187 196 207 217 206 216 187 196 188 197 208 218 207 217 188 197 189 198 209 219 208 218 189 198 190 199 210 220 209 219 190 199 191 200 211 221 210 220 191 200 192 201 212 222 211 221 192 201 193 202 213 223 212 222 193 202 194 203 214 224 213 223 194 203 195 204 215 225 214 224 195 204 196 205 216 226 215 225 196 205 197 206 217 227 216 226 197 206 198 207 218 228 217 227 198 207 199 208 219 229 218 228 199 208 180 209 200 230 219 229 200 210 201 211 221 232 220 231 201 211 202 212 222 233 221 232 202 212 203 213 223 234 222 233 203 213 204 214 224 235 223 234 204 214 205 215 225 236 224 235 205 215 206 216 226 237 225 236 206 216 207 217 227 238 226 237 207 217 208 218 228 239 227 238 208 218 209 219 229 240 228 239 209 219 210 220 230 241 229 240 210 220 211 221 231 242 230 241 211 221 212 222 232 243 231 242 212 222 213 223 233 244 232 243 213 223 214 224 234 245 233 244 214 224 215 225 235 246 234 245 215 225 216 226 236 247 235 246 216 226 217 227 237 248 236 247 217 227 218 228 238 249 237 248 218 228 219 229 239 250 238 249 219 229 200 230 220 251 239 250 220 231 221 232 241 253 240 252 221 232 222 233 242 254 241 253 222 233 223 234 243 255 242 254 223 234 224 235 244 256 243 255 224 235 225 236 245 257 244 256 225 236 226 237 246 258 245 257 226 237 227 238 247 259 246 258 227 238 228 239 248 260 247 259 228 239 229 240 249 261 248 260 229 240 230 241 250 262 249 261 230 241 231 242 251 263 250 262 231 242 232 243 252 264 251 263 232 243 233 244 253 265 252 264 233 244 234 245 254 266 253 265 234 245 235 246 255 267 254 266 235 246 236 247 256 268 255 267 236 247 237 248 257 269 256 268 237 248 238 249 258 270 257 269 238 249 239 250 259 271 258 270 239 250 220 251 240 272 259 271 240 252 241 253 261 274 260 273 241 253 242 254 262 275 261 274 242 254 243 255 263 276 262 275 243 255 244 256 264 277 263 276 244 256 245 257 265 278 264 277 245 257 246 258 266 279 265 278 246 258 247 259 267 280 266 279 247 259 248 260 268 281 267 280 248 260 249 261 269 282 268 281 249 261 250 262 270 283 269 282 250 262 251 263 271 284 270 283 251 263 252 264 272 285 271 284 252 264 253 265 273 286 272 285 253 265 254 266 274 287 273 286 254 266 255 267 275 288 274 287 255 267 256 268 276 289 275 288 256 268 257 269 277 290 276 289 257 269 258 270 278 291 277 290 258 270 259 271 279 292 278 291 259 271 240 272 260 293 279 292 260 273 261 274 281 295 280 294 261 274 262 275 282 296 281 295 262 275 263 276 283 297 282 296 263 276 264 277 284 298 283 297 264 277 265 278 285 299 284 298 265 278 266 279 286 300 285 299 266 279 267 280 287 301 286 300 267 280 268 281 288 302 287 301 268 281 269 282 289 303 288 302 269 282 270 283 290 304 289 303 270 283 271 284 291 305 290 304 271 284 272 285 292 306 291 305 272 285 273 286 293 307 292 306 273 286 274 287 294 308 293 307 274 287 275 288 295 309 294 308 275 288 276 289 296 310 295 309 276 289 277 290 297 311 296 310 277 290 278 291 298 312 297 311 278 291 279 292 299 313 298 312 279 292 260 293 280 314 299 313 280 294 281 295 301 316 300 315 281 295 282 296 302 317 301 316 282 296 283 297 303 318 302 317 283 297 284 298 304 319 303 318 284 298 285 299 305 320 304 319 285 299 286 300 306 321 305 320 286 300 287 301 307 322 306 321 287 301 288 302 308 323 307 322 288 302 289 303 309 324 308 323 289 303 290 304 310 325 309 324 290 304 291 305 311 326 310 325 291 305 292 306 312 327 311 326 292 306 293 307 313 328 312 327 293 307 294 308 314 329 313 328 294 308 295 309 315 330 314 329 295 309 296 310 316 331 315 330 296 310 297 311 317 332 316 331 297 311 298 312 318 333 317 332 298 312 299 313 319 334 318 333 299 313 280 314 300 335 319 334 300 315 301 316 321 337 320 336 301 316 302 317 322 338 321 337 302 317 303 318 323 339 322 338 303 318 304 319 324 340 323 339 304 319 305 320 325 341 324 340 305 320 306 321 326 342 325 341 306 321 307 322 327 343 326 342 307 322 308 323 328 344 327 343 308 323 309 324 329 345 328 344 309 324 310 325 330 346 329 345 310 325 311 326 331 347 330 346 311 326 312 327 332 348 331 347 312 327 313 328 333 349 332 348 313 328 314 329 334 350 333 349 314 329 315 330 335 351 334 350 315 330 316 331 336 352 335 351 316 331 317 332 337 353 336 352 317 332 318 333 338 354 337 353 318 333 319 334 339 355 338 354 319 334 300 335 320 356 339 355 320 336 321 337 341 358 340 357 321 337 322 338 342 359 341 358 322 338 323 339 343 360 342 359 323 339 324 340 344 361 343 360 324 340 325 341 345 362 344 361 325 341 326 342 346 363 345 362 326 342 327 343 347 364 346 363 327 343 328 344 348 365 347 364 328 344 329 345 349 366 348 365 329 345 330 346 350 367 349 366 330 346 331 347 351 368 350 367 331 347 332 348 352 369 351 368 332 348 333 349 353 370 352 369 333 349 334 350 354 371 353 370 334 350 335 351 355 372 354 371 335 351 336 352 356 373 355 372 336 352 337 353 357 374 356 373 337 353 338 354 358 375 357 374 338 354 339 355 359 376 358 375 339 355 320 356 340 377 359 376 340 357 341 358 361 379 360 378 341 358 342 359 362 380 361 379 342 359 343 360 363 381 362 380 343 360 344 361 364 382 363 381 344 361 345 362 365 383 364 382 345 362 346 363 366 384 365 383 346 363 347 364 367 385 366 384 347 364 348 365 368 386 367 385 348 365 349 366 369 387 368 386 349 366 350 367 370 388 369 387 350 367 351 368 371 389 370 388 351 368 352 369 372 390 371 389 352 369 353 370 373 391 372 390 353 370 354 371 374 392 373 391 354 371 355 372 375 393 374 392 355 372 356 373 376 394 375 393 356 373 357 374 377 395 376 394 357 374 358 375 378 396 377 395 358 375 359 376 379 397 378 396 359 376 340 377 360 398 379 397 1 1 0 0 380 399 2 2 1 1 380 400 3 3 2 2 380 401 4 4 3 3 380 402 5 5 4 4 380 403 6 6 5 5 380 404 7 7 6 6 380 405 8 8 7 7 380 406 9 9 8 8 380 407 10 10 9 9 380 408 11 11 10 10 380 409 12 12 11 11 380 410 13 13 12 12 380 411 14 14 13 13 380 412 15 15 14 14 380 413 16 16 15 15 380 414 17 17 16 16 380 415 18 18 17 17 380 416 19 19 18 18 380 417 0 20 19 19 380 418 360 378 361 379 381 419 361 379 362 380 381 420 362 380 363 381 381 421 363 381 364 382 381 422 364 382 365 383 381 423 365 383 366 384 381 424 366 384 367 385 381 425 367 385 368 386 381 426 368 386 369 387 381 427 369 387 370 388 381 428 370 388 371 389 381 429 371 389 372 390 381 430 372 390 373 391 381 431 373 391 374 392 381 432 374 392 375 393 381 433 375 393 376 394 381 434 376 394 377 395 381 435 377 395 378 396 381 436 378 396 379 397 381 437 379 397 360 398 381 438</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pSphereShape1</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pasted__pCubeShape1" name="pasted__pCubeShape1">
      <mesh>
        <source id="pasted__pCubeShape1-positions" name="pasted__pCubeShape1-positions">
          <float_array id="pasted__pCubeShape1-positions-array" count="24">-12 -1 12 12 -1 12 -12 1 12 12 1 12 -12 1 -12 12 1 -12 -12 -1 -12 12 -1 -12</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape1-positions-array" count="8" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pCubeShape1-normals" name="pasted__pCubeShape1-normals">
          <float_array id="pasted__pCubeShape1-normals-array" count="72">0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape1-normals-array" count="24" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pCubeShape1-map1" name="pasted__pCubeShape1-map1">
          <float_array id="pasted__pCubeShape1-map1-array" count="28">0.375 0 0.625 0 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape1-map1-array" count="14" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pasted__pCubeShape1-vertices" name="pasted__pCubeShape1-vertices">
          <input semantic="POSITION" source="#pasted__pCubeShape1-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="6">
          <input semantic="VERTEX" source="#pasted__pCubeShape1-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pasted__pCubeShape1-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pasted__pCubeShape1-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4</vcount>
          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pasted__pCubeShape1</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pasted__pCubeShape2" name="pasted__pCubeShape2">
      <mesh>
        <source id="pasted__pCubeShape2-positions" name="pasted__pCubeShape2-positions">
          <float_array id="pasted__pCubeShape2-positions-array" count="24">-2 -1 12 2 -1 12 -2 1 12 2 1 12 -2 1 -12 2 1 -12 -2 -1 -12 2 -1 -12</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape2-positions-array" count="8" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pCubeShape2-normals" name="pasted__pCubeShape2-normals">
          <float_array id="pasted__pCubeShape2-normals-array" count="72">0 0 1 0 0 1 0 0 1 0 0 1 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape2-normals-array" count="24" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pCubeShape2-map1" name="pasted__pCubeShape2-map1">
          <float_array id="pasted__pCubeShape2-map1-array" count="28">0.375 0 0.625 0 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25</float_array>
          <technique_common>
            <accessor source="#pasted__pCubeShape2-map1-array" count="14" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pasted__pCubeShape2-vertices" name="pasted__pCubeShape2-vertices">
          <input semantic="POSITION" source="#pasted__pCubeShape2-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="6">
          <input semantic="VERTEX" source="#pasted__pCubeShape2-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pasted__pCubeShape2-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pasted__pCubeShape2-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4</vcount>
          <p>0 0 0 1 1 1 3 2 3 2 3 2 2 4 2 3 5 3 5 6 5 4 7 4 4 8 4 5 9 5 7 10 7 6 11 6 6 12 6 7 13 7 1 14 9 0 15 8 1 16 1 7 17 10 5 18 11 3 19 3 6 20 12 0 21 0 2 22 2 4 23 13</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pasted__pCubeShape2</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pCylinderShape1" name="pCylinderShape1">
      <mesh>
        <source id="pCylinderShape1-positions" name="pCylinderShape1-positions">
          <float_array id="pCylinderShape1-positions-array" count="126">0.4755286 -0.5 -0.1545086 0.4045088 -0.5 -0.2938928 0.2938928 -0.5 -0.4045087 0.1545086 -0.5 -0.4755285 0 -0.5 -0.5000002 -0.1545086 -0.5 -0.4755285 -0.2938927 -0.5 -0.4045087 -0.4045086 -0.5 -0.2938927 -0.4755284 -0.5 -0.1545085 -0.5000001 -0.5 0 -0.4755284 -0.5 0.1545085 -0.4045086 -0.5 0.2938927 -0.2938927 -0.5 0.4045086 -0.1545085 -0.5 0.4755283 0 -0.5 0.5000001 0.1545085 -0.5 0.4755283 0.2938926 -0.5 0.4045085 0.4045085 -0.5 0.2938927 0.4755283 -0.5 0.1545085 0.5 -0.5 0 0.4755286 0.5 -0.1545086 0.4045088 0.5 -0.2938928 0.2938928 0.5 -0.4045087 0.1545086 0.5 -0.4755285 0 0.5 -0.5000002 -0.1545086 0.5 -0.4755285 -0.2938927 0.5 -0.4045087 -0.4045086 0.5 -0.2938927 -0.4755284 0.5 -0.1545085 -0.5000001 0.5 0 -0.4755284 0.5 0.1545085 -0.4045086 0.5 0.2938927 -0.2938927 0.5 0.4045086 -0.1545085 0.5 0.4755283 0 0.5 0.5000001 0.1545085 0.5 0.4755283 0.2938926 0.5 0.4045085 0.4045085 0.5 0.2938927 0.4755283 0.5 0.1545085 0.5 0.5 0 0 -0.5 0 0 0.5 0</float_array>
          <technique_common>
            <accessor source="#pCylinderShape1-positions-array" count="42" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCylinderShape1-normals" name="pCylinderShape1-normals">
          <float_array id="pCylinderShape1-normals-array" count="246">0.9510568 0 -0.309016 0.8090169 0 -0.5877853 0.8090169 0 -0.5877853 0.9510568 0 -0.309016 0.5877851 0 -0.8090171 0.5877851 0 -0.8090171 0.3090168 0 -0.9510565 0.3090168 0 -0.9510565 0 0 -1 0 0 -1 -0.3090171 0 -0.9510565 -0.3090171 0 -0.9510565 -0.5877854 0 -0.8090168 -0.5877854 0 -0.8090168 -0.8090171 0 -0.587785 -0.8090171 0 -0.587785 -0.9510566 0 -0.3090169 -0.9510566 0 -0.3090169 -1 0 0 -1 0 0 -0.9510566 0 0.309017 -0.9510566 0 0.309017 -0.8090169 0 0.5877854 -0.8090169 0 0.5877854 -0.5877851 0 0.8090171 -0.5877851 0 0.8090171 -0.3090172 0 0.9510565 -0.3090172 0 0.9510565 0 0 1 0 0 1 0.3090172 0 0.9510565 0.3090172 0 0.9510565 0.5877853 0 0.809017 0.5877853 0 0.809017 0.809017 0 0.5877852 0.809017 0 0.5877852 0.9510566 0 0.3090169 0.9510566 0 0.3090169 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0</float_array>
          <technique_common>
            <accessor source="#pCylinderShape1-normals-array" count="82" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCylinderShape1-map1" name="pCylinderShape1-map1">
          <float_array id="pCylinderShape1-map1-array" count="168">0.6486027 0.1079661 0.626409 0.0644085 0.5918415 0.02984102 0.5482839 0.007647336 0.5 0 0.4517161 0.00764735 0.4081585 0.02984105 0.3735911 0.06440853 0.3513974 0.1079661 0.34375 0.15625 0.3513974 0.2045339 0.3735911 0.2480915 0.4081585 0.2826589 0.4517161 0.3048526 0.5 0.3125 0.5482839 0.3048526 0.5918415 0.2826589 0.6264089 0.2480915 0.6486026 0.2045339 0.65625 0.15625 0.375 0.3125 0.3875 0.3125 0.4 0.3125 0.4125 0.3125 0.425 0.3125 0.4374999 0.3125 0.4499999 0.3125 0.4624999 0.3125 0.4749999 0.3125 0.4874999 0.3125 0.4999999 0.3125 0.5124999 0.3125 0.5249999 0.3125 0.5374998 0.3125 0.5499998 0.3125 0.5624998 0.3125 0.5749998 0.3125 0.5874998 0.3125 0.5999998 0.3125 0.6124998 0.3125 0.6249998 0.3125 0.375 0.6884398 0.3875 0.6884398 0.4 0.6884398 0.4125 0.6884398 0.425 0.6884398 0.4374999 0.6884398 0.4499999 0.6884398 0.4624999 0.6884398 0.4749999 0.6884398 0.4874999 0.6884398 0.4999999 0.6884398 0.5124999 0.6884398 0.5249999 0.6884398 0.5374998 0.6884398 0.5499998 0.6884398 0.5624998 0.6884398 0.5749998 0.6884398 0.5874998 0.6884398 0.5999998 0.6884398 0.6124998 0.6884398 0.6249998 0.6884398 0.6486027 0.7954661 0.626409 0.7519085 0.5918415 0.717341 0.5482839 0.6951473 0.5 0.6874999 0.4517161 0.6951473 0.4081585 0.7173411 0.3735911 0.7519085 0.3513974 0.7954661 0.34375 0.84375 0.3513974 0.8920339 0.3735911 0.9355915 0.4081585 0.9701589 0.4517161 0.9923526 0.5 1 0.5482839 0.9923526 0.5918415 0.9701589 0.6264089 0.9355915 0.6486026 0.8920339 0.65625 0.84375 0.5 0.15 0.5 0.8375</float_array>
          <technique_common>
            <accessor source="#pCylinderShape1-map1-array" count="84" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pCylinderShape1-vertices" name="pCylinderShape1-vertices">
          <input semantic="POSITION" source="#pCylinderShape1-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="60">
          <input semantic="VERTEX" source="#pCylinderShape1-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pCylinderShape1-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pCylinderShape1-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>
          <p>0 0 20 1 1 21 21 2 42 20 3 41 1 1 21 2 4 22 22 5 43 21 2 42 2 4 22 3 6 23 23 7 44 22 5 43 3 6 23 4 8 24 24 9 45 23 7 44 4 8 24 5 10 25 25 11 46 24 9 45 5 10 25 6 12 26 26 13 47 25 11 46 6 12 26 7 14 27 27 15 48 26 13 47 7 14 27 8 16 28 28 17 49 27 15 48 8 16 28 9 18 29 29 19 50 28 17 49 9 18 29 10 20 30 30 21 51 29 19 50 10 20 30 11 22 31 31 23 52 30 21 51 11 22 31 12 24 32 32 25 53 31 23 52 12 24 32 13 26 33 33 27 54 32 25 53 13 26 33 14 28 34 34 29 55 33 27 54 14 28 34 15 30 35 35 31 56 34 29 55 15 30 35 16 32 36 36 33 57 35 31 56 16 32 36 17 34 37 37 35 58 36 33 57 17 34 37 18 36 38 38 37 59 37 35 58 18 36 38 19 38 39 39 39 60 38 37 59 19 38 39 0 0 40 20 3 61 39 39 60 1 40 1 0 41 0 40 42 82 2 43 2 1 40 1 40 42 82 3 44 3 2 43 2 40 42 82 4 45 4 3 44 3 40 42 82 5 46 5 4 45 4 40 42 82 6 47 6 5 46 5 40 42 82 7 48 7 6 47 6 40 42 82 8 49 8 7 48 7 40 42 82 9 50 9 8 49 8 40 42 82 10 51 10 9 50 9 40 42 82 11 52 11 10 51 10 40 42 82 12 53 12 11 52 11 40 42 82 13 54 13 12 53 12 40 42 82 14 55 14 13 54 13 40 42 82 15 56 15 14 55 14 40 42 82 16 57 16 15 56 15 40 42 82 17 58 17 16 57 16 40 42 82 18 59 18 17 58 17 40 42 82 19 60 19 18 59 18 40 42 82 0 41 0 19 60 19 40 42 82 20 61 80 21 62 79 41 63 83 21 62 79 22 64 78 41 63 83 22 64 78 23 65 77 41 63 83 23 65 77 24 66 76 41 63 83 24 66 76 25 67 75 41 63 83 25 67 75 26 68 74 41 63 83 26 68 74 27 69 73 41 63 83 27 69 73 28 70 72 41 63 83 28 70 72 29 71 71 41 63 83 29 71 71 30 72 70 41 63 83 30 72 70 31 73 69 41 63 83 31 73 69 32 74 68 41 63 83 32 74 68 33 75 67 41 63 83 33 75 67 34 76 66 41 63 83 34 76 66 35 77 65 41 63 83 35 77 65 36 78 64 41 63 83 36 78 64 37 79 63 41 63 83 37 79 63 38 80 62 41 63 83 38 80 62 39 81 81 41 63 83 39 81 81 20 61 80 41 63 83</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pCylinderShape1</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pasted__pSphereShape2" name="pasted__pSphereShape2">
      <mesh>
        <source id="pasted__pSphereShape2-positions" name="pasted__pSphereShape2-positions">
          <float_array id="pasted__pSphereShape2-positions-array" count="1146">0.07438906 -0.4938442 -0.02417047 0.06327912 -0.4938442 -0.04597497 0.04597497 -0.4938442 -0.06327911 0.02417047 -0.4938442 -0.07438905 0 -0.4938442 -0.07821728 -0.02417047 -0.4938442 -0.07438905 -0.04597496 -0.4938442 -0.0632791 -0.06327909 -0.4938442 -0.04597495 -0.07438904 -0.4938442 -0.02417046 -0.07821726 -0.4938442 0 -0.07438904 -0.4938442 0.02417046 -0.06327909 -0.4938442 0.04597495 -0.04597495 -0.4938442 0.06327909 -0.02417046 -0.4938442 0.07438903 0 -0.4938442 0.07821725 0.02417045 -0.4938442 0.07438902 0.04597494 -0.4938442 0.06327908 0.06327908 -0.4938442 0.04597495 0.07438902 -0.4938442 0.02417046 0.07821724 -0.4938442 0 0.1469464 -0.4755283 -0.04774578 0.1250001 -0.4755283 -0.09081787 0.09081787 -0.4755283 -0.1250001 0.04774578 -0.4755283 -0.1469464 0 -0.4755283 -0.1545086 -0.04774578 -0.4755283 -0.1469464 -0.09081785 -0.4755283 -0.1250001 -0.125 -0.4755283 -0.09081784 -0.1469464 -0.4755283 -0.04774577 -0.1545085 -0.4755283 0 -0.1469464 -0.4755283 0.04774577 -0.125 -0.4755283 0.09081783 -0.09081783 -0.4755283 0.125 -0.04774577 -0.4755283 0.1469463 0 -0.4755283 0.1545085 0.04774575 -0.4755283 0.1469463 0.09081782 -0.4755283 0.125 0.125 -0.4755283 0.09081783 0.1469463 -0.4755283 0.04774576 0.1545085 -0.4755283 0 0.2158855 -0.4455033 -0.07014544 0.1836432 -0.4455033 -0.1334245 0.1334245 -0.4455033 -0.1836431 0.07014543 -0.4455033 -0.2158854 0 -0.4455033 -0.2269954 -0.07014543 -0.4455033 -0.2158854 -0.1334245 -0.4455033 -0.1836431 -0.1836431 -0.4455033 -0.1334245 -0.2158854 -0.4455033 -0.07014541 -0.2269953 -0.4455033 0 -0.2158854 -0.4455033 0.07014541 -0.1836431 -0.4455033 0.1334245 -0.1334245 -0.4455033 0.1836431 -0.07014541 -0.4455033 0.2158854 0 -0.4455033 0.2269953 0.07014539 -0.4455033 0.2158853 0.1334245 -0.4455033 0.183643 0.183643 -0.4455033 0.1334245 0.2158853 -0.4455033 0.07014539 0.2269953 -0.4455033 0 0.2795087 -0.4045085 -0.09081787 0.2377643 -0.4045085 -0.1727459 0.1727459 -0.4045085 -0.2377643 0.09081786 -0.4045085 -0.2795086 0 -0.4045085 -0.2938928 -0.09081786 -0.4045085 -0.2795086 -0.1727458 -0.4045085 -0.2377642 -0.2377642 -0.4045085 -0.1727458 -0.2795086 -0.4045085 -0.09081783 -0.2938927 -0.4045085 0 -0.2795086 -0.4045085 0.09081783 -0.2377642 -0.4045085 0.1727458 -0.1727458 -0.4045085 0.2377642 -0.09081783 -0.4045085 0.2795086 0 -0.4045085 0.2938927 0.09081781 -0.4045085 0.2795085 0.1727457 -0.4045085 0.2377641 0.2377641 -0.4045085 0.1727458 0.2795085 -0.4045085 0.09081782 0.2938926 -0.4045085 0 0.3362495 -0.3535534 -0.1092541 0.2860309 -0.3535534 -0.2078136 0.2078136 -0.3535534 -0.2860309 0.1092541 -0.3535534 -0.3362494 0 -0.3535534 -0.3535535 -0.1092541 -0.3535534 -0.3362494 -0.2078135 -0.3535534 -0.2860308 -0.2860308 -0.3535534 -0.2078135 -0.3362494 -0.3535534 -0.109254 -0.3535535 -0.3535534 0 -0.3362494 -0.3535534 0.109254 -0.2860308 -0.3535534 0.2078135 -0.2078135 -0.3535534 0.2860308 -0.109254 -0.3535534 0.3362493 0 -0.3535534 0.3535534 0.109254 -0.3535534 0.3362493 0.2078135 -0.3535534 0.2860307 0.2860307 -0.3535534 0.2078135 0.3362493 -0.3535534 0.109254 0.3535534 -0.3535534 0 0.3847107 -0.2938926 -0.1250001 0.3272545 -0.2938926 -0.2377643 0.2377643 -0.2938926 -0.3272544 0.1250001 -0.2938926 -0.3847107 0 -0.2938926 -0.4045087 -0.1250001 -0.2938926 -0.3847107 -0.2377642 -0.2938926 -0.3272544 -0.3272544 -0.2938926 -0.2377642 -0.3847106 -0.2938926 -0.125 -0.4045086 -0.2938926 0 -0.3847106 -0.2938926 0.125 -0.3272543 -0.2938926 0.2377642 -0.2377642 -0.2938926 0.3272543 -0.125 -0.2938926 0.3847105 0 -0.2938926 0.4045086 0.125 -0.2938926 0.3847105 0.2377641 -0.2938926 0.3272543 0.3272543 -0.2938926 0.2377642 0.3847105 -0.2938926 0.125 0.4045085 -0.2938926 0 0.4236991 -0.2269953 -0.1376682 0.36042 -0.2269953 -0.2618604 0.2618604 -0.2269953 -0.3604199 0.1376682 -0.2269953 -0.423699 0 -0.2269953 -0.4455035 -0.1376682 -0.2269953 -0.423699 -0.2618604 -0.2269953 -0.3604198 -0.3604198 -0.2269953 -0.2618603 -0.4236989 -0.2269953 -0.1376681 -0.4455034 -0.2269953 0 -0.4236989 -0.2269953 0.1376681 -0.3604198 -0.2269953 0.2618603 -0.2618603 -0.2269953 0.3604198 -0.1376681 -0.2269953 0.4236988 0 -0.2269953 0.4455033 0.1376681 -0.2269953 0.4236988 0.2618603 -0.2269953 0.3604197 0.3604197 -0.2269953 0.2618603 0.4236988 -0.2269953 0.1376681 0.4455033 -0.2269953 0 0.4522546 -0.1545085 -0.1469464 0.3847107 -0.1545085 -0.2795087 0.2795087 -0.1545085 -0.3847107 0.1469464 -0.1545085 -0.4522545 0 -0.1545085 -0.4755285 -0.1469464 -0.1545085 -0.4522544 -0.2795086 -0.1545085 -0.3847106 -0.3847106 -0.1545085 -0.2795086 -0.4522544 -0.1545085 -0.1469463 -0.4755284 -0.1545085 0 -0.4522544 -0.1545085 0.1469463 -0.3847105 -0.1545085 0.2795086 -0.2795086 -0.1545085 0.3847105 -0.1469463 -0.1545085 0.4522543 0 -0.1545085 0.4755283 0.1469463 -0.1545085 0.4522543 0.2795085 -0.1545085 0.3847105 0.3847105 -0.1545085 0.2795085 0.4522543 -0.1545085 0.1469463 0.4755283 -0.1545085 0 0.469674 -0.07821719 -0.1526063 0.3995286 -0.07821719 -0.2902745 0.2902745 -0.07821719 -0.3995286 0.1526063 -0.07821719 -0.469674 0 -0.07821719 -0.4938444 -0.1526063 -0.07821719 -0.469674 -0.2902744 -0.07821719 -0.3995285 -0.3995285 -0.07821719 -0.2902744 -0.4696738 -0.07821719 -0.1526063 -0.4938443 -0.07821719 0 -0.4696738 -0.07821719 0.1526063 -0.3995284 -0.07821719 0.2902744 -0.2902744 -0.07821719 0.3995284 -0.1526063 -0.07821719 0.4696738 0 -0.07821719 0.4938443 0.1526062 -0.07821719 0.4696738 0.2902743 -0.07821719 0.3995284 0.3995284 -0.07821719 0.2902744 0.4696737 -0.07821719 0.1526062 0.4938442 -0.07821719 0 0.4755286 0 -0.1545086 0.4045088 0 -0.2938928 0.2938928 0 -0.4045087 0.1545086 0 -0.4755285 0 0 -0.5000002 -0.1545086 0 -0.4755285 -0.2938927 0 -0.4045087 -0.4045086 0 -0.2938927 -0.4755284 0 -0.1545085 -0.5000001 0 0 -0.4755284 0 0.1545085 -0.4045086 0 0.2938927 -0.2938927 0 0.4045086 -0.1545085 0 0.4755283 0 0 0.5000001 0.1545085 0 0.4755283 0.2938926 0 0.4045085 0.4045085 0 0.2938927 0.4755283 0 0.1545085 0.5 0 0 0.469674 0.07821719 -0.1526063 0.3995286 0.07821719 -0.2902745 0.2902745 0.07821719 -0.3995286 0.1526063 0.07821719 -0.469674 0 0.07821719 -0.4938444 -0.1526063 0.07821719 -0.469674 -0.2902744 0.07821719 -0.3995285 -0.3995285 0.07821719 -0.2902744 -0.4696738 0.07821719 -0.1526063 -0.4938443 0.07821719 0 -0.4696738 0.07821719 0.1526063 -0.3995284 0.07821719 0.2902744 -0.2902744 0.07821719 0.3995284 -0.1526063 0.07821719 0.4696738 0 0.07821719 0.4938443 0.1526062 0.07821719 0.4696738 0.2902743 0.07821719 0.3995284 0.3995284 0.07821719 0.2902744 0.4696737 0.07821719 0.1526062 0.4938442 0.07821719 0 0.4522546 0.1545085 -0.1469464 0.3847107 0.1545085 -0.2795087 0.2795087 0.1545085 -0.3847107 0.1469464 0.1545085 -0.4522545 0 0.1545085 -0.4755285 -0.1469464 0.1545085 -0.4522544 -0.2795086 0.1545085 -0.3847106 -0.3847106 0.1545085 -0.2795086 -0.4522544 0.1545085 -0.1469463 -0.4755284 0.1545085 0 -0.4522544 0.1545085 0.1469463 -0.3847105 0.1545085 0.2795086 -0.2795086 0.1545085 0.3847105 -0.1469463 0.1545085 0.4522543 0 0.1545085 0.4755283 0.1469463 0.1545085 0.4522543 0.2795085 0.1545085 0.3847105 0.3847105 0.1545085 0.2795085 0.4522543 0.1545085 0.1469463 0.4755283 0.1545085 0 0.4236991 0.2269953 -0.1376682 0.36042 0.2269953 -0.2618604 0.2618604 0.2269953 -0.3604199 0.1376682 0.2269953 -0.423699 0 0.2269953 -0.4455035 -0.1376682 0.2269953 -0.423699 -0.2618604 0.2269953 -0.3604198 -0.3604198 0.2269953 -0.2618603 -0.4236989 0.2269953 -0.1376681 -0.4455034 0.2269953 0 -0.4236989 0.2269953 0.1376681 -0.3604198 0.2269953 0.2618603 -0.2618603 0.2269953 0.3604198 -0.1376681 0.2269953 0.4236988 0 0.2269953 0.4455033 0.1376681 0.2269953 0.4236988 0.2618603 0.2269953 0.3604197 0.3604197 0.2269953 0.2618603 0.4236988 0.2269953 0.1376681 0.4455033 0.2269953 0 0.3847107 0.2938926 -0.1250001 0.3272545 0.2938926 -0.2377643 0.2377643 0.2938926 -0.3272544 0.1250001 0.2938926 -0.3847107 0 0.2938926 -0.4045087 -0.1250001 0.2938926 -0.3847107 -0.2377642 0.2938926 -0.3272544 -0.3272544 0.2938926 -0.2377642 -0.3847106 0.2938926 -0.125 -0.4045086 0.2938926 0 -0.3847106 0.2938926 0.125 -0.3272543 0.2938926 0.2377642 -0.2377642 0.2938926 0.3272543 -0.125 0.2938926 0.3847105 0 0.2938926 0.4045086 0.125 0.2938926 0.3847105 0.2377641 0.2938926 0.3272543 0.3272543 0.2938926 0.2377642 0.3847105 0.2938926 0.125 0.4045085 0.2938926 0 0.3362495 0.3535534 -0.1092541 0.2860309 0.3535534 -0.2078136 0.2078136 0.3535534 -0.2860309 0.1092541 0.3535534 -0.3362494 0 0.3535534 -0.3535535 -0.1092541 0.3535534 -0.3362494 -0.2078135 0.3535534 -0.2860308 -0.2860308 0.3535534 -0.2078135 -0.3362494 0.3535534 -0.109254 -0.3535535 0.3535534 0 -0.3362494 0.3535534 0.109254 -0.2860308 0.3535534 0.2078135 -0.2078135 0.3535534 0.2860308 -0.109254 0.3535534 0.3362493 0 0.3535534 0.3535534 0.109254 0.3535534 0.3362493 0.2078135 0.3535534 0.2860307 0.2860307 0.3535534 0.2078135 0.3362493 0.3535534 0.109254 0.3535534 0.3535534 0 0.2795087 0.4045085 -0.09081787 0.2377643 0.4045085 -0.1727459 0.1727459 0.4045085 -0.2377643 0.09081786 0.4045085 -0.2795086 0 0.4045085 -0.2938928 -0.09081786 0.4045085 -0.2795086 -0.1727458 0.4045085 -0.2377642 -0.2377642 0.4045085 -0.1727458 -0.2795086 0.4045085 -0.09081783 -0.2938927 0.4045085 0 -0.2795086 0.4045085 0.09081783 -0.2377642 0.4045085 0.1727458 -0.1727458 0.4045085 0.2377642 -0.09081783 0.4045085 0.2795086 0 0.4045085 0.2938927 0.09081781 0.4045085 0.2795085 0.1727457 0.4045085 0.2377641 0.2377641 0.4045085 0.1727458 0.2795085 0.4045085 0.09081782 0.2938926 0.4045085 0 0.2158855 0.4455033 -0.07014544 0.1836432 0.4455033 -0.1334245 0.1334245 0.4455033 -0.1836431 0.07014543 0.4455033 -0.2158854 0 0.4455033 -0.2269954 -0.07014543 0.4455033 -0.2158854 -0.1334245 0.4455033 -0.1836431 -0.1836431 0.4455033 -0.1334245 -0.2158854 0.4455033 -0.07014541 -0.2269953 0.4455033 0 -0.2158854 0.4455033 0.07014541 -0.1836431 0.4455033 0.1334245 -0.1334245 0.4455033 0.1836431 -0.07014541 0.4455033 0.2158854 0 0.4455033 0.2269953 0.07014539 0.4455033 0.2158853 0.1334245 0.4455033 0.183643 0.183643 0.4455033 0.1334245 0.2158853 0.4455033 0.07014539 0.2269953 0.4455033 0 0.1469464 0.4755283 -0.04774578 0.1250001 0.4755283 -0.09081787 0.09081787 0.4755283 -0.1250001 0.04774578 0.4755283 -0.1469464 0 0.4755283 -0.1545086 -0.04774578 0.4755283 -0.1469464 -0.09081785 0.4755283 -0.1250001 -0.125 0.4755283 -0.09081784 -0.1469464 0.4755283 -0.04774577 -0.1545085 0.4755283 0 -0.1469464 0.4755283 0.04774577 -0.125 0.4755283 0.09081783 -0.09081783 0.4755283 0.125 -0.04774577 0.4755283 0.1469463 0 0.4755283 0.1545085 0.04774575 0.4755283 0.1469463 0.09081782 0.4755283 0.125 0.125 0.4755283 0.09081783 0.1469463 0.4755283 0.04774576 0.1545085 0.4755283 0 0.07438906 0.4938442 -0.02417047 0.06327912 0.4938442 -0.04597497 0.04597497 0.4938442 -0.06327911 0.02417047 0.4938442 -0.07438905 0 0.4938442 -0.07821728 -0.02417047 0.4938442 -0.07438905 -0.04597496 0.4938442 -0.0632791 -0.06327909 0.4938442 -0.04597495 -0.07438904 0.4938442 -0.02417046 -0.07821726 0.4938442 0 -0.07438904 0.4938442 0.02417046 -0.06327909 0.4938442 0.04597495 -0.04597495 0.4938442 0.06327909 -0.02417046 0.4938442 0.07438903 0 0.4938442 0.07821725 0.02417045 0.4938442 0.07438902 0.04597494 0.4938442 0.06327908 0.06327908 0.4938442 0.04597495 0.07438902 0.4938442 0.02417046 0.07821724 0.4938442 0 0 -0.5 0 0 0.5 0</float_array>
          <technique_common>
            <accessor source="#pasted__pSphereShape2-positions-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pSphereShape2-normals" name="pasted__pSphereShape2-normals">
          <float_array id="pasted__pSphereShape2-normals-array" count="1146">0.190555 -0.9797221 -0.06191489 0.1620956 -0.9797221 -0.117769 0.1177694 -0.9797222 -0.1620952 0.06191502 -0.9797221 -0.1905546 0 -0.9797221 -0.2003608 -0.06191509 -0.9797221 -0.1905547 -0.1177694 -0.9797221 -0.1620954 -0.1620957 -0.9797221 -0.1177691 -0.190555 -0.9797221 -0.06191493 -0.2003613 -0.979722 0 -0.1905549 -0.9797221 0.06191491 -0.1620957 -0.9797221 0.1177691 -0.1177694 -0.9797222 0.1620951 -0.06191507 -0.9797221 0.1905547 0 -0.9797221 0.2003614 0.0619151 -0.9797221 0.1905549 0.1177694 -0.9797221 0.1620958 0.1620957 -0.9797221 0.1177696 0.190555 -0.9797221 0.06191494 0.2003613 -0.9797221 0 0.3172516 -0.9427226 -0.1030811 0.2698701 -0.9427225 -0.196072 0.1960721 -0.9427226 -0.2698701 0.1030812 -0.9427225 -0.3172516 0 -0.9427225 -0.333578 -0.1030813 -0.9427225 -0.3172515 -0.1960723 -0.9427224 -0.2698702 -0.2698703 -0.9427224 -0.1960722 -0.3172516 -0.9427225 -0.1030812 -0.3335781 -0.9427225 0 -0.3172516 -0.9427226 0.103081 -0.2698703 -0.9427224 0.1960724 -0.1960722 -0.9427226 0.2698703 -0.1030813 -0.9427226 0.3172513 0 -0.9427224 0.333578 0.1030813 -0.9427224 0.3172517 0.1960723 -0.9427225 0.2698705 0.2698703 -0.9427224 0.1960727 0.3172516 -0.9427224 0.1030814 0.333578 -0.9427224 0 0.4477114 -0.8822658 -0.1454698 0.3808459 -0.8822659 -0.2767008 0.2767007 -0.8822659 -0.3808458 0.1454702 -0.8822659 -0.4477112 0 -0.8822659 -0.4707516 -0.1454703 -0.8822659 -0.4477112 -0.276701 -0.8822659 -0.3808458 -0.3808461 -0.8822658 -0.2767009 -0.4477115 -0.8822658 -0.1454701 -0.4707517 -0.8822657 0 -0.4477115 -0.8822658 0.1454702 -0.3808461 -0.8822657 0.2767012 -0.2767009 -0.8822657 0.3808463 -0.1454702 -0.8822658 0.4477115 0 -0.8822657 0.4707518 0.1454703 -0.8822657 0.4477114 0.276701 -0.8822657 0.3808461 0.3808462 -0.8822656 0.2767012 0.4477115 -0.8822656 0.1454706 0.4707517 -0.8822657 0 0.5703146 -0.800252 -0.1853057 0.4851383 -0.8002519 -0.3524735 0.3524735 -0.8002519 -0.4851383 0.1853063 -0.8002519 -0.5703143 0 -0.800252 -0.5996639 -0.1853064 -0.800252 -0.5703141 -0.3524738 -0.800252 -0.4851382 -0.4851384 -0.8002518 -0.3524735 -0.5703143 -0.8002518 -0.1853061 -0.599664 -0.8002518 0 -0.5703143 -0.8002519 0.1853064 -0.4851383 -0.800252 0.3524737 -0.3524736 -0.8002518 0.4851384 -0.1853063 -0.8002518 0.5703146 0 -0.8002517 0.5996642 0.1853065 -0.8002518 0.5703145 0.3524738 -0.8002518 0.4851384 0.4851384 -0.8002518 0.3524737 0.5703145 -0.8002518 0.1853064 0.5996641 -0.8002518 0 0.6803179 -0.6987886 -0.2210479 0.5787126 -0.6987886 -0.4204594 0.4204593 -0.6987885 -0.5787128 0.2210485 -0.6987886 -0.6803177 0 -0.6987886 -0.7153282 -0.2210488 -0.6987887 -0.6803175 -0.4204596 -0.6987885 -0.5787126 -0.5787128 -0.6987886 -0.4204594 -0.6803176 -0.6987886 -0.2210484 -0.7153283 -0.6987885 0 -0.6803176 -0.6987885 0.2210486 -0.5787128 -0.6987884 0.4204596 -0.4204594 -0.6987884 0.5787128 -0.2210486 -0.6987884 0.6803178 0 -0.6987884 0.7153284 0.2210487 -0.6987885 0.6803176 0.4204594 -0.6987884 0.5787128 0.5787129 -0.6987883 0.4204595 0.6803178 -0.6987884 0.2210485 0.7153284 -0.6987884 0 0.774475 -0.5804009 -0.2516413 0.6588076 -0.5804008 -0.4786518 0.4786516 -0.5804006 -0.6588078 0.251642 -0.5804007 -0.7744749 0 -0.5804008 -0.814331 -0.2516423 -0.5804008 -0.7744747 -0.4786519 -0.5804007 -0.6588075 -0.6588076 -0.5804007 -0.4786518 -0.774475 -0.5804006 -0.2516421 -0.8143311 -0.5804005 0 -0.7744749 -0.5804006 0.2516422 -0.6588076 -0.5804006 0.4786519 -0.4786518 -0.5804006 0.6588078 -0.2516421 -0.5804005 0.774475 0 -0.5804006 0.8143312 0.2516423 -0.5804007 0.7744749 0.478652 -0.5804005 0.6588078 0.6588078 -0.5804005 0.4786519 0.7744749 -0.5804005 0.2516422 0.8143311 -0.5804006 0 0.8502796 -0.4479938 -0.2762716 0.7232909 -0.4479937 -0.5255017 0.5255014 -0.4479936 -0.7232911 0.2762724 -0.4479936 -0.8502795 0 -0.4479935 -0.8940368 -0.2762727 -0.4479935 -0.8502795 -0.5255018 -0.4479935 -0.7232908 -0.723291 -0.4479935 -0.5255015 -0.8502796 -0.4479933 -0.2762725 -0.8940368 -0.4479934 0 -0.8502795 -0.4479935 0.2762726 -0.7232909 -0.4479935 0.5255017 -0.5255016 -0.4479936 0.723291 -0.2762725 -0.4479935 0.8502796 0 -0.4479935 0.8940368 0.2762727 -0.4479934 0.8502795 0.5255017 -0.4479934 0.723291 0.723291 -0.4479934 0.5255017 0.8502796 -0.4479934 0.2762725 0.8940368 -0.4479937 0 0.9058056 -0.3047888 -0.294313 0.7705238 -0.3047888 -0.5598185 0.5598183 -0.3047889 -0.770524 0.2943138 -0.3047888 -0.9058053 0 -0.3047887 -0.9524201 -0.2943141 -0.3047887 -0.9058052 -0.5598187 -0.3047888 -0.7705238 -0.7705241 -0.3047886 -0.5598183 -0.9058054 -0.3047885 -0.2943139 -0.9524201 -0.3047886 0 -0.9058053 -0.3047886 0.294314 -0.770524 -0.3047886 0.5598186 -0.5598184 -0.3047886 0.770524 -0.2943139 -0.3047887 0.9058053 0 -0.3047887 0.95242 0.2943141 -0.3047886 0.9058053 0.5598184 -0.3047887 0.770524 0.770524 -0.3047888 0.5598184 0.9058053 -0.3047887 0.2943139 0.95242 -0.3047886 0 0.9396746 -0.1542487 -0.3053177 0.7993346 -0.1542489 -0.5807506 0.5807505 -0.1542488 -0.7993348 0.3053184 -0.1542488 -0.9396744 0 -0.1542488 -0.988032 -0.3053187 -0.1542488 -0.9396743 -0.5807509 -0.1542488 -0.7993345 -0.7993348 -0.1542488 -0.5807505 -0.9396744 -0.1542488 -0.3053186 -0.988032 -0.1542487 0 -0.9396744 -0.1542487 0.3053187 -0.7993346 -0.1542487 0.5807507 -0.5807506 -0.1542487 0.7993347 -0.3053187 -0.1542487 0.9396743 0 -0.1542488 0.988032 0.3053188 -0.1542487 0.9396743 0.5807507 -0.1542487 0.7993348 0.7993348 -0.1542487 0.5807506 0.9396744 -0.1542487 0.3053187 0.9880321 -0.1542485 0 0.9510569 0 -0.309016 0.809017 0 -0.5877852 0.5877851 0 -0.8090171 0.3090167 0 -0.9510566 0 0 -1 -0.309017 0 -0.9510565 -0.5877855 0 -0.8090168 -0.8090171 0 -0.5877851 -0.9510565 0 -0.3090169 -1 0 0 -0.9510565 0 0.309017 -0.8090169 0 0.5877853 -0.5877852 0 0.8090171 -0.309017 0 0.9510565 0 0 1 0.3090171 0 0.9510565 0.5877852 0 0.809017 0.809017 0 0.5877852 0.9510565 0 0.3090169 1 0 0 0.9396746 0.1542487 -0.3053177 0.7993346 0.1542489 -0.5807507 0.5807505 0.1542488 -0.7993348 0.3053185 0.1542488 -0.9396744 0 0.1542488 -0.988032 -0.3053187 0.1542488 -0.9396743 -0.5807509 0.1542488 -0.7993345 -0.7993348 0.1542488 -0.5807505 -0.9396744 0.1542488 -0.3053186 -0.988032 0.1542487 0 -0.9396744 0.1542487 0.3053187 -0.7993346 0.1542487 0.5807508 -0.5807506 0.1542487 0.7993347 -0.3053187 0.1542487 0.9396743 0 0.1542488 0.988032 0.3053188 0.1542487 0.9396743 0.5807506 0.1542487 0.7993348 0.7993347 0.1542487 0.5807506 0.9396744 0.1542486 0.3053186 0.9880321 0.1542485 0 0.9058056 0.3047888 -0.294313 0.770524 0.3047888 -0.5598185 0.5598183 0.3047889 -0.770524 0.2943137 0.3047888 -0.9058053 0 0.3047887 -0.9524201 -0.2943141 0.3047887 -0.9058052 -0.5598187 0.3047887 -0.7705238 -0.7705241 0.3047885 -0.5598183 -0.9058053 0.3047884 -0.2943139 -0.95242 0.3047886 0 -0.9058053 0.3047886 0.294314 -0.770524 0.3047885 0.5598186 -0.5598184 0.3047886 0.770524 -0.2943139 0.3047887 0.9058053 0 0.3047887 0.95242 0.2943141 0.3047886 0.9058053 0.5598184 0.3047887 0.770524 0.770524 0.3047888 0.5598184 0.9058053 0.3047886 0.2943139 0.9524201 0.3047886 0 0.8502796 0.4479937 -0.2762716 0.7232909 0.4479937 -0.5255017 0.5255014 0.4479936 -0.7232911 0.2762724 0.4479936 -0.8502795 0 0.4479935 -0.8940368 -0.2762727 0.4479935 -0.8502796 -0.5255018 0.4479935 -0.7232908 -0.7232911 0.4479934 -0.5255016 -0.8502796 0.4479933 -0.2762725 -0.8940369 0.4479933 0 -0.8502796 0.4479934 0.2762726 -0.7232909 0.4479934 0.5255018 -0.5255016 0.4479935 0.723291 -0.2762724 0.4479935 0.8502795 0 0.4479935 0.8940368 0.2762727 0.4479934 0.8502795 0.5255017 0.4479934 0.723291 0.723291 0.4479934 0.5255017 0.8502796 0.4479935 0.2762725 0.8940368 0.4479936 0 0.774475 0.5804008 -0.2516413 0.6588075 0.5804008 -0.4786518 0.4786516 0.5804007 -0.6588078 0.251642 0.5804007 -0.7744748 0 0.5804008 -0.814331 -0.2516423 0.5804008 -0.7744747 -0.4786519 0.5804008 -0.6588075 -0.6588078 0.5804006 -0.4786518 -0.7744749 0.5804005 -0.2516421 -0.8143312 0.5804005 0 -0.7744749 0.5804005 0.2516422 -0.6588078 0.5804006 0.478652 -0.4786518 0.5804006 0.6588078 -0.2516421 0.5804005 0.7744749 0 0.5804006 0.8143311 0.2516422 0.5804006 0.7744749 0.478652 0.5804005 0.6588078 0.6588078 0.5804005 0.4786519 0.7744749 0.5804005 0.2516421 0.8143311 0.5804006 0 0.6803179 0.6987886 -0.2210479 0.5787127 0.6987886 -0.4204594 0.4204593 0.6987886 -0.5787128 0.2210485 0.6987886 -0.6803177 0 0.6987886 -0.7153282 -0.2210487 0.6987886 -0.6803175 -0.4204597 0.6987885 -0.5787126 -0.5787129 0.6987885 -0.4204594 -0.6803176 0.6987886 -0.2210485 -0.7153283 0.6987885 0 -0.6803176 0.6987885 0.2210486 -0.5787128 0.6987885 0.4204595 -0.4204594 0.6987885 0.5787128 -0.2210486 0.6987884 0.6803178 0 0.6987885 0.7153284 0.2210487 0.6987885 0.6803177 0.4204594 0.6987884 0.5787128 0.5787129 0.6987883 0.4204595 0.6803178 0.6987883 0.2210486 0.7153284 0.6987883 0 0.5703146 0.8002519 -0.1853056 0.4851384 0.800252 -0.3524736 0.3524735 0.800252 -0.4851384 0.1853062 0.8002519 -0.5703143 0 0.800252 -0.5996639 -0.1853065 0.800252 -0.5703143 -0.3524739 0.8002518 -0.4851383 -0.4851384 0.8002518 -0.3524735 -0.5703143 0.800252 -0.1853062 -0.599664 0.8002518 0 -0.5703143 0.8002519 0.1853064 -0.4851383 0.8002518 0.3524737 -0.3524736 0.8002518 0.4851385 -0.1853063 0.8002518 0.5703146 0 0.8002517 0.5996642 0.1853065 0.8002517 0.5703145 0.3524737 0.8002518 0.4851384 0.4851385 0.8002518 0.3524737 0.5703145 0.8002518 0.1853064 0.5996641 0.8002518 0 0.4477114 0.8822658 -0.1454698 0.3808459 0.8822659 -0.2767008 0.2767007 0.8822659 -0.380846 0.1454701 0.8822658 -0.4477113 0 0.8822658 -0.4707514 -0.1454703 0.8822659 -0.4477112 -0.276701 0.8822658 -0.3808458 -0.3808461 0.8822658 -0.2767008 -0.4477115 0.8822658 -0.1454699 -0.4707517 0.8822657 0 -0.4477115 0.8822658 0.1454703 -0.3808461 0.8822658 0.2767011 -0.2767009 0.8822657 0.3808464 -0.1454702 0.8822657 0.4477117 0 0.8822657 0.4707519 0.1454703 0.8822657 0.4477115 0.276701 0.8822657 0.3808461 0.3808462 0.8822656 0.2767011 0.4477115 0.8822656 0.1454704 0.4707517 0.8822658 0 0.3172516 0.9427225 -0.1030811 0.2698702 0.9427226 -0.1960721 0.1960721 0.9427226 -0.2698702 0.1030812 0.9427225 -0.3172517 0 0.9427226 -0.3335781 -0.1030813 0.9427224 -0.3172515 -0.1960723 0.9427225 -0.2698702 -0.2698703 0.9427225 -0.1960723 -0.3172516 0.9427225 -0.103081 -0.3335781 0.9427224 0 -0.3172516 0.9427225 0.103081 -0.2698703 0.9427225 0.196072 -0.1960723 0.9427226 0.2698701 -0.1030813 0.9427226 0.3172514 0 0.9427226 0.3335779 0.1030813 0.9427226 0.3172515 0.1960723 0.9427225 0.2698704 0.2698704 0.9427225 0.1960726 0.3172516 0.9427224 0.1030814 0.333578 0.9427226 0 0.190555 0.9797221 -0.06191489 0.1620957 0.9797222 -0.117769 0.1177694 0.9797222 -0.1620952 0.06191503 0.9797221 -0.1905546 0 0.9797221 -0.2003609 -0.06191508 0.9797221 -0.1905547 -0.1177694 0.979722 -0.1620957 -0.1620957 0.9797221 -0.1177695 -0.190555 0.9797221 -0.06191492 -0.2003613 0.9797221 0 -0.1905549 0.9797221 0.06191492 -0.1620957 0.9797221 0.1177691 -0.1177695 0.9797222 0.1620952 -0.06191507 0.9797222 0.1905546 0 0.9797221 0.2003611 0.0619151 0.9797221 0.1905545 0.1177695 0.9797221 0.1620956 0.1620957 0.9797221 0.1177695 0.190555 0.9797221 0.06191492 0.2003613 0.9797221 0 0 -1 0 0 1 0</float_array>
          <technique_common>
            <accessor source="#pasted__pSphereShape2-normals-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pasted__pSphereShape2-map1" name="pasted__pSphereShape2-map1">
          <float_array id="pasted__pSphereShape2-map1-array" count="878">0 0.05 0.05 0.05 0.1 0.05 0.15 0.05 0.2 0.05 0.25 0.05 0.3 0.05 0.35 0.05 0.4 0.05 0.45 0.05 0.5000001 0.05 0.5500001 0.05 0.6000001 0.05 0.6500001 0.05 0.7000001 0.05 0.7500001 0.05 0.8000001 0.05 0.8500001 0.05 0.9000002 0.05 0.9500002 0.05 1 0.05 0 0.1 0.05 0.1 0.1 0.1 0.15 0.1 0.2 0.1 0.25 0.1 0.3 0.1 0.35 0.1 0.4 0.1 0.45 0.1 0.5000001 0.1 0.5500001 0.1 0.6000001 0.1 0.6500001 0.1 0.7000001 0.1 0.7500001 0.1 0.8000001 0.1 0.8500001 0.1 0.9000002 0.1 0.9500002 0.1 1 0.1 0 0.15 0.05 0.15 0.1 0.15 0.15 0.15 0.2 0.15 0.25 0.15 0.3 0.15 0.35 0.15 0.4 0.15 0.45 0.15 0.5000001 0.15 0.5500001 0.15 0.6000001 0.15 0.6500001 0.15 0.7000001 0.15 0.7500001 0.15 0.8000001 0.15 0.8500001 0.15 0.9000002 0.15 0.9500002 0.15 1 0.15 0 0.2 0.05 0.2 0.1 0.2 0.15 0.2 0.2 0.2 0.25 0.2 0.3 0.2 0.35 0.2 0.4 0.2 0.45 0.2 0.5000001 0.2 0.5500001 0.2 0.6000001 0.2 0.6500001 0.2 0.7000001 0.2 0.7500001 0.2 0.8000001 0.2 0.8500001 0.2 0.9000002 0.2 0.9500002 0.2 1 0.2 0 0.25 0.05 0.25 0.1 0.25 0.15 0.25 0.2 0.25 0.25 0.25 0.3 0.25 0.35 0.25 0.4 0.25 0.45 0.25 0.5000001 0.25 0.5500001 0.25 0.6000001 0.25 0.6500001 0.25 0.7000001 0.25 0.7500001 0.25 0.8000001 0.25 0.8500001 0.25 0.9000002 0.25 0.9500002 0.25 1 0.25 0 0.3 0.05 0.3 0.1 0.3 0.15 0.3 0.2 0.3 0.25 0.3 0.3 0.3 0.35 0.3 0.4 0.3 0.45 0.3 0.5000001 0.3 0.5500001 0.3 0.6000001 0.3 0.6500001 0.3 0.7000001 0.3 0.7500001 0.3 0.8000001 0.3 0.8500001 0.3 0.9000002 0.3 0.9500002 0.3 1 0.3 0 0.35 0.05 0.35 0.1 0.35 0.15 0.35 0.2 0.35 0.25 0.35 0.3 0.35 0.35 0.35 0.4 0.35 0.45 0.35 0.5000001 0.35 0.5500001 0.35 0.6000001 0.35 0.6500001 0.35 0.7000001 0.35 0.7500001 0.35 0.8000001 0.35 0.8500001 0.35 0.9000002 0.35 0.9500002 0.35 1 0.35 0 0.4 0.05 0.4 0.1 0.4 0.15 0.4 0.2 0.4 0.25 0.4 0.3 0.4 0.35 0.4 0.4 0.4 0.45 0.4 0.5000001 0.4 0.5500001 0.4 0.6000001 0.4 0.6500001 0.4 0.7000001 0.4 0.7500001 0.4 0.8000001 0.4 0.8500001 0.4 0.9000002 0.4 0.9500002 0.4 1 0.4 0 0.45 0.05 0.45 0.1 0.45 0.15 0.45 0.2 0.45 0.25 0.45 0.3 0.45 0.35 0.45 0.4 0.45 0.45 0.45 0.5000001 0.45 0.5500001 0.45 0.6000001 0.45 0.6500001 0.45 0.7000001 0.45 0.7500001 0.45 0.8000001 0.45 0.8500001 0.45 0.9000002 0.45 0.9500002 0.45 1 0.45 0 0.5000001 0.05 0.5000001 0.1 0.5000001 0.15 0.5000001 0.2 0.5000001 0.25 0.5000001 0.3 0.5000001 0.35 0.5000001 0.4 0.5000001 0.45 0.5000001 0.5000001 0.5000001 0.5500001 0.5000001 0.6000001 0.5000001 0.6500001 0.5000001 0.7000001 0.5000001 0.7500001 0.5000001 0.8000001 0.5000001 0.8500001 0.5000001 0.9000002 0.5000001 0.9500002 0.5000001 1 0.5000001 0 0.5500001 0.05 0.5500001 0.1 0.5500001 0.15 0.5500001 0.2 0.5500001 0.25 0.5500001 0.3 0.5500001 0.35 0.5500001 0.4 0.5500001 0.45 0.5500001 0.5000001 0.5500001 0.5500001 0.5500001 0.6000001 0.5500001 0.6500001 0.5500001 0.7000001 0.5500001 0.7500001 0.5500001 0.8000001 0.5500001 0.8500001 0.5500001 0.9000002 0.5500001 0.9500002 0.5500001 1 0.5500001 0 0.6000001 0.05 0.6000001 0.1 0.6000001 0.15 0.6000001 0.2 0.6000001 0.25 0.6000001 0.3 0.6000001 0.35 0.6000001 0.4 0.6000001 0.45 0.6000001 0.5000001 0.6000001 0.5500001 0.6000001 0.6000001 0.6000001 0.6500001 0.6000001 0.7000001 0.6000001 0.7500001 0.6000001 0.8000001 0.6000001 0.8500001 0.6000001 0.9000002 0.6000001 0.9500002 0.6000001 1 0.6000001 0 0.6500001 0.05 0.6500001 0.1 0.6500001 0.15 0.6500001 0.2 0.6500001 0.25 0.6500001 0.3 0.6500001 0.35 0.6500001 0.4 0.6500001 0.45 0.6500001 0.5000001 0.6500001 0.5500001 0.6500001 0.6000001 0.6500001 0.6500001 0.6500001 0.7000001 0.6500001 0.7500001 0.6500001 0.8000001 0.6500001 0.8500001 0.6500001 0.9000002 0.6500001 0.9500002 0.6500001 1 0.6500001 0 0.7000001 0.05 0.7000001 0.1 0.7000001 0.15 0.7000001 0.2 0.7000001 0.25 0.7000001 0.3 0.7000001 0.35 0.7000001 0.4 0.7000001 0.45 0.7000001 0.5000001 0.7000001 0.5500001 0.7000001 0.6000001 0.7000001 0.6500001 0.7000001 0.7000001 0.7000001 0.7500001 0.7000001 0.8000001 0.7000001 0.8500001 0.7000001 0.9000002 0.7000001 0.9500002 0.7000001 1 0.7000001 0 0.7500001 0.05 0.7500001 0.1 0.7500001 0.15 0.7500001 0.2 0.7500001 0.25 0.7500001 0.3 0.7500001 0.35 0.7500001 0.4 0.7500001 0.45 0.7500001 0.5000001 0.7500001 0.5500001 0.7500001 0.6000001 0.7500001 0.6500001 0.7500001 0.7000001 0.7500001 0.7500001 0.7500001 0.8000001 0.7500001 0.8500001 0.7500001 0.9000002 0.7500001 0.9500002 0.7500001 1 0.7500001 0 0.8000001 0.05 0.8000001 0.1 0.8000001 0.15 0.8000001 0.2 0.8000001 0.25 0.8000001 0.3 0.8000001 0.35 0.8000001 0.4 0.8000001 0.45 0.8000001 0.5000001 0.8000001 0.5500001 0.8000001 0.6000001 0.8000001 0.6500001 0.8000001 0.7000001 0.8000001 0.7500001 0.8000001 0.8000001 0.8000001 0.8500001 0.8000001 0.9000002 0.8000001 0.9500002 0.8000001 1 0.8000001 0 0.8500001 0.05 0.8500001 0.1 0.8500001 0.15 0.8500001 0.2 0.8500001 0.25 0.8500001 0.3 0.8500001 0.35 0.8500001 0.4 0.8500001 0.45 0.8500001 0.5000001 0.8500001 0.5500001 0.8500001 0.6000001 0.8500001 0.6500001 0.8500001 0.7000001 0.8500001 0.7500001 0.8500001 0.8000001 0.8500001 0.8500001 0.8500001 0.9000002 0.8500001 0.9500002 0.8500001 1 0.8500001 0 0.9000002 0.05 0.9000002 0.1 0.9000002 0.15 0.9000002 0.2 0.9000002 0.25 0.9000002 0.3 0.9000002 0.35 0.9000002 0.4 0.9000002 0.45 0.9000002 0.5000001 0.9000002 0.5500001 0.9000002 0.6000001 0.9000002 0.6500001 0.9000002 0.7000001 0.9000002 0.7500001 0.9000002 0.8000001 0.9000002 0.8500001 0.9000002 0.9000002 0.9000002 0.9500002 0.9000002 1 0.9000002 0 0.9500002 0.05 0.9500002 0.1 0.9500002 0.15 0.9500002 0.2 0.9500002 0.25 0.9500002 0.3 0.9500002 0.35 0.9500002 0.4 0.9500002 0.45 0.9500002 0.5000001 0.9500002 0.5500001 0.9500002 0.6000001 0.9500002 0.6500001 0.9500002 0.7000001 0.9500002 0.7500001 0.9500002 0.8000001 0.9500002 0.8500001 0.9500002 0.9000002 0.9500002 0.9500002 0.9500002 1 0.9500002 0.025 0 0.075 0 0.125 0 0.175 0 0.225 0 0.275 0 0.325 0 0.375 0 0.425 0 0.475 0 0.525 0 0.575 0 0.625 0 0.675 0 0.725 0 0.775 0 0.825 0 0.875 0 0.925 0 0.975 0 0.025 1 0.075 1 0.125 1 0.175 1 0.225 1 0.275 1 0.325 1 0.375 1 0.425 1 0.475 1 0.525 1 0.575 1 0.625 1 0.675 1 0.725 1 0.775 1 0.825 1 0.875 1 0.925 1 0.975 1</float_array>
          <technique_common>
            <accessor source="#pasted__pSphereShape2-map1-array" count="439" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pasted__pSphereShape2-vertices" name="pasted__pSphereShape2-vertices">
          <input semantic="POSITION" source="#pasted__pSphereShape2-positions"/>
          <input semantic="NORMAL" source="#pasted__pSphereShape2-normals"/>
        </vertices>
        <polylist material="initialShadingGroup" count="400">
          <input semantic="VERTEX" source="#pasted__pSphereShape2-vertices" offset="0"/>
          <input semantic="TEXCOORD" source="#pasted__pSphereShape2-map1" offset="1" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>
          <p>0 0 1 1 21 22 20 21 1 1 2 2 22 23 21 22 2 2 3 3 23 24 22 23 3 3 4 4 24 25 23 24 4 4 5 5 25 26 24 25 5 5 6 6 26 27 25 26 6 6 7 7 27 28 26 27 7 7 8 8 28 29 27 28 8 8 9 9 29 30 28 29 9 9 10 10 30 31 29 30 10 10 11 11 31 32 30 31 11 11 12 12 32 33 31 32 12 12 13 13 33 34 32 33 13 13 14 14 34 35 33 34 14 14 15 15 35 36 34 35 15 15 16 16 36 37 35 36 16 16 17 17 37 38 36 37 17 17 18 18 38 39 37 38 18 18 19 19 39 40 38 39 19 19 0 20 20 41 39 40 20 21 21 22 41 43 40 42 21 22 22 23 42 44 41 43 22 23 23 24 43 45 42 44 23 24 24 25 44 46 43 45 24 25 25 26 45 47 44 46 25 26 26 27 46 48 45 47 26 27 27 28 47 49 46 48 27 28 28 29 48 50 47 49 28 29 29 30 49 51 48 50 29 30 30 31 50 52 49 51 30 31 31 32 51 53 50 52 31 32 32 33 52 54 51 53 32 33 33 34 53 55 52 54 33 34 34 35 54 56 53 55 34 35 35 36 55 57 54 56 35 36 36 37 56 58 55 57 36 37 37 38 57 59 56 58 37 38 38 39 58 60 57 59 38 39 39 40 59 61 58 60 39 40 20 41 40 62 59 61 40 42 41 43 61 64 60 63 41 43 42 44 62 65 61 64 42 44 43 45 63 66 62 65 43 45 44 46 64 67 63 66 44 46 45 47 65 68 64 67 45 47 46 48 66 69 65 68 46 48 47 49 67 70 66 69 47 49 48 50 68 71 67 70 48 50 49 51 69 72 68 71 49 51 50 52 70 73 69 72 50 52 51 53 71 74 70 73 51 53 52 54 72 75 71 74 52 54 53 55 73 76 72 75 53 55 54 56 74 77 73 76 54 56 55 57 75 78 74 77 55 57 56 58 76 79 75 78 56 58 57 59 77 80 76 79 57 59 58 60 78 81 77 80 58 60 59 61 79 82 78 81 59 61 40 62 60 83 79 82 60 63 61 64 81 85 80 84 61 64 62 65 82 86 81 85 62 65 63 66 83 87 82 86 63 66 64 67 84 88 83 87 64 67 65 68 85 89 84 88 65 68 66 69 86 90 85 89 66 69 67 70 87 91 86 90 67 70 68 71 88 92 87 91 68 71 69 72 89 93 88 92 69 72 70 73 90 94 89 93 70 73 71 74 91 95 90 94 71 74 72 75 92 96 91 95 72 75 73 76 93 97 92 96 73 76 74 77 94 98 93 97 74 77 75 78 95 99 94 98 75 78 76 79 96 100 95 99 76 79 77 80 97 101 96 100 77 80 78 81 98 102 97 101 78 81 79 82 99 103 98 102 79 82 60 83 80 104 99 103 80 84 81 85 101 106 100 105 81 85 82 86 102 107 101 106 82 86 83 87 103 108 102 107 83 87 84 88 104 109 103 108 84 88 85 89 105 110 104 109 85 89 86 90 106 111 105 110 86 90 87 91 107 112 106 111 87 91 88 92 108 113 107 112 88 92 89 93 109 114 108 113 89 93 90 94 110 115 109 114 90 94 91 95 111 116 110 115 91 95 92 96 112 117 111 116 92 96 93 97 113 118 112 117 93 97 94 98 114 119 113 118 94 98 95 99 115 120 114 119 95 99 96 100 116 121 115 120 96 100 97 101 117 122 116 121 97 101 98 102 118 123 117 122 98 102 99 103 119 124 118 123 99 103 80 104 100 125 119 124 100 105 101 106 121 127 120 126 101 106 102 107 122 128 121 127 102 107 103 108 123 129 122 128 103 108 104 109 124 130 123 129 104 109 105 110 125 131 124 130 105 110 106 111 126 132 125 131 106 111 107 112 127 133 126 132 107 112 108 113 128 134 127 133 108 113 109 114 129 135 128 134 109 114 110 115 130 136 129 135 110 115 111 116 131 137 130 136 111 116 112 117 132 138 131 137 112 117 113 118 133 139 132 138 113 118 114 119 134 140 133 139 114 119 115 120 135 141 134 140 115 120 116 121 136 142 135 141 116 121 117 122 137 143 136 142 117 122 118 123 138 144 137 143 118 123 119 124 139 145 138 144 119 124 100 125 120 146 139 145 120 126 121 127 141 148 140 147 121 127 122 128 142 149 141 148 122 128 123 129 143 150 142 149 123 129 124 130 144 151 143 150 124 130 125 131 145 152 144 151 125 131 126 132 146 153 145 152 126 132 127 133 147 154 146 153 127 133 128 134 148 155 147 154 128 134 129 135 149 156 148 155 129 135 130 136 150 157 149 156 130 136 131 137 151 158 150 157 131 137 132 138 152 159 151 158 132 138 133 139 153 160 152 159 133 139 134 140 154 161 153 160 134 140 135 141 155 162 154 161 135 141 136 142 156 163 155 162 136 142 137 143 157 164 156 163 137 143 138 144 158 165 157 164 138 144 139 145 159 166 158 165 139 145 120 146 140 167 159 166 140 147 141 148 161 169 160 168 141 148 142 149 162 170 161 169 142 149 143 150 163 171 162 170 143 150 144 151 164 172 163 171 144 151 145 152 165 173 164 172 145 152 146 153 166 174 165 173 146 153 147 154 167 175 166 174 147 154 148 155 168 176 167 175 148 155 149 156 169 177 168 176 149 156 150 157 170 178 169 177 150 157 151 158 171 179 170 178 151 158 152 159 172 180 171 179 152 159 153 160 173 181 172 180 153 160 154 161 174 182 173 181 154 161 155 162 175 183 174 182 155 162 156 163 176 184 175 183 156 163 157 164 177 185 176 184 157 164 158 165 178 186 177 185 158 165 159 166 179 187 178 186 159 166 140 167 160 188 179 187 160 168 161 169 181 190 180 189 161 169 162 170 182 191 181 190 162 170 163 171 183 192 182 191 163 171 164 172 184 193 183 192 164 172 165 173 185 194 184 193 165 173 166 174 186 195 185 194 166 174 167 175 187 196 186 195 167 175 168 176 188 197 187 196 168 176 169 177 189 198 188 197 169 177 170 178 190 199 189 198 170 178 171 179 191 200 190 199 171 179 172 180 192 201 191 200 172 180 173 181 193 202 192 201 173 181 174 182 194 203 193 202 174 182 175 183 195 204 194 203 175 183 176 184 196 205 195 204 176 184 177 185 197 206 196 205 177 185 178 186 198 207 197 206 178 186 179 187 199 208 198 207 179 187 160 188 180 209 199 208 180 189 181 190 201 211 200 210 181 190 182 191 202 212 201 211 182 191 183 192 203 213 202 212 183 192 184 193 204 214 203 213 184 193 185 194 205 215 204 214 185 194 186 195 206 216 205 215 186 195 187 196 207 217 206 216 187 196 188 197 208 218 207 217 188 197 189 198 209 219 208 218 189 198 190 199 210 220 209 219 190 199 191 200 211 221 210 220 191 200 192 201 212 222 211 221 192 201 193 202 213 223 212 222 193 202 194 203 214 224 213 223 194 203 195 204 215 225 214 224 195 204 196 205 216 226 215 225 196 205 197 206 217 227 216 226 197 206 198 207 218 228 217 227 198 207 199 208 219 229 218 228 199 208 180 209 200 230 219 229 200 210 201 211 221 232 220 231 201 211 202 212 222 233 221 232 202 212 203 213 223 234 222 233 203 213 204 214 224 235 223 234 204 214 205 215 225 236 224 235 205 215 206 216 226 237 225 236 206 216 207 217 227 238 226 237 207 217 208 218 228 239 227 238 208 218 209 219 229 240 228 239 209 219 210 220 230 241 229 240 210 220 211 221 231 242 230 241 211 221 212 222 232 243 231 242 212 222 213 223 233 244 232 243 213 223 214 224 234 245 233 244 214 224 215 225 235 246 234 245 215 225 216 226 236 247 235 246 216 226 217 227 237 248 236 247 217 227 218 228 238 249 237 248 218 228 219 229 239 250 238 249 219 229 200 230 220 251 239 250 220 231 221 232 241 253 240 252 221 232 222 233 242 254 241 253 222 233 223 234 243 255 242 254 223 234 224 235 244 256 243 255 224 235 225 236 245 257 244 256 225 236 226 237 246 258 245 257 226 237 227 238 247 259 246 258 227 238 228 239 248 260 247 259 228 239 229 240 249 261 248 260 229 240 230 241 250 262 249 261 230 241 231 242 251 263 250 262 231 242 232 243 252 264 251 263 232 243 233 244 253 265 252 264 233 244 234 245 254 266 253 265 234 245 235 246 255 267 254 266 235 246 236 247 256 268 255 267 236 247 237 248 257 269 256 268 237 248 238 249 258 270 257 269 238 249 239 250 259 271 258 270 239 250 220 251 240 272 259 271 240 252 241 253 261 274 260 273 241 253 242 254 262 275 261 274 242 254 243 255 263 276 262 275 243 255 244 256 264 277 263 276 244 256 245 257 265 278 264 277 245 257 246 258 266 279 265 278 246 258 247 259 267 280 266 279 247 259 248 260 268 281 267 280 248 260 249 261 269 282 268 281 249 261 250 262 270 283 269 282 250 262 251 263 271 284 270 283 251 263 252 264 272 285 271 284 252 264 253 265 273 286 272 285 253 265 254 266 274 287 273 286 254 266 255 267 275 288 274 287 255 267 256 268 276 289 275 288 256 268 257 269 277 290 276 289 257 269 258 270 278 291 277 290 258 270 259 271 279 292 278 291 259 271 240 272 260 293 279 292 260 273 261 274 281 295 280 294 261 274 262 275 282 296 281 295 262 275 263 276 283 297 282 296 263 276 264 277 284 298 283 297 264 277 265 278 285 299 284 298 265 278 266 279 286 300 285 299 266 279 267 280 287 301 286 300 267 280 268 281 288 302 287 301 268 281 269 282 289 303 288 302 269 282 270 283 290 304 289 303 270 283 271 284 291 305 290 304 271 284 272 285 292 306 291 305 272 285 273 286 293 307 292 306 273 286 274 287 294 308 293 307 274 287 275 288 295 309 294 308 275 288 276 289 296 310 295 309 276 289 277 290 297 311 296 310 277 290 278 291 298 312 297 311 278 291 279 292 299 313 298 312 279 292 260 293 280 314 299 313 280 294 281 295 301 316 300 315 281 295 282 296 302 317 301 316 282 296 283 297 303 318 302 317 283 297 284 298 304 319 303 318 284 298 285 299 305 320 304 319 285 299 286 300 306 321 305 320 286 300 287 301 307 322 306 321 287 301 288 302 308 323 307 322 288 302 289 303 309 324 308 323 289 303 290 304 310 325 309 324 290 304 291 305 311 326 310 325 291 305 292 306 312 327 311 326 292 306 293 307 313 328 312 327 293 307 294 308 314 329 313 328 294 308 295 309 315 330 314 329 295 309 296 310 316 331 315 330 296 310 297 311 317 332 316 331 297 311 298 312 318 333 317 332 298 312 299 313 319 334 318 333 299 313 280 314 300 335 319 334 300 315 301 316 321 337 320 336 301 316 302 317 322 338 321 337 302 317 303 318 323 339 322 338 303 318 304 319 324 340 323 339 304 319 305 320 325 341 324 340 305 320 306 321 326 342 325 341 306 321 307 322 327 343 326 342 307 322 308 323 328 344 327 343 308 323 309 324 329 345 328 344 309 324 310 325 330 346 329 345 310 325 311 326 331 347 330 346 311 326 312 327 332 348 331 347 312 327 313 328 333 349 332 348 313 328 314 329 334 350 333 349 314 329 315 330 335 351 334 350 315 330 316 331 336 352 335 351 316 331 317 332 337 353 336 352 317 332 318 333 338 354 337 353 318 333 319 334 339 355 338 354 319 334 300 335 320 356 339 355 320 336 321 337 341 358 340 357 321 337 322 338 342 359 341 358 322 338 323 339 343 360 342 359 323 339 324 340 344 361 343 360 324 340 325 341 345 362 344 361 325 341 326 342 346 363 345 362 326 342 327 343 347 364 346 363 327 343 328 344 348 365 347 364 328 344 329 345 349 366 348 365 329 345 330 346 350 367 349 366 330 346 331 347 351 368 350 367 331 347 332 348 352 369 351 368 332 348 333 349 353 370 352 369 333 349 334 350 354 371 353 370 334 350 335 351 355 372 354 371 335 351 336 352 356 373 355 372 336 352 337 353 357 374 356 373 337 353 338 354 358 375 357 374 338 354 339 355 359 376 358 375 339 355 320 356 340 377 359 376 340 357 341 358 361 379 360 378 341 358 342 359 362 380 361 379 342 359 343 360 363 381 362 380 343 360 344 361 364 382 363 381 344 361 345 362 365 383 364 382 345 362 346 363 366 384 365 383 346 363 347 364 367 385 366 384 347 364 348 365 368 386 367 385 348 365 349 366 369 387 368 386 349 366 350 367 370 388 369 387 350 367 351 368 371 389 370 388 351 368 352 369 372 390 371 389 352 369 353 370 373 391 372 390 353 370 354 371 374 392 373 391 354 371 355 372 375 393 374 392 355 372 356 373 376 394 375 393 356 373 357 374 377 395 376 394 357 374 358 375 378 396 377 395 358 375 359 376 379 397 378 396 359 376 340 377 360 398 379 397 1 1 0 0 380 399 2 2 1 1 380 400 3 3 2 2 380 401 4 4 3 3 380 402 5 5 4 4 380 403 6 6 5 5 380 404 7 7 6 6 380 405 8 8 7 7 380 406 9 9 8 8 380 407 10 10 9 9 380 408 11 11 10 10 380 409 12 12 11 11 380 410 13 13 12 12 380 411 14 14 13 13 380 412 15 15 14 14 380 413 16 16 15 15 380 414 17 17 16 16 380 415 18 18 17 17 380 416 19 19 18 18 380 417 0 20 19 19 380 418 360 378 361 379 381 419 361 379 362 380 381 420 362 380 363 381 381 421 363 381 364 382 381 422 364 382 365 383 381 423 365 383 366 384 381 424 366 384 367 385 381 425 367 385 368 386 381 426 368 386 369 387 381 427 369 387 370 388 381 428 370 388 371 389 381 429 371 389 372 390 381 430 372 390 373 391 381 431 373 391 374 392 381 432 374 392 375 393 381 433 375 393 376 394 381 434 376 394 377 395 381 435 377 395 378 396 381 436 378 396 379 397 381 437 379 397 360 398 381 438</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pasted__pSphereShape2</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pSphereShape2" name="pSphereShape2">
      <mesh>
        <source id="pSphereShape2-positions" name="pSphereShape2-positions">
          <float_array id="pSphereShape2-positions-array" count="1146">0.07438906 -0.4938442 -0.02417047 0.06327912 -0.4938442 -0.04597497 0.04597497 -0.4938442 -0.06327911 0.02417047 -0.4938442 -0.07438905 0 -0.4938442 -0.07821728 -0.02417047 -0.4938442 -0.07438905 -0.04597496 -0.4938442 -0.0632791 -0.06327909 -0.4938442 -0.04597495 -0.07438904 -0.4938442 -0.02417046 -0.07821726 -0.4938442 0 -0.07438904 -0.4938442 0.02417046 -0.06327909 -0.4938442 0.04597495 -0.04597495 -0.4938442 0.06327909 -0.02417046 -0.4938442 0.07438903 0 -0.4938442 0.07821725 0.02417045 -0.4938442 0.07438902 0.04597494 -0.4938442 0.06327908 0.06327908 -0.4938442 0.04597495 0.07438902 -0.4938442 0.02417046 0.07821724 -0.4938442 0 0.1469464 -0.4755283 -0.04774578 0.1250001 -0.4755283 -0.09081787 0.09081787 -0.4755283 -0.1250001 0.04774578 -0.4755283 -0.1469464 0 -0.4755283 -0.1545086 -0.04774578 -0.4755283 -0.1469464 -0.09081785 -0.4755283 -0.1250001 -0.125 -0.4755283 -0.09081784 -0.1469464 -0.4755283 -0.04774577 -0.1545085 -0.4755283 0 -0.1469464 -0.4755283 0.04774577 -0.125 -0.4755283 0.09081783 -0.09081783 -0.4755283 0.125 -0.04774577 -0.4755283 0.1469463 0 -0.4755283 0.1545085 0.04774575 -0.4755283 0.1469463 0.09081782 -0.4755283 0.125 0.125 -0.4755283 0.09081783 0.1469463 -0.4755283 0.04774576 0.1545085 -0.4755283 0 0.2158855 -0.4455033 -0.07014544 0.1836432 -0.4455033 -0.1334245 0.1334245 -0.4455033 -0.1836431 0.07014543 -0.4455033 -0.2158854 0 -0.4455033 -0.2269954 -0.07014543 -0.4455033 -0.2158854 -0.1334245 -0.4455033 -0.1836431 -0.1836431 -0.4455033 -0.1334245 -0.2158854 -0.4455033 -0.07014541 -0.2269953 -0.4455033 0 -0.2158854 -0.4455033 0.07014541 -0.1836431 -0.4455033 0.1334245 -0.1334245 -0.4455033 0.1836431 -0.07014541 -0.4455033 0.2158854 0 -0.4455033 0.2269953 0.07014539 -0.4455033 0.2158853 0.1334245 -0.4455033 0.183643 0.183643 -0.4455033 0.1334245 0.2158853 -0.4455033 0.07014539 0.2269953 -0.4455033 0 0.2795087 -0.4045085 -0.09081787 0.2377643 -0.4045085 -0.1727459 0.1727459 -0.4045085 -0.2377643 0.09081786 -0.4045085 -0.2795086 0 -0.4045085 -0.2938928 -0.09081786 -0.4045085 -0.2795086 -0.1727458 -0.4045085 -0.2377642 -0.2377642 -0.4045085 -0.1727458 -0.2795086 -0.4045085 -0.09081783 -0.2938927 -0.4045085 0 -0.2795086 -0.4045085 0.09081783 -0.2377642 -0.4045085 0.1727458 -0.1727458 -0.4045085 0.2377642 -0.09081783 -0.4045085 0.2795086 0 -0.4045085 0.2938927 0.09081781 -0.4045085 0.2795085 0.1727457 -0.4045085 0.2377641 0.2377641 -0.4045085 0.1727458 0.2795085 -0.4045085 0.09081782 0.2938926 -0.4045085 0 0.3362495 -0.3535534 -0.1092541 0.2860309 -0.3535534 -0.2078136 0.2078136 -0.3535534 -0.2860309 0.1092541 -0.3535534 -0.3362494 0 -0.3535534 -0.3535535 -0.1092541 -0.3535534 -0.3362494 -0.2078135 -0.3535534 -0.2860308 -0.2860308 -0.3535534 -0.2078135 -0.3362494 -0.3535534 -0.109254 -0.3535535 -0.3535534 0 -0.3362494 -0.3535534 0.109254 -0.2860308 -0.3535534 0.2078135 -0.2078135 -0.3535534 0.2860308 -0.109254 -0.3535534 0.3362493 0 -0.3535534 0.3535534 0.109254 -0.3535534 0.3362493 0.2078135 -0.3535534 0.2860307 0.2860307 -0.3535534 0.2078135 0.3362493 -0.3535534 0.109254 0.3535534 -0.3535534 0 0.3847107 -0.2938926 -0.1250001 0.3272545 -0.2938926 -0.2377643 0.2377643 -0.2938926 -0.3272544 0.1250001 -0.2938926 -0.3847107 0 -0.2938926 -0.4045087 -0.1250001 -0.2938926 -0.3847107 -0.2377642 -0.2938926 -0.3272544 -0.3272544 -0.2938926 -0.2377642 -0.3847106 -0.2938926 -0.125 -0.4045086 -0.2938926 0 -0.3847106 -0.2938926 0.125 -0.3272543 -0.2938926 0.2377642 -0.2377642 -0.2938926 0.3272543 -0.125 -0.2938926 0.3847105 0 -0.2938926 0.4045086 0.125 -0.2938926 0.3847105 0.2377641 -0.2938926 0.3272543 0.3272543 -0.2938926 0.2377642 0.3847105 -0.2938926 0.125 0.4045085 -0.2938926 0 0.4236991 -0.2269953 -0.1376682 0.36042 -0.2269953 -0.2618604 0.2618604 -0.2269953 -0.3604199 0.1376682 -0.2269953 -0.423699 0 -0.2269953 -0.4455035 -0.1376682 -0.2269953 -0.423699 -0.2618604 -0.2269953 -0.3604198 -0.3604198 -0.2269953 -0.2618603 -0.4236989 -0.2269953 -0.1376681 -0.4455034 -0.2269953 0 -0.4236989 -0.2269953 0.1376681 -0.3604198 -0.2269953 0.2618603 -0.2618603 -0.2269953 0.3604198 -0.1376681 -0.2269953 0.4236988 0 -0.2269953 0.4455033 0.1376681 -0.2269953 0.4236988 0.2618603 -0.2269953 0.3604197 0.3604197 -0.2269953 0.2618603 0.4236988 -0.2269953 0.1376681 0.4455033 -0.2269953 0 0.4522546 -0.1545085 -0.1469464 0.3847107 -0.1545085 -0.2795087 0.2795087 -0.1545085 -0.3847107 0.1469464 -0.1545085 -0.4522545 0 -0.1545085 -0.4755285 -0.1469464 -0.1545085 -0.4522544 -0.2795086 -0.1545085 -0.3847106 -0.3847106 -0.1545085 -0.2795086 -0.4522544 -0.1545085 -0.1469463 -0.4755284 -0.1545085 0 -0.4522544 -0.1545085 0.1469463 -0.3847105 -0.1545085 0.2795086 -0.2795086 -0.1545085 0.3847105 -0.1469463 -0.1545085 0.4522543 0 -0.1545085 0.4755283 0.1469463 -0.1545085 0.4522543 0.2795085 -0.1545085 0.3847105 0.3847105 -0.1545085 0.2795085 0.4522543 -0.1545085 0.1469463 0.4755283 -0.1545085 0 0.469674 -0.07821719 -0.1526063 0.3995286 -0.07821719 -0.2902745 0.2902745 -0.07821719 -0.3995286 0.1526063 -0.07821719 -0.469674 0 -0.07821719 -0.4938444 -0.1526063 -0.07821719 -0.469674 -0.2902744 -0.07821719 -0.3995285 -0.3995285 -0.07821719 -0.2902744 -0.4696738 -0.07821719 -0.1526063 -0.4938443 -0.07821719 0 -0.4696738 -0.07821719 0.1526063 -0.3995284 -0.07821719 0.2902744 -0.2902744 -0.07821719 0.3995284 -0.1526063 -0.07821719 0.4696738 0 -0.07821719 0.4938443 0.1526062 -0.07821719 0.4696738 0.2902743 -0.07821719 0.3995284 0.3995284 -0.07821719 0.2902744 0.4696737 -0.07821719 0.1526062 0.4938442 -0.07821719 0 0.4755286 0 -0.1545086 0.4045088 0 -0.2938928 0.2938928 0 -0.4045087 0.1545086 0 -0.4755285 0 0 -0.5000002 -0.1545086 0 -0.4755285 -0.2938927 0 -0.4045087 -0.4045086 0 -0.2938927 -0.4755284 0 -0.1545085 -0.5000001 0 0 -0.4755284 0 0.1545085 -0.4045086 0 0.2938927 -0.2938927 0 0.4045086 -0.1545085 0 0.4755283 0 0 0.5000001 0.1545085 0 0.4755283 0.2938926 0 0.4045085 0.4045085 0 0.2938927 0.4755283 0 0.1545085 0.5 0 0 0.469674 0.07821719 -0.1526063 0.3995286 0.07821719 -0.2902745 0.2902745 0.07821719 -0.3995286 0.1526063 0.07821719 -0.469674 0 0.07821719 -0.4938444 -0.1526063 0.07821719 -0.469674 -0.2902744 0.07821719 -0.3995285 -0.3995285 0.07821719 -0.2902744 -0.4696738 0.07821719 -0.1526063 -0.4938443 0.07821719 0 -0.4696738 0.07821719 0.1526063 -0.3995284 0.07821719 0.2902744 -0.2902744 0.07821719 0.3995284 -0.1526063 0.07821719 0.4696738 0 0.07821719 0.4938443 0.1526062 0.07821719 0.4696738 0.2902743 0.07821719 0.3995284 0.3995284 0.07821719 0.2902744 0.4696737 0.07821719 0.1526062 0.4938442 0.07821719 0 0.4522546 0.1545085 -0.1469464 0.3847107 0.1545085 -0.2795087 0.2795087 0.1545085 -0.3847107 0.1469464 0.1545085 -0.4522545 0 0.1545085 -0.4755285 -0.1469464 0.1545085 -0.4522544 -0.2795086 0.1545085 -0.3847106 -0.3847106 0.1545085 -0.2795086 -0.4522544 0.1545085 -0.1469463 -0.4755284 0.1545085 0 -0.4522544 0.1545085 0.1469463 -0.3847105 0.1545085 0.2795086 -0.2795086 0.1545085 0.3847105 -0.1469463 0.1545085 0.4522543 0 0.1545085 0.4755283 0.1469463 0.1545085 0.4522543 0.2795085 0.1545085 0.3847105 0.3847105 0.1545085 0.2795085 0.4522543 0.1545085 0.1469463 0.4755283 0.1545085 0 0.4236991 0.2269953 -0.1376682 0.36042 0.2269953 -0.2618604 0.2618604 0.2269953 -0.3604199 0.1376682 0.2269953 -0.423699 0 0.2269953 -0.4455035 -0.1376682 0.2269953 -0.423699 -0.2618604 0.2269953 -0.3604198 -0.3604198 0.2269953 -0.2618603 -0.4236989 0.2269953 -0.1376681 -0.4455034 0.2269953 0 -0.4236989 0.2269953 0.1376681 -0.3604198 0.2269953 0.2618603 -0.2618603 0.2269953 0.3604198 -0.1376681 0.2269953 0.4236988 0 0.2269953 0.4455033 0.1376681 0.2269953 0.4236988 0.2618603 0.2269953 0.3604197 0.3604197 0.2269953 0.2618603 0.4236988 0.2269953 0.1376681 0.4455033 0.2269953 0 0.3847107 0.2938926 -0.1250001 0.3272545 0.2938926 -0.2377643 0.2377643 0.2938926 -0.3272544 0.1250001 0.2938926 -0.3847107 0 0.2938926 -0.4045087 -0.1250001 0.2938926 -0.3847107 -0.2377642 0.2938926 -0.3272544 -0.3272544 0.2938926 -0.2377642 -0.3847106 0.2938926 -0.125 -0.4045086 0.2938926 0 -0.3847106 0.2938926 0.125 -0.3272543 0.2938926 0.2377642 -0.2377642 0.2938926 0.3272543 -0.125 0.2938926 0.3847105 0 0.2938926 0.4045086 0.125 0.2938926 0.3847105 0.2377641 0.2938926 0.3272543 0.3272543 0.2938926 0.2377642 0.3847105 0.2938926 0.125 0.4045085 0.2938926 0 0.3362495 0.3535534 -0.1092541 0.2860309 0.3535534 -0.2078136 0.2078136 0.3535534 -0.2860309 0.1092541 0.3535534 -0.3362494 0 0.3535534 -0.3535535 -0.1092541 0.3535534 -0.3362494 -0.2078135 0.3535534 -0.2860308 -0.2860308 0.3535534 -0.2078135 -0.3362494 0.3535534 -0.109254 -0.3535535 0.3535534 0 -0.3362494 0.3535534 0.109254 -0.2860308 0.3535534 0.2078135 -0.2078135 0.3535534 0.2860308 -0.109254 0.3535534 0.3362493 0 0.3535534 0.3535534 0.109254 0.3535534 0.3362493 0.2078135 0.3535534 0.2860307 0.2860307 0.3535534 0.2078135 0.3362493 0.3535534 0.109254 0.3535534 0.3535534 0 0.2795087 0.4045085 -0.09081787 0.2377643 0.4045085 -0.1727459 0.1727459 0.4045085 -0.2377643 0.09081786 0.4045085 -0.2795086 0 0.4045085 -0.2938928 -0.09081786 0.4045085 -0.2795086 -0.1727458 0.4045085 -0.2377642 -0.2377642 0.4045085 -0.1727458 -0.2795086 0.4045085 -0.09081783 -0.2938927 0.4045085 0 -0.2795086 0.4045085 0.09081783 -0.2377642 0.4045085 0.1727458 -0.1727458 0.4045085 0.2377642 -0.09081783 0.4045085 0.2795086 0 0.4045085 0.2938927 0.09081781 0.4045085 0.2795085 0.1727457 0.4045085 0.2377641 0.2377641 0.4045085 0.1727458 0.2795085 0.4045085 0.09081782 0.2938926 0.4045085 0 0.2158855 0.4455033 -0.07014544 0.1836432 0.4455033 -0.1334245 0.1334245 0.4455033 -0.1836431 0.07014543 0.4455033 -0.2158854 0 0.4455033 -0.2269954 -0.07014543 0.4455033 -0.2158854 -0.1334245 0.4455033 -0.1836431 -0.1836431 0.4455033 -0.1334245 -0.2158854 0.4455033 -0.07014541 -0.2269953 0.4455033 0 -0.2158854 0.4455033 0.07014541 -0.1836431 0.4455033 0.1334245 -0.1334245 0.4455033 0.1836431 -0.07014541 0.4455033 0.2158854 0 0.4455033 0.2269953 0.07014539 0.4455033 0.2158853 0.1334245 0.4455033 0.183643 0.183643 0.4455033 0.1334245 0.2158853 0.4455033 0.07014539 0.2269953 0.4455033 0 0.1469464 0.4755283 -0.04774578 0.1250001 0.4755283 -0.09081787 0.09081787 0.4755283 -0.1250001 0.04774578 0.4755283 -0.1469464 0 0.4755283 -0.1545086 -0.04774578 0.4755283 -0.1469464 -0.09081785 0.4755283 -0.1250001 -0.125 0.4755283 -0.09081784 -0.1469464 0.4755283 -0.04774577 -0.1545085 0.4755283 0 -0.1469464 0.4755283 0.04774577 -0.125 0.4755283 0.09081783 -0.09081783 0.4755283 0.125 -0.04774577 0.4755283 0.1469463 0 0.4755283 0.1545085 0.04774575 0.4755283 0.1469463 0.09081782 0.4755283 0.125 0.125 0.4755283 0.09081783 0.1469463 0.4755283 0.04774576 0.1545085 0.4755283 0 0.07438906 0.4938442 -0.02417047 0.06327912 0.4938442 -0.04597497 0.04597497 0.4938442 -0.06327911 0.02417047 0.4938442 -0.07438905 0 0.4938442 -0.07821728 -0.02417047 0.4938442 -0.07438905 -0.04597496 0.4938442 -0.0632791 -0.06327909 0.4938442 -0.04597495 -0.07438904 0.4938442 -0.02417046 -0.07821726 0.4938442 0 -0.07438904 0.4938442 0.02417046 -0.06327909 0.4938442 0.04597495 -0.04597495 0.4938442 0.06327909 -0.02417046 0.4938442 0.07438903 0 0.4938442 0.07821725 0.02417045 0.4938442 0.07438902 0.04597494 0.4938442 0.06327908 0.06327908 0.4938442 0.04597495 0.07438902 0.4938442 0.02417046 0.07821724 0.4938442 0 0 -0.5 0 0 0.5 0</float_array>
          <technique_common>
            <accessor source="#pSphereShape2-positions-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pSphereShape2-normals" name="pSphereShape2-normals">
          <float_array id="pSphereShape2-normals-array" count="1146">0.190555 -0.9797221 -0.06191489 0.1620956 -0.9797221 -0.117769 0.1177694 -0.9797222 -0.1620952 0.06191502 -0.9797221 -0.1905546 0 -0.9797221 -0.2003608 -0.06191509 -0.9797221 -0.1905547 -0.1177694 -0.9797221 -0.1620954 -0.1620957 -0.9797221 -0.1177691 -0.190555 -0.9797221 -0.06191493 -0.2003613 -0.979722 0 -0.1905549 -0.9797221 0.06191491 -0.1620957 -0.9797221 0.1177691 -0.1177694 -0.9797222 0.1620951 -0.06191507 -0.9797221 0.1905547 0 -0.9797221 0.2003614 0.0619151 -0.9797221 0.1905549 0.1177694 -0.9797221 0.1620958 0.1620957 -0.9797221 0.1177696 0.190555 -0.9797221 0.06191494 0.2003613 -0.9797221 0 0.3172516 -0.9427226 -0.1030811 0.2698701 -0.9427225 -0.196072 0.1960721 -0.9427226 -0.2698701 0.1030812 -0.9427225 -0.3172516 0 -0.9427225 -0.333578 -0.1030813 -0.9427225 -0.3172515 -0.1960723 -0.9427224 -0.2698702 -0.2698703 -0.9427224 -0.1960722 -0.3172516 -0.9427225 -0.1030812 -0.3335781 -0.9427225 0 -0.3172516 -0.9427226 0.103081 -0.2698703 -0.9427224 0.1960724 -0.1960722 -0.9427226 0.2698703 -0.1030813 -0.9427226 0.3172513 0 -0.9427224 0.333578 0.1030813 -0.9427224 0.3172517 0.1960723 -0.9427225 0.2698705 0.2698703 -0.9427224 0.1960727 0.3172516 -0.9427224 0.1030814 0.333578 -0.9427224 0 0.4477114 -0.8822658 -0.1454698 0.3808459 -0.8822659 -0.2767008 0.2767007 -0.8822659 -0.3808458 0.1454702 -0.8822659 -0.4477112 0 -0.8822659 -0.4707516 -0.1454703 -0.8822659 -0.4477112 -0.276701 -0.8822659 -0.3808458 -0.3808461 -0.8822658 -0.2767009 -0.4477115 -0.8822658 -0.1454701 -0.4707517 -0.8822657 0 -0.4477115 -0.8822658 0.1454702 -0.3808461 -0.8822657 0.2767012 -0.2767009 -0.8822657 0.3808463 -0.1454702 -0.8822658 0.4477115 0 -0.8822657 0.4707518 0.1454703 -0.8822657 0.4477114 0.276701 -0.8822657 0.3808461 0.3808462 -0.8822656 0.2767012 0.4477115 -0.8822656 0.1454706 0.4707517 -0.8822657 0 0.5703146 -0.800252 -0.1853057 0.4851383 -0.8002519 -0.3524735 0.3524735 -0.8002519 -0.4851383 0.1853063 -0.8002519 -0.5703143 0 -0.800252 -0.5996639 -0.1853064 -0.800252 -0.5703141 -0.3524738 -0.800252 -0.4851382 -0.4851384 -0.8002518 -0.3524735 -0.5703143 -0.8002518 -0.1853061 -0.599664 -0.8002518 0 -0.5703143 -0.8002519 0.1853064 -0.4851383 -0.800252 0.3524737 -0.3524736 -0.8002518 0.4851384 -0.1853063 -0.8002518 0.5703146 0 -0.8002517 0.5996642 0.1853065 -0.8002518 0.5703145 0.3524738 -0.8002518 0.4851384 0.4851384 -0.8002518 0.3524737 0.5703145 -0.8002518 0.1853064 0.5996641 -0.8002518 0 0.6803179 -0.6987886 -0.2210479 0.5787126 -0.6987886 -0.4204594 0.4204593 -0.6987885 -0.5787128 0.2210485 -0.6987886 -0.6803177 0 -0.6987886 -0.7153282 -0.2210488 -0.6987887 -0.6803175 -0.4204596 -0.6987885 -0.5787126 -0.5787128 -0.6987886 -0.4204594 -0.6803176 -0.6987886 -0.2210484 -0.7153283 -0.6987885 0 -0.6803176 -0.6987885 0.2210486 -0.5787128 -0.6987884 0.4204596 -0.4204594 -0.6987884 0.5787128 -0.2210486 -0.6987884 0.6803178 0 -0.6987884 0.7153284 0.2210487 -0.6987885 0.6803176 0.4204594 -0.6987884 0.5787128 0.5787129 -0.6987883 0.4204595 0.6803178 -0.6987884 0.2210485 0.7153284 -0.6987884 0 0.774475 -0.5804009 -0.2516413 0.6588076 -0.5804008 -0.4786518 0.4786516 -0.5804006 -0.6588078 0.251642 -0.5804007 -0.7744749 0 -0.5804008 -0.814331 -0.2516423 -0.5804008 -0.7744747 -0.4786519 -0.5804007 -0.6588075 -0.6588076 -0.5804007 -0.4786518 -0.774475 -0.5804006 -0.2516421 -0.8143311 -0.5804005 0 -0.7744749 -0.5804006 0.2516422 -0.6588076 -0.5804006 0.4786519 -0.4786518 -0.5804006 0.6588078 -0.2516421 -0.5804005 0.774475 0 -0.5804006 0.8143312 0.2516423 -0.5804007 0.7744749 0.478652 -0.5804005 0.6588078 0.6588078 -0.5804005 0.4786519 0.7744749 -0.5804005 0.2516422 0.8143311 -0.5804006 0 0.8502796 -0.4479938 -0.2762716 0.7232909 -0.4479937 -0.5255017 0.5255014 -0.4479936 -0.7232911 0.2762724 -0.4479936 -0.8502795 0 -0.4479935 -0.8940368 -0.2762727 -0.4479935 -0.8502795 -0.5255018 -0.4479935 -0.7232908 -0.723291 -0.4479935 -0.5255015 -0.8502796 -0.4479933 -0.2762725 -0.8940368 -0.4479934 0 -0.8502795 -0.4479935 0.2762726 -0.7232909 -0.4479935 0.5255017 -0.5255016 -0.4479936 0.723291 -0.2762725 -0.4479935 0.8502796 0 -0.4479935 0.8940368 0.2762727 -0.4479934 0.8502795 0.5255017 -0.4479934 0.723291 0.723291 -0.4479934 0.5255017 0.8502796 -0.4479934 0.2762725 0.8940368 -0.4479937 0 0.9058056 -0.3047888 -0.294313 0.7705238 -0.3047888 -0.5598185 0.5598183 -0.3047889 -0.770524 0.2943138 -0.3047888 -0.9058053 0 -0.3047887 -0.9524201 -0.2943141 -0.3047887 -0.9058052 -0.5598187 -0.3047888 -0.7705238 -0.7705241 -0.3047886 -0.5598183 -0.9058054 -0.3047885 -0.2943139 -0.9524201 -0.3047886 0 -0.9058053 -0.3047886 0.294314 -0.770524 -0.3047886 0.5598186 -0.5598184 -0.3047886 0.770524 -0.2943139 -0.3047887 0.9058053 0 -0.3047887 0.95242 0.2943141 -0.3047886 0.9058053 0.5598184 -0.3047887 0.770524 0.770524 -0.3047888 0.5598184 0.9058053 -0.3047887 0.2943139 0.95242 -0.3047886 0 0.9396746 -0.1542487 -0.3053177 0.7993346 -0.1542489 -0.5807506 0.5807505 -0.1542488 -0.7993348 0.3053184 -0.1542488 -0.9396744 0 -0.1542488 -0.988032 -0.3053187 -0.1542488 -0.9396743 -0.5807509 -0.1542488 -0.7993345 -0.7993348 -0.1542488 -0.5807505 -0.9396744 -0.1542488 -0.3053186 -0.988032 -0.1542487 0 -0.9396744 -0.1542487 0.3053187 -0.7993346 -0.1542487 0.5807507 -0.5807506 -0.1542487 0.7993347 -0.3053187 -0.1542487 0.9396743 0 -0.1542488 0.988032 0.3053188 -0.1542487 0.9396743 0.5807507 -0.1542487 0.7993348 0.7993348 -0.1542487 0.5807506 0.9396744 -0.1542487 0.3053187 0.9880321 -0.1542485 0 0.9510569 0 -0.309016 0.809017 0 -0.5877852 0.5877851 0 -0.8090171 0.3090167 0 -0.9510566 0 0 -1 -0.309017 0 -0.9510565 -0.5877855 0 -0.8090168 -0.8090171 0 -0.5877851 -0.9510565 0 -0.3090169 -1 0 0 -0.9510565 0 0.309017 -0.8090169 0 0.5877853 -0.5877852 0 0.8090171 -0.309017 0 0.9510565 0 0 1 0.3090171 0 0.9510565 0.5877852 0 0.809017 0.809017 0 0.5877852 0.9510565 0 0.3090169 1 0 0 0.9396746 0.1542487 -0.3053177 0.7993346 0.1542489 -0.5807507 0.5807505 0.1542488 -0.7993348 0.3053185 0.1542488 -0.9396744 0 0.1542488 -0.988032 -0.3053187 0.1542488 -0.9396743 -0.5807509 0.1542488 -0.7993345 -0.7993348 0.1542488 -0.5807505 -0.9396744 0.1542488 -0.3053186 -0.988032 0.1542487 0 -0.9396744 0.1542487 0.3053187 -0.7993346 0.1542487 0.5807508 -0.5807506 0.1542487 0.7993347 -0.3053187 0.1542487 0.9396743 0 0.1542488 0.988032 0.3053188 0.1542487 0.9396743 0.5807506 0.1542487 0.7993348 0.7993347 0.1542487 0.5807506 0.9396744 0.1542486 0.3053186 0.9880321 0.1542485 0 0.9058056 0.3047888 -0.294313 0.770524 0.3047888 -0.5598185 0.5598183 0.3047889 -0.770524 0.2943137 0.3047888 -0.9058053 0 0.3047887 -0.9524201 -0.2943141 0.3047887 -0.9058052 -0.5598187 0.3047887 -0.7705238 -0.7705241 0.3047885 -0.5598183 -0.9058053 0.3047884 -0.2943139 -0.95242 0.3047886 0 -0.9058053 0.3047886 0.294314 -0.770524 0.3047885 0.5598186 -0.5598184 0.3047886 0.770524 -0.2943139 0.3047887 0.9058053 0 0.3047887 0.95242 0.2943141 0.3047886 0.9058053 0.5598184 0.3047887 0.770524 0.770524 0.3047888 0.5598184 0.9058053 0.3047886 0.2943139 0.9524201 0.3047886 0 0.8502796 0.4479937 -0.2762716 0.7232909 0.4479937 -0.5255017 0.5255014 0.4479936 -0.7232911 0.2762724 0.4479936 -0.8502795 0 0.4479935 -0.8940368 -0.2762727 0.4479935 -0.8502796 -0.5255018 0.4479935 -0.7232908 -0.7232911 0.4479934 -0.5255016 -0.8502796 0.4479933 -0.2762725 -0.8940369 0.4479933 0 -0.8502796 0.4479934 0.2762726 -0.7232909 0.4479934 0.5255018 -0.5255016 0.4479935 0.723291 -0.2762724 0.4479935 0.8502795 0 0.4479935 0.8940368 0.2762727 0.4479934 0.8502795 0.5255017 0.4479934 0.723291 0.723291 0.4479934 0.5255017 0.8502796 0.4479935 0.2762725 0.8940368 0.4479936 0 0.774475 0.5804008 -0.2516413 0.6588075 0.5804008 -0.4786518 0.4786516 0.5804007 -0.6588078 0.251642 0.5804007 -0.7744748 0 0.5804008 -0.814331 -0.2516423 0.5804008 -0.7744747 -0.4786519 0.5804008 -0.6588075 -0.6588078 0.5804006 -0.4786518 -0.7744749 0.5804005 -0.2516421 -0.8143312 0.5804005 0 -0.7744749 0.5804005 0.2516422 -0.6588078 0.5804006 0.478652 -0.4786518 0.5804006 0.6588078 -0.2516421 0.5804005 0.7744749 0 0.5804006 0.8143311 0.2516422 0.5804006 0.7744749 0.478652 0.5804005 0.6588078 0.6588078 0.5804005 0.4786519 0.7744749 0.5804005 0.2516421 0.8143311 0.5804006 0 0.6803179 0.6987886 -0.2210479 0.5787127 0.6987886 -0.4204594 0.4204593 0.6987886 -0.5787128 0.2210485 0.6987886 -0.6803177 0 0.6987886 -0.7153282 -0.2210487 0.6987886 -0.6803175 -0.4204597 0.6987885 -0.5787126 -0.5787129 0.6987885 -0.4204594 -0.6803176 0.6987886 -0.2210485 -0.7153283 0.6987885 0 -0.6803176 0.6987885 0.2210486 -0.5787128 0.6987885 0.4204595 -0.4204594 0.6987885 0.5787128 -0.2210486 0.6987884 0.6803178 0 0.6987885 0.7153284 0.2210487 0.6987885 0.6803177 0.4204594 0.6987884 0.5787128 0.5787129 0.6987883 0.4204595 0.6803178 0.6987883 0.2210486 0.7153284 0.6987883 0 0.5703146 0.8002519 -0.1853056 0.4851384 0.800252 -0.3524736 0.3524735 0.800252 -0.4851384 0.1853062 0.8002519 -0.5703143 0 0.800252 -0.5996639 -0.1853065 0.800252 -0.5703143 -0.3524739 0.8002518 -0.4851383 -0.4851384 0.8002518 -0.3524735 -0.5703143 0.800252 -0.1853062 -0.599664 0.8002518 0 -0.5703143 0.8002519 0.1853064 -0.4851383 0.8002518 0.3524737 -0.3524736 0.8002518 0.4851385 -0.1853063 0.8002518 0.5703146 0 0.8002517 0.5996642 0.1853065 0.8002517 0.5703145 0.3524737 0.8002518 0.4851384 0.4851385 0.8002518 0.3524737 0.5703145 0.8002518 0.1853064 0.5996641 0.8002518 0 0.4477114 0.8822658 -0.1454698 0.3808459 0.8822659 -0.2767008 0.2767007 0.8822659 -0.380846 0.1454701 0.8822658 -0.4477113 0 0.8822658 -0.4707514 -0.1454703 0.8822659 -0.4477112 -0.276701 0.8822658 -0.3808458 -0.3808461 0.8822658 -0.2767008 -0.4477115 0.8822658 -0.1454699 -0.4707517 0.8822657 0 -0.4477115 0.8822658 0.1454703 -0.3808461 0.8822658 0.2767011 -0.2767009 0.8822657 0.3808464 -0.1454702 0.8822657 0.4477117 0 0.8822657 0.4707519 0.1454703 0.8822657 0.4477115 0.276701 0.8822657 0.3808461 0.3808462 0.8822656 0.2767011 0.4477115 0.8822656 0.1454704 0.4707517 0.8822658 0 0.3172516 0.9427225 -0.1030811 0.2698702 0.9427226 -0.1960721 0.1960721 0.9427226 -0.2698702 0.1030812 0.9427225 -0.3172517 0 0.9427226 -0.3335781 -0.1030813 0.9427224 -0.3172515 -0.1960723 0.9427225 -0.2698702 -0.2698703 0.9427225 -0.1960723 -0.3172516 0.9427225 -0.103081 -0.3335781 0.9427224 0 -0.3172516 0.9427225 0.103081 -0.2698703 0.9427225 0.196072 -0.1960723 0.9427226 0.2698701 -0.1030813 0.9427226 0.3172514 0 0.9427226 0.3335779 0.1030813 0.9427226 0.3172515 0.1960723 0.9427225 0.2698704 0.2698704 0.9427225 0.1960726 0.3172516 0.9427224 0.1030814 0.333578 0.9427226 0 0.190555 0.9797221 -0.06191489 0.1620957 0.9797222 -0.117769 0.1177694 0.9797222 -0.1620952 0.06191503 0.9797221 -0.1905546 0 0.9797221 -0.2003609 -0.06191508 0.9797221 -0.1905547 -0.1177694 0.979722 -0.1620957 -0.1620957 0.9797221 -0.1177695 -0.190555 0.9797221 -0.06191492 -0.2003613 0.9797221 0 -0.1905549 0.9797221 0.06191492 -0.1620957 0.9797221 0.1177691 -0.1177695 0.9797222 0.1620952 -0.06191507 0.9797222 0.1905546 0 0.9797221 0.2003611 0.0619151 0.9797221 0.1905545 0.1177695 0.9797221 0.1620956 0.1620957 0.9797221 0.1177695 0.190555 0.9797221 0.06191492 0.2003613 0.9797221 0 0 -1 0 0 1 0</float_array>
          <technique_common>
            <accessor source="#pSphereShape2-normals-array" count="382" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pSphereShape2-map1" name="pSphereShape2-map1">
          <float_array id="pSphereShape2-map1-array" count="878">0 0.05 0.05 0.05 0.1 0.05 0.15 0.05 0.2 0.05 0.25 0.05 0.3 0.05 0.35 0.05 0.4 0.05 0.45 0.05 0.5000001 0.05 0.5500001 0.05 0.6000001 0.05 0.6500001 0.05 0.7000001 0.05 0.7500001 0.05 0.8000001 0.05 0.8500001 0.05 0.9000002 0.05 0.9500002 0.05 1 0.05 0 0.1 0.05 0.1 0.1 0.1 0.15 0.1 0.2 0.1 0.25 0.1 0.3 0.1 0.35 0.1 0.4 0.1 0.45 0.1 0.5000001 0.1 0.5500001 0.1 0.6000001 0.1 0.6500001 0.1 0.7000001 0.1 0.7500001 0.1 0.8000001 0.1 0.8500001 0.1 0.9000002 0.1 0.9500002 0.1 1 0.1 0 0.15 0.05 0.15 0.1 0.15 0.15 0.15 0.2 0.15 0.25 0.15 0.3 0.15 0.35 0.15 0.4 0.15 0.45 0.15 0.5000001 0.15 0.5500001 0.15 0.6000001 0.15 0.6500001 0.15 0.7000001 0.15 0.7500001 0.15 0.8000001 0.15 0.8500001 0.15 0.9000002 0.15 0.9500002 0.15 1 0.15 0 0.2 0.05 0.2 0.1 0.2 0.15 0.2 0.2 0.2 0.25 0.2 0.3 0.2 0.35 0.2 0.4 0.2 0.45 0.2 0.5000001 0.2 0.5500001 0.2 0.6000001 0.2 0.6500001 0.2 0.7000001 0.2 0.7500001 0.2 0.8000001 0.2 0.8500001 0.2 0.9000002 0.2 0.9500002 0.2 1 0.2 0 0.25 0.05 0.25 0.1 0.25 0.15 0.25 0.2 0.25 0.25 0.25 0.3 0.25 0.35 0.25 0.4 0.25 0.45 0.25 0.5000001 0.25 0.5500001 0.25 0.6000001 0.25 0.6500001 0.25 0.7000001 0.25 0.7500001 0.25 0.8000001 0.25 0.8500001 0.25 0.9000002 0.25 0.9500002 0.25 1 0.25 0 0.3 0.05 0.3 0.1 0.3 0.15 0.3 0.2 0.3 0.25 0.3 0.3 0.3 0.35 0.3 0.4 0.3 0.45 0.3 0.5000001 0.3 0.5500001 0.3 0.6000001 0.3 0.6500001 0.3 0.7000001 0.3 0.7500001 0.3 0.8000001 0.3 0.8500001 0.3 0.9000002 0.3 0.9500002 0.3 1 0.3 0 0.35 0.05 0.35 0.1 0.35 0.15 0.35 0.2 0.35 0.25 0.35 0.3 0.35 0.35 0.35 0.4 0.35 0.45 0.35 0.5000001 0.35 0.5500001 0.35 0.6000001 0.35 0.6500001 0.35 0.7000001 0.35 0.7500001 0.35 0.8000001 0.35 0.8500001 0.35 0.9000002 0.35 0.9500002 0.35 1 0.35 0 0.4 0.05 0.4 0.1 0.4 0.15 0.4 0.2 0.4 0.25 0.4 0.3 0.4 0.35 0.4 0.4 0.4 0.45 0.4 0.5000001 0.4 0.5500001 0.4 0.6000001 0.4 0.6500001 0.4 0.7000001 0.4 0.7500001 0.4 0.8000001 0.4 0.8500001 0.4 0.9000002 0.4 0.9500002 0.4 1 0.4 0 0.45 0.05 0.45 0.1 0.45 0.15 0.45 0.2 0.45 0.25 0.45 0.3 0.45 0.35 0.45 0.4 0.45 0.45 0.45 0.5000001 0.45 0.5500001 0.45 0.6000001 0.45 0.6500001 0.45 0.7000001 0.45 0.7500001 0.45 0.8000001 0.45 0.8500001 0.45 0.9000002 0.45 0.9500002 0.45 1 0.45 0 0.5000001 0.05 0.5000001 0.1 0.5000001 0.15 0.5000001 0.2 0.5000001 0.25 0.5000001 0.3 0.5000001 0.35 0.5000001 0.4 0.5000001 0.45 0.5000001 0.5000001 0.5000001 0.5500001 0.5000001 0.6000001 0.5000001 0.6500001 0.5000001 0.7000001 0.5000001 0.7500001 0.5000001 0.8000001 0.5000001 0.8500001 0.5000001 0.9000002 0.5000001 0.9500002 0.5000001 1 0.5000001 0 0.5500001 0.05 0.5500001 0.1 0.5500001 0.15 0.5500001 0.2 0.5500001 0.25 0.5500001 0.3 0.5500001 0.35 0.5500001 0.4 0.5500001 0.45 0.5500001 0.5000001 0.5500001 0.5500001 0.5500001 0.6000001 0.5500001 0.6500001 0.5500001 0.7000001 0.5500001 0.7500001 0.5500001 0.8000001 0.5500001 0.8500001 0.5500001 0.9000002 0.5500001 0.9500002 0.5500001 1 0.5500001 0 0.6000001 0.05 0.6000001 0.1 0.6000001 0.15 0.6000001 0.2 0.6000001 0.25 0.6000001 0.3 0.6000001 0.35 0.6000001 0.4 0.6000001 0.45 0.6000001 0.5000001 0.6000001 0.5500001 0.6000001 0.6000001 0.6000001 0.6500001 0.6000001 0.7000001 0.6000001 0.7500001 0.6000001 0.8000001 0.6000001 0.8500001 0.6000001 0.9000002 0.6000001 0.9500002 0.6000001 1 0.6000001 0 0.6500001 0.05 0.6500001 0.1 0.6500001 0.15 0.6500001 0.2 0.6500001 0.25 0.6500001 0.3 0.6500001 0.35 0.6500001 0.4 0.6500001 0.45 0.6500001 0.5000001 0.6500001 0.5500001 0.6500001 0.6000001 0.6500001 0.6500001 0.6500001 0.7000001 0.6500001 0.7500001 0.6500001 0.8000001 0.6500001 0.8500001 0.6500001 0.9000002 0.6500001 0.9500002 0.6500001 1 0.6500001 0 0.7000001 0.05 0.7000001 0.1 0.7000001 0.15 0.7000001 0.2 0.7000001 0.25 0.7000001 0.3 0.7000001 0.35 0.7000001 0.4 0.7000001 0.45 0.7000001 0.5000001 0.7000001 0.5500001 0.7000001 0.6000001 0.7000001 0.6500001 0.7000001 0.7000001 0.7000001 0.7500001 0.7000001 0.8000001 0.7000001 0.8500001 0.7000001 0.9000002 0.7000001 0.9500002 0.7000001 1 0.7000001 0 0.7500001 0.05 0.7500001 0.1 0.7500001 0.15 0.7500001 0.2 0.7500001 0.25 0.7500001 0.3 0.7500001 0.35 0.7500001 0.4 0.7500001 0.45 0.7500001 0.5000001 0.7500001 0.5500001 0.7500001 0.6000001 0.7500001 0.6500001 0.7500001 0.7000001 0.7500001 0.7500001 0.7500001 0.8000001 0.7500001 0.8500001 0.7500001 0.9000002 0.7500001 0.9500002 0.7500001 1 0.7500001 0 0.8000001 0.05 0.8000001 0.1 0.8000001 0.15 0.8000001 0.2 0.8000001 0.25 0.8000001 0.3 0.8000001 0.35 0.8000001 0.4 0.8000001 0.45 0.8000001 0.5000001 0.8000001 0.5500001 0.8000001 0.6000001 0.8000001 0.6500001 0.8000001 0.7000001 0.8000001 0.7500001 0.8000001 0.8000001 0.8000001 0.8500001 0.8000001 0.9000002 0.8000001 0.9500002 0.8000001 1 0.8000001 0 0.8500001 0.05 0.8500001 0.1 0.8500001 0.15 0.8500001 0.2 0.8500001 0.25 0.8500001 0.3 0.8500001 0.35 0.8500001 0.4 0.8500001 0.45 0.8500001 0.5000001 0.8500001 0.5500001 0.8500001 0.6000001 0.8500001 0.6500001 0.8500001 0.7000001 0.8500001 0.7500001 0.8500001 0.8000001 0.8500001 0.8500001 0.8500001 0.9000002 0.8500001 0.9500002 0.8500001 1 0.8500001 0 0.9000002 0.05 0.9000002 0.1 0.9000002 0.15 0.9000002 0.2 0.9000002 0.25 0.9000002 0.3 0.9000002 0.35 0.9000002 0.4 0.9000002 0.45 0.9000002 0.5000001 0.9000002 0.5500001 0.9000002 0.6000001 0.9000002 0.6500001 0.9000002 0.7000001 0.9000002 0.7500001 0.9000002 0.8000001 0.9000002 0.8500001 0.9000002 0.9000002 0.9000002 0.9500002 0.9000002 1 0.9000002 0 0.9500002 0.05 0.9500002 0.1 0.9500002 0.15 0.9500002 0.2 0.9500002 0.25 0.9500002 0.3 0.9500002 0.35 0.9500002 0.4 0.9500002 0.45 0.9500002 0.5000001 0.9500002 0.5500001 0.9500002 0.6000001 0.9500002 0.6500001 0.9500002 0.7000001 0.9500002 0.7500001 0.9500002 0.8000001 0.9500002 0.8500001 0.9500002 0.9000002 0.9500002 0.9500002 0.9500002 1 0.9500002 0.025 0 0.075 0 0.125 0 0.175 0 0.225 0 0.275 0 0.325 0 0.375 0 0.425 0 0.475 0 0.525 0 0.575 0 0.625 0 0.675 0 0.725 0 0.775 0 0.825 0 0.875 0 0.925 0 0.975 0 0.025 1 0.075 1 0.125 1 0.175 1 0.225 1 0.275 1 0.325 1 0.375 1 0.425 1 0.475 1 0.525 1 0.575 1 0.625 1 0.675 1 0.725 1 0.775 1 0.825 1 0.875 1 0.925 1 0.975 1</float_array>
          <technique_common>
            <accessor source="#pSphereShape2-map1-array" count="439" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pSphereShape2-vertices" name="pSphereShape2-vertices">
          <input semantic="POSITION" source="#pSphereShape2-positions"/>
          <input semantic="NORMAL" source="#pSphereShape2-normals"/>
        </vertices>
        <polylist material="initialShadingGroup" count="400">
          <input semantic="VERTEX" source="#pSphereShape2-vertices" offset="0"/>
          <input semantic="TEXCOORD" source="#pSphereShape2-map1" offset="1" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>
          <p>0 0 1 1 21 22 20 21 1 1 2 2 22 23 21 22 2 2 3 3 23 24 22 23 3 3 4 4 24 25 23 24 4 4 5 5 25 26 24 25 5 5 6 6 26 27 25 26 6 6 7 7 27 28 26 27 7 7 8 8 28 29 27 28 8 8 9 9 29 30 28 29 9 9 10 10 30 31 29 30 10 10 11 11 31 32 30 31 11 11 12 12 32 33 31 32 12 12 13 13 33 34 32 33 13 13 14 14 34 35 33 34 14 14 15 15 35 36 34 35 15 15 16 16 36 37 35 36 16 16 17 17 37 38 36 37 17 17 18 18 38 39 37 38 18 18 19 19 39 40 38 39 19 19 0 20 20 41 39 40 20 21 21 22 41 43 40 42 21 22 22 23 42 44 41 43 22 23 23 24 43 45 42 44 23 24 24 25 44 46 43 45 24 25 25 26 45 47 44 46 25 26 26 27 46 48 45 47 26 27 27 28 47 49 46 48 27 28 28 29 48 50 47 49 28 29 29 30 49 51 48 50 29 30 30 31 50 52 49 51 30 31 31 32 51 53 50 52 31 32 32 33 52 54 51 53 32 33 33 34 53 55 52 54 33 34 34 35 54 56 53 55 34 35 35 36 55 57 54 56 35 36 36 37 56 58 55 57 36 37 37 38 57 59 56 58 37 38 38 39 58 60 57 59 38 39 39 40 59 61 58 60 39 40 20 41 40 62 59 61 40 42 41 43 61 64 60 63 41 43 42 44 62 65 61 64 42 44 43 45 63 66 62 65 43 45 44 46 64 67 63 66 44 46 45 47 65 68 64 67 45 47 46 48 66 69 65 68 46 48 47 49 67 70 66 69 47 49 48 50 68 71 67 70 48 50 49 51 69 72 68 71 49 51 50 52 70 73 69 72 50 52 51 53 71 74 70 73 51 53 52 54 72 75 71 74 52 54 53 55 73 76 72 75 53 55 54 56 74 77 73 76 54 56 55 57 75 78 74 77 55 57 56 58 76 79 75 78 56 58 57 59 77 80 76 79 57 59 58 60 78 81 77 80 58 60 59 61 79 82 78 81 59 61 40 62 60 83 79 82 60 63 61 64 81 85 80 84 61 64 62 65 82 86 81 85 62 65 63 66 83 87 82 86 63 66 64 67 84 88 83 87 64 67 65 68 85 89 84 88 65 68 66 69 86 90 85 89 66 69 67 70 87 91 86 90 67 70 68 71 88 92 87 91 68 71 69 72 89 93 88 92 69 72 70 73 90 94 89 93 70 73 71 74 91 95 90 94 71 74 72 75 92 96 91 95 72 75 73 76 93 97 92 96 73 76 74 77 94 98 93 97 74 77 75 78 95 99 94 98 75 78 76 79 96 100 95 99 76 79 77 80 97 101 96 100 77 80 78 81 98 102 97 101 78 81 79 82 99 103 98 102 79 82 60 83 80 104 99 103 80 84 81 85 101 106 100 105 81 85 82 86 102 107 101 106 82 86 83 87 103 108 102 107 83 87 84 88 104 109 103 108 84 88 85 89 105 110 104 109 85 89 86 90 106 111 105 110 86 90 87 91 107 112 106 111 87 91 88 92 108 113 107 112 88 92 89 93 109 114 108 113 89 93 90 94 110 115 109 114 90 94 91 95 111 116 110 115 91 95 92 96 112 117 111 116 92 96 93 97 113 118 112 117 93 97 94 98 114 119 113 118 94 98 95 99 115 120 114 119 95 99 96 100 116 121 115 120 96 100 97 101 117 122 116 121 97 101 98 102 118 123 117 122 98 102 99 103 119 124 118 123 99 103 80 104 100 125 119 124 100 105 101 106 121 127 120 126 101 106 102 107 122 128 121 127 102 107 103 108 123 129 122 128 103 108 104 109 124 130 123 129 104 109 105 110 125 131 124 130 105 110 106 111 126 132 125 131 106 111 107 112 127 133 126 132 107 112 108 113 128 134 127 133 108 113 109 114 129 135 128 134 109 114 110 115 130 136 129 135 110 115 111 116 131 137 130 136 111 116 112 117 132 138 131 137 112 117 113 118 133 139 132 138 113 118 114 119 134 140 133 139 114 119 115 120 135 141 134 140 115 120 116 121 136 142 135 141 116 121 117 122 137 143 136 142 117 122 118 123 138 144 137 143 118 123 119 124 139 145 138 144 119 124 100 125 120 146 139 145 120 126 121 127 141 148 140 147 121 127 122 128 142 149 141 148 122 128 123 129 143 150 142 149 123 129 124 130 144 151 143 150 124 130 125 131 145 152 144 151 125 131 126 132 146 153 145 152 126 132 127 133 147 154 146 153 127 133 128 134 148 155 147 154 128 134 129 135 149 156 148 155 129 135 130 136 150 157 149 156 130 136 131 137 151 158 150 157 131 137 132 138 152 159 151 158 132 138 133 139 153 160 152 159 133 139 134 140 154 161 153 160 134 140 135 141 155 162 154 161 135 141 136 142 156 163 155 162 136 142 137 143 157 164 156 163 137 143 138 144 158 165 157 164 138 144 139 145 159 166 158 165 139 145 120 146 140 167 159 166 140 147 141 148 161 169 160 168 141 148 142 149 162 170 161 169 142 149 143 150 163 171 162 170 143 150 144 151 164 172 163 171 144 151 145 152 165 173 164 172 145 152 146 153 166 174 165 173 146 153 147 154 167 175 166 174 147 154 148 155 168 176 167 175 148 155 149 156 169 177 168 176 149 156 150 157 170 178 169 177 150 157 151 158 171 179 170 178 151 158 152 159 172 180 171 179 152 159 153 160 173 181 172 180 153 160 154 161 174 182 173 181 154 161 155 162 175 183 174 182 155 162 156 163 176 184 175 183 156 163 157 164 177 185 176 184 157 164 158 165 178 186 177 185 158 165 159 166 179 187 178 186 159 166 140 167 160 188 179 187 160 168 161 169 181 190 180 189 161 169 162 170 182 191 181 190 162 170 163 171 183 192 182 191 163 171 164 172 184 193 183 192 164 172 165 173 185 194 184 193 165 173 166 174 186 195 185 194 166 174 167 175 187 196 186 195 167 175 168 176 188 197 187 196 168 176 169 177 189 198 188 197 169 177 170 178 190 199 189 198 170 178 171 179 191 200 190 199 171 179 172 180 192 201 191 200 172 180 173 181 193 202 192 201 173 181 174 182 194 203 193 202 174 182 175 183 195 204 194 203 175 183 176 184 196 205 195 204 176 184 177 185 197 206 196 205 177 185 178 186 198 207 197 206 178 186 179 187 199 208 198 207 179 187 160 188 180 209 199 208 180 189 181 190 201 211 200 210 181 190 182 191 202 212 201 211 182 191 183 192 203 213 202 212 183 192 184 193 204 214 203 213 184 193 185 194 205 215 204 214 185 194 186 195 206 216 205 215 186 195 187 196 207 217 206 216 187 196 188 197 208 218 207 217 188 197 189 198 209 219 208 218 189 198 190 199 210 220 209 219 190 199 191 200 211 221 210 220 191 200 192 201 212 222 211 221 192 201 193 202 213 223 212 222 193 202 194 203 214 224 213 223 194 203 195 204 215 225 214 224 195 204 196 205 216 226 215 225 196 205 197 206 217 227 216 226 197 206 198 207 218 228 217 227 198 207 199 208 219 229 218 228 199 208 180 209 200 230 219 229 200 210 201 211 221 232 220 231 201 211 202 212 222 233 221 232 202 212 203 213 223 234 222 233 203 213 204 214 224 235 223 234 204 214 205 215 225 236 224 235 205 215 206 216 226 237 225 236 206 216 207 217 227 238 226 237 207 217 208 218 228 239 227 238 208 218 209 219 229 240 228 239 209 219 210 220 230 241 229 240 210 220 211 221 231 242 230 241 211 221 212 222 232 243 231 242 212 222 213 223 233 244 232 243 213 223 214 224 234 245 233 244 214 224 215 225 235 246 234 245 215 225 216 226 236 247 235 246 216 226 217 227 237 248 236 247 217 227 218 228 238 249 237 248 218 228 219 229 239 250 238 249 219 229 200 230 220 251 239 250 220 231 221 232 241 253 240 252 221 232 222 233 242 254 241 253 222 233 223 234 243 255 242 254 223 234 224 235 244 256 243 255 224 235 225 236 245 257 244 256 225 236 226 237 246 258 245 257 226 237 227 238 247 259 246 258 227 238 228 239 248 260 247 259 228 239 229 240 249 261 248 260 229 240 230 241 250 262 249 261 230 241 231 242 251 263 250 262 231 242 232 243 252 264 251 263 232 243 233 244 253 265 252 264 233 244 234 245 254 266 253 265 234 245 235 246 255 267 254 266 235 246 236 247 256 268 255 267 236 247 237 248 257 269 256 268 237 248 238 249 258 270 257 269 238 249 239 250 259 271 258 270 239 250 220 251 240 272 259 271 240 252 241 253 261 274 260 273 241 253 242 254 262 275 261 274 242 254 243 255 263 276 262 275 243 255 244 256 264 277 263 276 244 256 245 257 265 278 264 277 245 257 246 258 266 279 265 278 246 258 247 259 267 280 266 279 247 259 248 260 268 281 267 280 248 260 249 261 269 282 268 281 249 261 250 262 270 283 269 282 250 262 251 263 271 284 270 283 251 263 252 264 272 285 271 284 252 264 253 265 273 286 272 285 253 265 254 266 274 287 273 286 254 266 255 267 275 288 274 287 255 267 256 268 276 289 275 288 256 268 257 269 277 290 276 289 257 269 258 270 278 291 277 290 258 270 259 271 279 292 278 291 259 271 240 272 260 293 279 292 260 273 261 274 281 295 280 294 261 274 262 275 282 296 281 295 262 275 263 276 283 297 282 296 263 276 264 277 284 298 283 297 264 277 265 278 285 299 284 298 265 278 266 279 286 300 285 299 266 279 267 280 287 301 286 300 267 280 268 281 288 302 287 301 268 281 269 282 289 303 288 302 269 282 270 283 290 304 289 303 270 283 271 284 291 305 290 304 271 284 272 285 292 306 291 305 272 285 273 286 293 307 292 306 273 286 274 287 294 308 293 307 274 287 275 288 295 309 294 308 275 288 276 289 296 310 295 309 276 289 277 290 297 311 296 310 277 290 278 291 298 312 297 311 278 291 279 292 299 313 298 312 279 292 260 293 280 314 299 313 280 294 281 295 301 316 300 315 281 295 282 296 302 317 301 316 282 296 283 297 303 318 302 317 283 297 284 298 304 319 303 318 284 298 285 299 305 320 304 319 285 299 286 300 306 321 305 320 286 300 287 301 307 322 306 321 287 301 288 302 308 323 307 322 288 302 289 303 309 324 308 323 289 303 290 304 310 325 309 324 290 304 291 305 311 326 310 325 291 305 292 306 312 327 311 326 292 306 293 307 313 328 312 327 293 307 294 308 314 329 313 328 294 308 295 309 315 330 314 329 295 309 296 310 316 331 315 330 296 310 297 311 317 332 316 331 297 311 298 312 318 333 317 332 298 312 299 313 319 334 318 333 299 313 280 314 300 335 319 334 300 315 301 316 321 337 320 336 301 316 302 317 322 338 321 337 302 317 303 318 323 339 322 338 303 318 304 319 324 340 323 339 304 319 305 320 325 341 324 340 305 320 306 321 326 342 325 341 306 321 307 322 327 343 326 342 307 322 308 323 328 344 327 343 308 323 309 324 329 345 328 344 309 324 310 325 330 346 329 345 310 325 311 326 331 347 330 346 311 326 312 327 332 348 331 347 312 327 313 328 333 349 332 348 313 328 314 329 334 350 333 349 314 329 315 330 335 351 334 350 315 330 316 331 336 352 335 351 316 331 317 332 337 353 336 352 317 332 318 333 338 354 337 353 318 333 319 334 339 355 338 354 319 334 300 335 320 356 339 355 320 336 321 337 341 358 340 357 321 337 322 338 342 359 341 358 322 338 323 339 343 360 342 359 323 339 324 340 344 361 343 360 324 340 325 341 345 362 344 361 325 341 326 342 346 363 345 362 326 342 327 343 347 364 346 363 327 343 328 344 348 365 347 364 328 344 329 345 349 366 348 365 329 345 330 346 350 367 349 366 330 346 331 347 351 368 350 367 331 347 332 348 352 369 351 368 332 348 333 349 353 370 352 369 333 349 334 350 354 371 353 370 334 350 335 351 355 372 354 371 335 351 336 352 356 373 355 372 336 352 337 353 357 374 356 373 337 353 338 354 358 375 357 374 338 354 339 355 359 376 358 375 339 355 320 356 340 377 359 376 340 357 341 358 361 379 360 378 341 358 342 359 362 380 361 379 342 359 343 360 363 381 362 380 343 360 344 361 364 382 363 381 344 361 345 362 365 383 364 382 345 362 346 363 366 384 365 383 346 363 347 364 367 385 366 384 347 364 348 365 368 386 367 385 348 365 349 366 369 387 368 386 349 366 350 367 370 388 369 387 350 367 351 368 371 389 370 388 351 368 352 369 372 390 371 389 352 369 353 370 373 391 372 390 353 370 354 371 374 392 373 391 354 371 355 372 375 393 374 392 355 372 356 373 376 394 375 393 356 373 357 374 377 395 376 394 357 374 358 375 378 396 377 395 358 375 359 376 379 397 378 396 359 376 340 377 360 398 379 397 1 1 0 0 380 399 2 2 1 1 380 400 3 3 2 2 380 401 4 4 3 3 380 402 5 5 4 4 380 403 6 6 5 5 380 404 7 7 6 6 380 405 8 8 7 7 380 406 9 9 8 8 380 407 10 10 9 9 380 408 11 11 10 10 380 409 12 12 11 11 380 410 13 13 12 12 380 411 14 14 13 13 380 412 15 15 14 14 380 413 16 16 15 15 380 414 17 17 16 16 380 415 18 18 17 17 380 416 19 19 18 18 380 417 0 20 19 19 380 418 360 378 361 379 381 419 361 379 362 380 381 420 362 380 363 381 381 421 363 381 364 382 381 422 364 382 365 383 381 423 365 383 366 384 381 424 366 384 367 385 381 425 367 385 368 386 381 426 368 386 369 387 381 427 369 387 370 388 381 428 370 388 371 389 381 429 371 389 372 390 381 430 372 390 373 391 381 431 373 391 374 392 381 432 374 392 375 393 381 433 375 393 376 394 381 434 376 394 377 395 381 435 377 395 378 396 381 436 378 396 379 397 381 437 379 397 360 398 381 438</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pSphereShape2</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pCylinderShape2" name="pCylinderShape2">
      <mesh>
        <source id="pCylinderShape2-positions" name="pCylinderShape2-positions">
          <float_array id="pCylinderShape2-positions-array" count="126">3.614017 -0.05 -1.174265 3.074267 -0.05 -2.233585 2.233585 -0.05 -3.074266 1.174265 -0.05 -3.614017 0 -0.05 -3.800002 -1.174265 -0.05 -3.614016 -2.233585 -0.05 -3.074266 -3.074265 -0.05 -2.233585 -3.614016 -0.05 -1.174265 -3.800001 -0.05 0 -3.614016 -0.05 1.174265 -3.074265 -0.05 2.233584 -2.233584 -0.05 3.074265 -1.174265 -0.05 3.614015 0 -0.05 3.8 1.174265 -0.05 3.614015 2.233584 -0.05 3.074265 3.074265 -0.05 2.233584 3.614015 -0.05 1.174265 3.8 -0.05 0 3.614017 0.05 -1.174265 3.074267 0.05 -2.233585 2.233585 0.05 -3.074266 1.174265 0.05 -3.614017 0 0.05 -3.800002 -1.174265 0.05 -3.614016 -2.233585 0.05 -3.074266 -3.074265 0.05 -2.233585 -3.614016 0.05 -1.174265 -3.800001 0.05 0 -3.614016 0.05 1.174265 -3.074265 0.05 2.233584 -2.233584 0.05 3.074265 -1.174265 0.05 3.614015 0 0.05 3.8 1.174265 0.05 3.614015 2.233584 0.05 3.074265 3.074265 0.05 2.233584 3.614015 0.05 1.174265 3.8 0.05 0 0 -0.05 0 0 0.05 0</float_array>
          <technique_common>
            <accessor source="#pCylinderShape2-positions-array" count="42" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCylinderShape2-normals" name="pCylinderShape2-normals">
          <float_array id="pCylinderShape2-normals-array" count="246">0.9510568 0 -0.309016 0.8090169 0 -0.5877852 0.8090169 0 -0.5877852 0.9510568 0 -0.309016 0.5877851 0 -0.8090172 0.5877851 0 -0.8090172 0.3090169 0 -0.9510566 0.3090169 0 -0.9510566 0 0 -1 0 0 -1 -0.3090172 0 -0.9510565 -0.3090172 0 -0.9510565 -0.5877855 0 -0.8090169 -0.5877855 0 -0.8090169 -0.809017 0 -0.5877851 -0.809017 0 -0.5877851 -0.9510565 0 -0.3090169 -0.9510565 0 -0.3090169 -1 0 0 -1 0 0 -0.9510565 0 0.3090171 -0.9510565 0 0.3090171 -0.8090169 0 0.5877853 -0.8090169 0 0.5877853 -0.5877852 0 0.8090171 -0.5877852 0 0.8090171 -0.3090168 0 0.9510565 -0.3090168 0 0.9510565 0 0 1 0 0 1 0.3090169 0 0.9510566 0.3090169 0 0.9510566 0.5877853 0 0.809017 0.5877853 0 0.809017 0.8090169 0 0.5877852 0.8090169 0 0.5877852 0.9510566 0 0.309017 0.9510566 0 0.309017 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9999999 0 0 -0.9999999 0 0 -0.9999999 0 0 -1 0 0 -0.9999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9999999 0 0 -0.9999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 0.9999999 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.9999999 0 0 0.9999999 0 0 1 0 0 0.9999999 0 0 1 0 0 1 0 0 1 0</float_array>
          <technique_common>
            <accessor source="#pCylinderShape2-normals-array" count="82" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <source id="pCylinderShape2-map1" name="pCylinderShape2-map1">
          <float_array id="pCylinderShape2-map1-array" count="168">0.6486027 0.1079661 0.626409 0.0644085 0.5918415 0.02984102 0.5482839 0.007647336 0.5 0 0.4517161 0.00764735 0.4081585 0.02984105 0.3735911 0.06440853 0.3513974 0.1079661 0.34375 0.15625 0.3513974 0.2045339 0.3735911 0.2480915 0.4081585 0.2826589 0.4517161 0.3048526 0.5 0.3125 0.5482839 0.3048526 0.5918415 0.2826589 0.6264089 0.2480915 0.6486026 0.2045339 0.65625 0.15625 0.375 0.3125 0.3875 0.3125 0.4 0.3125 0.4125 0.3125 0.425 0.3125 0.4374999 0.3125 0.4499999 0.3125 0.4624999 0.3125 0.4749999 0.3125 0.4874999 0.3125 0.4999999 0.3125 0.5124999 0.3125 0.5249999 0.3125 0.5374998 0.3125 0.5499998 0.3125 0.5624998 0.3125 0.5749998 0.3125 0.5874998 0.3125 0.5999998 0.3125 0.6124998 0.3125 0.6249998 0.3125 0.375 0.6884398 0.3875 0.6884398 0.4 0.6884398 0.4125 0.6884398 0.425 0.6884398 0.4374999 0.6884398 0.4499999 0.6884398 0.4624999 0.6884398 0.4749999 0.6884398 0.4874999 0.6884398 0.4999999 0.6884398 0.5124999 0.6884398 0.5249999 0.6884398 0.5374998 0.6884398 0.5499998 0.6884398 0.5624998 0.6884398 0.5749998 0.6884398 0.5874998 0.6884398 0.5999998 0.6884398 0.6124998 0.6884398 0.6249998 0.6884398 0.6486027 0.7954661 0.626409 0.7519085 0.5918415 0.717341 0.5482839 0.6951473 0.5 0.6874999 0.4517161 0.6951473 0.4081585 0.7173411 0.3735911 0.7519085 0.3513974 0.7954661 0.34375 0.84375 0.3513974 0.8920339 0.3735911 0.9355915 0.4081585 0.9701589 0.4517161 0.9923526 0.5 1 0.5482839 0.9923526 0.5918415 0.9701589 0.6264089 0.9355915 0.6486026 0.8920339 0.65625 0.84375 0.5 0.15 0.5 0.8375</float_array>
          <technique_common>
            <accessor source="#pCylinderShape2-map1-array" count="84" stride="2">
              <param name="S" type="float"/>
              <param name="T" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="pCylinderShape2-vertices" name="pCylinderShape2-vertices">
          <input semantic="POSITION" source="#pCylinderShape2-positions"/>
        </vertices>
        <polylist material="initialShadingGroup" count="60">
          <input semantic="VERTEX" source="#pCylinderShape2-vertices" offset="0"/>
          <input semantic="NORMAL" source="#pCylinderShape2-normals" offset="1"/>
          <input semantic="TEXCOORD" source="#pCylinderShape2-map1" offset="2" set="0"/>
          <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3</vcount>
          <p>0 0 20 1 1 21 21 2 42 20 3 41 1 1 21 2 4 22 22 5 43 21 2 42 2 4 22 3 6 23 23 7 44 22 5 43 3 6 23 4 8 24 24 9 45 23 7 44 4 8 24 5 10 25 25 11 46 24 9 45 5 10 25 6 12 26 26 13 47 25 11 46 6 12 26 7 14 27 27 15 48 26 13 47 7 14 27 8 16 28 28 17 49 27 15 48 8 16 28 9 18 29 29 19 50 28 17 49 9 18 29 10 20 30 30 21 51 29 19 50 10 20 30 11 22 31 31 23 52 30 21 51 11 22 31 12 24 32 32 25 53 31 23 52 12 24 32 13 26 33 33 27 54 32 25 53 13 26 33 14 28 34 34 29 55 33 27 54 14 28 34 15 30 35 35 31 56 34 29 55 15 30 35 16 32 36 36 33 57 35 31 56 16 32 36 17 34 37 37 35 58 36 33 57 17 34 37 18 36 38 38 37 59 37 35 58 18 36 38 19 38 39 39 39 60 38 37 59 19 38 39 0 0 40 20 3 61 39 39 60 1 40 1 0 41 0 40 42 82 2 43 2 1 40 1 40 42 82 3 44 3 2 43 2 40 42 82 4 45 4 3 44 3 40 42 82 5 46 5 4 45 4 40 42 82 6 47 6 5 46 5 40 42 82 7 48 7 6 47 6 40 42 82 8 49 8 7 48 7 40 42 82 9 50 9 8 49 8 40 42 82 10 51 10 9 50 9 40 42 82 11 52 11 10 51 10 40 42 82 12 53 12 11 52 11 40 42 82 13 54 13 12 53 12 40 42 82 14 55 14 13 54 13 40 42 82 15 56 15 14 55 14 40 42 82 16 57 16 15 56 15 40 42 82 17 58 17 16 57 16 40 42 82 18 59 18 17 58 17 40 42 82 19 60 19 18 59 18 40 42 82 0 41 0 19 60 19 40 42 82 20 61 80 21 62 79 41 63 83 21 62 79 22 64 78 41 63 83 22 64 78 23 65 77 41 63 83 23 65 77 24 66 76 41 63 83 24 66 76 25 67 75 41 63 83 25 67 75 26 68 74 41 63 83 26 68 74 27 69 73 41 63 83 27 69 73 28 70 72 41 63 83 28 70 72 29 71 71 41 63 83 29 71 71 30 72 70 41 63 83 30 72 70 31 73 69 41 63 83 31 73 69 32 74 68 41 63 83 32 74 68 33 75 67 41 63 83 33 75 67 34 76 66 41 63 83 34 76 66 35 77 65 41 63 83 35 77 65 36 78 64 41 63 83 36 78 64 37 79 63 41 63 83 37 79 63 38 80 62 41 63 83 38 80 62 39 81 81 41 63 83 39 81 81 20 61 80 41 63 83</p>
        </polylist>
      </mesh>
      <extra>
        <technique profile="OpenCOLLADAMaya">
          <originalMayaNodeId sid="originalMayaNodeId">pCylinderShape2</originalMayaNodeId>
          <double_sided sid="double_sided">1</double_sided>
        </technique>
      </extra>
    </geometry>
    <geometry id="pCylinderShape2_">
      <convex_mesh convex_hull_of="#pCylinderShape2">
        <source id="_1939316755408-positions" name="_1939316755408-positions">
          <float_array id="_1939316755408-positions-array" count="120">-3.80025 -0.05011 8.73566e-4 -3.61412 -0.05011 -1.1743 -3.07436 -0.05011 -2.23365 -2.23365 -0.05011 -3.07435 -1.1743 -0.05011 -3.61412 8.71658e-4 -0.05011 -3.80025 1.1743 -0.05011 -3.61412 2.23365 -0.05011 -3.07436 3.07436 -0.05011 -2.23365 3.61412 -0.05011 -1.1743 3.80025 -0.05011 -8.73566e-4 3.61412 -0.05011 1.1743 3.07436 -0.05011 2.23365 2.23365 -0.05011 3.07435 1.1743 -0.05011 3.61412 -8.71658e-4 -0.05011 3.80025 -1.1743 -0.05011 3.61412 -2.23365 -0.05011 3.07435 -3.07436 -0.05011 2.23365 -3.61412 -0.05011 1.1743 -3.61412 0.05011 1.1743 -3.07436 0.05011 2.23365 -2.23365 0.05011 3.07435 -1.1743 0.05011 3.61412 -8.71658e-4 0.05011 3.80025 1.1743 0.05011 3.61412 2.23365 0.05011 3.07435 3.07436 0.05011 2.23365 3.61412 0.05011 1.1743 3.80025 0.05011 -8.73566e-4 3.61412 0.05011 -1.1743 3.07436 0.05011 -2.23365 2.23365 0.05011 -3.07436 1.1743 0.05011 -3.61412 8.71658e-4 0.05011 -3.80025 -1.1743 0.05011 -3.61412 -2.23365 0.05011 -3.07435 -3.07436 0.05011 -2.23365 -3.61412 0.05011 -1.1743 -3.80025 0.05011 8.73566e-4</float_array>
          <technique_common>
            <accessor source="#_1939316755408-positions-array" count="40" stride="3">
              <param name="X" type="float"/>
              <param name="Y" type="float"/>
              <param name="Z" type="float"/>
            </accessor>
          </technique_common>
        </source>
        <vertices id="_1939316755408-vertices" name="_1939316755408-vertices">
          <input semantic="POSITION" source="#_1939316755408-positions"/>
        </vertices>
      </convex_mesh>
    </geometry>
  </library_geometries>
  <library_physics_models>
    <physics_model id="collada_physics_model">
      <rigid_body sid="groundPlane" name="groundPlane">
        <technique_common>
          <dynamic>0</dynamic>
          <mass>0</mass>
          <inertia>0 0 0</inertia>
          <physics_material id="groundPlane_material">
            <technique_common>
              <dynamic_friction>0.5</dynamic_friction>
              <restitution>1</restitution>
              <static_friction>0.5</static_friction>
            </technique_common>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_material>
                  <px:friction_combine_mode>MIN</px:friction_combine_mode>
                  <px:restitution_combine_mode>MIN</px:restitution_combine_mode>
                </px:px_material>
              </technique>
            </extra>
          </physics_material>
          <shape>
            <density>0</density>
            <plane>
              <equation>1 0 0 0</equation>
            </plane>
            <translate sid="translate">0 -2 0</translate>
            <rotate sid="rotateZ">0 0 1 90</rotate>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0.707107 0.707107 0 -2 0 </px:local_pose>
                  <px:contact_offset>2.5e-4</px:contact_offset>
                  <px:name>Ground</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0 1 0 0 0 </px:global_pose>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pCube1RigidBody1" name="pCube1RigidBody1">
        <technique_common>
          <dynamic>0</dynamic>
          <mass_frame>
            <translate sid="translate">-10.59619 -4.389087 0</translate>
          </mass_frame>
          <inertia>1.79689e8 4.55514e8 4.14019e8</inertia>
          <physics_material id="pCube1RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <box>
              <half_extents>12 1.00001 12</half_extents>
            </box>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0 1 0 0 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pCube1|pCube1RigidBody1|pCube1RigidBodyShape1Transform|pCube1RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
          <shape>
            <density>1000</density>
            <box>
              <half_extents>12 1.00001 12</half_extents>
            </box>
            <translate sid="translate">-21.1924 8.77817 0</translate>
            <rotate sid="rotateZ">0 0 1 -44.99993</rotate>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 -0.382683 0.92388 -21.1924 8.77817 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pCube1|pCube1RigidBody1|pCube1RigidBody1Shape1Transform|pCube1RigidBody1Shape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0 1 0 -1 0 </px:global_pose>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pPipe1RigidBody1" name="pPipe1RigidBody1">
        <technique_common>
          <dynamic>0</dynamic>
          <inertia>1.09333e7 1.33333e7 1.09333e7</inertia>
          <physics_material id="pPipe1RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <instance_geometry url="#pPipeShape1"/>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0 1 1.13687e-15 0 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pPipe1|pPipe1RigidBody1|pPipe1RigidBodyShape1Transform|pPipe1RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0.707107 0.707107 -12 6 -4.54747e-15 </px:global_pose>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pCube2RigidBody1" name="pCube2RigidBody1">
        <technique_common>
          <dynamic>1</dynamic>
          <mass_frame>
            <translate sid="translate">0.003600999 -0.001142868 2.86651e-4</translate>
          </mass_frame>
          <inertia>166.683 166.683 166.683</inertia>
          <physics_material id="pCube2RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <box>
              <half_extents>0.50001 0.50001 0.50001</half_extents>
            </box>
            <translate sid="translate">3.601e-5 -1.14287e-5 2.86651e-6</translate>
            <rotate sid="rotateX">1 0 0 90</rotate>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0.707107 0 0 0.707107 0 0 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pCube2|pCube2RigidBody1|pCube2RigidBodyShape1Transform|pCube2RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0 1 -25.8335 15.7215 7.97298 </px:global_pose>
              <px:max_depenetration_velocity>1e32</px:max_depenetration_velocity>
              <px:sleep_threshold>5e-7</px:sleep_threshold>
              <px:stabilization_threshold>0.0024059</px:stabilization_threshold>
              <px:min_position_iters>8</px:min_position_iters>
              <px:min_velocity_iters>4</px:min_velocity_iters>
              <px:contact_report_threshold>3.40282e38</px:contact_report_threshold>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pSphere1RigidBody1" name="pSphere1RigidBody1">
        <technique_common>
          <dynamic>1</dynamic>
          <mass_frame>
            <translate sid="translate">-3.56245e-4 0.001666701 -1.26991e-5</translate>
            <rotate sid="rotateY">0 1 0 90</rotate>
          </mass_frame>
          <inertia>52.3653 52.3653 52.3653</inertia>
          <physics_material id="pSphere1RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <sphere>
              <radius>0.50001</radius>
            </sphere>
            <translate sid="translate">-3.56245e-6 1.6667e-5 -1.26991e-7</translate>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0 1 -5.72205e-8 0 -7.62939e-8 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pSphere1|pSphere1RigidBody1|pSphere1RigidBodyShape1Transform|pSphere1RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0 1 -25.6092 15.9326 0.97928 </px:global_pose>
              <px:max_depenetration_velocity>1e32</px:max_depenetration_velocity>
              <px:sleep_threshold>5e-7</px:sleep_threshold>
              <px:stabilization_threshold>0.0024059</px:stabilization_threshold>
              <px:min_position_iters>8</px:min_position_iters>
              <px:min_velocity_iters>4</px:min_velocity_iters>
              <px:contact_report_threshold>3.40282e38</px:contact_report_threshold>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pasted__pCube2RigidBody1" name="pasted__pCube2RigidBody1">
        <technique_common>
          <dynamic>0</dynamic>
          <inertia>9.28e6 9.472e6 320000</inertia>
          <physics_material id="pasted__pCube2RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <box>
              <half_extents>2.00001 1.00001 12</half_extents>
            </box>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0 1 0 0 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pasted__pCube2|pasted__pCube2RigidBody1|pasted__pCube2RigidBodyShape1Transform|pasted__pCube2RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0.707107 0.707107 13 2 0 </px:global_pose>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pCylinder1RigidBody1" name="pCylinder1RigidBody1">
        <technique_common>
          <dynamic>1</dynamic>
          <mass_frame>
            <translate sid="translate">-0.002392124 0.004049629 4.12254e-4</translate>
            <rotate sid="rotateZ">0 0 1 -0.08783245</rotate>
            <rotate sid="rotateY">0 1 0 -16.9358</rotate>
            <rotate sid="rotateX">1 0 0 0.8053539</rotate>
          </mass_frame>
          <inertia>414.883 159.582 414.883</inertia>
          <physics_material id="pCylinder1RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <capsule>
              <height>1</height>
              <radius>0.506755 0.506755</radius>
            </capsule>
            <translate sid="translate">4.04963e-5 2.39212e-5 4.12254e-6</translate>
            <rotate sid="rotateZ">0 0 1 0.1467597</rotate>
            <rotate sid="rotateY">0 1 0 179.2296</rotate>
            <rotate sid="rotateX">1 0 0 21.56996</rotate>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0.694602 -0.694602 0.127468 -0.137147 -2.43121e-8 -1.67302e-8 -1.19603e-7 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pCylinder1|pCylinder1RigidBody1|pCylinder1RigidBodyShape1Transform|pCylinder1RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0 1 -25.5811 15.8057 -6.64005 </px:global_pose>
              <px:max_depenetration_velocity>1e32</px:max_depenetration_velocity>
              <px:sleep_threshold>5e-7</px:sleep_threshold>
              <px:stabilization_threshold>0.0024059</px:stabilization_threshold>
              <px:min_position_iters>8</px:min_position_iters>
              <px:min_velocity_iters>4</px:min_velocity_iters>
              <px:contact_report_threshold>3.40282e38</px:contact_report_threshold>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_body sid="pCylinder2RigidBody1" name="pCylinder2RigidBody1">
        <technique_common>
          <dynamic>1</dynamic>
          <mass>1</mass>
          <mass_frame>
            <rotate sid="rotateY">0 1 0 -44.51553</rotate>
          </mass_frame>
          <inertia>3.55223 7.10273 3.55218</inertia>
          <physics_material id="pCylinder2RigidBody1_material">
            <technique_common>
              <dynamic_friction>0.2</dynamic_friction>
              <restitution>0.6</restitution>
              <static_friction>0.2</static_friction>
            </technique_common>
          </physics_material>
          <shape>
            <density>1000</density>
            <instance_geometry url="#pCylinderShape2_"/>
            <extra>
              <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
                <px:px_shape>
                  <px:local_pose>0 0 0 1 0 0 0 </px:local_pose>
                  <px:simulation_filter_data>131074 1 0 0</px:simulation_filter_data>
                  <px:contact_offset>0.00130936</px:contact_offset>
                  <px:name>|pCylinder2|pCylinder2RigidBody1|pCylinder2RigidBodyShape1Transform|pCylinder2RigidBodyShape1</px:name>
                </px:px_shape>
              </technique>
            </extra>
          </shape>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_rigid_body>
              <px:global_pose>0 0 0.707107 0.707107 -8 6 2.27374e-13 </px:global_pose>
              <px:max_depenetration_velocity>1e32</px:max_depenetration_velocity>
              <px:sleep_threshold>5e-7</px:sleep_threshold>
              <px:stabilization_threshold>0.0024059</px:stabilization_threshold>
              <px:min_position_iters>8</px:min_position_iters>
              <px:min_velocity_iters>4</px:min_velocity_iters>
              <px:contact_report_threshold>3.40282e38</px:contact_report_threshold>
            </px:px_rigid_body>
          </technique>
        </extra>
      </rigid_body>
      <rigid_constraint sid="pCylinder2Constraint1" name="pCylinder2Constraint1">
        <ref_attachment rigid_body="">
          <translate sid="translate">-8 10 0</translate>
          <rotate sid="rotateZ">0 0 1 -44.99996</rotate>
          <rotate sid="rotateX">1 0 0 -90</rotate>
        </ref_attachment>
        <attachment rigid_body="#collada_physics_model/pCylinder2RigidBody1">
          <translate sid="translate">4 0 2.27374e-13</translate>
          <rotate sid="rotateZ">0 0 1 -180</rotate>
          <rotate sid="rotateX">1 0 0 90</rotate>
        </attachment>
        <technique_common>
          <limits>
            <swing_cone_and_twist>
              <min>-44.99999 0 -INF</min>
              <max>44.99999 0 INF</max>
            </swing_cone_and_twist>
          </limits>
          <spring>
            <angular>
              <stiffness>0</stiffness>
            </angular>
            <linear>
              <stiffness>0</stiffness>
            </linear>
          </spring>
        </technique_common>
        <extra>
          <technique profile="PhysX_3.x" xmlns:px="http://www.collada.org/2016/08/COLLADAPhysX3Schema" xsi:schemaLocation="http://www.collada.org/2016/08/COLLADAPhysX3Schema http://www.collada.org/2016/08/COLLADAPhysX3Schema.xsd">
            <px:px_d6joint>
              <px:local_pose0>-0.653282 0.270598 -0.270598 0.653282 -8 10 0 </px:local_pose0>
              <px:local_pose1>0 0.707107 0.707107 0 4 0 0 </px:local_pose1>
              <px:break_force>3.40282e36</px:break_force>
              <px:break_torque>3.40282e34</px:break_torque>
              <px:projection_angular_tolerance>179.9998</px:projection_angular_tolerance>
              <px:limits_extra>
                <px:linear_extra>
                  <px:contact_distance>0.01</px:contact_distance>
                </px:linear_extra>
                <px:swing_cone_and_twist_extra>
                  <px:restitution>0.4 0</px:restitution>
                  <px:bounce_threshold>0.5 0.5</px:bounce_threshold>
                  <px:contact_distance>0.0392699 0.1</px:contact_distance>
                </px:swing_cone_and_twist_extra>
              </px:limits_extra>
              <px:spring_extra>
                <px:angular_extra>
                  <px:stiffness>0</px:stiffness>
                </px:angular_extra>
              </px:spring_extra>
              <px:drive>
                <px:linear_x>
                  <px:stiffness>0</px:stiffness>
                  <px:damping>0.5</px:damping>
                  <px:force_limit>3.40282e38</px:force_limit>
                  <px:drive_flags>ACCELERATION</px:drive_flags>
                </px:linear_x>
                <px:linear_y>
                  <px:stiffness>0</px:stiffness>
                  <px:damping>0.5</px:damping>
                  <px:force_limit>3.40282e38</px:force_limit>
                  <px:drive_flags>ACCELERATION</px:drive_flags>
                </px:linear_y>
                <px:linear_z>
                  <px:stiffness>0</px:stiffness>
                  <px:damping>0.5</px:damping>
                  <px:force_limit>3.40282e38</px:force_limit>
                  <px:drive_flags>ACCELERATION</px:drive_flags>
                </px:linear_z>
                <px:swing>
                  <px:stiffness>0</px:stiffness>
                  <px:damping>0.523599</px:damping>
                  <px:force_limit>3.40282e38</px:force_limit>
                  <px:drive_flags>ACCELERATION</px:drive_flags>
                </px:swing>
                <px:twist>
                  <px:stiffness>0</px:stiffness>
                  <px:damping>0.523599</px:damping>
                  <px:force_limit>3.40282e38</px:force_limit>
                  <px:drive_flags>ACCELERATION</px:drive_flags>
                </px:twist>
                <px:slerp>
                  <px:stiffness>0</px:stiffness>
                  <px:force_limit>0</px:force_limit>
                </px:slerp>
              </px:drive>
            </px:px_d6joint>
          </technique>
        </extra>
      </rigid_constraint>
    </physics_model>
  </library_physics_models>
  <library_physics_scenes>
    <physics_scene id="collada_physics_scene">
      <instance_physics_model sid="instancePhysicsModel" url="#collada_physics_model">
        <instance_rigid_body sid="groundPlane" body="groundPlane" target="">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pCube1RigidBody1_0" body="pCube1RigidBody1" target="#_pCube1">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pPipe1RigidBody1_1" body="pPipe1RigidBody1" target="#_pPipe1">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pCube2RigidBody1_2" body="pCube2RigidBody1" target="#_pCube2">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pSphere1RigidBody1_3" body="pSphere1RigidBody1" target="#_pSphere1">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pasted__pCube2RigidBody1_4" body="pasted__pCube2RigidBody1" target="#_pasted__pCube2">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_body sid="pCylinder1RigidBody1_5" body="pCylinder1RigidBody1" target="#_pCylinder1">
          <technique_common>
            <velocity>0 10 0</velocity>
          </technique_common>
        </instance_rigid_body>
        <instance_rigid_body sid="pCylinder2RigidBody1_6" body="pCylinder2RigidBody1" target="#_pCylinder2">
          <technique_common/>
        </instance_rigid_body>
        <instance_rigid_constraint sid="pCylinder2Constraint1_0" constraint="pCylinder2Constraint1"/>
      </instance_physics_model>
      <technique_common>
        <gravity>0 -9.81 0</gravity>
      </technique_common>
    </physics_scene>
  </library_physics_scenes>
  <library_visual_scenes>
    <visual_scene id="VisualSceneNode" name="physx">
      <node id="_PhysX" name="PhysX" type="NODE">
        <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">PhysX</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pCube1" name="pCube1" type="NODE">
        <matrix sid="transform">1 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 1</matrix>
        <instance_geometry url="#pCubeShape1">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pCube1_pCube1RigidBody1" name="pCube1RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pCube1_pCube1RigidBody1_pCube1RigidBodyShape1Transform" name="pCube1RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube1RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <node id="_pCube1_pCube1RigidBody1_pCube1RigidBody1Shape1Transform" name="pCube1RigidBody1Shape1Transform" type="NODE">
            <matrix sid="transform">0.7071068 0.7071068 0 -21.19239 -0.7071068 0.7071068 0 8.778175 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube1RigidBody1Shape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube1RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pPipe1" name="pPipe1" type="NODE">
        <matrix sid="transform">0 -1 0 -12 1 0 0 6 0 0 1 0 0 0 0 1</matrix>
        <instance_geometry url="#pPipeShape1">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pPipe1_pPipe1RigidBody1" name="pPipe1RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pPipe1_pPipe1RigidBody1_pPipe1RigidBodyShape1Transform" name="pPipe1RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pPipe1RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pPipe1RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pPipe1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pCube2" name="pCube2" type="NODE">
        <matrix sid="transform">1 0 0 -25.83354 0 1 0 15.72151 0 0 1 7.972977 0 0 0 1</matrix>
        <instance_geometry url="#pCubeShape2">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pCube2_pCube2RigidBody1" name="pCube2RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pCube2_pCube2RigidBody1_pCube2RigidBodyShape1Transform" name="pCube2RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube2RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube2RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pCube2</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pSphere1" name="pSphere1" type="NODE">
        <matrix sid="transform">1 0 0 -25.6092 0 1 0 15.93258 0 0 1 0.9792801 0 0 0 1</matrix>
        <instance_geometry url="#pSphereShape1">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pSphere1_pSphere1RigidBody1" name="pSphere1RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pSphere1_pSphere1RigidBody1_pSphere1RigidBodyShape1Transform" name="pSphere1RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pSphere1RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pSphere1RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pSphere1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pasted__pCube1" name="pasted__pCube1" type="NODE">
        <matrix sid="transform">0.7071068 0.7071068 0 -21.19239 -0.7071068 0.7071068 0 7.778175 0 0 1 0 0 0 0 1</matrix>
        <instance_geometry url="#pasted__pCubeShape1">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pasted__pCube1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pasted__pCube2" name="pasted__pCube2" type="NODE">
        <matrix sid="transform">0 -1 0 13 1 0 0 2 0 0 1 0 0 0 0 1</matrix>
        <instance_geometry url="#pasted__pCubeShape2">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pasted__pCube2_pasted__pCube2RigidBody1" name="pasted__pCube2RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pasted__pCube2_pasted__pCube2RigidBody1_pasted__pCube2RigidBodyShape1Transform" name="pasted__pCube2RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pasted__pCube2RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pasted__pCube2RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pasted__pCube2</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pCylinder1" name="pCylinder1" type="NODE">
        <matrix sid="transform">1 0 0 -25.58108 0 1 0 15.80566 0 0 1 -6.640054 0 0 0 1</matrix>
        <instance_geometry url="#pCylinderShape1">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pCylinder1_pasted__pSphere2" name="pasted__pSphere2" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0.5 0 0 1 0 0 0 0 1</matrix>
          <instance_geometry url="#pasted__pSphereShape2">
            <bind_material>
              <technique_common>
                <instance_material symbol="initialShadingGroup" target="#lambert1"/>
              </technique_common>
            </bind_material>
          </instance_geometry>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pasted__pSphere2</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <node id="_pCylinder1_pSphere2" name="pSphere2" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 -0.5 0 0 1 0 0 0 0 1</matrix>
          <instance_geometry url="#pSphereShape2">
            <bind_material>
              <technique_common>
                <instance_material symbol="initialShadingGroup" target="#lambert1"/>
              </technique_common>
            </bind_material>
          </instance_geometry>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pSphere2</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <node id="_pCylinder1_pCylinder1RigidBody1" name="pCylinder1RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pCylinder1_pCylinder1RigidBody1_pCylinder1RigidBodyShape1Transform" name="pCylinder1RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder1RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder1RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pCylinder2" name="pCylinder2" type="NODE">
        <matrix sid="transform">0 -1 0 -8 1 0 0 6 0 0 1 0 0 0 0 1</matrix>
        <instance_geometry url="#pCylinderShape2">
          <bind_material>
            <technique_common>
              <instance_material symbol="initialShadingGroup" target="#lambert1"/>
            </technique_common>
          </bind_material>
        </instance_geometry>
        <node id="_pCylinder2_pCylinder2RigidBody1" name="pCylinder2RigidBody1" type="NODE">
          <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
          <node id="_pCylinder2_pCylinder2RigidBody1_pCylinder2RigidBodyShape1Transform" name="pCylinder2RigidBodyShape1Transform" type="NODE">
            <matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
            <extra>
              <technique profile="OpenCOLLADAMaya">
                <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder2RigidBodyShape1Transform</originalMayaNodeId>
              </technique>
            </extra>
          </node>
          <extra>
            <technique profile="OpenCOLLADAMaya">
              <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder2RigidBody1</originalMayaNodeId>
            </technique>
          </extra>
        </node>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pCylinder2</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_transform1" name="transform1" type="NODE">
        <matrix sid="transform">1 0 0 -8 0 1 0 6 0 0 1 0 0 0 0 1</matrix>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">transform1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
      <node id="_pointLight1" name="pointLight1" type="NODE">
        <matrix sid="transform">1 0 0 0 0 1 0 12.23694 0 0 1 5.216355 0 0 0 1</matrix>
        <instance_light url="#_pointLight1_pointLightShape1"/>
        <extra>
          <technique profile="OpenCOLLADAMaya">
            <originalMayaNodeId sid="originalMayaNodeId" type="string">pointLight1</originalMayaNodeId>
          </technique>
        </extra>
      </node>
    </visual_scene>
  </library_visual_scenes>
  <scene>
    <instance_physics_scene url="#collada_physics_scene"/>
    <instance_visual_scene url="#VisualSceneNode"/>
  </scene>
</COLLADA>