-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransformer_Pulse_PA2467NL.wrl
1764 lines (1763 loc) · 503 KB
/
Transformer_Pulse_PA2467NL.wrl
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
#VRML V2.0 utf8
#kicad StepUp wrl exported
Shape {
appearance Appearance {material DEF PIN-01 Material {
ambientIntensity 0.271
diffuseColor 0.824 0.820 0.781
specularColor 0.328 0.258 0.172
emissiveColor 0.0 0.0 0.0
shininess 0.70
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-01 Material {
ambientIntensity 0.249999
diffuseColor 0.298 0.298 0.298
specularColor 0.398 0.398 0.398
emissiveColor 0.0 0.0 0.0
shininess 0.056122
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PIN-02 Material {
ambientIntensity 0.379
diffuseColor 0.859 0.738 0.496
specularColor 0.137 0.145 0.184
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF IC-BODY-EPOXY-04 Material {
ambientIntensity 0.293
diffuseColor 0.148 0.145 0.145
specularColor 0.180 0.168 0.160
emissiveColor 0.0 0.0 0.0
shininess 0.35
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RES-SMD-01 Material {
diffuseColor 0.082 0.086 0.094
emissiveColor 0.000 0.000 0.000
specularColor 0.066 0.063 0.063
ambientIntensity 0.638
transparency 0.0
shininess 0.3
}
}
}
Shape {
appearance Appearance {material DEF IC-BODY-EPOXY-01 Material {
ambientIntensity 0.117
diffuseColor 0.250 0.262 0.281
specularColor 0.316 0.281 0.176
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-05 Material {
ambientIntensity 0.179
diffuseColor 0.273 0.273 0.273
specularColor 0.203 0.188 0.176
emissiveColor 0.0 0.0 0.0
shininess 0.15
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-06 Material {
ambientIntensity 0.453
diffuseColor 0.379 0.270 0.215
specularColor 0.223 0.223 0.223
emissiveColor 0.0 0.0 0.0
shininess 0.15
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RES-THT-01 Material {
ambientIntensity 0.149
diffuseColor 0.883 0.711 0.492
specularColor 0.043 0.121 0.281
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-BLUE-01 Material {
ambientIntensity 0.565
diffuseColor 0.137 0.402 0.727
specularColor 0.359 0.379 0.270
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-GREEN-01 Material {
ambientIntensity 0.315
diffuseColor 0.340 0.680 0.445
specularColor 0.176 0.105 0.195
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-ORANGE-01 Material {
ambientIntensity 0.284
diffuseColor 0.809 0.426 0.148
specularColor 0.039 0.102 0.145
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF RED-BODY Material {
ambientIntensity 0.683
diffuseColor 0.700 0.100 0.050
emissiveColor 0.000 0.000 0.000
specularColor 0.300 0.400 0.150
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF CAP-CERAMIC-02 Material {
ambientIntensity 0.683
diffuseColor 0.578 0.336 0.352
specularColor 0.105 0.273 0.270
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-YELLOW-01 Material {
ambientIntensity 0.522
diffuseColor 0.832 0.680 0.066
specularColor 0.160 0.203 0.320
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF PLASTIC-WHITE-01 Material {
ambientIntensity 0.494
diffuseColor 0.895 0.891 0.813
specularColor 0.047 0.055 0.109
emissiveColor 0.0 0.0 0.0
shininess 0.25
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF IC-LABEL-01 Material {
ambientIntensity 0.082
diffuseColor 0.691 0.664 0.598
specularColor 0.000 0.000 0.000
emissiveColor 0.0 0.0 0.0
shininess 0.01
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF LED-RED Material {
ambientIntensity 0.789
diffuseColor 0.700 0.100 0.050
emissiveColor 0.000 0.000 0.000
specularColor 0.300 0.400 0.150
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-GREEN Material {
ambientIntensity 0.789
diffuseColor 0.400 0.700 0.150
emissiveColor 0.000 0.000 0.000
specularColor 0.600 0.300 0.100
shininess 0.05
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-BLUE Material {
ambientIntensity 0.789
diffuseColor 0.100 0.250 0.700
emissiveColor 0.000 0.000 0.000
specularColor 0.500 0.600 0.300
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-YELLOW Material {
ambientIntensity 0.522
diffuseColor 0.98 0.840 0.066
specularColor 0.160 0.203 0.320
emissiveColor 0.0 0.0 0.0
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-WHITE Material {
ambientIntensity 0.494
diffuseColor 0.895 0.891 0.813
specularColor 0.047 0.055 0.109
emissiveColor 0.0 0.0 0.0
shininess 0.125
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-GREY Material {
ambientIntensity 0.494
diffuseColor 0.27 0.25 0.27
specularColor 0.5 0.5 0.6
emissiveColor 0.0 0.0 0.0
shininess 0.35
transparency 0.10
}
}
}
Shape {
appearance Appearance {material DEF LED-BLACK Material {
ambientIntensity 0.494
diffuseColor 0.1 0.05 0.1
specularColor 0.6 0.5 0.6
emissiveColor 0.0 0.0 0.0
shininess 0.5
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF GLASS-19 Material {
ambientIntensity 2.018212
diffuseColor 0.400769 0.441922 0.459091
specularColor 0.573887 0.649271 0.810811
emissiveColor 0.000000 0.000000 0.000000
shininess 0.127273
transparency 0.37
}
}
}
Shape {
appearance Appearance {material DEF GLASS-29 Material {
ambientIntensity 0.234375
diffuseColor 0.566681 0.580872 0.580874
specularColor 0.617761 0.429816 0.400140
emissiveColor 0.000000 0.000000 0.000000
shininess 0.072727
transparency 0.38
}
}
}
Shape {
appearance Appearance {material DEF GLASS-13 Material {
ambientIntensity 0.250000
diffuseColor 0.000000 0.631244 0.748016
specularColor 0.915152 0.915152 0.915152
emissiveColor 0.000000 0.000000 0.000000
shininess 0.642424
transparency 0.39
}
}
}
Shape {
appearance Appearance {material DEF GLASS-GREEN Material {
ambientIntensity 0.250000
diffuseColor 0.000000 0.75 0.44
specularColor 0.915152 0.915152 0.915152
emissiveColor 0.000000 0.000000 0.000000
shininess 0.642424
transparency 0.39
}
}
}
Shape {
appearance Appearance {material DEF GLASS-ORANGE Material {
ambientIntensity 0.250000
diffuseColor 0.75 0.44 0.000000
specularColor 0.915152 0.915152 0.915152
emissiveColor 0.000000 0.000000 0.000000
shininess 0.642424
transparency 0.39
}
}
}
Shape {
appearance Appearance {material DEF BOARD-GREEN-02 Material {
ambientIntensity 1
diffuseColor 0.07 0.3 0.12
specularColor 0.07 0.3 0.12
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF BOARD-BLUE-01 Material {
ambientIntensity 1
diffuseColor 0.07 0.12 0.3
specularColor 0.07 0.12 0.3
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF BOARD-BLACK-03 Material {
ambientIntensity 1
diffuseColor 0.16 0.16 0.16
specularColor 0.16 0.16 0.16
emissiveColor 0.0 0.0 0.0
shininess 0.40
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-ALUMINUM Material {
ambientIntensity 0.256000
diffuseColor 0.372322 0.371574 0.373173
specularColor 0.556122 0.554201 0.556122
emissiveColor 0.0 0.0 0.0
shininess 0.127551
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-BRONZE Material {
ambientIntensity 0.022727
diffuseColor 0.714 0.4284 0.18144
specularColor 0.393548 0.271906 0.166721
emissiveColor 0.000000 0.000000 0.000000
shininess 0.2
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-SILVER Material {
ambientIntensity 0.022727
diffuseColor 0.50754 0.50754 0.50754
specularColor 0.508273 0.508273 0.508273
emissiveColor 0.000000 0.000000 0.000000
shininess 0.4
transparency 0.0
}
}
}
Shape {
appearance Appearance {material DEF MET-COPPER Material {
ambientIntensity 0.022727
diffuseColor 0.7038 0.27048 0.0828
specularColor 0.780612 0.37 0.000000
emissiveColor 0.000000 0.000000 0.000000
shininess 0.2
transparency 0.0
}
}
}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [2.48031 2.59842 1.33858,-2.48031 2.59842 1.33858,-2.48031 2.59842 1.53543,2.48031 2.59842 1.53543]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,5,1,-1,3,1,0,-1]
coord Coordinate { point [2.51968 2.49015 1.33858,2.48031 2.59842 1.33858,2.51968 2.55905 1.33858,-2.51968 2.49015 1.33858,-2.51968 2.55905 1.33858,-2.48031 2.59842 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [2.48031 2.59842 1.53543,2.51968 2.55905 1.33858,2.48031 2.59842 1.33858,2.51968 2.55905 1.53543]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,9,7,6,-1,9,6,10,-1,7,1,0,-1,7,0,8,-1,1,5,4,-1,1,4,2,-1,5,9,3,-1,3,9,11,-1]
coord Coordinate { point [2.51968 -2.55905 1.53543,2.52362 -2.60236 1.53543,2.48031 -2.59842 1.53543,-2.51968 -2.55905 1.53543,-2.48031 -2.59842 1.53543,-2.52362 -2.60236 1.53543,2.48031 2.59842 1.53543,2.52362 2.60236 1.53543,2.51968 2.55905 1.53543,-2.52362 2.60236 1.53543,-2.48031 2.59842 1.53543,-2.51968 2.55905 1.53543]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [-2.48031 2.59842 1.33858,-2.51968 2.55905 1.53543,-2.48031 2.59842 1.53543,-2.51968 2.55905 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1,4,5,3,-1,4,3,2,-1,6,5,4,-1,7,6,4,-1]
coord Coordinate { point [-2.51968 -2.49015 1.33858,-2.51968 -2.55905 1.33858,-2.51968 -2.55905 1.53543,-2.51968 -1.5059 1.33858,-2.51968 2.55905 1.53543,-2.51968 1.5059 1.33858,-2.51968 2.49015 1.33858,-2.51968 2.55905 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,5,1,-1,6,2,7,-1,8,2,6,-1,8,0,2,-1,9,1,0,-1,9,3,1,-1,10,8,6,-1,11,12,3,-1,11,3,9,-1,13,14,15,-1,13,15,12,-1,16,9,10,-1,16,10,6,-1,16,11,9,-1,17,13,12,-1,17,12,11,-1,18,16,6,-1,19,13,17,-1,20,19,17,-1,21,22,23,-1,21,23,19,-1,24,17,18,-1,24,20,17,-1,25,21,19,-1,25,19,20,-1,26,21,25,-1,26,27,21,-1,28,29,30,-1,28,30,27,-1,31,25,32,-1,31,26,25,-1,33,28,27,-1,33,27,26,-1,34,35,28,-1,34,28,33,-1,36,37,38,-1,36,38,35,-1,36,35,34,-1,39,34,33,-1,39,33,40,-1,41,36,34,-1,42,36,41,-1,43,42,41,-1,44,39,40,-1,44,40,31,-1,44,42,43,-1,44,43,39,-1,45,42,44,-1,6,44,32,-1,32,44,31,-1,6,32,24,-1,6,24,18,-1]
coord Coordinate { point [-2.10629 2.49015 0.82677,-2.20472 2.49015 0.492125,-2.54921 2.49015 0.492125,-1.73228 2.49015 0.492125,-1.73228 2.49015 0.03937,-2.20472 2.49015 0.03937,-2.51968 2.49015 1.33858,-2.54921 2.49015 1.33858,-2.10629 2.49015 0.94488,-1.83071 2.49015 0.82677,-1.83071 2.49015 0.94488,-1.12204 2.49015 0.82677,-1.22047 2.49015 0.492125,-0.74803 2.49015 0.492125,-0.74803 2.49015 0.03937,-1.22047 2.49015 0.03937,-1.12204 2.49015 0.94488,-0.846455 2.49015 0.82677,-0.846455 2.49015 0.94488,-0.23622 2.49015 0.492125,-0.137795 2.49015 0.82677,0.23622 2.49015 0.492125,0.23622 2.49015 0.03937,-0.23622 2.49015 0.03937,-0.137795 2.49015 0.94488,0.137795 2.49015 0.82677,0.846455 2.49015 0.82677,0.74803 2.49015 0.492125,1.22047 2.49015 0.492125,1.22047 2.49015 0.03937,0.74803 2.49015 0.03937,0.846455 2.49015 0.94488,0.137795 2.49015 0.94488,1.12204 2.49015 0.82677,1.83071 2.49015 0.82677,1.73228 2.49015 0.492125,2.20472 2.49015 0.492125,2.20472 2.49015 0.03937,1.73228 2.49015 0.03937,1.83071 2.49015 0.94488,1.12204 2.49015 0.94488,2.10629 2.49015 0.82677,2.54921 2.49015 0.492125,2.10629 2.49015 0.94488,2.51968 2.49015 1.33858,2.54921 2.49015 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1,4,5,3,-1,4,3,2,-1,6,5,4,-1,7,6,4,-1]
coord Coordinate { point [2.51968 2.49015 1.33858,2.51968 2.55905 1.33858,2.51968 2.55905 1.53543,2.51968 1.5059 1.33858,2.51968 -2.55905 1.53543,2.51968 -1.5059 1.33858,2.51968 -2.49015 1.33858,2.51968 -2.55905 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [2.52362 2.60236 1.53543,-2.52362 2.60236 1.53543,-2.52362 2.60236 4.29133,2.52362 2.60236 4.29133]
}}
appearance Appearance{material Material{diffuseColor 0.247059 0.12549 0.12549
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-2.52362 2.60236 1.53543,-2.52362 -2.60236 1.53543,-2.52362 -2.60236 4.29133,-2.52362 2.60236 4.29133]
}}
appearance Appearance{material Material{diffuseColor 0.247059 0.12549 0.12549
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [2.52362 -2.60236 1.53543,2.52362 2.60236 1.53543,2.52362 2.60236 4.29133,2.52362 -2.60236 4.29133]
}}
appearance Appearance{material Material{diffuseColor 0.247059 0.12549 0.12549
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-2.52362 -2.60236 1.53543,2.52362 -2.60236 1.53543,2.52362 -2.60236 4.29133,-2.52362 -2.60236 4.29133]
}}
appearance Appearance{material Material{diffuseColor 0.247059 0.12549 0.12549
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [2.48031 -2.59842 1.53543,2.48031 -2.59842 1.33858,2.51968 -2.55905 1.33858,2.51968 -2.55905 1.53543]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-2.48031 -2.59842 1.33858,2.48031 -2.59842 1.33858,2.48031 -2.59842 1.53543,-2.48031 -2.59842 1.53543]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [-2.51968 -2.55905 1.33858,-2.48031 -2.59842 1.53543,-2.51968 -2.55905 1.53543,-2.48031 -2.59842 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,5,1,-1,3,1,0,-1]
coord Coordinate { point [2.48031 -2.59842 1.33858,2.51968 -2.49015 1.33858,2.51968 -2.55905 1.33858,-2.48031 -2.59842 1.33858,-2.51968 -2.55905 1.33858,-2.51968 -2.49015 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.51968 -1.5059 1.33858,-2.54921 -1.5059 1.33858,-2.51968 -2.49015 1.33858,-2.54921 -2.49015 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,0,21,20,-1,0,22,21,-1,0,23,22,-1,0,24,23,-1,0,25,24,-1,0,26,25,-1,0,27,26,-1,0,28,27,-1,0,29,28,-1,0,30,29,-1,0,31,30,-1,0,32,31,-1,0,33,32,-1,0,34,33,-1,35,34,0,-1,36,35,0,-1,37,36,0,-1,38,37,0,-1,39,40,41,-1,42,40,39,-1,43,40,42,-1,44,40,43,-1,45,40,44,-1,46,40,45,-1,47,40,46,-1,48,40,47,-1,49,40,48,-1,50,40,49,-1,51,40,50,-1,52,40,51,-1,53,40,52,-1,54,40,53,-1,55,40,54,-1,56,40,55,-1,57,40,56,-1,58,40,57,-1,59,40,58,-1,60,40,59,-1,61,40,60,-1,62,40,61,-1,63,40,62,-1,64,40,63,-1,65,40,64,-1,66,40,65,-1,67,40,66,-1,68,40,67,-1,69,40,68,-1,70,40,69,-1,71,40,70,-1,72,40,71,-1,73,40,72,-1,74,40,73,-1,75,40,74,-1,76,40,75,-1,77,40,76,-1,77,0,40,-1,77,38,0,-1,78,79,38,-1,78,38,77,-1]
coord Coordinate { point [-1.24614 1.44685 1.33858,-1.24638 1.45192 1.33858,-1.2462 1.44939 1.33858,-1.24668 1.45445 1.33858,-1.2471 1.45696 1.33858,-1.24764 1.45945 1.33858,-1.2483 1.46192 1.33858,-1.24907 1.46436 1.33858,-1.24996 1.46677 1.33858,-1.25096 1.46914 1.33858,-1.25207 1.47147 1.33858,-1.25329 1.47375 1.33858,-1.25461 1.47599 1.33858,-1.25604 1.47817 1.33858,-1.25757 1.48029 1.33858,-1.2592 1.48235 1.33858,-1.26092 1.48434 1.33858,-1.26273 1.48627 1.33858,-1.26463 1.48812 1.33858,-1.26661 1.48989 1.33858,-1.26867 1.49159 1.33858,-1.27081 1.4932 1.33858,-1.27302 1.49473 1.33858,-1.27529 1.49617 1.33858,-1.27763 1.49751 1.33858,-1.28002 1.49877 1.33858,-1.28247 1.49993 1.33858,-1.28497 1.50099 1.33858,-1.28751 1.50195 1.33858,-1.2901 1.50281 1.33858,-1.29272 1.50357 1.33858,-1.29536 1.50422 1.33858,-1.29804 1.50477 1.33858,-1.30073 1.50521 1.33858,-1.30344 1.50554 1.33858,-1.30616 1.50577 1.33858,-1.30831 1.50587 1.33858,-1.31046 1.5059 1.33858,-1.99606 1.5059 1.33858,-1.24638 -1.45192 1.33858,-1.24614 -1.44685 1.33858,-1.2462 -1.44939 1.33858,-1.24668 -1.45445 1.33858,-1.2471 -1.45696 1.33858,-1.24764 -1.45945 1.33858,-1.2483 -1.46192 1.33858,-1.24907 -1.46436 1.33858,-1.24996 -1.46677 1.33858,-1.25096 -1.46914 1.33858,-1.25207 -1.47147 1.33858,-1.25329 -1.47375 1.33858,-1.25461 -1.47599 1.33858,-1.25604 -1.47817 1.33858,-1.25757 -1.48029 1.33858,-1.2592 -1.48235 1.33858,-1.26092 -1.48434 1.33858,-1.26273 -1.48627 1.33858,-1.26463 -1.48812 1.33858,-1.26661 -1.48989 1.33858,-1.26867 -1.49159 1.33858,-1.27081 -1.4932 1.33858,-1.27302 -1.49473 1.33858,-1.27529 -1.49617 1.33858,-1.27763 -1.49751 1.33858,-1.28002 -1.49877 1.33858,-1.28247 -1.49993 1.33858,-1.28497 -1.50099 1.33858,-1.28751 -1.50195 1.33858,-1.2901 -1.50281 1.33858,-1.29272 -1.50357 1.33858,-1.29536 -1.50422 1.33858,-1.29804 -1.50477 1.33858,-1.30073 -1.50521 1.33858,-1.30344 -1.50554 1.33858,-1.30616 -1.50577 1.33858,-1.30831 -1.50587 1.33858,-1.31046 -1.5059 1.33858,-1.99606 -1.5059 1.33858,-2.51968 -1.5059 1.33858,-2.51968 1.5059 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.51968 2.49015 1.33858,-2.54921 2.49015 1.33858,-2.51968 1.5059 1.33858,-2.54921 1.5059 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.12204 2.74409 0.94488,0.846455 2.74409 0.94488,1.12204 2.49015 0.94488,0.846455 2.49015 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,4,3,1,-1,4,5,3,-1,6,5,4,-1,6,7,5,-1,8,7,6,-1,8,9,7,-1,10,9,8,-1,10,11,9,-1,12,11,10,-1,12,13,11,-1,14,13,12,-1,15,13,14,-1,15,16,13,-1,17,16,15,-1,17,18,16,-1,19,18,17,-1,19,20,18,-1,21,20,19,-1,21,22,20,-1,23,22,21,-1,23,24,22,-1,25,24,23,-1,25,26,24,-1,27,26,25,-1,28,26,27,-1,28,29,26,-1,30,29,28,-1,30,31,29,-1,30,32,31,-1,32,33,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,38,40,39,-1,39,41,42,-1,40,41,39,-1,42,43,44,-1,41,43,42,-1,44,45,46,-1,43,45,44,-1,45,47,46,-1,46,47,48,-1,47,49,48,-1,48,49,50,-1,49,51,50,-1,51,52,50,-1,51,53,52,-1,52,53,54,-1,54,55,56,-1,53,55,54,-1,56,57,58,-1,55,57,56,-1,57,59,58,-1,58,59,60,-1,60,61,62,-1,59,61,60,-1,61,63,62,-1,62,63,64,-1,64,63,65,-1,65,66,67,-1,63,66,65,-1,66,68,67,-1,67,68,69,-1,68,70,69,-1,70,71,69,-1,70,72,71,-1,72,73,71,-1,74,73,72,-1,74,75,73,-1,76,75,74,-1,76,77,75,-1,78,79,76,-1,76,79,77,-1,80,81,78,-1,78,81,79,-1,82,83,80,-1,80,83,81,-1,84,85,82,-1,82,85,83,-1,86,87,84,-1,84,87,85,-1,86,88,87,-1,89,90,86,-1,86,90,88,-1,91,92,89,-1,89,92,90,-1,93,94,91,-1,91,94,92,-1,95,96,93,-1,93,96,94,-1,95,97,96,-1,98,97,95,-1,98,99,97,-1,100,99,98,-1,100,101,99,-1,100,102,101,-1,103,102,100,-1]
coord Coordinate { point [0.846455 2.49015 0.94488,0.846455 2.74409 0.94488,0.846455 2.49015 0.82677,0.846455 2.74409 0.82677,0.846455 2.75084 0.944715,0.846455 2.74523 0.826737,0.846455 2.75757 0.944219,0.846455 2.74636 0.826638,0.846455 2.76427 0.943394,0.846455 2.74749 0.826474,0.846455 2.77092 0.942242,0.846455 2.74861 0.826244,0.846455 2.77751 0.940765,0.846455 2.74971 0.825951,0.846455 2.78402 0.938967,0.846455 2.79043 0.936853,0.846455 2.75079 0.825594,0.846455 2.79673 0.934428,0.846455 2.75185 0.825175,0.846455 2.80291 0.931696,0.846455 2.75289 0.824695,0.846455 2.80894 0.928666,0.846455 2.75389 0.824156,0.846455 2.81482 0.925343,0.846455 2.75486 0.823561,0.846455 2.82052 0.921737,0.846455 2.7558 0.822909,0.846455 2.82605 0.917856,0.846455 2.83138 0.913708,0.846455 2.75669 0.822205,0.846455 2.83649 0.909305,0.846455 2.75755 0.82145,0.846455 2.84139 0.904656,0.846455 2.75836 0.820647,0.846455 2.84605 0.899773,0.846455 2.75912 0.819799,0.846455 2.85047 0.894668,0.846455 2.75983 0.818908,0.846455 2.85463 0.889352,0.846455 2.76049 0.817977,0.846455 2.85853 0.883839,0.846455 2.86215 0.878142,0.846455 2.76109 0.81701,0.846455 2.86549 0.872274,0.846455 2.76163 0.816009,0.846455 2.86854 0.866249,0.846455 2.76212 0.814979,0.846455 2.87128 0.860082,0.846455 2.76255 0.813922,0.846455 2.87373 0.853789,0.846455 2.76291 0.812842,0.846455 2.87586 0.847383,0.846455 2.98168 0.0974972,0.846455 3.09462 0.132038,0.846455 2.98381 0.0910913,0.846455 3.09499 0.130958,0.846455 2.98625 0.0847975,0.846455 3.09542 0.129901,0.846455 2.989 0.078631,0.846455 3.0959 0.128871,0.846455 2.99205 0.0726065,0.846455 3.09645 0.12787,0.846455 2.99539 0.0667385,0.846455 3.09705 0.126903,0.846455 2.99901 0.061041,0.846455 3.00291 0.0555278,0.846455 3.09771 0.125972,0.846455 3.00707 0.0502121,0.846455 3.09842 0.125081,0.846455 3.01149 0.0451067,0.846455 3.09918 0.124233,0.846455 3.01615 0.0402237,0.846455 3.09999 0.12343,0.846455 3.02105 0.035575,0.846455 3.10084 0.122675,0.846455 3.02616 0.0311717,0.846455 3.10174 0.121971,0.846455 3.03149 0.0270243,0.846455 3.10268 0.121319,0.846455 3.03701 0.0231428,0.846455 3.10365 0.120724,0.846455 3.04272 0.0195366,0.846455 3.10465 0.120185,0.846455 3.0486 0.0162142,0.846455 3.10569 0.119705,0.846455 3.05463 0.0131837,0.846455 3.10675 0.119286,0.846455 3.06081 0.0104524,0.846455 3.06711 0.0080267,0.846455 3.10783 0.118929,0.846455 3.07352 0.00591255,0.846455 3.10893 0.118636,0.846455 3.08003 0.004115,0.846455 3.11005 0.118406,0.846455 3.08661 0.00263835,0.846455 3.11117 0.118242,0.846455 3.09327 0.00148615,0.846455 3.09997 0.000661173,0.846455 3.11231 0.118143,0.846455 3.1067 0.000165393,0.846455 3.11345 0.11811,0.846455 3.11345 0,0.846455 3.42519 3.93735e-13,0.846455 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.846455 2.74409 0.82677,1.12204 2.74409 0.82677,0.846455 2.49015 0.82677,1.12204 2.49015 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,1,5,2,-1,2,5,6,-1,4,7,3,-1,8,7,4,-1,6,9,10,-1,5,9,6,-1,8,11,7,-1,12,11,8,-1,13,11,12,-1,14,15,16,-1,10,15,14,-1,9,15,10,-1,13,17,11,-1,18,17,13,-1,16,19,20,-1,15,19,16,-1,18,21,17,-1,22,21,18,-1,19,23,20,-1,20,23,24,-1,22,25,21,-1,26,25,22,-1,24,27,28,-1,23,27,24,-1,26,29,25,-1,30,29,26,-1,27,31,28,-1,28,31,32,-1,30,33,29,-1,34,33,30,-1,35,33,34,-1,32,36,37,-1,31,36,32,-1,35,38,33,-1,39,38,35,-1,39,40,38,-1,41,40,39,-1,41,42,40,-1,43,42,41,-1,44,45,43,-1,43,45,42,-1,46,47,44,-1,44,47,45,-1,46,48,47,-1,49,48,46,-1,49,50,48,-1,50,51,48,-1,36,52,37,-1,53,54,55,-1,55,54,56,-1,53,57,54,-1,58,57,53,-1,58,59,57,-1,60,59,58,-1,60,61,59,-1,62,61,60,-1,62,63,61,-1,64,63,62,-1,64,65,63,-1,66,65,64,-1,66,67,65,-1,36,68,52,-1,66,69,67,-1,70,69,66,-1,52,71,72,-1,68,71,52,-1,70,73,69,-1,74,73,70,-1,71,75,72,-1,72,75,76,-1,74,77,73,-1,78,77,74,-1,75,79,76,-1,76,79,80,-1,78,81,77,-1,82,81,78,-1,79,83,80,-1,80,83,84,-1,82,85,81,-1,86,85,82,-1,83,87,84,-1,84,87,88,-1,86,89,85,-1,90,89,86,-1,87,91,88,-1,90,92,89,-1,88,93,94,-1,91,93,88,-1,90,95,92,-1,96,95,90,-1,93,97,94,-1,94,97,98,-1,96,99,95,-1,100,99,96,-1,97,101,98,-1,98,101,102,-1,100,103,99,-1,101,103,102,-1,102,103,100,-1]
coord Coordinate { point [1.12204 3.01615 0.0402237,1.12204 3.09918 0.124233,1.12204 3.01149 0.0451067,1.12204 3.09999 0.12343,1.12204 3.02105 0.035575,1.12204 3.09842 0.125081,1.12204 3.00707 0.0502121,1.12204 3.10084 0.122675,1.12204 3.02616 0.0311717,1.12204 3.09771 0.125972,1.12204 3.00291 0.0555278,1.12204 3.10174 0.121971,1.12204 3.03149 0.0270243,1.12204 3.03701 0.0231428,1.12204 2.99901 0.061041,1.12204 3.09705 0.126903,1.12204 2.99539 0.0667385,1.12204 3.10268 0.121319,1.12204 3.04272 0.0195366,1.12204 3.09645 0.12787,1.12204 2.99205 0.0726065,1.12204 3.10365 0.120724,1.12204 3.0486 0.0162142,1.12204 3.0959 0.128871,1.12204 2.989 0.078631,1.12204 3.10465 0.120185,1.12204 3.05463 0.0131837,1.12204 3.09542 0.129901,1.12204 2.98625 0.0847975,1.12204 3.10569 0.119705,1.12204 3.06081 0.0104524,1.12204 3.09499 0.130958,1.12204 2.98381 0.0910913,1.12204 3.10675 0.119286,1.12204 3.06711 0.0080267,1.12204 3.07352 0.00591255,1.12204 3.09462 0.132038,1.12204 2.98168 0.0974972,1.12204 3.10783 0.118929,1.12204 3.08003 0.004115,1.12204 3.10893 0.118636,1.12204 3.08661 0.00263835,1.12204 3.11005 0.118406,1.12204 3.09327 0.00148615,1.12204 3.09997 0.000661173,1.12204 3.11117 0.118242,1.12204 3.1067 0.000165393,1.12204 3.11231 0.118143,1.12204 3.11345 0.11811,1.12204 3.11345 0,1.12204 3.42519 3.93735e-13,1.12204 3.42519 0.11811,1.12204 2.76291 0.812842,1.12204 2.74409 0.82677,1.12204 2.74409 0.94488,1.12204 2.49015 0.82677,1.12204 2.49015 0.94488,1.12204 2.75084 0.944715,1.12204 2.74523 0.826737,1.12204 2.75757 0.944219,1.12204 2.74636 0.826638,1.12204 2.76427 0.943394,1.12204 2.74749 0.826474,1.12204 2.77092 0.942242,1.12204 2.74861 0.826244,1.12204 2.77751 0.940765,1.12204 2.74971 0.825951,1.12204 2.78402 0.938967,1.12204 2.87586 0.847383,1.12204 2.79043 0.936853,1.12204 2.75079 0.825594,1.12204 2.87373 0.853789,1.12204 2.76255 0.813922,1.12204 2.79673 0.934428,1.12204 2.75185 0.825175,1.12204 2.87128 0.860082,1.12204 2.76212 0.814979,1.12204 2.80291 0.931696,1.12204 2.75289 0.824695,1.12204 2.86854 0.866249,1.12204 2.76163 0.816009,1.12204 2.80894 0.928666,1.12204 2.75389 0.824156,1.12204 2.86549 0.872274,1.12204 2.76109 0.81701,1.12204 2.81482 0.925343,1.12204 2.75486 0.823561,1.12204 2.86215 0.878142,1.12204 2.76049 0.817977,1.12204 2.82052 0.921737,1.12204 2.7558 0.822909,1.12204 2.85853 0.883839,1.12204 2.82605 0.917856,1.12204 2.85463 0.889352,1.12204 2.75983 0.818908,1.12204 2.83138 0.913708,1.12204 2.75669 0.822205,1.12204 2.85047 0.894668,1.12204 2.75912 0.819799,1.12204 2.83649 0.909305,1.12204 2.75755 0.82145,1.12204 2.84605 0.899773,1.12204 2.75836 0.820647,1.12204 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.846455 2.74409 0.94488,-1.12204 2.74409 0.94488,-0.846455 2.49015 0.94488,-1.12204 2.49015 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,4,3,1,-1,4,5,3,-1,6,5,4,-1,6,7,5,-1,8,7,6,-1,8,9,7,-1,10,9,8,-1,10,11,9,-1,12,11,10,-1,12,13,11,-1,14,13,12,-1,15,13,14,-1,15,16,13,-1,17,16,15,-1,17,18,16,-1,19,18,17,-1,19,20,18,-1,21,20,19,-1,21,22,20,-1,23,22,21,-1,23,24,22,-1,25,24,23,-1,25,26,24,-1,27,26,25,-1,28,26,27,-1,28,29,26,-1,30,29,28,-1,30,31,29,-1,30,32,31,-1,32,33,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,38,40,39,-1,39,41,42,-1,40,41,39,-1,42,43,44,-1,41,43,42,-1,44,45,46,-1,43,45,44,-1,45,47,46,-1,46,47,48,-1,47,49,48,-1,48,49,50,-1,49,51,50,-1,51,52,50,-1,51,53,52,-1,52,53,54,-1,54,55,56,-1,53,55,54,-1,56,57,58,-1,55,57,56,-1,57,59,58,-1,58,59,60,-1,60,61,62,-1,59,61,60,-1,61,63,62,-1,62,63,64,-1,64,63,65,-1,65,66,67,-1,63,66,65,-1,66,68,67,-1,67,68,69,-1,68,70,69,-1,70,71,69,-1,70,72,71,-1,72,73,71,-1,74,73,72,-1,74,75,73,-1,76,75,74,-1,76,77,75,-1,78,79,76,-1,76,79,77,-1,80,81,78,-1,78,81,79,-1,82,83,80,-1,80,83,81,-1,84,85,82,-1,82,85,83,-1,86,87,84,-1,84,87,85,-1,86,88,87,-1,89,90,86,-1,86,90,88,-1,91,92,89,-1,89,92,90,-1,93,94,91,-1,91,94,92,-1,95,96,93,-1,93,96,94,-1,95,97,96,-1,98,97,95,-1,98,99,97,-1,100,99,98,-1,100,101,99,-1,100,102,101,-1,103,102,100,-1]
coord Coordinate { point [-1.12204 2.49015 0.94488,-1.12204 2.74409 0.94488,-1.12204 2.49015 0.82677,-1.12204 2.74409 0.82677,-1.12204 2.75084 0.944715,-1.12204 2.74523 0.826737,-1.12204 2.75757 0.944219,-1.12204 2.74636 0.826638,-1.12204 2.76427 0.943394,-1.12204 2.74749 0.826474,-1.12204 2.77092 0.942242,-1.12204 2.74861 0.826244,-1.12204 2.77751 0.940765,-1.12204 2.74971 0.825951,-1.12204 2.78402 0.938967,-1.12204 2.79043 0.936853,-1.12204 2.75079 0.825594,-1.12204 2.79673 0.934428,-1.12204 2.75185 0.825175,-1.12204 2.80291 0.931696,-1.12204 2.75289 0.824695,-1.12204 2.80894 0.928666,-1.12204 2.75389 0.824156,-1.12204 2.81482 0.925343,-1.12204 2.75486 0.823561,-1.12204 2.82052 0.921737,-1.12204 2.7558 0.822909,-1.12204 2.82605 0.917856,-1.12204 2.83138 0.913708,-1.12204 2.75669 0.822205,-1.12204 2.83649 0.909305,-1.12204 2.75755 0.82145,-1.12204 2.84139 0.904656,-1.12204 2.75836 0.820647,-1.12204 2.84605 0.899773,-1.12204 2.75912 0.819799,-1.12204 2.85047 0.894668,-1.12204 2.75983 0.818908,-1.12204 2.85463 0.889352,-1.12204 2.76049 0.817977,-1.12204 2.85853 0.883839,-1.12204 2.86215 0.878142,-1.12204 2.76109 0.81701,-1.12204 2.86549 0.872274,-1.12204 2.76163 0.816009,-1.12204 2.86854 0.866249,-1.12204 2.76212 0.814979,-1.12204 2.87128 0.860082,-1.12204 2.76255 0.813922,-1.12204 2.87373 0.853789,-1.12204 2.76291 0.812842,-1.12204 2.87586 0.847383,-1.12204 2.98168 0.0974972,-1.12204 3.09462 0.132038,-1.12204 2.98381 0.0910913,-1.12204 3.09499 0.130958,-1.12204 2.98625 0.0847975,-1.12204 3.09542 0.129901,-1.12204 2.989 0.078631,-1.12204 3.0959 0.128871,-1.12204 2.99205 0.0726065,-1.12204 3.09645 0.12787,-1.12204 2.99539 0.0667385,-1.12204 3.09705 0.126903,-1.12204 2.99901 0.061041,-1.12204 3.00291 0.0555278,-1.12204 3.09771 0.125972,-1.12204 3.00707 0.0502121,-1.12204 3.09842 0.125081,-1.12204 3.01149 0.0451067,-1.12204 3.09918 0.124233,-1.12204 3.01615 0.0402237,-1.12204 3.09999 0.12343,-1.12204 3.02105 0.035575,-1.12204 3.10084 0.122675,-1.12204 3.02616 0.0311717,-1.12204 3.10174 0.121971,-1.12204 3.03149 0.0270243,-1.12204 3.10268 0.121319,-1.12204 3.03701 0.0231428,-1.12204 3.10365 0.120724,-1.12204 3.04272 0.0195366,-1.12204 3.10465 0.120185,-1.12204 3.0486 0.0162142,-1.12204 3.10569 0.119705,-1.12204 3.05463 0.0131837,-1.12204 3.10675 0.119286,-1.12204 3.06081 0.0104524,-1.12204 3.06711 0.0080267,-1.12204 3.10783 0.118929,-1.12204 3.07352 0.00591255,-1.12204 3.10893 0.118636,-1.12204 3.08003 0.004115,-1.12204 3.11005 0.118406,-1.12204 3.08661 0.00263835,-1.12204 3.11117 0.118242,-1.12204 3.09327 0.00148615,-1.12204 3.09997 0.000661173,-1.12204 3.11231 0.118143,-1.12204 3.1067 0.000165393,-1.12204 3.11345 0.11811,-1.12204 3.11345 0,-1.12204 3.42519 3.93735e-13,-1.12204 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-1.12204 2.74409 0.82677,-0.846455 2.74409 0.82677,-1.12204 2.49015 0.82677,-0.846455 2.49015 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,1,5,2,-1,2,5,6,-1,4,7,3,-1,8,7,4,-1,6,9,10,-1,5,9,6,-1,8,11,7,-1,12,11,8,-1,13,11,12,-1,14,15,16,-1,10,15,14,-1,9,15,10,-1,13,17,11,-1,18,17,13,-1,16,19,20,-1,15,19,16,-1,18,21,17,-1,22,21,18,-1,19,23,20,-1,20,23,24,-1,22,25,21,-1,26,25,22,-1,24,27,28,-1,23,27,24,-1,26,29,25,-1,30,29,26,-1,27,31,28,-1,28,31,32,-1,30,33,29,-1,34,33,30,-1,35,33,34,-1,32,36,37,-1,31,36,32,-1,35,38,33,-1,39,38,35,-1,39,40,38,-1,41,40,39,-1,41,42,40,-1,43,42,41,-1,44,45,43,-1,43,45,42,-1,46,47,44,-1,44,47,45,-1,46,48,47,-1,49,48,46,-1,49,50,48,-1,50,51,48,-1,36,52,37,-1,53,54,55,-1,55,54,56,-1,53,57,54,-1,58,57,53,-1,58,59,57,-1,60,59,58,-1,60,61,59,-1,62,61,60,-1,62,63,61,-1,64,63,62,-1,64,65,63,-1,66,65,64,-1,66,67,65,-1,36,68,52,-1,66,69,67,-1,70,69,66,-1,52,71,72,-1,68,71,52,-1,70,73,69,-1,74,73,70,-1,71,75,72,-1,72,75,76,-1,74,77,73,-1,78,77,74,-1,75,79,76,-1,76,79,80,-1,78,81,77,-1,82,81,78,-1,79,83,80,-1,80,83,84,-1,82,85,81,-1,86,85,82,-1,83,87,84,-1,84,87,88,-1,86,89,85,-1,90,89,86,-1,87,91,88,-1,90,92,89,-1,88,93,94,-1,91,93,88,-1,90,95,92,-1,96,95,90,-1,93,97,94,-1,94,97,98,-1,96,99,95,-1,100,99,96,-1,97,101,98,-1,98,101,102,-1,100,103,99,-1,101,103,102,-1,102,103,100,-1]
coord Coordinate { point [-0.846455 3.01615 0.0402237,-0.846455 3.09918 0.124233,-0.846455 3.01149 0.0451067,-0.846455 3.09999 0.12343,-0.846455 3.02105 0.035575,-0.846455 3.09842 0.125081,-0.846455 3.00707 0.0502121,-0.846455 3.10084 0.122675,-0.846455 3.02616 0.0311717,-0.846455 3.09771 0.125972,-0.846455 3.00291 0.0555278,-0.846455 3.10174 0.121971,-0.846455 3.03149 0.0270243,-0.846455 3.03701 0.0231428,-0.846455 2.99901 0.061041,-0.846455 3.09705 0.126903,-0.846455 2.99539 0.0667385,-0.846455 3.10268 0.121319,-0.846455 3.04272 0.0195366,-0.846455 3.09645 0.12787,-0.846455 2.99205 0.0726065,-0.846455 3.10365 0.120724,-0.846455 3.0486 0.0162142,-0.846455 3.0959 0.128871,-0.846455 2.989 0.078631,-0.846455 3.10465 0.120185,-0.846455 3.05463 0.0131837,-0.846455 3.09542 0.129901,-0.846455 2.98625 0.0847975,-0.846455 3.10569 0.119705,-0.846455 3.06081 0.0104524,-0.846455 3.09499 0.130958,-0.846455 2.98381 0.0910913,-0.846455 3.10675 0.119286,-0.846455 3.06711 0.0080267,-0.846455 3.07352 0.00591255,-0.846455 3.09462 0.132038,-0.846455 2.98168 0.0974972,-0.846455 3.10783 0.118929,-0.846455 3.08003 0.004115,-0.846455 3.10893 0.118636,-0.846455 3.08661 0.00263835,-0.846455 3.11005 0.118406,-0.846455 3.09327 0.00148615,-0.846455 3.09997 0.000661173,-0.846455 3.11117 0.118242,-0.846455 3.1067 0.000165393,-0.846455 3.11231 0.118143,-0.846455 3.11345 0.11811,-0.846455 3.11345 0,-0.846455 3.42519 3.93735e-13,-0.846455 3.42519 0.11811,-0.846455 2.76291 0.812842,-0.846455 2.74409 0.82677,-0.846455 2.74409 0.94488,-0.846455 2.49015 0.82677,-0.846455 2.49015 0.94488,-0.846455 2.75084 0.944715,-0.846455 2.74523 0.826737,-0.846455 2.75757 0.944219,-0.846455 2.74636 0.826638,-0.846455 2.76427 0.943394,-0.846455 2.74749 0.826474,-0.846455 2.77092 0.942242,-0.846455 2.74861 0.826244,-0.846455 2.77751 0.940765,-0.846455 2.74971 0.825951,-0.846455 2.78402 0.938967,-0.846455 2.87586 0.847383,-0.846455 2.79043 0.936853,-0.846455 2.75079 0.825594,-0.846455 2.87373 0.853789,-0.846455 2.76255 0.813922,-0.846455 2.79673 0.934428,-0.846455 2.75185 0.825175,-0.846455 2.87128 0.860082,-0.846455 2.76212 0.814979,-0.846455 2.80291 0.931696,-0.846455 2.75289 0.824695,-0.846455 2.86854 0.866249,-0.846455 2.76163 0.816009,-0.846455 2.80894 0.928666,-0.846455 2.75389 0.824156,-0.846455 2.86549 0.872274,-0.846455 2.76109 0.81701,-0.846455 2.81482 0.925343,-0.846455 2.75486 0.823561,-0.846455 2.86215 0.878142,-0.846455 2.76049 0.817977,-0.846455 2.82052 0.921737,-0.846455 2.7558 0.822909,-0.846455 2.85853 0.883839,-0.846455 2.82605 0.917856,-0.846455 2.85463 0.889352,-0.846455 2.75983 0.818908,-0.846455 2.83138 0.913708,-0.846455 2.75669 0.822205,-0.846455 2.85047 0.894668,-0.846455 2.75912 0.819799,-0.846455 2.83649 0.909305,-0.846455 2.75755 0.82145,-0.846455 2.84605 0.899773,-0.846455 2.75836 0.820647,-0.846455 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-2.54921 2.49015 0.492125,-2.20472 1.5059 0.492125,-2.54921 1.5059 0.492125,-2.20472 2.49015 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-2.54921 2.49015 1.33858,-2.54921 1.5059 0.492125,-2.54921 1.5059 1.33858,-2.54921 2.49015 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [2.54921 2.49015 1.33858,2.51968 2.49015 1.33858,2.54921 1.5059 1.33858,2.51968 1.5059 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [2.54921 2.49015 0.492125,2.54921 1.5059 1.33858,2.54921 1.5059 0.492125,2.54921 2.49015 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [2.20472 2.49015 0.492125,2.54921 1.5059 0.492125,2.20472 1.5059 0.492125,2.54921 2.49015 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [2.20472 2.49015 0.03937,2.20472 1.5059 0.492125,2.20472 1.5059 0.03937,2.20472 2.49015 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [1.73228 2.49015 0.03937,2.20472 1.5059 0.03937,1.73228 1.5059 0.03937,2.20472 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,1,-1,4,0,2,-1,5,2,3,-1,6,4,2,-1,7,2,5,-1,8,6,2,-1,9,2,7,-1,10,8,2,-1,11,2,9,-1,12,10,2,-1,13,2,11,-1,14,12,2,-1,15,14,2,-1,16,15,2,-1,17,16,2,-1,18,17,2,-1,19,18,2,-1,20,19,2,-1,21,22,2,-1,21,2,13,-1,23,22,21,-1,2,24,25,-1,2,25,26,-1,2,26,20,-1]
coord Coordinate { point [1.73228 1.55698 0.792907,1.73228 1.56365 0.785908,1.73228 1.5059 0.03937,1.73228 1.57066 0.779245,1.73228 1.55066 0.800226,1.73228 1.57799 0.772934,1.73228 1.5447 0.807846,1.73228 1.58561 0.766991,1.73228 1.53913 0.815749,1.73228 1.59352 0.761429,1.73228 1.53396 0.823917,1.73228 1.6017 0.756263,1.73228 1.52918 0.832328,1.73228 1.61012 0.751504,1.73228 1.52483 0.840964,1.73228 1.52091 0.849803,1.73228 1.51743 0.858824,1.73228 1.51439 0.868005,1.73228 1.51181 0.877325,1.73228 1.50969 0.886759,1.73228 1.50804 0.896287,1.73228 2.09645 0.492125,1.73228 2.49015 0.03937,1.73228 2.49015 0.492125,1.73228 1.5059 0.925195,1.73228 1.50614 0.915528,1.73228 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [1.22047 2.49015 0.492125,1.73228 2.49015 0.492125,1.73228 2.09645 0.492125,1.22047 2.09645 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,21,20,0,-1,22,23,21,-1,22,21,0,-1,24,0,25,-1,25,0,26,-1,26,0,2,-1]
coord Coordinate { point [1.22047 1.5059 0.03937,1.22047 1.50969 0.886759,1.22047 1.50804 0.896287,1.22047 1.51181 0.877325,1.22047 1.51439 0.868005,1.22047 1.51743 0.858824,1.22047 1.52091 0.849803,1.22047 1.52483 0.840964,1.22047 1.52918 0.832328,1.22047 1.53396 0.823917,1.22047 1.53913 0.815749,1.22047 1.5447 0.807846,1.22047 1.55066 0.800226,1.22047 1.55698 0.792907,1.22047 1.56365 0.785908,1.22047 1.57066 0.779245,1.22047 1.57799 0.772934,1.22047 1.58561 0.766991,1.22047 1.59352 0.761429,1.22047 1.6017 0.756263,1.22047 1.61012 0.751504,1.22047 2.09645 0.492125,1.22047 2.49015 0.03937,1.22047 2.49015 0.492125,1.22047 1.5059 0.925195,1.22047 1.50614 0.915528,1.22047 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [0.74803 2.49015 0.03937,1.22047 1.5059 0.03937,0.74803 1.5059 0.03937,1.22047 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,1,-1,4,0,2,-1,5,2,3,-1,6,4,2,-1,7,2,5,-1,8,6,2,-1,9,2,7,-1,10,8,2,-1,11,2,9,-1,12,10,2,-1,13,2,11,-1,14,12,2,-1,15,14,2,-1,16,15,2,-1,17,16,2,-1,18,17,2,-1,19,18,2,-1,20,19,2,-1,21,22,2,-1,21,2,13,-1,23,22,21,-1,2,24,25,-1,2,25,26,-1,2,26,20,-1]
coord Coordinate { point [0.74803 1.55698 0.792907,0.74803 1.56365 0.785908,0.74803 1.5059 0.03937,0.74803 1.57066 0.779245,0.74803 1.55066 0.800226,0.74803 1.57799 0.772934,0.74803 1.5447 0.807846,0.74803 1.58561 0.766991,0.74803 1.53913 0.815749,0.74803 1.59352 0.761429,0.74803 1.53396 0.823917,0.74803 1.6017 0.756263,0.74803 1.52918 0.832328,0.74803 1.61012 0.751504,0.74803 1.52483 0.840964,0.74803 1.52091 0.849803,0.74803 1.51743 0.858824,0.74803 1.51439 0.868005,0.74803 1.51181 0.877325,0.74803 1.50969 0.886759,0.74803 1.50804 0.896287,0.74803 2.09645 0.492125,0.74803 2.49015 0.03937,0.74803 2.49015 0.492125,0.74803 1.5059 0.925195,0.74803 1.50614 0.915528,0.74803 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [0.23622 2.09645 0.492125,0.74803 2.49015 0.492125,0.74803 2.09645 0.492125,0.23622 2.49015 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,21,20,0,-1,22,23,21,-1,22,21,0,-1,24,0,25,-1,25,0,26,-1,26,0,2,-1]
coord Coordinate { point [0.23622 1.5059 0.03937,0.23622 1.50969 0.886759,0.23622 1.50804 0.896287,0.23622 1.51181 0.877325,0.23622 1.51439 0.868005,0.23622 1.51743 0.858824,0.23622 1.52091 0.849803,0.23622 1.52483 0.840964,0.23622 1.52918 0.832328,0.23622 1.53396 0.823917,0.23622 1.53913 0.815749,0.23622 1.5447 0.807846,0.23622 1.55066 0.800226,0.23622 1.55698 0.792907,0.23622 1.56365 0.785908,0.23622 1.57066 0.779245,0.23622 1.57799 0.772934,0.23622 1.58561 0.766991,0.23622 1.59352 0.761429,0.23622 1.6017 0.756263,0.23622 1.61012 0.751504,0.23622 2.09645 0.492125,0.23622 2.49015 0.03937,0.23622 2.49015 0.492125,0.23622 1.5059 0.925195,0.23622 1.50614 0.915528,0.23622 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-0.23622 2.49015 0.03937,0.23622 1.5059 0.03937,-0.23622 1.5059 0.03937,0.23622 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,1,-1,4,0,2,-1,5,2,3,-1,6,4,2,-1,7,2,5,-1,8,6,2,-1,9,2,7,-1,10,8,2,-1,11,2,9,-1,12,10,2,-1,13,2,11,-1,14,12,2,-1,15,14,2,-1,16,15,2,-1,17,16,2,-1,18,17,2,-1,19,18,2,-1,20,19,2,-1,21,22,2,-1,21,2,13,-1,23,22,21,-1,2,24,25,-1,2,25,26,-1,2,26,20,-1]
coord Coordinate { point [-0.23622 1.55698 0.792907,-0.23622 1.56365 0.785908,-0.23622 1.5059 0.03937,-0.23622 1.57066 0.779245,-0.23622 1.55066 0.800226,-0.23622 1.57799 0.772934,-0.23622 1.5447 0.807846,-0.23622 1.58561 0.766991,-0.23622 1.53913 0.815749,-0.23622 1.59352 0.761429,-0.23622 1.53396 0.823917,-0.23622 1.6017 0.756263,-0.23622 1.52918 0.832328,-0.23622 1.61012 0.751504,-0.23622 1.52483 0.840964,-0.23622 1.52091 0.849803,-0.23622 1.51743 0.858824,-0.23622 1.51439 0.868005,-0.23622 1.51181 0.877325,-0.23622 1.50969 0.886759,-0.23622 1.50804 0.896287,-0.23622 2.09645 0.492125,-0.23622 2.49015 0.03937,-0.23622 2.49015 0.492125,-0.23622 1.5059 0.925195,-0.23622 1.50614 0.915528,-0.23622 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-0.74803 2.49015 0.492125,-0.23622 2.49015 0.492125,-0.23622 2.09645 0.492125,-0.74803 2.09645 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,21,20,0,-1,22,23,21,-1,22,21,0,-1,24,0,25,-1,25,0,26,-1,26,0,2,-1]
coord Coordinate { point [-0.74803 1.5059 0.03937,-0.74803 1.50969 0.886759,-0.74803 1.50804 0.896287,-0.74803 1.51181 0.877325,-0.74803 1.51439 0.868005,-0.74803 1.51743 0.858824,-0.74803 1.52091 0.849803,-0.74803 1.52483 0.840964,-0.74803 1.52918 0.832328,-0.74803 1.53396 0.823917,-0.74803 1.53913 0.815749,-0.74803 1.5447 0.807846,-0.74803 1.55066 0.800226,-0.74803 1.55698 0.792907,-0.74803 1.56365 0.785908,-0.74803 1.57066 0.779245,-0.74803 1.57799 0.772934,-0.74803 1.58561 0.766991,-0.74803 1.59352 0.761429,-0.74803 1.6017 0.756263,-0.74803 1.61012 0.751504,-0.74803 2.09645 0.492125,-0.74803 2.49015 0.03937,-0.74803 2.49015 0.492125,-0.74803 1.5059 0.925195,-0.74803 1.50614 0.915528,-0.74803 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-1.22047 2.49015 0.03937,-0.74803 1.5059 0.03937,-1.22047 1.5059 0.03937,-0.74803 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,1,-1,4,0,2,-1,5,2,3,-1,6,4,2,-1,7,2,5,-1,8,6,2,-1,9,2,7,-1,10,8,2,-1,11,2,9,-1,12,10,2,-1,13,2,11,-1,14,12,2,-1,15,14,2,-1,16,15,2,-1,17,16,2,-1,18,17,2,-1,19,18,2,-1,20,19,2,-1,21,22,2,-1,21,2,13,-1,23,22,21,-1,2,24,25,-1,2,25,26,-1,2,26,20,-1]
coord Coordinate { point [-1.22047 1.55698 0.792907,-1.22047 1.56365 0.785908,-1.22047 1.5059 0.03937,-1.22047 1.57066 0.779245,-1.22047 1.55066 0.800226,-1.22047 1.57799 0.772934,-1.22047 1.5447 0.807846,-1.22047 1.58561 0.766991,-1.22047 1.53913 0.815749,-1.22047 1.59352 0.761429,-1.22047 1.53396 0.823917,-1.22047 1.6017 0.756263,-1.22047 1.52918 0.832328,-1.22047 1.61012 0.751504,-1.22047 1.52483 0.840964,-1.22047 1.52091 0.849803,-1.22047 1.51743 0.858824,-1.22047 1.51439 0.868005,-1.22047 1.51181 0.877325,-1.22047 1.50969 0.886759,-1.22047 1.50804 0.896287,-1.22047 2.09645 0.492125,-1.22047 2.49015 0.03937,-1.22047 2.49015 0.492125,-1.22047 1.5059 0.925195,-1.22047 1.50614 0.915528,-1.22047 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-1.73228 2.49015 0.492125,-1.22047 2.49015 0.492125,-1.22047 2.09645 0.492125,-1.73228 2.09645 0.492125]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,0,5,4,-1,0,6,5,-1,0,7,6,-1,0,8,7,-1,0,9,8,-1,0,10,9,-1,0,11,10,-1,0,12,11,-1,0,13,12,-1,0,14,13,-1,0,15,14,-1,0,16,15,-1,0,17,16,-1,0,18,17,-1,0,19,18,-1,0,20,19,-1,21,20,0,-1,22,23,21,-1,22,21,0,-1,24,0,25,-1,25,0,26,-1,26,0,2,-1]
coord Coordinate { point [-1.73228 1.5059 0.03937,-1.73228 1.50969 0.886759,-1.73228 1.50804 0.896287,-1.73228 1.51181 0.877325,-1.73228 1.51439 0.868005,-1.73228 1.51743 0.858824,-1.73228 1.52091 0.849803,-1.73228 1.52483 0.840964,-1.73228 1.52918 0.832328,-1.73228 1.53396 0.823917,-1.73228 1.53913 0.815749,-1.73228 1.5447 0.807846,-1.73228 1.55066 0.800226,-1.73228 1.55698 0.792907,-1.73228 1.56365 0.785908,-1.73228 1.57066 0.779245,-1.73228 1.57799 0.772934,-1.73228 1.58561 0.766991,-1.73228 1.59352 0.761429,-1.73228 1.6017 0.756263,-1.73228 1.61012 0.751504,-1.73228 2.09645 0.492125,-1.73228 2.49015 0.03937,-1.73228 2.49015 0.492125,-1.73228 1.5059 0.925195,-1.73228 1.50614 0.915528,-1.73228 1.50685 0.905884]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-2.20472 2.49015 0.03937,-1.73228 1.5059 0.03937,-2.20472 1.5059 0.03937,-1.73228 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-2.20472 2.49015 0.492125,-2.20472 1.5059 0.03937,-2.20472 1.5059 0.492125,-2.20472 2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.137795 2.74409 0.94488,-0.137795 2.74409 0.94488,0.137795 2.49015 0.94488,-0.137795 2.49015 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,4,3,1,-1,4,5,3,-1,6,5,4,-1,6,7,5,-1,8,7,6,-1,8,9,7,-1,10,9,8,-1,10,11,9,-1,12,11,10,-1,12,13,11,-1,14,13,12,-1,15,13,14,-1,15,16,13,-1,17,16,15,-1,17,18,16,-1,19,18,17,-1,19,20,18,-1,21,20,19,-1,21,22,20,-1,23,22,21,-1,23,24,22,-1,25,24,23,-1,25,26,24,-1,27,26,25,-1,28,26,27,-1,28,29,26,-1,30,29,28,-1,30,31,29,-1,30,32,31,-1,32,33,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,38,40,39,-1,39,41,42,-1,40,41,39,-1,42,43,44,-1,41,43,42,-1,44,45,46,-1,43,45,44,-1,45,47,46,-1,46,47,48,-1,47,49,48,-1,48,49,50,-1,49,51,50,-1,51,52,50,-1,51,53,52,-1,52,53,54,-1,54,55,56,-1,53,55,54,-1,56,57,58,-1,55,57,56,-1,57,59,58,-1,58,59,60,-1,60,61,62,-1,59,61,60,-1,61,63,62,-1,62,63,64,-1,64,63,65,-1,65,66,67,-1,63,66,65,-1,66,68,67,-1,67,68,69,-1,68,70,69,-1,70,71,69,-1,70,72,71,-1,72,73,71,-1,74,73,72,-1,74,75,73,-1,76,75,74,-1,76,77,75,-1,78,79,76,-1,76,79,77,-1,80,81,78,-1,78,81,79,-1,82,83,80,-1,80,83,81,-1,84,85,82,-1,82,85,83,-1,86,87,84,-1,84,87,85,-1,86,88,87,-1,89,90,86,-1,86,90,88,-1,91,92,89,-1,89,92,90,-1,93,94,91,-1,91,94,92,-1,95,96,93,-1,93,96,94,-1,95,97,96,-1,98,97,95,-1,98,99,97,-1,100,99,98,-1,100,101,99,-1,100,102,101,-1,103,102,100,-1]
coord Coordinate { point [-0.137795 2.49015 0.94488,-0.137795 2.74409 0.94488,-0.137795 2.49015 0.82677,-0.137795 2.74409 0.82677,-0.137795 2.75084 0.944715,-0.137795 2.74523 0.826737,-0.137795 2.75757 0.944219,-0.137795 2.74636 0.826638,-0.137795 2.76427 0.943394,-0.137795 2.74749 0.826474,-0.137795 2.77092 0.942242,-0.137795 2.74861 0.826244,-0.137795 2.77751 0.940765,-0.137795 2.74971 0.825951,-0.137795 2.78402 0.938967,-0.137795 2.79043 0.936853,-0.137795 2.75079 0.825594,-0.137795 2.79673 0.934428,-0.137795 2.75185 0.825175,-0.137795 2.80291 0.931696,-0.137795 2.75289 0.824695,-0.137795 2.80894 0.928666,-0.137795 2.75389 0.824156,-0.137795 2.81482 0.925343,-0.137795 2.75486 0.823561,-0.137795 2.82052 0.921737,-0.137795 2.7558 0.822909,-0.137795 2.82605 0.917856,-0.137795 2.83138 0.913708,-0.137795 2.75669 0.822205,-0.137795 2.83649 0.909305,-0.137795 2.75755 0.82145,-0.137795 2.84139 0.904656,-0.137795 2.75836 0.820647,-0.137795 2.84605 0.899773,-0.137795 2.75912 0.819799,-0.137795 2.85047 0.894668,-0.137795 2.75983 0.818908,-0.137795 2.85463 0.889352,-0.137795 2.76049 0.817977,-0.137795 2.85853 0.883839,-0.137795 2.86215 0.878142,-0.137795 2.76109 0.81701,-0.137795 2.86549 0.872274,-0.137795 2.76163 0.816009,-0.137795 2.86854 0.866249,-0.137795 2.76212 0.814979,-0.137795 2.87128 0.860082,-0.137795 2.76255 0.813922,-0.137795 2.87373 0.853789,-0.137795 2.76291 0.812842,-0.137795 2.87586 0.847383,-0.137795 2.98168 0.0974972,-0.137795 3.09462 0.132038,-0.137795 2.98381 0.0910913,-0.137795 3.09499 0.130958,-0.137795 2.98625 0.0847975,-0.137795 3.09542 0.129901,-0.137795 2.989 0.078631,-0.137795 3.0959 0.128871,-0.137795 2.99205 0.0726065,-0.137795 3.09645 0.12787,-0.137795 2.99539 0.0667385,-0.137795 3.09705 0.126903,-0.137795 2.99901 0.061041,-0.137795 3.00291 0.0555278,-0.137795 3.09771 0.125972,-0.137795 3.00707 0.0502121,-0.137795 3.09842 0.125081,-0.137795 3.01149 0.0451067,-0.137795 3.09918 0.124233,-0.137795 3.01615 0.0402237,-0.137795 3.09999 0.12343,-0.137795 3.02105 0.035575,-0.137795 3.10084 0.122675,-0.137795 3.02616 0.0311717,-0.137795 3.10174 0.121971,-0.137795 3.03149 0.0270243,-0.137795 3.10268 0.121319,-0.137795 3.03701 0.0231428,-0.137795 3.10365 0.120724,-0.137795 3.04272 0.0195366,-0.137795 3.10465 0.120185,-0.137795 3.0486 0.0162142,-0.137795 3.10569 0.119705,-0.137795 3.05463 0.0131837,-0.137795 3.10675 0.119286,-0.137795 3.06081 0.0104524,-0.137795 3.06711 0.0080267,-0.137795 3.10783 0.118929,-0.137795 3.07352 0.00591255,-0.137795 3.10893 0.118636,-0.137795 3.08003 0.004115,-0.137795 3.11005 0.118406,-0.137795 3.08661 0.00263835,-0.137795 3.11117 0.118242,-0.137795 3.09327 0.00148615,-0.137795 3.09997 0.000661173,-0.137795 3.11231 0.118143,-0.137795 3.1067 0.000165393,-0.137795 3.11345 0.11811,-0.137795 3.11345 0,-0.137795 3.42519 3.93735e-13,-0.137795 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.137795 2.74409 0.82677,0.137795 2.74409 0.82677,-0.137795 2.49015 0.82677,0.137795 2.49015 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,1,5,2,-1,2,5,6,-1,4,7,3,-1,8,7,4,-1,6,9,10,-1,5,9,6,-1,8,11,7,-1,12,11,8,-1,13,11,12,-1,14,15,16,-1,10,15,14,-1,9,15,10,-1,13,17,11,-1,18,17,13,-1,16,19,20,-1,15,19,16,-1,18,21,17,-1,22,21,18,-1,19,23,20,-1,20,23,24,-1,22,25,21,-1,26,25,22,-1,24,27,28,-1,23,27,24,-1,26,29,25,-1,30,29,26,-1,27,31,28,-1,28,31,32,-1,30,33,29,-1,34,33,30,-1,35,33,34,-1,32,36,37,-1,31,36,32,-1,35,38,33,-1,39,38,35,-1,39,40,38,-1,41,40,39,-1,41,42,40,-1,43,42,41,-1,44,45,43,-1,43,45,42,-1,46,47,44,-1,44,47,45,-1,46,48,47,-1,49,48,46,-1,49,50,48,-1,50,51,48,-1,36,52,37,-1,53,54,55,-1,55,54,56,-1,53,57,54,-1,58,57,53,-1,58,59,57,-1,60,59,58,-1,60,61,59,-1,62,61,60,-1,62,63,61,-1,64,63,62,-1,64,65,63,-1,66,65,64,-1,66,67,65,-1,36,68,52,-1,66,69,67,-1,70,69,66,-1,52,71,72,-1,68,71,52,-1,70,73,69,-1,74,73,70,-1,71,75,72,-1,72,75,76,-1,74,77,73,-1,78,77,74,-1,75,79,76,-1,76,79,80,-1,78,81,77,-1,82,81,78,-1,79,83,80,-1,80,83,84,-1,82,85,81,-1,86,85,82,-1,83,87,84,-1,84,87,88,-1,86,89,85,-1,90,89,86,-1,87,91,88,-1,90,92,89,-1,88,93,94,-1,91,93,88,-1,90,95,92,-1,96,95,90,-1,93,97,94,-1,94,97,98,-1,96,99,95,-1,100,99,96,-1,97,101,98,-1,98,101,102,-1,100,103,99,-1,101,103,102,-1,102,103,100,-1]
coord Coordinate { point [0.137795 3.01615 0.0402237,0.137795 3.09918 0.124233,0.137795 3.01149 0.0451067,0.137795 3.09999 0.12343,0.137795 3.02105 0.035575,0.137795 3.09842 0.125081,0.137795 3.00707 0.0502121,0.137795 3.10084 0.122675,0.137795 3.02616 0.0311717,0.137795 3.09771 0.125972,0.137795 3.00291 0.0555278,0.137795 3.10174 0.121971,0.137795 3.03149 0.0270243,0.137795 3.03701 0.0231428,0.137795 2.99901 0.061041,0.137795 3.09705 0.126903,0.137795 2.99539 0.0667385,0.137795 3.10268 0.121319,0.137795 3.04272 0.0195366,0.137795 3.09645 0.12787,0.137795 2.99205 0.0726065,0.137795 3.10365 0.120724,0.137795 3.0486 0.0162142,0.137795 3.0959 0.128871,0.137795 2.989 0.078631,0.137795 3.10465 0.120185,0.137795 3.05463 0.0131837,0.137795 3.09542 0.129901,0.137795 2.98625 0.0847975,0.137795 3.10569 0.119705,0.137795 3.06081 0.0104524,0.137795 3.09499 0.130958,0.137795 2.98381 0.0910913,0.137795 3.10675 0.119286,0.137795 3.06711 0.0080267,0.137795 3.07352 0.00591255,0.137795 3.09462 0.132038,0.137795 2.98168 0.0974972,0.137795 3.10783 0.118929,0.137795 3.08003 0.004115,0.137795 3.10893 0.118636,0.137795 3.08661 0.00263835,0.137795 3.11005 0.118406,0.137795 3.09327 0.00148615,0.137795 3.09997 0.000661173,0.137795 3.11117 0.118242,0.137795 3.1067 0.000165393,0.137795 3.11231 0.118143,0.137795 3.11345 0.11811,0.137795 3.11345 0,0.137795 3.42519 3.93735e-13,0.137795 3.42519 0.11811,0.137795 2.76291 0.812842,0.137795 2.74409 0.82677,0.137795 2.74409 0.94488,0.137795 2.49015 0.82677,0.137795 2.49015 0.94488,0.137795 2.75084 0.944715,0.137795 2.74523 0.826737,0.137795 2.75757 0.944219,0.137795 2.74636 0.826638,0.137795 2.76427 0.943394,0.137795 2.74749 0.826474,0.137795 2.77092 0.942242,0.137795 2.74861 0.826244,0.137795 2.77751 0.940765,0.137795 2.74971 0.825951,0.137795 2.78402 0.938967,0.137795 2.87586 0.847383,0.137795 2.79043 0.936853,0.137795 2.75079 0.825594,0.137795 2.87373 0.853789,0.137795 2.76255 0.813922,0.137795 2.79673 0.934428,0.137795 2.75185 0.825175,0.137795 2.87128 0.860082,0.137795 2.76212 0.814979,0.137795 2.80291 0.931696,0.137795 2.75289 0.824695,0.137795 2.86854 0.866249,0.137795 2.76163 0.816009,0.137795 2.80894 0.928666,0.137795 2.75389 0.824156,0.137795 2.86549 0.872274,0.137795 2.76109 0.81701,0.137795 2.81482 0.925343,0.137795 2.75486 0.823561,0.137795 2.86215 0.878142,0.137795 2.76049 0.817977,0.137795 2.82052 0.921737,0.137795 2.7558 0.822909,0.137795 2.85853 0.883839,0.137795 2.82605 0.917856,0.137795 2.85463 0.889352,0.137795 2.75983 0.818908,0.137795 2.83138 0.913708,0.137795 2.75669 0.822205,0.137795 2.85047 0.894668,0.137795 2.75912 0.819799,0.137795 2.83649 0.909305,0.137795 2.75755 0.82145,0.137795 2.84605 0.899773,0.137795 2.75836 0.820647,0.137795 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-1.83071 2.74409 0.94488,-2.10629 2.74409 0.94488,-1.83071 2.49015 0.94488,-2.10629 2.49015 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,2,3,4,-1,5,6,0,-1,0,6,1,-1,3,7,4,-1,4,7,8,-1,9,10,5,-1,5,10,6,-1,8,11,12,-1,7,11,8,-1,12,11,13,-1,14,15,16,-1,16,15,9,-1,9,15,10,-1,11,17,13,-1,13,17,18,-1,19,20,14,-1,14,20,15,-1,18,21,22,-1,17,21,18,-1,23,24,19,-1,19,24,20,-1,21,25,22,-1,22,25,26,-1,27,28,23,-1,23,28,24,-1,25,29,26,-1,26,29,30,-1,31,32,27,-1,27,32,28,-1,30,33,34,-1,34,33,35,-1,29,33,30,-1,36,37,31,-1,31,37,32,-1,35,38,39,-1,33,38,35,-1,38,40,39,-1,39,40,41,-1,41,42,43,-1,40,42,41,-1,42,44,43,-1,43,44,45,-1,45,46,47,-1,44,46,45,-1,46,48,47,-1,47,48,49,-1,48,50,49,-1,48,51,50,-1,52,53,54,-1,54,53,55,-1,55,56,57,-1,53,56,55,-1,57,58,59,-1,56,58,57,-1,59,60,61,-1,58,60,59,-1,61,62,63,-1,60,62,61,-1,63,64,65,-1,62,64,63,-1,64,66,65,-1,67,68,36,-1,36,68,37,-1,65,69,70,-1,66,69,65,-1,67,71,68,-1,72,71,67,-1,70,73,74,-1,69,73,70,-1,72,75,71,-1,76,75,72,-1,74,77,78,-1,73,77,74,-1,76,79,75,-1,80,79,76,-1,78,81,82,-1,77,81,78,-1,83,84,80,-1,80,84,79,-1,82,85,86,-1,81,85,82,-1,87,88,83,-1,83,88,84,-1,86,89,90,-1,85,89,86,-1,91,92,87,-1,87,92,88,-1,89,93,90,-1,91,94,92,-1,90,95,96,-1,93,95,90,-1,91,97,94,-1,98,97,91,-1,96,99,100,-1,95,99,96,-1,98,101,97,-1,102,101,98,-1,102,103,101,-1,99,103,100,-1,100,103,102,-1]
coord Coordinate { point [-2.10629 3.01149 0.0451067,-2.10629 3.09918 0.124233,-2.10629 3.01615 0.0402237,-2.10629 3.09999 0.12343,-2.10629 3.02105 0.035575,-2.10629 3.00707 0.0502121,-2.10629 3.09842 0.125081,-2.10629 3.10084 0.122675,-2.10629 3.02616 0.0311717,-2.10629 3.00291 0.0555278,-2.10629 3.09771 0.125972,-2.10629 3.10174 0.121971,-2.10629 3.03149 0.0270243,-2.10629 3.03701 0.0231428,-2.10629 2.99539 0.0667385,-2.10629 3.09705 0.126903,-2.10629 2.99901 0.061041,-2.10629 3.10268 0.121319,-2.10629 3.04272 0.0195366,-2.10629 2.99205 0.0726065,-2.10629 3.09645 0.12787,-2.10629 3.10365 0.120724,-2.10629 3.0486 0.0162142,-2.10629 2.989 0.078631,-2.10629 3.0959 0.128871,-2.10629 3.10465 0.120185,-2.10629 3.05463 0.0131837,-2.10629 2.98625 0.0847975,-2.10629 3.09542 0.129901,-2.10629 3.10569 0.119705,-2.10629 3.06081 0.0104524,-2.10629 2.98381 0.0910913,-2.10629 3.09499 0.130958,-2.10629 3.10675 0.119286,-2.10629 3.06711 0.0080267,-2.10629 3.07352 0.00591255,-2.10629 2.98168 0.0974972,-2.10629 3.09462 0.132038,-2.10629 3.10783 0.118929,-2.10629 3.08003 0.004115,-2.10629 3.10893 0.118636,-2.10629 3.08661 0.00263835,-2.10629 3.11005 0.118406,-2.10629 3.09327 0.00148615,-2.10629 3.11117 0.118242,-2.10629 3.09997 0.000661173,-2.10629 3.11231 0.118143,-2.10629 3.1067 0.000165393,-2.10629 3.11345 0.11811,-2.10629 3.11345 0,-2.10629 3.42519 3.93735e-13,-2.10629 3.42519 0.11811,-2.10629 2.49015 0.94488,-2.10629 2.74409 0.94488,-2.10629 2.49015 0.82677,-2.10629 2.74409 0.82677,-2.10629 2.75084 0.944715,-2.10629 2.74523 0.826737,-2.10629 2.75757 0.944219,-2.10629 2.74636 0.826638,-2.10629 2.76427 0.943394,-2.10629 2.74749 0.826474,-2.10629 2.77092 0.942242,-2.10629 2.74861 0.826244,-2.10629 2.77751 0.940765,-2.10629 2.74971 0.825951,-2.10629 2.78402 0.938967,-2.10629 2.76291 0.812842,-2.10629 2.87586 0.847383,-2.10629 2.79043 0.936853,-2.10629 2.75079 0.825594,-2.10629 2.87373 0.853789,-2.10629 2.76255 0.813922,-2.10629 2.79673 0.934428,-2.10629 2.75185 0.825175,-2.10629 2.87128 0.860082,-2.10629 2.76212 0.814979,-2.10629 2.80291 0.931696,-2.10629 2.75289 0.824695,-2.10629 2.86854 0.866249,-2.10629 2.76163 0.816009,-2.10629 2.80894 0.928666,-2.10629 2.75389 0.824156,-2.10629 2.76109 0.81701,-2.10629 2.86549 0.872274,-2.10629 2.81482 0.925343,-2.10629 2.75486 0.823561,-2.10629 2.76049 0.817977,-2.10629 2.86215 0.878142,-2.10629 2.82052 0.921737,-2.10629 2.7558 0.822909,-2.10629 2.75983 0.818908,-2.10629 2.85853 0.883839,-2.10629 2.82605 0.917856,-2.10629 2.85463 0.889352,-2.10629 2.83138 0.913708,-2.10629 2.75669 0.822205,-2.10629 2.85047 0.894668,-2.10629 2.75912 0.819799,-2.10629 2.83649 0.909305,-2.10629 2.75755 0.82145,-2.10629 2.84605 0.899773,-2.10629 2.75836 0.820647,-2.10629 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.10629 2.74409 0.82677,-1.83071 2.74409 0.82677,-2.10629 2.49015 0.82677,-1.83071 2.49015 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,1,5,2,-1,2,5,6,-1,4,7,3,-1,8,7,4,-1,6,9,10,-1,5,9,6,-1,8,11,7,-1,12,11,8,-1,13,11,12,-1,14,15,16,-1,10,15,14,-1,9,15,10,-1,13,17,11,-1,18,17,13,-1,16,19,20,-1,15,19,16,-1,18,21,17,-1,22,21,18,-1,19,23,20,-1,20,23,24,-1,22,25,21,-1,26,25,22,-1,24,27,28,-1,23,27,24,-1,26,29,25,-1,30,29,26,-1,27,31,28,-1,28,31,32,-1,30,33,29,-1,34,33,30,-1,35,33,34,-1,32,36,37,-1,31,36,32,-1,35,38,33,-1,39,38,35,-1,39,40,38,-1,41,40,39,-1,41,42,40,-1,43,42,41,-1,44,45,43,-1,43,45,42,-1,46,47,44,-1,44,47,45,-1,46,48,47,-1,49,48,46,-1,49,50,48,-1,50,51,48,-1,36,52,37,-1,53,54,55,-1,55,54,56,-1,53,57,54,-1,58,57,53,-1,58,59,57,-1,60,59,58,-1,60,61,59,-1,62,61,60,-1,62,63,61,-1,64,63,62,-1,64,65,63,-1,66,65,64,-1,66,67,65,-1,36,68,52,-1,66,69,67,-1,70,69,66,-1,52,71,72,-1,68,71,52,-1,70,73,69,-1,74,73,70,-1,71,75,72,-1,72,75,76,-1,74,77,73,-1,78,77,74,-1,75,79,76,-1,76,79,80,-1,78,81,77,-1,82,81,78,-1,79,83,80,-1,80,83,84,-1,82,85,81,-1,86,85,82,-1,83,87,84,-1,84,87,88,-1,86,89,85,-1,90,89,86,-1,87,91,88,-1,90,92,89,-1,88,93,94,-1,91,93,88,-1,90,95,92,-1,96,95,90,-1,93,97,94,-1,94,97,98,-1,96,99,95,-1,100,99,96,-1,97,101,98,-1,98,101,102,-1,100,103,99,-1,101,103,102,-1,102,103,100,-1]
coord Coordinate { point [-1.83071 3.01615 0.0402237,-1.83071 3.09918 0.124233,-1.83071 3.01149 0.0451067,-1.83071 3.09999 0.12343,-1.83071 3.02105 0.035575,-1.83071 3.09842 0.125081,-1.83071 3.00707 0.0502121,-1.83071 3.10084 0.122675,-1.83071 3.02616 0.0311717,-1.83071 3.09771 0.125972,-1.83071 3.00291 0.0555278,-1.83071 3.10174 0.121971,-1.83071 3.03149 0.0270243,-1.83071 3.03701 0.0231428,-1.83071 2.99901 0.061041,-1.83071 3.09705 0.126903,-1.83071 2.99539 0.0667385,-1.83071 3.10268 0.121319,-1.83071 3.04272 0.0195366,-1.83071 3.09645 0.12787,-1.83071 2.99205 0.0726065,-1.83071 3.10365 0.120724,-1.83071 3.0486 0.0162142,-1.83071 3.0959 0.128871,-1.83071 2.989 0.078631,-1.83071 3.10465 0.120185,-1.83071 3.05463 0.0131837,-1.83071 3.09542 0.129901,-1.83071 2.98625 0.0847975,-1.83071 3.10569 0.119705,-1.83071 3.06081 0.0104524,-1.83071 3.09499 0.130958,-1.83071 2.98381 0.0910913,-1.83071 3.10675 0.119286,-1.83071 3.06711 0.0080267,-1.83071 3.07352 0.00591255,-1.83071 3.09462 0.132038,-1.83071 2.98168 0.0974972,-1.83071 3.10783 0.118929,-1.83071 3.08003 0.004115,-1.83071 3.10893 0.118636,-1.83071 3.08661 0.00263835,-1.83071 3.11005 0.118406,-1.83071 3.09327 0.00148615,-1.83071 3.09997 0.000661173,-1.83071 3.11117 0.118242,-1.83071 3.1067 0.000165393,-1.83071 3.11231 0.118143,-1.83071 3.11345 0.11811,-1.83071 3.11345 0,-1.83071 3.42519 3.93735e-13,-1.83071 3.42519 0.11811,-1.83071 2.76291 0.812842,-1.83071 2.74409 0.82677,-1.83071 2.74409 0.94488,-1.83071 2.49015 0.82677,-1.83071 2.49015 0.94488,-1.83071 2.75084 0.944715,-1.83071 2.74523 0.826737,-1.83071 2.75757 0.944219,-1.83071 2.74636 0.826638,-1.83071 2.76427 0.943394,-1.83071 2.74749 0.826474,-1.83071 2.77092 0.942242,-1.83071 2.74861 0.826244,-1.83071 2.77751 0.940765,-1.83071 2.74971 0.825951,-1.83071 2.78402 0.938967,-1.83071 2.87586 0.847383,-1.83071 2.79043 0.936853,-1.83071 2.75079 0.825594,-1.83071 2.87373 0.853789,-1.83071 2.76255 0.813922,-1.83071 2.79673 0.934428,-1.83071 2.75185 0.825175,-1.83071 2.87128 0.860082,-1.83071 2.76212 0.814979,-1.83071 2.80291 0.931696,-1.83071 2.75289 0.824695,-1.83071 2.86854 0.866249,-1.83071 2.76163 0.816009,-1.83071 2.80894 0.928666,-1.83071 2.75389 0.824156,-1.83071 2.86549 0.872274,-1.83071 2.76109 0.81701,-1.83071 2.81482 0.925343,-1.83071 2.75486 0.823561,-1.83071 2.86215 0.878142,-1.83071 2.76049 0.817977,-1.83071 2.82052 0.921737,-1.83071 2.7558 0.822909,-1.83071 2.85853 0.883839,-1.83071 2.82605 0.917856,-1.83071 2.85463 0.889352,-1.83071 2.75983 0.818908,-1.83071 2.83138 0.913708,-1.83071 2.75669 0.822205,-1.83071 2.85047 0.894668,-1.83071 2.75912 0.819799,-1.83071 2.83649 0.909305,-1.83071 2.75755 0.82145,-1.83071 2.84605 0.899773,-1.83071 2.75836 0.820647,-1.83071 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.83071 2.74409 0.82677,2.10629 2.74409 0.82677,1.83071 2.49015 0.82677,2.10629 2.49015 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,1,5,2,-1,2,5,6,-1,4,7,3,-1,8,7,4,-1,6,9,10,-1,5,9,6,-1,8,11,7,-1,12,11,8,-1,13,11,12,-1,14,15,16,-1,10,15,14,-1,9,15,10,-1,13,17,11,-1,18,17,13,-1,16,19,20,-1,15,19,16,-1,18,21,17,-1,22,21,18,-1,19,23,20,-1,20,23,24,-1,22,25,21,-1,26,25,22,-1,24,27,28,-1,23,27,24,-1,26,29,25,-1,30,29,26,-1,27,31,28,-1,28,31,32,-1,30,33,29,-1,34,33,30,-1,35,33,34,-1,32,36,37,-1,31,36,32,-1,35,38,33,-1,39,38,35,-1,39,40,38,-1,41,40,39,-1,41,42,40,-1,43,42,41,-1,44,45,43,-1,43,45,42,-1,46,47,44,-1,44,47,45,-1,46,48,47,-1,49,48,46,-1,49,50,48,-1,50,51,48,-1,36,52,37,-1,53,54,55,-1,55,54,56,-1,53,57,54,-1,58,57,53,-1,58,59,57,-1,60,59,58,-1,60,61,59,-1,62,61,60,-1,62,63,61,-1,64,63,62,-1,64,65,63,-1,66,65,64,-1,66,67,65,-1,36,68,52,-1,66,69,67,-1,70,69,66,-1,52,71,72,-1,68,71,52,-1,70,73,69,-1,74,73,70,-1,71,75,72,-1,72,75,76,-1,74,77,73,-1,78,77,74,-1,75,79,76,-1,76,79,80,-1,78,81,77,-1,82,81,78,-1,79,83,80,-1,80,83,84,-1,82,85,81,-1,86,85,82,-1,83,87,84,-1,84,87,88,-1,86,89,85,-1,90,89,86,-1,87,91,88,-1,90,92,89,-1,88,93,94,-1,91,93,88,-1,90,95,92,-1,96,95,90,-1,93,97,94,-1,94,97,98,-1,96,99,95,-1,100,99,96,-1,97,101,98,-1,98,101,102,-1,100,103,99,-1,101,103,102,-1,102,103,100,-1]
coord Coordinate { point [2.10629 3.01615 0.0402237,2.10629 3.09918 0.124233,2.10629 3.01149 0.0451067,2.10629 3.09999 0.12343,2.10629 3.02105 0.035575,2.10629 3.09842 0.125081,2.10629 3.00707 0.0502121,2.10629 3.10084 0.122675,2.10629 3.02616 0.0311717,2.10629 3.09771 0.125972,2.10629 3.00291 0.0555278,2.10629 3.10174 0.121971,2.10629 3.03149 0.0270243,2.10629 3.03701 0.0231428,2.10629 2.99901 0.061041,2.10629 3.09705 0.126903,2.10629 2.99539 0.0667385,2.10629 3.10268 0.121319,2.10629 3.04272 0.0195366,2.10629 3.09645 0.12787,2.10629 2.99205 0.0726065,2.10629 3.10365 0.120724,2.10629 3.0486 0.0162142,2.10629 3.0959 0.128871,2.10629 2.989 0.078631,2.10629 3.10465 0.120185,2.10629 3.05463 0.0131837,2.10629 3.09542 0.129901,2.10629 2.98625 0.0847975,2.10629 3.10569 0.119705,2.10629 3.06081 0.0104524,2.10629 3.09499 0.130958,2.10629 2.98381 0.0910913,2.10629 3.10675 0.119286,2.10629 3.06711 0.0080267,2.10629 3.07352 0.00591255,2.10629 3.09462 0.132038,2.10629 2.98168 0.0974972,2.10629 3.10783 0.118929,2.10629 3.08003 0.004115,2.10629 3.10893 0.118636,2.10629 3.08661 0.00263835,2.10629 3.11005 0.118406,2.10629 3.09327 0.00148615,2.10629 3.09997 0.000661173,2.10629 3.11117 0.118242,2.10629 3.1067 0.000165393,2.10629 3.11231 0.118143,2.10629 3.11345 0.11811,2.10629 3.11345 0,2.10629 3.42519 3.93735e-13,2.10629 3.42519 0.11811,2.10629 2.76291 0.812842,2.10629 2.74409 0.82677,2.10629 2.74409 0.94488,2.10629 2.49015 0.82677,2.10629 2.49015 0.94488,2.10629 2.75084 0.944715,2.10629 2.74523 0.826737,2.10629 2.75757 0.944219,2.10629 2.74636 0.826638,2.10629 2.76427 0.943394,2.10629 2.74749 0.826474,2.10629 2.77092 0.942242,2.10629 2.74861 0.826244,2.10629 2.77751 0.940765,2.10629 2.74971 0.825951,2.10629 2.78402 0.938967,2.10629 2.87586 0.847383,2.10629 2.79043 0.936853,2.10629 2.75079 0.825594,2.10629 2.87373 0.853789,2.10629 2.76255 0.813922,2.10629 2.79673 0.934428,2.10629 2.75185 0.825175,2.10629 2.87128 0.860082,2.10629 2.76212 0.814979,2.10629 2.80291 0.931696,2.10629 2.75289 0.824695,2.10629 2.86854 0.866249,2.10629 2.76163 0.816009,2.10629 2.80894 0.928666,2.10629 2.75389 0.824156,2.10629 2.86549 0.872274,2.10629 2.76109 0.81701,2.10629 2.81482 0.925343,2.10629 2.75486 0.823561,2.10629 2.86215 0.878142,2.10629 2.76049 0.817977,2.10629 2.82052 0.921737,2.10629 2.7558 0.822909,2.10629 2.85853 0.883839,2.10629 2.82605 0.917856,2.10629 2.85463 0.889352,2.10629 2.75983 0.818908,2.10629 2.83138 0.913708,2.10629 2.75669 0.822205,2.10629 2.85047 0.894668,2.10629 2.75912 0.819799,2.10629 2.83649 0.909305,2.10629 2.75755 0.82145,2.10629 2.84605 0.899773,2.10629 2.75836 0.820647,2.10629 2.84139 0.904656]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [2.10629 2.74409 0.94488,1.83071 2.74409 0.94488,2.10629 2.49015 0.94488,1.83071 2.49015 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,1,3,2,-1,4,3,1,-1,4,5,3,-1,6,5,4,-1,6,7,5,-1,8,7,6,-1,8,9,7,-1,10,9,8,-1,10,11,9,-1,12,11,10,-1,12,13,11,-1,14,13,12,-1,15,13,14,-1,15,16,13,-1,17,16,15,-1,17,18,16,-1,19,18,17,-1,19,20,18,-1,21,20,19,-1,21,22,20,-1,23,22,21,-1,23,24,22,-1,25,24,23,-1,25,26,24,-1,27,26,25,-1,28,26,27,-1,28,29,26,-1,30,29,28,-1,30,31,29,-1,30,32,31,-1,32,33,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,38,40,39,-1,39,41,42,-1,40,41,39,-1,42,43,44,-1,41,43,42,-1,44,45,46,-1,43,45,44,-1,45,47,46,-1,46,47,48,-1,47,49,48,-1,48,49,50,-1,49,51,50,-1,51,52,50,-1,51,53,52,-1,52,53,54,-1,54,55,56,-1,53,55,54,-1,56,57,58,-1,55,57,56,-1,57,59,58,-1,58,59,60,-1,60,61,62,-1,59,61,60,-1,61,63,62,-1,62,63,64,-1,64,63,65,-1,65,66,67,-1,63,66,65,-1,66,68,67,-1,67,68,69,-1,68,70,69,-1,70,71,69,-1,70,72,71,-1,72,73,71,-1,74,73,72,-1,74,75,73,-1,76,75,74,-1,76,77,75,-1,78,79,76,-1,76,79,77,-1,80,81,78,-1,78,81,79,-1,82,83,80,-1,80,83,81,-1,84,85,82,-1,82,85,83,-1,86,87,84,-1,84,87,85,-1,86,88,87,-1,89,90,86,-1,86,90,88,-1,91,92,89,-1,89,92,90,-1,93,94,91,-1,91,94,92,-1,95,96,93,-1,93,96,94,-1,95,97,96,-1,98,97,95,-1,98,99,97,-1,100,99,98,-1,100,101,99,-1,100,102,101,-1,103,102,100,-1]
coord Coordinate { point [1.83071 2.49015 0.94488,1.83071 2.74409 0.94488,1.83071 2.49015 0.82677,1.83071 2.74409 0.82677,1.83071 2.75084 0.944715,1.83071 2.74523 0.826737,1.83071 2.75757 0.944219,1.83071 2.74636 0.826638,1.83071 2.76427 0.943394,1.83071 2.74749 0.826474,1.83071 2.77092 0.942242,1.83071 2.74861 0.826244,1.83071 2.77751 0.940765,1.83071 2.74971 0.825951,1.83071 2.78402 0.938967,1.83071 2.79043 0.936853,1.83071 2.75079 0.825594,1.83071 2.79673 0.934428,1.83071 2.75185 0.825175,1.83071 2.80291 0.931696,1.83071 2.75289 0.824695,1.83071 2.80894 0.928666,1.83071 2.75389 0.824156,1.83071 2.81482 0.925343,1.83071 2.75486 0.823561,1.83071 2.82052 0.921737,1.83071 2.7558 0.822909,1.83071 2.82605 0.917856,1.83071 2.83138 0.913708,1.83071 2.75669 0.822205,1.83071 2.83649 0.909305,1.83071 2.75755 0.82145,1.83071 2.84139 0.904656,1.83071 2.75836 0.820647,1.83071 2.84605 0.899773,1.83071 2.75912 0.819799,1.83071 2.85047 0.894668,1.83071 2.75983 0.818908,1.83071 2.85463 0.889352,1.83071 2.76049 0.817977,1.83071 2.85853 0.883839,1.83071 2.86215 0.878142,1.83071 2.76109 0.81701,1.83071 2.86549 0.872274,1.83071 2.76163 0.816009,1.83071 2.86854 0.866249,1.83071 2.76212 0.814979,1.83071 2.87128 0.860082,1.83071 2.76255 0.813922,1.83071 2.87373 0.853789,1.83071 2.76291 0.812842,1.83071 2.87586 0.847383,1.83071 2.98168 0.0974972,1.83071 3.09462 0.132038,1.83071 2.98381 0.0910913,1.83071 3.09499 0.130958,1.83071 2.98625 0.0847975,1.83071 3.09542 0.129901,1.83071 2.989 0.078631,1.83071 3.0959 0.128871,1.83071 2.99205 0.0726065,1.83071 3.09645 0.12787,1.83071 2.99539 0.0667385,1.83071 3.09705 0.126903,1.83071 2.99901 0.061041,1.83071 3.00291 0.0555278,1.83071 3.09771 0.125972,1.83071 3.00707 0.0502121,1.83071 3.09842 0.125081,1.83071 3.01149 0.0451067,1.83071 3.09918 0.124233,1.83071 3.01615 0.0402237,1.83071 3.09999 0.12343,1.83071 3.02105 0.035575,1.83071 3.10084 0.122675,1.83071 3.02616 0.0311717,1.83071 3.10174 0.121971,1.83071 3.03149 0.0270243,1.83071 3.10268 0.121319,1.83071 3.03701 0.0231428,1.83071 3.10365 0.120724,1.83071 3.04272 0.0195366,1.83071 3.10465 0.120185,1.83071 3.0486 0.0162142,1.83071 3.10569 0.119705,1.83071 3.05463 0.0131837,1.83071 3.10675 0.119286,1.83071 3.06081 0.0104524,1.83071 3.06711 0.0080267,1.83071 3.10783 0.118929,1.83071 3.07352 0.00591255,1.83071 3.10893 0.118636,1.83071 3.08003 0.004115,1.83071 3.11005 0.118406,1.83071 3.08661 0.00263835,1.83071 3.11117 0.118242,1.83071 3.09327 0.00148615,1.83071 3.09997 0.000661173,1.83071 3.11231 0.118143,1.83071 3.1067 0.000165393,1.83071 3.11345 0.11811,1.83071 3.11345 0,1.83071 3.42519 3.93735e-13,1.83071 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,0,3,4,-1,0,4,5,-1,0,5,6,-1,0,6,7,-1,0,7,8,-1,0,8,9,-1,0,9,10,-1,0,10,11,-1,0,11,12,-1,0,12,13,-1,0,13,14,-1,0,14,15,-1,0,15,16,-1,0,16,17,-1,0,17,18,-1,0,18,19,-1,0,19,20,-1,0,20,21,-1,0,21,22,-1,0,22,23,-1,0,23,24,-1,0,24,25,-1,0,25,26,-1,0,26,27,-1,0,27,28,-1,0,28,29,-1,0,29,30,-1,0,30,31,-1,0,31,32,-1,0,32,33,-1,0,33,34,-1,0,34,35,-1,0,35,36,-1,0,36,37,-1,0,37,38,-1,39,38,40,-1,39,40,41,-1,42,39,43,-1,42,44,45,-1,42,43,44,-1,42,0,38,-1,42,38,39,-1,46,42,45,-1,47,42,46,-1,48,49,42,-1,50,42,47,-1,51,48,42,-1,52,42,50,-1,53,51,42,-1,54,42,52,-1,55,53,42,-1,56,42,54,-1,57,55,42,-1,58,42,56,-1,59,57,42,-1,60,42,58,-1,61,59,42,-1,62,42,60,-1,63,61,42,-1,64,42,62,-1,65,63,42,-1,66,42,64,-1,67,65,42,-1,68,42,66,-1,69,67,42,-1,70,42,68,-1,71,69,42,-1,72,42,70,-1,73,71,42,-1,74,42,72,-1,75,73,42,-1,76,42,74,-1,77,75,42,-1,78,42,76,-1,79,77,42,-1,79,42,78,-1]
coord Coordinate { point [1.24614 1.44685 1.33858,1.2462 1.44939 1.33858,1.24638 1.45192 1.33858,1.24668 1.45445 1.33858,1.2471 1.45696 1.33858,1.24764 1.45945 1.33858,1.2483 1.46192 1.33858,1.24907 1.46436 1.33858,1.24996 1.46677 1.33858,1.25096 1.46914 1.33858,1.25207 1.47147 1.33858,1.25329 1.47375 1.33858,1.25461 1.47599 1.33858,1.25604 1.47817 1.33858,1.25757 1.48029 1.33858,1.2592 1.48235 1.33858,1.26092 1.48434 1.33858,1.26273 1.48627 1.33858,1.26463 1.48812 1.33858,1.26661 1.48989 1.33858,1.26867 1.49159 1.33858,1.27081 1.4932 1.33858,1.27302 1.49473 1.33858,1.27529 1.49617 1.33858,1.27763 1.49751 1.33858,1.28002 1.49877 1.33858,1.28247 1.49993 1.33858,1.28497 1.50099 1.33858,1.28751 1.50195 1.33858,1.2901 1.50281 1.33858,1.29272 1.50357 1.33858,1.29536 1.50422 1.33858,1.29804 1.50477 1.33858,1.30073 1.50521 1.33858,1.30344 1.50554 1.33858,1.30616 1.50577 1.33858,1.30831 1.50587 1.33858,1.31046 1.5059 1.33858,1.99606 1.5059 1.33858,1.99606 -1.5059 1.33858,2.51968 1.5059 1.33858,2.51968 -1.5059 1.33858,1.24614 -1.44685 1.33858,1.31046 -1.5059 1.33858,1.30831 -1.50587 1.33858,1.30616 -1.50577 1.33858,1.30344 -1.50554 1.33858,1.30073 -1.50521 1.33858,1.24638 -1.45192 1.33858,1.2462 -1.44939 1.33858,1.29804 -1.50477 1.33858,1.24668 -1.45445 1.33858,1.29536 -1.50422 1.33858,1.2471 -1.45696 1.33858,1.29272 -1.50357 1.33858,1.24764 -1.45945 1.33858,1.2901 -1.50281 1.33858,1.2483 -1.46192 1.33858,1.28751 -1.50195 1.33858,1.24907 -1.46436 1.33858,1.28497 -1.50099 1.33858,1.24996 -1.46677 1.33858,1.28247 -1.49993 1.33858,1.25096 -1.46914 1.33858,1.28002 -1.49877 1.33858,1.25207 -1.47147 1.33858,1.27763 -1.49751 1.33858,1.25329 -1.47375 1.33858,1.27529 -1.49617 1.33858,1.25461 -1.47599 1.33858,1.27302 -1.49473 1.33858,1.25604 -1.47817 1.33858,1.27081 -1.4932 1.33858,1.25757 -1.48029 1.33858,1.26867 -1.49159 1.33858,1.2592 -1.48235 1.33858,1.26661 -1.48989 1.33858,1.26092 -1.48434 1.33858,1.26463 -1.48812 1.33858,1.26273 -1.48627 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [2.54921 -2.49015 1.33858,2.51968 -1.5059 1.33858,2.51968 -2.49015 1.33858,2.54921 -1.5059 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,6,10,7,-1,7,10,9,-1,0,6,1,-1,1,6,8,-1,5,0,3,-1,3,0,2,-1,10,5,4,-1,10,4,11,-1]
coord Coordinate { point [2.52362 -2.60236 4.29133,2.51968 -2.55905 4.29133,2.48031 -2.59842 4.29133,-2.48031 -2.59842 4.29133,-2.51968 -2.55905 4.29133,-2.52362 -2.60236 4.29133,2.52362 2.60236 4.29133,2.48031 2.59842 4.29133,2.51968 2.55905 4.29133,-2.48031 2.59842 4.29133,-2.52362 2.60236 4.29133,-2.51968 2.55905 4.29133]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,5,1,3,-1,6,4,0,-1,7,4,6,-1,8,7,6,-1,9,1,5,-1,10,5,7,-1,10,9,5,-1,11,1,9,-1,12,6,13,-1,12,8,6,-1,14,7,8,-1,14,10,7,-1,15,16,10,-1,15,10,14,-1,17,11,16,-1,17,18,11,-1,17,16,15,-1,19,14,20,-1,19,15,14,-1,21,17,15,-1,22,23,17,-1,22,17,21,-1,24,25,23,-1,24,23,22,-1,24,26,25,-1,27,21,28,-1,27,22,21,-1,29,24,22,-1,30,24,29,-1,30,31,24,-1,32,33,34,-1,32,34,31,-1,35,34,33,-1,35,33,36,-1,35,26,34,-1,37,30,29,-1,37,29,38,-1,39,31,30,-1,39,32,31,-1,40,32,39,-1,40,41,32,-1,42,43,35,-1,42,35,36,-1,42,36,41,-1,42,41,40,-1,44,39,45,-1,44,40,39,-1,35,1,18,-1,18,1,11,-1,35,18,25,-1,35,25,26,-1]
coord Coordinate { point [-2.54921 -2.49015 0.492125,-2.51968 -2.49015 1.33858,-2.54921 -2.49015 1.33858,-2.10629 -2.49015 0.94488,-2.10629 -2.49015 0.82677,-1.83071 -2.49015 0.94488,-2.20472 -2.49015 0.492125,-1.83071 -2.49015 0.82677,-1.73228 -2.49015 0.492125,-1.12204 -2.49015 0.94488,-1.12204 -2.49015 0.82677,-0.846455 -2.49015 0.94488,-1.73228 -2.49015 0.03937,-2.20472 -2.49015 0.03937,-1.22047 -2.49015 0.492125,-0.74803 -2.49015 0.492125,-0.846455 -2.49015 0.82677,-0.137795 -2.49015 0.82677,-0.137795 -2.49015 0.94488,-0.74803 -2.49015 0.03937,-1.22047 -2.49015 0.03937,-0.23622 -2.49015 0.492125,0.23622 -2.49015 0.492125,0.137795 -2.49015 0.82677,0.846455 -2.49015 0.82677,0.137795 -2.49015 0.94488,0.846455 -2.49015 0.94488,0.23622 -2.49015 0.03937,-0.23622 -2.49015 0.03937,0.74803 -2.49015 0.492125,1.22047 -2.49015 0.492125,1.12204 -2.49015 0.82677,1.83071 -2.49015 0.82677,1.83071 -2.49015 0.94488,1.12204 -2.49015 0.94488,2.51968 -2.49015 1.33858,2.10629 -2.49015 0.94488,1.22047 -2.49015 0.03937,0.74803 -2.49015 0.03937,1.73228 -2.49015 0.492125,2.20472 -2.49015 0.492125,2.10629 -2.49015 0.82677,2.54921 -2.49015 0.492125,2.54921 -2.49015 1.33858,2.20472 -2.49015 0.03937,1.73228 -2.49015 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,4,5,-1,6,0,2,-1,7,2,3,-1,7,6,2,-1,8,9,10,-1,11,10,9,-1,12,9,8,-1,13,11,9,-1,13,9,6,-1,14,9,12,-1,15,13,6,-1,16,9,14,-1,17,15,6,-1,18,9,16,-1,19,17,6,-1,20,9,18,-1,21,19,6,-1,22,9,20,-1,23,21,6,-1,24,9,22,-1,25,23,6,-1,25,6,7,-1,26,9,24,-1,27,9,26,-1,28,9,27,-1,29,9,28,-1,30,9,29,-1,31,32,33,-1,31,34,32,-1,31,30,34,-1,31,9,30,-1,31,35,36,-1,31,36,9,-1,37,31,33,-1,38,39,40,-1,38,40,37,-1,41,42,38,-1,43,42,41,-1,44,42,43,-1,45,42,44,-1,46,47,48,-1,46,49,47,-1,46,50,49,-1,46,45,50,-1,46,51,52,-1,46,52,42,-1,46,42,45,-1,53,46,48,-1,54,46,53,-1,55,46,54,-1,56,46,55,-1,57,46,56,-1,58,46,57,-1,59,46,58,-1,60,46,59,-1,61,46,60,-1,62,46,61,-1,63,46,62,-1,64,65,66,-1,64,67,65,-1,64,68,67,-1,64,69,68,-1,64,70,69,-1,64,63,70,-1,64,46,63,-1,71,72,73,-1,71,73,64,-1,74,64,66,-1,74,71,64,-1,75,71,74,-1,75,76,71,-1,77,76,75,-1,33,41,38,-1,33,38,37,-1]
coord Coordinate { point [-1.73228 -1.5059 0.03937,-2.20472 -1.5059 0.03937,-2.20472 -1.5059 0.492125,-2.51968 -1.5059 1.33858,-2.54921 -1.5059 0.492125,-2.54921 -1.5059 1.33858,-1.73228 -1.5059 0.925195,-1.99606 -1.5059 1.33858,-1.19677 -1.5059 1.17314,-1.22047 -1.5059 0.925195,-1.21292 -1.5059 1.18879,-1.22826 -1.5059 1.20523,-1.17987 -1.5059 1.1583,-1.24278 -1.5059 1.22241,-1.16225 -1.5059 1.14433,-1.25642 -1.5059 1.24029,-1.14396 -1.5059 1.13124,-1.26916 -1.5059 1.25882,-1.12504 -1.5059 1.11908,-1.28096 -1.5059 1.27797,-1.10554 -1.5059 1.10787,-1.29179 -1.5059 1.29768,-1.08551 -1.5059 1.09765,-1.30164 -1.5059 1.3179,-1.065 -1.5059 1.08843,-1.31046 -1.5059 1.33858,-1.04405 -1.5059 1.08025,-1.02272 -1.5059 1.07311,-1.00107 -1.5059 1.06704,-0.979138 -1.5059 1.06206,-0.956987 -1.5059 1.05817,-0.74803 -1.5059 0.925195,-0.912244 -1.5059 1.05371,-0.889762 -1.5059 1.05315,-0.934671 -1.5059 1.05538,-0.74803 -1.5059 0.03937,-1.22047 -1.5059 0.03937,-0.23622 -1.5059 0.925195,0.23622 -1.5059 0.925195,0.23622 -1.5059 0.03937,-0.23622 -1.5059 0.03937,0.889762 -1.5059 1.05315,0.74803 -1.5059 0.925195,0.912244 -1.5059 1.05371,0.934671 -1.5059 1.05538,0.956987 -1.5059 1.05817,1.22047 -1.5059 0.925195,1.02272 -1.5059 1.07311,1.04405 -1.5059 1.08025,1.00107 -1.5059 1.06704,0.979138 -1.5059 1.06206,1.22047 -1.5059 0.03937,0.74803 -1.5059 0.03937,1.065 -1.5059 1.08843,1.08551 -1.5059 1.09765,1.10554 -1.5059 1.10787,1.12504 -1.5059 1.11908,1.14396 -1.5059 1.13124,1.16225 -1.5059 1.14433,1.17987 -1.5059 1.1583,1.19677 -1.5059 1.17314,1.21292 -1.5059 1.18879,1.22826 -1.5059 1.20523,1.24278 -1.5059 1.22241,1.73228 -1.5059 0.925195,1.30164 -1.5059 1.3179,1.31046 -1.5059 1.33858,1.29179 -1.5059 1.29768,1.28096 -1.5059 1.27797,1.26916 -1.5059 1.25882,1.25642 -1.5059 1.24029,2.20472 -1.5059 0.492125,2.20472 -1.5059 0.03937,1.73228 -1.5059 0.03937,1.99606 -1.5059 1.33858,2.51968 -1.5059 1.33858,2.54921 -1.5059 0.492125,2.54921 -1.5059 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-2.54921 -1.5059 1.33858,-2.54921 -1.5059 0.492125,-2.54921 -2.49015 0.492125,-2.54921 -2.49015 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,5,4,6,-1,7,8,3,-1,3,8,4,-1,9,10,7,-1,7,10,8,-1,11,12,9,-1,9,12,10,-1,13,14,11,-1,11,14,12,-1,15,16,13,-1,13,16,14,-1,15,17,16,-1,18,19,15,-1,15,19,17,-1,20,21,18,-1,18,21,19,-1,6,22,23,-1,4,22,6,-1,24,25,20,-1,20,25,21,-1,8,26,4,-1,4,26,22,-1,27,28,24,-1,24,28,25,-1,10,29,8,-1,8,29,26,-1,27,30,28,-1,31,30,27,-1,12,32,10,-1,10,32,29,-1,33,34,31,-1,31,34,30,-1,14,35,12,-1,12,35,32,-1,36,37,33,-1,33,37,34,-1,16,38,14,-1,14,38,35,-1,36,39,37,-1,16,40,38,-1,17,40,16,-1,41,42,36,-1,36,42,39,-1,17,43,40,-1,19,43,17,-1,44,45,41,-1,41,45,42,-1,19,46,43,-1,21,46,19,-1,22,47,23,-1,23,47,48,-1,49,50,44,-1,44,50,45,-1,21,51,46,-1,25,51,21,-1,22,52,47,-1,26,52,22,-1,53,54,49,-1,49,54,50,-1,25,55,51,-1,28,55,25,-1,26,56,52,-1,29,56,26,-1,57,58,53,-1,53,58,54,-1,28,59,55,-1,30,59,28,-1,32,60,29,-1,29,60,56,-1,61,62,57,-1,57,62,58,-1,34,63,30,-1,30,63,59,-1,35,64,32,-1,32,64,60,-1,65,66,61,-1,61,66,62,-1,37,67,34,-1,34,67,63,-1,35,68,64,-1,38,68,35,-1,65,69,66,-1,39,70,37,-1,37,70,67,-1,40,71,38,-1,38,71,68,-1,72,73,65,-1,65,73,69,-1,39,74,70,-1,42,74,39,-1,40,75,71,-1,43,75,40,-1,76,77,72,-1,72,77,73,-1,42,78,74,-1,45,78,42,-1,46,79,43,-1,43,79,75,-1,48,80,81,-1,47,80,48,-1,82,83,76,-1,76,83,77,-1,50,84,45,-1,45,84,78,-1,51,85,46,-1,46,85,79,-1,52,86,47,-1,47,86,80,-1,87,88,82,-1,82,88,83,-1,50,89,84,-1,54,89,50,-1,55,90,51,-1,51,90,85,-1,56,91,52,-1,52,91,86,-1,92,93,87,-1,87,93,88,-1,54,94,89,-1,58,94,54,-1,59,95,55,-1,55,95,90,-1,60,96,56,-1,56,96,91,-1,97,98,92,-1,92,98,93,-1,58,99,94,-1,62,99,58,-1,63,100,59,-1,59,100,95,-1,60,101,96,-1,64,101,60,-1,102,103,97,-1,97,103,98,-1,62,104,99,-1,66,104,62,-1,67,105,63,-1,63,105,100,-1,68,106,64,-1,64,106,101,-1,102,107,103,-1,66,108,104,-1,69,108,66,-1,67,109,105,-1,70,109,67,-1,71,110,68,-1,68,110,106,-1,111,112,102,-1,102,112,107,-1,69,113,108,-1,73,113,69,-1,70,114,109,-1,74,114,70,-1,71,115,110,-1,75,115,71,-1,116,117,111,-1,111,117,112,-1,73,118,113,-1,77,118,73,-1,78,119,74,-1,74,119,114,-1,75,120,115,-1,79,120,75,-1,81,121,122,-1,80,121,81,-1,123,124,116,-1,116,124,117,-1,83,125,77,-1,77,125,118,-1,78,126,119,-1,84,126,78,-1,79,127,120,-1,85,127,79,-1,80,128,121,-1,86,128,80,-1,2,129,123,-1,123,129,124,-1,1,129,2,-1,83,130,125,-1,88,130,83,-1,84,131,126,-1,89,131,84,-1,90,132,85,-1,85,132,127,-1,91,133,86,-1,86,133,128,-1,93,134,88,-1,88,134,130,-1,94,135,89,-1,89,135,131,-1,90,136,132,-1,95,136,90,-1,96,137,91,-1,91,137,133,-1,98,138,93,-1,93,138,134,-1,94,139,135,-1,99,139,94,-1,100,140,95,-1,95,140,136,-1,96,141,137,-1,101,141,96,-1,103,142,98,-1,98,142,138,-1,99,143,139,-1,104,143,99,-1,100,144,140,-1,105,144,100,-1,101,145,141,-1,106,145,101,-1,103,146,142,-1,107,146,103,-1,108,147,104,-1,104,147,143,-1,109,148,105,-1,105,148,144,-1,106,149,145,-1,110,149,106,-1,112,150,107,-1,107,150,146,-1,108,151,147,-1,113,151,108,-1,109,152,148,-1,114,152,109,-1,110,153,149,-1,115,153,110,-1,112,154,150,-1,117,154,112,-1,113,155,151,-1,118,155,113,-1,119,156,114,-1,114,156,152,-1,120,157,115,-1,115,157,153,-1,122,158,159,-1,121,158,122,-1,124,160,117,-1,117,160,154,-1,125,161,118,-1,118,161,155,-1,119,162,156,-1,126,162,119,-1,127,163,120,-1,120,163,157,-1,121,164,158,-1,128,164,121,-1,124,165,160,-1,166,165,1,-1,129,165,124,-1,1,165,129,-1,130,167,125,-1,125,167,161,-1,131,168,126,-1,126,168,162,-1,132,169,127,-1,127,169,163,-1,133,170,128,-1,128,170,164,-1,134,171,130,-1,130,171,167,-1,135,172,131,-1,131,172,168,-1,132,173,169,-1,136,173,132,-1,133,174,170,-1,137,174,133,-1,134,175,171,-1,138,175,134,-1,135,176,172,-1,139,176,135,-1,136,177,173,-1,140,177,136,-1,141,178,137,-1,137,178,174,-1,138,179,175,-1,142,179,138,-1,143,180,139,-1,139,180,176,-1,140,181,177,-1,144,181,140,-1,141,182,178,-1,145,182,141,-1,146,183,142,-1,142,183,179,-1,143,184,180,-1,147,184,143,-1,148,185,144,-1,144,185,181,-1,145,186,182,-1,149,186,145,-1,146,187,183,-1,150,187,146,-1,151,188,147,-1,147,188,184,-1,152,189,148,-1,148,189,185,-1,149,190,186,-1,153,190,149,-1,150,191,187,-1,154,191,150,-1,155,192,151,-1,151,192,188,-1,152,193,189,-1,156,193,152,-1,153,194,190,-1,157,194,153,-1,158,195,159,-1,159,195,196,-1,154,197,191,-1,160,197,154,-1,155,198,192,-1,161,198,155,-1,156,199,193,-1,162,199,156,-1,157,200,194,-1,163,200,157,-1,164,201,158,-1,158,201,195,-1,165,202,160,-1,203,202,166,-1,160,202,197,-1,166,202,165,-1,167,204,161,-1,161,204,198,-1,162,205,199,-1,168,205,162,-1,169,206,163,-1,163,206,200,-1,170,207,164,-1,164,207,201,-1,167,208,204,-1,171,208,167,-1,172,209,168,-1,168,209,205,-1,169,210,206,-1,173,210,169,-1,170,211,207,-1,174,211,170,-1,171,212,208,-1,175,212,171,-1,176,213,172,-1,172,213,209,-1,173,214,210,-1,177,214,173,-1,174,215,211,-1,178,215,174,-1,175,216,212,-1,179,216,175,-1,180,217,176,-1,176,217,213,-1,181,218,177,-1,177,218,214,-1,178,219,215,-1,182,219,178,-1,179,220,216,-1,183,220,179,-1,184,221,180,-1,180,221,217,-1,181,222,218,-1,185,222,181,-1,186,223,182,-1,182,223,219,-1,183,224,220,-1,187,224,183,-1,184,225,221,-1,188,225,184,-1,189,226,185,-1,185,226,222,-1,186,227,223,-1,190,227,186,-1,187,228,224,-1,191,228,187,-1,188,229,225,-1,192,229,188,-1,193,230,189,-1,189,230,226,-1,190,231,227,-1,194,231,190,-1,196,232,233,-1,195,232,196,-1,191,234,228,-1,197,234,191,-1,198,235,192,-1,192,235,229,-1,199,236,193,-1,193,236,230,-1,194,237,231,-1,200,237,194,-1,201,238,195,-1,195,238,232,-1,203,239,202,-1,202,239,197,-1,197,239,234,-1,240,239,203,-1,198,241,235,-1,204,241,198,-1,199,242,236,-1,205,242,199,-1,206,243,200,-1,200,243,237,-1,207,244,201,-1,201,244,238,-1,208,245,204,-1,204,245,241,-1,209,246,205,-1,205,246,242,-1,206,247,243,-1,210,247,206,-1,207,248,244,-1,211,248,207,-1,208,249,245,-1,212,249,208,-1,209,250,246,-1,213,250,209,-1,214,251,210,-1,210,251,247,-1,211,252,248,-1,215,252,211,-1,216,253,212,-1,212,253,249,-1,217,254,213,-1,213,254,250,-1,218,255,214,-1,214,255,251,-1,215,256,252,-1,219,256,215,-1,216,257,253,-1,220,257,216,-1,221,258,217,-1,217,258,254,-1,222,259,218,-1,218,259,255,-1,223,260,219,-1,219,260,256,-1,224,261,220,-1,220,261,257,-1,221,262,258,-1,225,262,221,-1,222,263,259,-1,226,263,222,-1,223,264,260,-1,227,264,223,-1,228,265,224,-1,224,265,261,-1,225,266,262,-1,229,266,225,-1,230,267,226,-1,226,267,263,-1,227,268,264,-1,231,268,227,-1,233,269,270,-1,232,269,233,-1,228,271,265,-1,234,271,228,-1,229,272,266,-1,235,272,229,-1,230,273,267,-1,236,273,230,-1,237,274,231,-1,231,274,268,-1,238,275,232,-1,232,275,269,-1,240,276,239,-1,239,276,234,-1,277,276,240,-1,234,276,271,-1,241,278,235,-1,235,278,272,-1,242,279,236,-1,236,279,273,-1,243,280,237,-1,237,280,274,-1,238,281,275,-1,244,281,238,-1,245,282,241,-1,241,282,278,-1,246,283,242,-1,242,283,279,-1,247,284,243,-1,243,284,280,-1,244,285,281,-1,248,285,244,-1,249,286,245,-1,245,286,282,-1,250,287,246,-1,246,287,283,-1,247,288,284,-1,251,288,247,-1,248,289,285,-1,252,289,248,-1,249,290,286,-1,253,290,249,-1,250,291,287,-1,254,291,250,-1,255,292,251,-1,251,292,288,-1,252,293,289,-1,256,293,252,-1,253,294,290,-1,257,294,253,-1,254,295,291,-1,258,295,254,-1,259,296,255,-1,255,296,292,-1,260,297,256,-1,256,297,293,-1,257,298,294,-1,261,298,257,-1,262,299,258,-1,258,299,295,-1,263,300,259,-1,259,300,296,-1,264,301,260,-1,260,301,297,-1,265,302,261,-1,261,302,298,-1,266,303,262,-1,262,303,299,-1,267,304,263,-1,263,304,300,-1,264,305,301,-1,268,305,264,-1,269,306,270,-1,270,306,307,-1,271,308,265,-1,265,308,302,-1,266,309,303,-1,272,309,266,-1,273,310,267,-1,267,310,304,-1,274,311,268,-1,268,311,305,-1,275,312,269,-1,269,312,306,-1,276,313,271,-1,277,313,276,-1,271,313,308,-1,314,313,277,-1,278,315,272,-1,272,315,309,-1,279,316,273,-1,273,316,310,-1,280,317,274,-1,274,317,311,-1,281,318,275,-1,275,318,312,-1,282,319,278,-1,278,319,315,-1,279,320,316,-1,283,320,279,-1,280,321,317,-1,284,321,280,-1,285,322,281,-1,281,322,318,-1,286,323,282,-1,282,323,319,-1,287,324,283,-1,283,324,320,-1,284,325,321,-1,288,325,284,-1,285,326,322,-1,289,326,285,-1,290,327,286,-1,286,327,323,-1,291,328,287,-1,287,328,324,-1,288,329,325,-1,292,329,288,-1,293,330,289,-1,289,330,326,-1,294,331,290,-1,290,331,327,-1,291,332,328,-1,295,332,291,-1,292,333,329,-1,296,333,292,-1,293,334,330,-1,297,334,293,-1,298,335,294,-1,294,335,331,-1,295,336,332,-1,299,336,295,-1,300,337,296,-1,296,337,333,-1,301,338,297,-1,297,338,334,-1,298,339,335,-1,302,339,298,-1,299,340,336,-1,303,340,299,-1,300,341,337,-1,304,341,300,-1,301,342,338,-1,305,342,301,-1,307,343,344,-1,306,343,307,-1,308,345,302,-1,302,345,339,-1,309,346,303,-1,303,346,340,-1,310,347,304,-1,304,347,341,-1,311,348,305,-1,305,348,342,-1,306,349,343,-1,312,349,306,-1,313,350,308,-1,345,350,351,-1,314,350,313,-1,308,350,345,-1,351,350,314,-1,315,352,309,-1,309,352,346,-1,310,353,347,-1,316,353,310,-1,317,354,311,-1,311,354,348,-1,318,355,312,-1,312,355,349,-1,319,356,315,-1,315,356,352,-1,316,357,353,-1,320,357,316,-1,317,358,354,-1,321,358,317,-1,318,359,355,-1,322,359,318,-1,323,360,319,-1,319,360,356,-1,320,361,357,-1,324,361,320,-1,325,362,321,-1,321,362,358,-1,322,363,359,-1,326,363,322,-1,323,364,360,-1,327,364,323,-1,328,365,324,-1,324,365,361,-1,325,366,362,-1,329,366,325,-1,330,367,326,-1,326,367,363,-1,331,368,327,-1,327,368,364,-1,336,369,332,-1,328,369,365,-1,332,369,328,-1,333,370,329,-1,329,370,366,-1,330,371,367,-1,334,371,330,-1,335,372,331,-1,331,372,368,-1,336,373,369,-1,337,374,333,-1,333,374,370,-1,338,375,334,-1,334,375,371,-1,335,376,372,-1,339,376,335,-1,336,377,373,-1,340,377,336,-1,337,378,374,-1,341,378,337,-1,342,379,338,-1,338,379,375,-1,343,380,344,-1,344,380,381,-1,345,382,339,-1,351,382,345,-1,339,382,376,-1,340,383,377,-1,346,383,340,-1,347,384,341,-1,341,384,378,-1,348,385,342,-1,342,385,379,-1,349,386,343,-1,343,386,380,-1,351,387,382,-1,382,387,388,-1,388,387,351,-1,352,389,346,-1,346,389,383,-1,353,390,347,-1,347,390,384,-1,348,391,385,-1,354,391,348,-1,355,392,349,-1,349,392,386,-1,356,393,352,-1,352,393,389,-1,357,394,353,-1,353,394,390,-1,354,395,391,-1,358,395,354,-1,355,396,392,-1,359,396,355,-1,360,397,356,-1,356,397,393,-1,361,398,357,-1,357,398,394,-1,362,399,358,-1,358,399,395,-1,359,400,396,-1,363,400,359,-1,360,401,397,-1,364,401,360,-1,361,402,398,-1,365,402,361,-1,366,403,362,-1,362,403,399,-1,367,404,363,-1,363,404,400,-1,364,405,401,-1,368,405,364,-1,365,406,402,-1,369,406,365,-1,370,407,366,-1,366,407,403,-1,367,408,404,-1,371,408,367,-1,368,409,405,-1,372,409,368,-1,369,410,406,-1,373,410,369,-1,374,411,370,-1,370,411,407,-1,378,411,374,-1,375,412,371,-1,371,412,408,-1,372,413,409,-1,376,413,372,-1,373,414,410,-1,377,414,373,-1,378,415,411,-1,379,416,375,-1,375,416,412,-1,381,417,418,-1,380,417,381,-1,382,419,376,-1,388,419,382,-1,376,419,413,-1,377,420,414,-1,383,420,377,-1,378,421,415,-1,390,421,384,-1,384,421,378,-1,385,422,379,-1,379,422,416,-1,386,423,380,-1,380,423,417,-1,424,425,388,-1,419,425,424,-1,388,425,419,-1,389,426,383,-1,383,426,420,-1,390,427,421,-1,391,428,385,-1,385,428,422,-1,386,429,423,-1,392,429,386,-1,393,430,389,-1,389,430,426,-1,394,431,390,-1,390,431,427,-1,395,432,391,-1,391,432,428,-1,392,433,429,-1,396,433,392,-1,393,434,430,-1,397,434,393,-1,394,435,431,-1,398,435,394,-1,399,436,395,-1,395,436,432,-1,396,437,433,-1,400,437,396,-1,397,438,434,-1,401,438,397,-1,398,439,435,-1,402,439,398,-1,403,440,399,-1,399,440,436,-1,400,441,437,-1,404,441,400,-1,405,442,401,-1,401,442,438,-1,402,443,439,-1,406,443,402,-1,403,444,440,-1,407,444,403,-1,408,445,404,-1,404,445,441,-1,405,446,442,-1,409,446,405,-1,410,447,406,-1,406,447,443,-1,407,448,444,-1,411,448,407,-1,408,449,445,-1,412,449,408,-1,409,450,446,-1,413,450,409,-1,414,451,410,-1,410,451,447,-1,411,452,448,-1,415,452,411,-1,416,453,412,-1,412,453,449,-1,418,454,455,-1,417,454,418,-1,413,456,450,-1,419,456,413,-1,424,456,419,-1,420,457,414,-1,414,457,451,-1,415,458,452,-1,421,458,415,-1,422,459,416,-1,416,459,453,-1,423,460,417,-1,417,460,454,-1,461,462,424,-1,424,462,456,-1,456,462,461,-1,426,463,420,-1,420,463,457,-1,421,464,458,-1,427,464,421,-1,422,465,459,-1,428,465,422,-1,423,466,460,-1,429,466,423,-1,430,467,426,-1,426,467,463,-1,431,468,427,-1,427,468,464,-1,432,469,428,-1,428,469,465,-1,433,470,429,-1,429,470,466,-1,434,471,430,-1,430,471,467,-1,431,472,468,-1,435,472,431,-1,436,473,432,-1,432,473,469,-1,440,473,436,-1,437,474,433,-1,433,474,470,-1,438,475,434,-1,434,475,471,-1,439,476,435,-1,435,476,472,-1,440,477,473,-1,437,478,474,-1,441,478,437,-1,445,478,441,-1,438,479,475,-1,442,479,438,-1,443,480,439,-1,439,480,476,-1,444,481,440,-1,440,481,477,-1,445,482,478,-1,442,483,479,-1,446,483,442,-1,443,484,480,-1,447,484,443,-1,444,485,481,-1,448,485,444,-1,445,486,482,-1,449,486,445,-1,450,487,446,-1,446,487,483,-1,451,488,447,-1,447,488,484,-1,452,489,448,-1,448,489,485,-1,453,490,449,-1,459,490,453,-1,449,490,486,-1,455,491,492,-1,454,491,455,-1,456,493,450,-1,450,493,487,-1,461,493,456,-1,451,494,488,-1,457,494,451,-1,452,495,489,-1,458,495,452,-1,459,496,490,-1,460,497,454,-1,454,497,491,-1,498,499,461,-1,461,499,493,-1,493,499,498,-1,463,500,457,-1,457,500,494,-1,464,501,458,-1,458,501,495,-1,459,502,496,-1,465,502,459,-1,466,503,460,-1,460,503,497,-1,470,503,466,-1,467,504,463,-1,463,504,500,-1,464,505,501,-1,468,505,464,-1,465,506,502,-1,469,506,465,-1,470,507,503,-1,474,507,470,-1,467,508,504,-1,471,508,467,-1,472,509,468,-1,468,509,505,-1,473,510,469,-1,469,510,506,-1,474,511,507,-1,471,512,508,-1,475,512,471,-1,472,513,509,-1,476,513,472,-1,473,514,510,-1,477,514,473,-1,478,515,474,-1,474,515,511,-1,479,516,475,-1,475,516,512,-1,476,517,513,-1,480,517,476,-1,481,518,477,-1,477,518,514,-1,478,519,515,-1,482,519,478,-1,479,520,516,-1,483,520,479,-1,480,521,517,-1,484,521,480,-1,485,522,481,-1,481,522,518,-1,486,523,482,-1,482,523,519,-1,487,524,483,-1,483,524,520,-1,488,525,484,-1,484,525,521,-1,485,526,522,-1,489,526,485,-1,490,527,486,-1,486,527,523,-1,491,528,492,-1,492,528,529,-1,493,530,487,-1,498,530,493,-1,487,530,524,-1,488,531,525,-1,494,531,488,-1,495,532,489,-1,489,532,526,-1,501,532,495,-1,490,533,527,-1,496,533,490,-1,497,534,491,-1,491,534,528,-1,535,536,498,-1,498,536,530,-1,530,536,535,-1,494,537,531,-1,500,537,494,-1,501,538,532,-1,496,539,533,-1,502,539,496,-1,497,540,534,-1,503,540,497,-1,500,541,537,-1,504,541,500,-1,501,542,538,-1,509,542,505,-1,505,542,501,-1,506,543,502,-1,502,543,539,-1,503,544,540,-1,507,544,503,-1,504,545,541,-1,508,545,504,-1,509,546,542,-1,510,547,506,-1,506,547,543,-1,507,548,544,-1,511,548,507,-1,508,549,545,-1,512,549,508,-1,513,550,509,-1,509,550,546,-1,514,551,510,-1,510,551,547,-1,511,552,548,-1,515,552,511,-1,512,553,549,-1,516,553,512,-1,520,553,516,-1,517,554,513,-1,513,554,550,-1,514,555,551,-1,518,555,514,-1,515,556,552,-1,519,556,515,-1,520,557,553,-1,521,558,517,-1,517,558,554,-1,522,559,518,-1,518,559,555,-1,523,560,519,-1,519,560,556,-1,520,561,557,-1,524,561,520,-1,521,562,558,-1,525,562,521,-1,526,563,522,-1,522,563,559,-1,523,564,560,-1,527,564,523,-1,529,565,566,-1,528,565,529,-1,524,567,561,-1,530,567,524,-1,535,567,530,-1,531,568,525,-1,525,568,562,-1,532,569,526,-1,526,569,563,-1,533,570,527,-1,527,570,564,-1,528,571,565,-1,534,571,528,-1,572,573,535,-1,567,573,572,-1,535,573,567,-1,537,574,531,-1,531,574,568,-1,538,575,532,-1,542,575,538,-1,532,575,569,-1,533,576,570,-1,539,576,533,-1,543,576,539,-1,540,577,534,-1,534,577,571,-1,541,578,537,-1,537,578,574,-1,542,579,575,-1,543,580,576,-1,544,581,540,-1,540,581,577,-1,545,582,541,-1,541,582,578,-1,542,583,579,-1,546,583,542,-1,547,584,543,-1,543,584,580,-1,544,585,581,-1,548,585,544,-1,545,586,582,-1,549,586,545,-1,553,586,549,-1,546,587,583,-1,550,587,546,-1,547,588,584,-1,551,588,547,-1,552,589,548,-1,548,589,585,-1,553,590,586,-1,554,591,550,-1,550,591,587,-1,555,592,551,-1,551,592,588,-1,552,593,589,-1,556,593,552,-1,557,594,553,-1,553,594,590,-1,558,595,554,-1,554,595,591,-1,555,596,592,-1,559,596,555,-1,560,597,556,-1,556,597,593,-1,561,598,557,-1,557,598,594,-1,562,599,558,-1,558,599,595,-1,563,600,559,-1,559,600,596,-1,560,601,597,-1,564,601,560,-1,565,602,566,-1,566,602,603,-1,561,604,598,-1,572,604,567,-1,567,604,561,-1,568,605,562,-1,562,605,599,-1,563,606,600,-1,569,606,563,-1,570,607,564,-1,564,607,601,-1,571,608,565,-1,565,608,602,-1,609,610,572,-1,572,610,604,-1,604,610,609,-1,568,611,605,-1,574,611,568,-1,569,612,606,-1,575,612,569,-1,576,613,570,-1,570,613,607,-1,577,614,571,-1,581,614,577,-1,571,614,608,-1,578,615,574,-1,574,615,611,-1,575,616,612,-1,579,616,575,-1,580,617,576,-1,576,617,613,-1,581,618,614,-1,578,619,615,-1,582,619,578,-1,583,620,579,-1,579,620,616,-1,580,621,617,-1,584,621,580,-1,581,622,618,-1,585,622,581,-1,582,623,619,-1,586,623,582,-1,583,624,620,-1,587,624,583,-1,584,625,621,-1,588,625,584,-1,585,626,622,-1,589,626,585,-1,586,627,623,-1,590,627,586,-1,587,628,624,-1,591,628,587,-1,592,629,588,-1,588,629,625,-1,596,629,592,-1,593,630,589,-1,589,630,626,-1,594,631,590,-1,590,631,627,-1,591,632,628,-1,595,632,591,-1,596,633,629,-1,593,634,630,-1,597,634,593,-1,594,635,631,-1,598,635,594,-1,595,636,632,-1,599,636,595,-1,606,637,600,-1,596,637,633,-1,600,637,596,-1,601,638,597,-1,607,638,601,-1,597,638,634,-1,602,639,603,-1,603,639,640,-1,598,641,635,-1,609,641,604,-1,604,641,598,-1,605,642,599,-1,599,642,636,-1,606,643,637,-1,607,644,638,-1,608,645,602,-1,602,645,639,-1,646,647,609,-1,641,647,646,-1,609,647,641,-1,605,648,642,-1,611,648,605,-1,615,648,611,-1,606,649,643,-1,612,649,606,-1,613,650,607,-1,607,650,644,-1,608,651,645,-1,614,651,608,-1,615,652,648,-1,616,653,612,-1,612,653,649,-1,613,654,650,-1,617,654,613,-1,618,655,614,-1,614,655,651,-1,615,656,652,-1,619,656,615,-1,620,657,616,-1,616,657,653,-1,621,658,617,-1,617,658,654,-1,618,659,655,-1,622,659,618,-1,619,660,656,-1,623,660,619,-1,620,661,657,-1,624,661,620,-1,625,662,621,-1,621,662,658,-1,626,663,622,-1,622,663,659,-1,623,664,660,-1,627,664,623,-1,628,665,624,-1,624,665,661,-1,625,666,662,-1,629,666,625,-1,633,666,629,-1,630,667,626,-1,626,667,663,-1,631,668,627,-1,627,668,664,-1,632,669,628,-1,628,669,665,-1,633,670,666,-1,630,671,667,-1,634,671,630,-1,635,672,631,-1,641,672,635,-1,631,672,668,-1,632,673,669,-1,636,673,632,-1,633,674,670,-1,643,674,637,-1,637,674,633,-1,634,675,671,-1,638,675,634,-1,639,676,640,-1,640,676,677,-1,646,678,641,-1,641,678,672,-1,636,679,673,-1,642,679,636,-1,643,680,674,-1,644,681,638,-1,638,681,675,-1,645,682,639,-1,639,682,676,-1,683,684,646,-1,678,684,683,-1,646,684,678,-1,648,685,642,-1,642,685,679,-1,643,686,680,-1,649,686,643,-1,653,686,649,-1,650,687,644,-1,644,687,681,-1,651,688,645,-1,645,688,682,-1,648,689,685,-1,652,689,648,-1,657,690,653,-1,653,690,686,-1,650,691,687,-1,658,691,654,-1,654,691,650,-1,651,692,688,-1,655,692,651,-1,656,693,652,-1,652,693,689,-1,660,693,656,-1,657,694,690,-1,658,695,691,-1,659,696,655,-1,655,696,692,-1,660,697,693,-1,661,698,657,-1,657,698,694,-1,662,699,658,-1,658,699,695,-1,659,700,696,-1,663,700,659,-1,664,701,660,-1,660,701,697,-1,665,702,661,-1,661,702,698,-1,662,703,699,-1,666,703,662,-1,663,704,700,-1,667,704,663,-1,668,705,664,-1,664,705,701,-1,669,706,665,-1,665,706,702,-1,666,707,703,-1,670,707,666,-1,671,708,667,-1,667,708,704,-1,668,709,705,-1,672,709,668,-1,669,710,706,-1,673,710,669,-1,674,711,670,-1,670,711,707,-1,671,712,708,-1,675,712,671,-1,677,713,714,-1,676,713,677,-1,683,715,678,-1,672,715,709,-1,678,715,672,-1,673,716,710,-1,679,716,673,-1,674,717,711,-1,680,717,674,-1,675,718,712,-1,681,718,675,-1,682,719,676,-1,676,719,713,-1,720,721,683,-1,683,721,715,-1,715,721,720,-1,685,722,679,-1,689,722,685,-1,679,722,716,-1,686,723,680,-1,680,723,717,-1,681,724,718,-1,687,724,681,-1,692,725,688,-1,682,725,719,-1,688,725,682,-1,689,726,722,-1,690,727,686,-1,686,727,723,-1,687,728,724,-1,691,728,687,-1,692,729,725,-1,696,729,692,-1,689,730,726,-1,697,730,693,-1,693,730,689,-1,694,731,690,-1,690,731,727,-1,695,732,691,-1,691,732,728,-1,696,733,729,-1,697,734,730,-1,694,735,731,-1,698,735,694,-1,699,736,695,-1,695,736,732,-1,700,737,696,-1,696,737,733,-1,701,738,697,-1,697,738,734,-1,698,739,735,-1,702,739,698,-1,703,740,699,-1,699,740,736,-1,700,741,737,-1,704,741,700,-1,705,742,701,-1,701,742,738,-1,702,743,739,-1,706,743,702,-1,710,743,706,-1,707,744,703,-1,703,744,740,-1,704,745,741,-1,708,745,704,-1,712,745,708,-1,709,746,705,-1,705,746,742,-1,710,747,743,-1,717,748,711,-1,707,748,744,-1,711,748,707,-1,712,749,745,-1,713,750,714,-1,714,750,751,-1,746,752,753,-1,715,752,709,-1,720,752,715,-1,709,752,746,-1,716,754,710,-1,710,754,747,-1,717,755,748,-1,718,756,712,-1,712,756,749,-1,713,757,750,-1,719,757,713,-1,753,758,720,-1,752,758,753,-1,720,758,752,-1,716,759,754,-1,722,759,716,-1,717,760,755,-1,723,760,717,-1,718,761,756,-1,724,761,718,-1,725,762,719,-1,729,762,725,-1,719,762,757,-1,726,763,722,-1,722,763,759,-1,731,764,727,-1,727,764,723,-1,723,764,760,-1,724,765,761,-1,732,765,728,-1,728,765,724,-1,729,766,762,-1,733,766,729,-1,726,767,763,-1,730,767,726,-1,731,768,764,-1,732,769,765,-1,733,770,766,-1,734,771,730,-1,730,771,767,-1,731,772,768,-1,735,772,731,-1,732,773,769,-1,736,773,732,-1,733,774,770,-1,737,774,733,-1,738,775,734,-1,734,775,771,-1,742,775,738,-1,743,776,739,-1,739,776,735,-1,735,776,772,-1,740,777,736,-1,736,777,773,-1,741,778,737,-1,745,778,741,-1,737,778,774,-1,742,779,775,-1,743,780,776,-1,744,781,740,-1,740,781,777,-1,745,782,778,-1,753,783,746,-1,742,783,779,-1,746,783,742,-1,747,784,743,-1,743,784,780,-1,744,785,781,-1,748,785,744,-1,745,786,782,-1,749,786,745,-1,751,787,788,-1,788,787,789,-1,750,787,751,-1,753,790,783,-1,783,790,791,-1,747,792,784,-1,754,792,747,-1,748,793,785,-1,755,793,748,-1,756,794,749,-1,749,794,786,-1,757,795,750,-1,750,795,787,-1,787,795,789,-1,789,795,796,-1,791,797,753,-1,753,797,790,-1,790,797,791,-1,754,798,792,-1,759,798,754,-1,755,799,793,-1,760,799,755,-1,761,800,756,-1,756,800,794,-1,757,801,795,-1,796,801,802,-1,795,801,796,-1,762,801,757,-1,759,803,798,-1,763,803,759,-1,760,804,799,-1,764,804,760,-1,765,805,761,-1,761,805,800,-1,801,806,802,-1,802,806,807,-1,766,806,762,-1,762,806,801,-1,763,808,803,-1,767,808,763,-1,768,809,764,-1,764,809,804,-1,769,810,765,-1,765,810,805,-1,770,811,766,-1,807,811,812,-1,806,811,807,-1,766,811,806,-1,771,813,767,-1,767,813,808,-1,776,814,772,-1,768,814,809,-1,772,814,768,-1,773,815,769,-1,769,815,810,-1,811,816,812,-1,812,816,817,-1,770,816,811,-1,774,816,770,-1,771,818,813,-1,775,818,771,-1,776,819,814,-1,777,820,773,-1,773,820,815,-1,816,821,817,-1,774,821,816,-1,778,821,774,-1,817,821,822,-1,779,823,775,-1,775,823,818,-1,780,824,776,-1,784,824,780,-1,776,824,819,-1,777,825,820,-1,785,825,781,-1,781,825,777,-1,786,826,782,-1,782,826,778,-1,821,826,822,-1,822,826,827,-1,778,826,821,-1,779,828,823,-1,783,828,779,-1,791,828,783,-1,784,829,824,-1,785,830,825,-1,786,831,826,-1,826,831,827,-1,827,831,832,-1,828,833,834,-1,791,833,828,-1,792,835,784,-1,784,835,829,-1,793,836,785,-1,785,836,830,-1,794,837,786,-1,786,837,831,-1,831,837,832,-1,832,837,838,-1,834,839,791,-1,833,839,834,-1,791,839,833,-1,792,840,835,-1,798,840,792,-1,793,841,836,-1,799,841,793,-1,794,842,837,-1,800,842,794,-1,837,842,838,-1,838,842,843,-1,805,842,800,-1,798,844,840,-1,803,844,798,-1,799,845,841,-1,804,845,799,-1,842,846,843,-1,805,846,842,-1,843,846,847,-1,803,848,844,-1,808,848,803,-1,804,849,845,-1,809,849,804,-1,805,850,846,-1,810,850,805,-1,847,850,851,-1,846,850,847,-1,813,852,808,-1,808,852,848,-1,809,853,849,-1,814,853,809,-1,815,854,810,-1,810,854,850,-1,851,854,855,-1,850,854,851,-1,818,856,813,-1,813,856,852,-1,819,857,814,-1,814,857,853,-1,854,858,855,-1,855,858,859,-1,815,858,854,-1,820,858,815,-1,823,860,818,-1,828,860,823,-1,818,860,856,-1,824,861,819,-1,819,861,857,-1,825,862,820,-1,859,862,863,-1,858,862,859,-1,820,862,858,-1,828,864,860,-1,834,864,828,-1,824,865,861,-1,829,865,824,-1,825,866,862,-1,830,866,825,-1,863,866,867,-1,862,866,863,-1,864,868,869,-1,834,868,864,-1,835,870,829,-1,829,870,865,-1,836,871,830,-1,830,871,866,-1,866,871,867,-1,867,871,872,-1,869,873,834,-1,868,873,869,-1,834,873,868,-1,840,874,835,-1,835,874,870,-1,836,875,871,-1,841,875,836,-1,844,876,840,-1,840,876,874,-1,848,876,844,-1,841,877,875,-1,849,877,845,-1,845,877,841,-1,848,878,876,-1,849,879,877,-1,848,880,878,-1,852,880,848,-1,849,881,879,-1,853,881,849,-1,872,882,883,-1,875,882,871,-1,871,882,872,-1,856,884,852,-1,852,884,880,-1,857,885,853,-1,853,885,881,-1,875,886,882,-1,877,886,875,-1,882,886,883,-1,883,886,887,-1,860,888,856,-1,856,888,884,-1,861,889,857,-1,857,889,885,-1,877,890,886,-1,879,890,877,-1,887,890,891,-1,886,890,887,-1,860,892,888,-1,869,892,864,-1,864,892,860,-1,865,893,861,-1,861,893,889,-1,881,894,879,-1,879,894,890,-1,891,894,895,-1,890,894,891,-1,892,896,897,-1,869,896,892,-1,870,898,865,-1,865,898,893,-1,894,899,895,-1,885,899,881,-1,895,899,900,-1,881,899,894,-1,897,901,869,-1,896,901,897,-1,869,901,896,-1,874,902,870,-1,870,902,898,-1,889,903,885,-1,900,903,904,-1,899,903,900,-1,885,903,899,-1,874,905,902,-1,876,905,874,-1,889,906,903,-1,903,906,904,-1,904,906,907,-1,893,906,889,-1,878,908,876,-1,876,908,905,-1,906,909,907,-1,893,909,906,-1,907,909,910,-1,898,909,893,-1,880,911,878,-1,884,911,880,-1,878,911,908,-1,902,912,898,-1,909,912,910,-1,910,912,913,-1,898,912,909,-1,884,914,911,-1,888,914,884,-1,902,915,912,-1,905,915,902,-1,888,916,914,-1,911,917,908,-1,905,917,915,-1,908,917,905,-1,888,918,916,-1,892,918,888,-1,897,918,892,-1,911,919,917,-1,897,920,918,-1,911,921,919,-1,914,921,911,-1,912,922,913,-1,915,922,912,-1,913,922,923,-1,924,925,897,-1,897,925,920,-1,916,926,914,-1,914,926,921,-1,917,927,915,-1,915,927,922,-1,922,927,923,-1,923,927,928,-1,916,929,926,-1,918,929,916,-1,919,930,917,-1,917,930,927,-1,927,930,928,-1,928,930,931,-1,918,932,929,-1,920,932,918,-1,919,933,930,-1,921,933,919,-1,930,933,931,-1,931,933,934,-1,920,935,932,-1,924,935,925,-1,925,935,920,-1,926,936,921,-1,921,936,933,-1,933,936,934,-1,934,936,937,-1,929,938,926,-1,926,938,936,-1,936,938,937,-1,937,938,939,-1,932,940,929,-1,929,940,938,-1,938,940,939,-1,939,940,941,-1,942,943,924,-1,935,943,932,-1,924,943,935,-1,932,943,940,-1,940,943,941,-1,941,943,944,-1,944,943,945,-1,945,943,942,-1]
coord Coordinate { point [-0.889762 -1.5059 1.05315,-0.912244 -1.5059 1.05371,-0.889762 -1.50583 1.05605,-0.889762 -1.44975 1.11213,-0.909131 -1.44939 1.11262,-0.889762 -1.44685 1.1122,-0.909128 -1.44685 1.11268,-0.889762 -1.45264 1.11192,-0.909139 -1.45192 1.11246,-0.889762 -1.45551 1.11156,-0.909152 -1.45445 1.11219,-0.889762 -1.45837 1.11107,-0.909171 -1.45696 1.11181,-0.889762 -1.4612 1.11043,-0.909195 -1.45945 1.11132,-0.889762 -1.46399 1.10966,-0.909224 -1.46192 1.11073,-0.909253 -1.46399 1.11014,-0.889762 -1.46674 1.10875,-0.909298 -1.46674 1.10923,-0.889762 -1.46945 1.10771,-0.909343 -1.46914 1.10831,-0.928453 -1.44939 1.11405,-0.928448 -1.44685 1.11411,-0.889762 -1.4721 1.10653,-0.909393 -1.47147 1.10731,-0.928469 -1.45192 1.11389,-0.889762 -1.47469 1.10523,-0.909447 -1.47375 1.1062,-0.928496 -1.45445 1.11362,-0.909507 -1.47599 1.105,-0.889762 -1.47721 1.1038,-0.928533 -1.45696 1.11324,-0.889762 -1.47966 1.10225,-0.90957 -1.47817 1.1037,-0.928581 -1.45945 1.11275,-0.889762 -1.48203 1.10058,-0.909639 -1.48029 1.10231,-0.92864 -1.46192 1.11216,-0.9097 -1.48203 1.10107,-0.928697 -1.46399 1.11158,-0.889762 -1.48431 1.0988,-0.909788 -1.48431 1.09929,-0.928787 -1.46674 1.11067,-0.889762 -1.48651 1.0969,-0.90987 -1.48627 1.09762,-0.928877 -1.46914 1.10976,-0.947681 -1.44939 1.11643,-0.947673 -1.44685 1.11649,-0.889762 -1.48861 1.09491,-0.909955 -1.48812 1.09589,-0.928976 -1.47147 1.10876,-0.947705 -1.45192 1.11627,-0.889762 -1.4906 1.09281,-0.910044 -1.48989 1.09408,-0.929085 -1.47375 1.10765,-0.947746 -1.45445 1.116,-0.889762 -1.4925 1.09061,-0.910137 -1.49159 1.0922,-0.929203 -1.47599 1.10645,-0.947802 -1.45696 1.11562,-0.889762 -1.49428 1.08833,-0.910233 -1.4932 1.09024,-0.929331 -1.47817 1.10516,-0.947873 -1.45945 1.11514,-0.889762 -1.49595 1.08596,-0.910333 -1.49473 1.08822,-0.929468 -1.48029 1.10378,-0.947961 -1.46192 1.11455,-0.910419 -1.49595 1.08647,-0.92959 -1.48203 1.10254,-0.948047 -1.46399 1.11397,-0.889762 -1.4975 1.08351,-0.91054 -1.4975 1.08402,-0.929765 -1.48431 1.10077,-0.948181 -1.46674 1.11307,-0.889762 -1.49893 1.08099,-0.910649 -1.49877 1.0818,-0.92993 -1.48627 1.0991,-0.948316 -1.46914 1.11216,-0.966769 -1.44939 1.11975,-0.966759 -1.44685 1.11981,-0.889762 -1.50023 1.0784,-0.91076 -1.49993 1.07955,-0.9301 -1.48812 1.09737,-0.948464 -1.47147 1.11117,-0.966801 -1.45192 1.11959,-0.889762 -1.50141 1.07575,-0.910873 -1.50099 1.07725,-0.930278 -1.48989 1.09557,-0.948627 -1.47375 1.11007,-0.966855 -1.45445 1.11932,-0.889762 -1.50245 1.07304,-0.910988 -1.50195 1.07491,-0.930463 -1.49159 1.0937,-0.948805 -1.47599 1.10888,-0.966929 -1.45696 1.11895,-0.889762 -1.50336 1.07029,-0.911105 -1.50281 1.07253,-0.930655 -1.4932 1.09175,-0.948996 -1.47817 1.10759,-0.967025 -1.45945 1.11847,-0.889762 -1.50413 1.0675,-0.911224 -1.50357 1.07012,-0.930854 -1.49473 1.08974,-0.9492 -1.48029 1.10622,-0.967141 -1.46192 1.11789,-0.911327 -1.50413 1.06803,-0.931027 -1.49595 1.08799,-0.949383 -1.48203 1.10499,-0.967256 -1.46399 1.11731,-0.889762 -1.50477 1.06467,-0.911466 -1.50477 1.06521,-0.931267 -1.4975 1.08555,-0.949645 -1.48431 1.10323,-0.967434 -1.46674 1.11642,-0.889762 -1.50526 1.06181,-0.911589 -1.50521 1.06271,-0.931486 -1.49877 1.08334,-0.949892 -1.48627 1.10157,-0.967613 -1.46914 1.11552,-0.985671 -1.44939 1.12401,-0.985658 -1.44685 1.12406,-0.889762 -1.50562 1.05894,-0.911712 -1.50554 1.06021,-0.931707 -1.49993 1.0811,-0.950147 -1.48812 1.09985,-0.967811 -1.47147 1.11453,-0.985711 -1.45192 1.12385,-0.911837 -1.50577 1.05769,-0.931933 -1.50099 1.07881,-0.950413 -1.48989 1.09806,-0.968027 -1.47375 1.11344,-0.985777 -1.45445 1.12358,-0.932163 -1.50195 1.07648,-0.95069 -1.49159 1.0962,-0.968263 -1.47599 1.11226,-0.98587 -1.45696 1.12321,-0.932397 -1.50281 1.07411,-0.950978 -1.4932 1.09427,-0.968517 -1.47817 1.11099,-0.985989 -1.45945 1.12274,-0.932635 -1.50357 1.0717,-0.951275 -1.49473 1.09227,-0.968789 -1.48029 1.10962,-0.986134 -1.46192 1.12216,-0.93284 -1.50413 1.06962,-0.951534 -1.49595 1.09052,-0.969032 -1.48203 1.10841,-0.986277 -1.46399 1.12159,-0.933118 -1.50477 1.06681,-0.951894 -1.4975 1.0881,-0.96938 -1.48431 1.10666,-0.986499 -1.46674 1.12071,-0.933363 -1.50521 1.06433,-0.952221 -1.49877 1.0859,-0.969708 -1.48627 1.10501,-0.986722 -1.46914 1.11982,-1.00434 -1.44939 1.12919,-1.00432 -1.44685 1.12924,-0.93361 -1.50554 1.06183,-0.952552 -1.49993 1.08368,-0.970047 -1.48812 1.10332,-0.986968 -1.47147 1.11884,-1.00439 -1.45192 1.12903,-0.933858 -1.50577 1.05932,-0.934671 -1.5059 1.05538,-0.952891 -1.50099 1.0814,-0.970401 -1.48989 1.10154,-0.987238 -1.47375 1.11777,-1.00447 -1.45445 1.12877,-0.953235 -1.50195 1.07908,-0.97077 -1.49159 1.09969,-0.987531 -1.47599 1.1166,-1.00458 -1.45696 1.1284,-0.953586 -1.50281 1.07673,-0.971152 -1.4932 1.09777,-0.987848 -1.47817 1.11534,-1.00472 -1.45945 1.12794,-0.953941 -1.50357 1.07434,-0.971548 -1.49473 1.09579,-0.988186 -1.48029 1.11399,-1.00489 -1.46192 1.12737,-0.954249 -1.50413 1.07227,-0.971892 -1.49595 1.09407,-0.988489 -1.48203 1.11279,-1.00506 -1.46399 1.12681,-0.954665 -1.50477 1.06947,-0.972371 -1.4975 1.09166,-0.988923 -1.48431 1.11106,-1.00533 -1.46674 1.12594,-0.955032 -1.50521 1.067,-0.972805 -1.49877 1.08948,-0.989331 -1.48627 1.10943,-1.0056 -1.46914 1.12506,-1.02273 -1.44939 1.13528,-1.02271 -1.44685 1.13533,-0.955401 -1.50554 1.06452,-0.973246 -1.49993 1.08728,-0.989753 -1.48812 1.10775,-1.00589 -1.47147 1.12409,-1.02279 -1.45192 1.13513,-0.955772 -1.50577 1.06203,-0.956987 -1.5059 1.05817,-0.973696 -1.50099 1.08502,-0.990194 -1.48989 1.106,-1.00621 -1.47375 1.12303,-1.02288 -1.45445 1.13487,-0.974154 -1.50195 1.08272,-0.990653 -1.49159 1.10417,-1.00656 -1.47599 1.12188,-1.02301 -1.45696 1.13451,-0.97462 -1.50281 1.08039,-0.991129 -1.4932 1.10227,-1.00694 -1.47817 1.12064,-1.02317 -1.45945 1.13405,-0.975092 -1.50357 1.07802,-0.991622 -1.49473 1.10031,-1.00735 -1.48029 1.11931,-1.02337 -1.46192 1.13349,-0.975502 -1.50413 1.07596,-0.992051 -1.49595 1.0986,-1.00771 -1.48203 1.11812,-1.02357 -1.46399 1.13294,-0.976055 -1.50477 1.07319,-0.992647 -1.4975 1.09623,-1.00823 -1.48431 1.11641,-1.02388 -1.46674 1.13208,-0.976542 -1.50521 1.07075,-0.993189 -1.49877 1.09407,-1.00871 -1.48627 1.11481,-1.02419 -1.46914 1.13122,-1.0408 -1.44939 1.14227,-1.04078 -1.44685 1.14232,-0.977033 -1.50554 1.06828,-0.993737 -1.49993 1.09189,-1.00922 -1.48812 1.11315,-1.02453 -1.47147 1.13027,-1.04087 -1.45192 1.14212,-0.977526 -1.50577 1.06581,-0.979138 -1.5059 1.06206,-0.994298 -1.50099 1.08966,-1.00974 -1.48989 1.11142,-1.0249 -1.47375 1.12923,-1.04097 -1.45445 1.14187,-0.994868 -1.50195 1.08739,-1.01029 -1.49159 1.10962,-1.02531 -1.47599 1.12809,-1.04112 -1.45696 1.14151,-0.995448 -1.50281 1.08507,-1.01086 -1.4932 1.10775,-1.02575 -1.47817 1.12687,-1.0413 -1.45945 1.14106,-0.996037 -1.50357 1.08273,-1.01145 -1.49473 1.10581,-1.02622 -1.48029 1.12556,-1.04153 -1.46192 1.14051,-0.996547 -1.50413 1.0807,-1.01196 -1.49595 1.10413,-1.02664 -1.48203 1.12439,-1.04176 -1.46399 1.13997,-0.997235 -1.50477 1.07796,-1.01267 -1.4975 1.10179,-1.02724 -1.48431 1.12271,-1.04211 -1.46674 1.13913,-0.997843 -1.50521 1.07554,-1.01332 -1.49877 1.09966,-1.02781 -1.48627 1.12113,-1.04246 -1.46914 1.13828,-1.05851 -1.44939 1.15014,-1.05848 -1.44685 1.15019,-0.998454 -1.50554 1.07311,-1.01398 -1.49993 1.0975,-1.02839 -1.48812 1.1195,-1.04284 -1.47147 1.13735,-1.05858 -1.45192 1.14999,-0.999068 -1.50577 1.07066,-1.00107 -1.5059 1.06704,-1.01465 -1.50099 1.0953,-1.029 -1.48989 1.1178,-1.04327 -1.47375 1.13633,-1.05869 -1.45445 1.14974,-1.01533 -1.50195 1.09306,-1.02964 -1.49159 1.11603,-1.04373 -1.47599 1.13522,-1.05886 -1.45696 1.1494,-1.01602 -1.50281 1.09078,-1.0303 -1.4932 1.11419,-1.04423 -1.47817 1.13402,-1.05907 -1.45945 1.14896,-1.01672 -1.50357 1.08847,-1.03098 -1.49473 1.11228,-1.04476 -1.48029 1.13273,-1.05932 -1.46192 1.14842,-1.01733 -1.50413 1.08647,-1.03158 -1.49595 1.11063,-1.04524 -1.48203 1.13159,-1.05957 -1.46399 1.14789,-1.01816 -1.50477 1.08377,-1.0324 -1.4975 1.10832,-1.04592 -1.48431 1.12994,-1.05996 -1.46674 1.14707,-1.01888 -1.50521 1.08138,-1.03316 -1.49877 1.10623,-1.04657 -1.48627 1.12839,-1.06036 -1.46914 1.14624,-1.0758 -1.44939 1.15887,-1.07578 -1.44685 1.15892,-1.01961 -1.50554 1.07898,-1.03392 -1.49993 1.10411,-1.04723 -1.48812 1.12679,-1.06079 -1.47147 1.14533,-1.07588 -1.45192 1.15873,-1.02035 -1.50577 1.07656,-1.02272 -1.5059 1.07311,-1.03469 -1.50099 1.10194,-1.04793 -1.48989 1.12512,-1.06126 -1.47375 1.14433,-1.07601 -1.45445 1.15849,-1.03548 -1.50195 1.09974,-1.04865 -1.49159 1.12338,-1.06178 -1.47599 1.14324,-1.07619 -1.45696 1.15815,-1.03629 -1.50281 1.0975,-1.0494 -1.4932 1.12157,-1.06234 -1.47817 1.14207,-1.07642 -1.45945 1.15772,-1.0371 -1.50357 1.09522,-1.05017 -1.49473 1.11971,-1.06293 -1.48029 1.14081,-1.0767 -1.46192 1.15719,-1.03781 -1.50413 1.09325,-1.05085 -1.49595 1.11808,-1.06346 -1.48203 1.13969,-1.07698 -1.46399 1.15668,-1.03877 -1.50477 1.09059,-1.05179 -1.4975 1.11582,-1.06423 -1.48431 1.13808,-1.07741 -1.46674 1.15588,-1.03961 -1.50521 1.08824,-1.05264 -1.49877 1.11377,-1.06495 -1.48627 1.13656,-1.07784 -1.46914 1.15507,-1.09265 -1.44939 1.16844,-1.09262 -1.44685 1.16849,-1.04046 -1.50554 1.08588,-1.05351 -1.49993 1.11169,-1.06569 -1.48812 1.135,-1.07832 -1.47147 1.15418,-1.09273 -1.45192 1.1683,-1.04131 -1.50577 1.08351,-1.04405 -1.5059 1.08025,-1.05439 -1.50099 1.10956,-1.06647 -1.48989 1.13336,-1.07884 -1.47375 1.1532,-1.09287 -1.45445 1.16807,-1.05529 -1.50195 1.1074,-1.06727 -1.49159 1.13166,-1.07941 -1.47599 1.15214,-1.09307 -1.45696 1.16774,-1.0562 -1.50281 1.1052,-1.06811 -1.4932 1.12989,-1.08002 -1.47817 1.151,-1.09332 -1.45945 1.16732,-1.05713 -1.50357 1.10297,-1.06898 -1.49473 1.12806,-1.08068 -1.48029 1.14977,-1.09363 -1.46192 1.16681,-1.05793 -1.50413 1.10103,-1.06973 -1.49595 1.12647,-1.08127 -1.48203 1.14868,-1.09393 -1.46399 1.16631,-1.05901 -1.50477 1.09842,-1.07078 -1.4975 1.12426,-1.08211 -1.48431 1.1471,-1.0944 -1.46674 1.16553,-1.05997 -1.50521 1.09612,-1.07173 -1.49877 1.12225,-1.0829 -1.48627 1.14563,-1.09487 -1.46914 1.16474,-1.109 -1.44939 1.17883,-1.10897 -1.44685 1.17888,-1.06093 -1.50554 1.0938,-1.0727 -1.49993 1.12022,-1.08372 -1.48812 1.1441,-1.09539 -1.47147 1.16388,-1.10909 -1.45192 1.17869,-1.0619 -1.50577 1.09147,-1.065 -1.5059 1.08843,-1.07368 -1.50099 1.11814,-1.08458 -1.48989 1.1425,-1.09596 -1.47375 1.16293,-1.10925 -1.45445 1.17847,-1.07469 -1.50195 1.11602,-1.08547 -1.49159 1.14084,-1.09658 -1.47599 1.1619,-1.10946 -1.45696 1.17815,-1.07571 -1.50281 1.11387,-1.08639 -1.4932 1.13912,-1.09725 -1.47817 1.16078,-1.10973 -1.45945 1.17775,-1.07675 -1.50357 1.11169,-1.08735 -1.49473 1.13734,-1.09797 -1.48029 1.15959,-1.11006 -1.46192 1.17725,-1.07764 -1.50413 1.1098,-1.08818 -1.49595 1.13579,-1.09861 -1.48203 1.15853,-1.11039 -1.46399 1.17676,-1.07885 -1.50477 1.10724,-1.08933 -1.4975 1.13363,-1.09953 -1.48431 1.157,-1.11089 -1.46674 1.17601,-1.07992 -1.50521 1.10499,-1.09039 -1.49877 1.13167,-1.10039 -1.48627 1.15556,-1.11141 -1.46914 1.17525,-1.12483 -1.44939 1.19001,-1.12479 -1.44685 1.19005,-1.081 -1.50554 1.10272,-1.09145 -1.49993 1.12968,-1.10128 -1.48812 1.15408,-1.11197 -1.47147 1.17441,-1.12492 -1.45192 1.18988,-1.08551 -1.5059 1.09765,-1.08208 -1.50577 1.10044,-1.09254 -1.50099 1.12766,-1.10222 -1.48989 1.15253,-1.11258 -1.47375 1.17349,-1.12509 -1.45445 1.18966,-1.09364 -1.50195 1.12559,-1.10319 -1.49159 1.15091,-1.11325 -1.47599 1.17249,-1.12531 -1.45696 1.18935,-1.09477 -1.50281 1.12349,-1.1042 -1.4932 1.14924,-1.11398 -1.47817 1.17141,-1.12561 -1.45945 1.18896,-1.09591 -1.50357 1.12136,-1.10524 -1.49473 1.1475,-1.11475 -1.48029 1.17025,-1.12596 -1.46192 1.18849,-1.0969 -1.50413 1.11952,-1.10614 -1.49595 1.14599,-1.11544 -1.48203 1.16922,-1.12631 -1.46399 1.18801,-1.09823 -1.50477 1.11703,-1.10741 -1.4975 1.1439,-1.11644 -1.48431 1.16774,-1.12685 -1.46674 1.18729,-1.09941 -1.50521 1.11483,-1.10855 -1.49877 1.14199,-1.11737 -1.48627 1.16635,-1.1274 -1.46914 1.18655,-1.14008 -1.44939 1.20196,-1.14005 -1.44685 1.202,-1.1006 -1.50554 1.11262,-1.10971 -1.49993 1.14006,-1.11833 -1.48812 1.16491,-1.128 -1.47147 1.18574,-1.14018 -1.45192 1.20183,-1.10554 -1.5059 1.10787,-1.10179 -1.50577 1.11039,-1.1109 -1.50099 1.13809,-1.11934 -1.48989 1.16341,-1.12867 -1.47375 1.18485,-1.14036 -1.45445 1.20162,-1.1121 -1.50195 1.13608,-1.12039 -1.49159 1.16184,-1.12938 -1.47599 1.18388,-1.1406 -1.45696 1.20132,-1.11333 -1.50281 1.13404,-1.12148 -1.4932 1.16022,-1.13016 -1.47817 1.18284,-1.14091 -1.45945 1.20095,-1.11458 -1.50357 1.13197,-1.12261 -1.49473 1.15854,-1.13099 -1.48029 1.18173,-1.14129 -1.46192 1.20049,-1.11566 -1.50413 1.13017,-1.12359 -1.49595 1.15707,-1.13173 -1.48203 1.18073,-1.14166 -1.46399 1.20004,-1.11711 -1.50477 1.12775,-1.12495 -1.4975 1.15504,-1.1328 -1.48431 1.1793,-1.14224 -1.46674 1.19933,-1.1184 -1.50521 1.12562,-1.12619 -1.49877 1.15319,-1.1338 -1.48627 1.17796,-1.14282 -1.46914 1.19862,-1.15473 -1.44939 1.21464,-1.15469 -1.44685 1.21468,-1.11969 -1.50554 1.12346,-1.12744 -1.49993 1.15132,-1.13483 -1.48812 1.17657,-1.14346 -1.47147 1.19785,-1.15484 -1.45192 1.21452,-1.12504 -1.5059 1.11908,-1.12099 -1.50577 1.1213,-1.12872 -1.50099 1.14941,-1.13591 -1.48989 1.17511,-1.14417 -1.47375 1.19699,-1.15502 -1.45445 1.21431,-1.13003 -1.50195 1.14747,-1.13704 -1.49159 1.1736,-1.14493 -1.47599 1.19606,-1.15528 -1.45696 1.21403,-1.13135 -1.50281 1.14549,-1.1382 -1.4932 1.17203,-1.14576 -1.47817 1.19506,-1.15561 -1.45945 1.21367,-1.1327 -1.50357 1.14348,-1.13941 -1.49473 1.17041,-1.14665 -1.48029 1.19398,-1.15601 -1.46192 1.21323,-1.13386 -1.50413 1.14174,-1.14046 -1.49595 1.169,-1.14743 -1.48203 1.19303,-1.1564 -1.46399 1.2128,-1.13544 -1.50477 1.13939,-1.14192 -1.4975 1.16703,-1.14857 -1.48431 1.19165,-1.15701 -1.46674 1.21212,-1.13683 -1.50521 1.13732,-1.14325 -1.49877 1.16525,-1.14963 -1.48627 1.19036,-1.15763 -1.46914 1.21145,-1.16874 -1.44939 1.22802,-1.1687 -1.44685 1.22806,-1.13822 -1.50554 1.13524,-1.1446 -1.49993 1.16344,-1.15073 -1.48812 1.18902,-1.15831 -1.47147 1.2107,-1.16885 -1.45192 1.22791,-1.14396 -1.5059 1.13124,-1.13963 -1.50577 1.13314,-1.14597 -1.50099 1.1616,-1.15189 -1.48989 1.18762,-1.15906 -1.47375 1.20988,-1.16904 -1.45445 1.22772,-1.14737 -1.50195 1.15972,-1.15308 -1.49159 1.18617,-1.15987 -1.47599 1.20899,-1.16931 -1.45696 1.22745,-1.14879 -1.50281 1.15781,-1.15433 -1.4932 1.18466,-1.16074 -1.47817 1.20803,-1.16966 -1.45945 1.2271,-1.15023 -1.50357 1.15587,-1.15561 -1.49473 1.1831,-1.16168 -1.48029 1.207,-1.17008 -1.46192 1.22668,-1.15148 -1.50413 1.15419,-1.15673 -1.49595 1.18174,-1.16251 -1.48203 1.20608,-1.1705 -1.46399 1.22627,-1.15317 -1.50477 1.15192,-1.15829 -1.4975 1.17985,-1.16371 -1.48431 1.20476,-1.17114 -1.46674 1.22563,-1.15466 -1.50521 1.14992,-1.1597 -1.49877 1.17813,-1.16484 -1.48627 1.20352,-1.17179 -1.46914 1.22498,-1.18207 -1.44939 1.24208,-1.18203 -1.44685 1.24212,-1.15616 -1.50554 1.14791,-1.16113 -1.49993 1.17639,-1.16601 -1.48812 1.20224,-1.17251 -1.47147 1.22427,-1.18219 -1.45192 1.24197,-1.16225 -1.5059 1.14433,-1.15766 -1.50577 1.14588,-1.16259 -1.50099 1.17462,-1.16722 -1.48989 1.2009,-1.17329 -1.47375 1.22348,-1.18239 -1.45445 1.24179,-1.16408 -1.50195 1.17281,-1.16849 -1.49159 1.19951,-1.17415 -1.47599 1.22263,-1.18267 -1.45696 1.24153,-1.1656 -1.50281 1.17097,-1.16981 -1.4932 1.19806,-1.17507 -1.47817 1.22172,-1.18304 -1.45945 1.24121,-1.16714 -1.50357 1.1691,-1.17117 -1.49473 1.19656,-1.17605 -1.48029 1.22074,-1.18348 -1.46192 1.24081,-1.16847 -1.50413 1.16749,-1.17235 -1.49595 1.19526,-1.17693 -1.48203 1.21986,-1.18391 -1.46399 1.24042,-1.17026 -1.50477 1.16531,-1.174 -1.4975 1.19345,-1.17819 -1.48431 1.2186,-1.18459 -1.46674 1.23981,-1.17185 -1.50521 1.16338,-1.1755 -1.49877 1.19181,-1.17938 -1.48627 1.21742,-1.18527 -1.46914 1.23919,-1.19469 -1.44939 1.25678,-1.19465 -1.44685 1.25682,-1.17344 -1.50554 1.16145,-1.17701 -1.49993 1.19014,-1.18061 -1.48812 1.2162,-1.18602 -1.47147 1.23852,-1.19482 -1.45192 1.25668,-1.17987 -1.5059 1.1583,-1.17505 -1.50577 1.1595,-1.17856 -1.50099 1.18844,-1.18189 -1.48989 1.21492,-1.18684 -1.47375 1.23777,-1.19503 -1.45445 1.2565,-1.18014 -1.50195 1.18671,-1.18323 -1.49159 1.21359,-1.18774 -1.47599 1.23697,-1.19532 -1.45696 1.25626,-1.18174 -1.50281 1.18494,-1.18461 -1.4932 1.21221,-1.1887 -1.47817 1.2361,-1.1957 -1.45945 1.25595,-1.18337 -1.50357 1.18316,-1.18604 -1.49473 1.21078,-1.18973 -1.48029 1.23516,-1.19616 -1.46192 1.25558,-1.18478 -1.50413 1.18161,-1.18729 -1.49595 1.20954,-1.19065 -1.48203 1.23433,-1.19662 -1.46399 1.25521,-1.18668 -1.50477 1.17952,-1.18903 -1.4975 1.20781,-1.19198 -1.48431 1.23314,-1.19732 -1.46674 1.25463,-1.18835 -1.50521 1.17767,-1.1906 -1.49877 1.20624,-1.19322 -1.48627 1.23201,-1.19803 -1.46914 1.25405,-1.20658 -1.44939 1.27208,-1.20653 -1.44685 1.27211,-1.19004 -1.50554 1.17582,-1.1922 -1.49993 1.20465,-1.19451 -1.48812 1.23085,-1.19881 -1.47147 1.25341,-1.20671 -1.45192 1.27198,-1.19677 -1.5059 1.17314,-1.19174 -1.50577 1.17395,-1.19383 -1.50099 1.20303,-1.19585 -1.48989 1.22964,-1.19967 -1.47375 1.25271,-1.20693 -1.45445 1.27182,-1.19549 -1.50195 1.20138,-1.19725 -1.49159 1.22838,-1.2006 -1.47599 1.25195,-1.20723 -1.45696 1.2716,-1.19717 -1.50281 1.1997,-1.1987 -1.4932 1.22707,-1.20161 -1.47817 1.25113,-1.20763 -1.45945 1.27131,-1.19889 -1.50357 1.19799,-1.2002 -1.49473 1.22571,-1.20269 -1.48029 1.25025,-1.20811 -1.46192 1.27095,-1.20037 -1.50413 1.19651,-1.20151 -1.49595 1.22453,-1.20365 -1.48203 1.24946,-1.20858 -1.46399 1.2706,-1.20237 -1.50477 1.19452,-1.20333 -1.4975 1.22289,-1.20503 -1.48431 1.24833,-1.20931 -1.46674 1.27006,-1.20414 -1.50521 1.19276,-1.20498 -1.49877 1.2214,-1.20633 -1.48627 1.24727,-1.21005 -1.46914 1.26952,-1.21769 -1.44939 1.28795,-1.21765 -1.44685 1.28798,-1.20592 -1.50554 1.19099,-1.20665 -1.49993 1.21989,-1.20767 -1.48812 1.24618,-1.21086 -1.47147 1.26892,-1.21783 -1.45192 1.28786,-1.21292 -1.5059 1.18879,-1.2077 -1.50577 1.18921,-1.20836 -1.50099 1.21835,-1.20907 -1.48989 1.24503,-1.21175 -1.47375 1.26826,-1.21806 -1.45445 1.28771,-1.2101 -1.50195 1.21678,-1.21053 -1.49159 1.24384,-1.21272 -1.47599 1.26755,-1.21837 -1.45696 1.2875,-1.21187 -1.50281 1.21519,-1.21204 -1.4932 1.2426,-1.21376 -1.47817 1.26678,-1.21878 -1.45945 1.28723,-1.21366 -1.50357 1.21357,-1.21361 -1.49473 1.24132,-1.21488 -1.48029 1.26595,-1.21928 -1.46192 1.2869,-1.21521 -1.50413 1.21217,-1.21497 -1.49595 1.24021,-1.21588 -1.48203 1.26521,-1.21977 -1.46399 1.28657,-1.21731 -1.50477 1.21027,-1.21687 -1.4975 1.23866,-1.21732 -1.48431 1.26415,-1.22052 -1.46674 1.28607,-1.21916 -1.50521 1.2086,-1.21859 -1.49877 1.23725,-1.21867 -1.48627 1.26316,-1.22129 -1.46914 1.28556,-1.22802 -1.44939 1.30434,-1.22797 -1.44685 1.30437,-1.22103 -1.50554 1.20692,-1.22034 -1.49993 1.23583,-1.22006 -1.48812 1.26213,-1.22213 -1.47147 1.285,-1.22816 -1.45192 1.30426,-1.22826 -1.5059 1.20523,-1.2229 -1.50577 1.20523,-1.22212 -1.50099 1.23437,-1.22152 -1.48989 1.26105,-1.22305 -1.47375 1.28439,-1.22839 -1.45445 1.30412,-1.22393 -1.50195 1.23289,-1.22303 -1.49159 1.25994,-1.22405 -1.47599 1.28372,-1.22872 -1.45696 1.30393,-1.22578 -1.50281 1.23138,-1.22461 -1.4932 1.25877,-1.22513 -1.47817 1.283,-1.22914 -1.45945 1.30368,-1.22765 -1.50357 1.22986,-1.22623 -1.49473 1.25757,-1.22629 -1.48029 1.28223,-1.22965 -1.46192 1.30337,-1.22927 -1.50413 1.22853,-1.22765 -1.49595 1.25653,-1.22733 -1.48203 1.28155,-1.23016 -1.46399 1.30307,-1.23146 -1.50477 1.22674,-1.22962 -1.4975 1.25507,-1.22881 -1.48431 1.28056,-1.23094 -1.46674 1.3026,-1.23339 -1.50521 1.22517,-1.23141 -1.49877 1.25375,-1.23021 -1.48627 1.27963,-1.23172 -1.46914 1.30213,-1.23752 -1.44939 1.32123,-1.23747 -1.44685 1.32125,-1.23533 -1.50554 1.22358,-1.24278 -1.5059 1.22241,-1.23322 -1.49993 1.25242,-1.23165 -1.48812 1.27867,-1.23259 -1.47147 1.30162,-1.23767 -1.45192 1.32115,-1.23728 -1.50577 1.22198,-1.23507 -1.50099 1.25105,-1.23316 -1.48989 1.27767,-1.23354 -1.47375 1.30105,-1.23791 -1.45445 1.32102,-1.23696 -1.50195 1.24966,-1.23473 -1.49159 1.27663,-1.23458 -1.47599 1.30044,-1.23824 -1.45696 1.32084,-1.23887 -1.50281 1.24825,-1.23636 -1.4932 1.27554,-1.23569 -1.47817 1.29977,-1.23868 -1.45945 1.32061,-1.24082 -1.50357 1.24681,-1.23804 -1.49473 1.27443,-1.23689 -1.48029 1.29906,-1.2392 -1.46192 1.32033,-1.2425 -1.50413 1.24557,-1.23951 -1.49595 1.27345,-1.23795 -1.48203 1.29842,-1.23972 -1.46399 1.32006,-1.24477 -1.50477 1.24389,-1.24155 -1.4975 1.2721,-1.23949 -1.48431 1.29751,-1.24052 -1.46674 1.31963,-1.24678 -1.50521 1.24241,-1.2434 -1.49877 1.27087,-1.24093 -1.48627 1.29665,-1.24133 -1.46914 1.3192,-1.24619 -1.44939 1.33856,-1.24614 -1.44685 1.33858,-1.2462 -1.44939 1.33858,-1.2488 -1.50554 1.24092,-1.25642 -1.5059 1.24029,-1.24527 -1.49993 1.26962,-1.24241 -1.48812 1.29576,-1.24222 -1.47147 1.31873,-1.24633 -1.45192 1.33849,-1.24638 -1.45192 1.33858,-1.25083 -1.50577 1.23942,-1.24719 -1.50099 1.26835,-1.24397 -1.48989 1.29484,-1.2432 -1.47375 1.31821,-1.24658 -1.45445 1.33837,-1.24668 -1.45445 1.33858,-1.24914 -1.50195 1.26705,-1.24559 -1.49159 1.29387,-1.24427 -1.47599 1.31765,-1.24693 -1.45696 1.33821,-1.2471 -1.45696 1.33858,-1.25112 -1.50281 1.26573,-1.24727 -1.4932 1.29287,-1.24541 -1.47817 1.31704,-1.24737 -1.45945 1.338,-1.24764 -1.45945 1.33858,-1.25314 -1.50357 1.26439,-1.24901 -1.49473 1.29184,-1.24664 -1.48029 1.31638,-1.24791 -1.46192 1.33775,-1.2483 -1.46192 1.33858,-1.25488 -1.50413 1.26323,-1.25052 -1.49595 1.29094,-1.24774 -1.48203 1.3158,-1.24844 -1.46399 1.3375,-1.24907 -1.46436 1.33858,-1.25723 -1.50477 1.26167,-1.25262 -1.4975 1.28968,-1.24931 -1.48431 1.31497,-1.24926 -1.46674 1.33711,-1.24996 -1.46677 1.33858,-1.25931 -1.50521 1.26029,-1.25453 -1.49877 1.28855,-1.25079 -1.48627 1.31418,-1.25009 -1.46914 1.33672,-1.25096 -1.46914 1.33858,-1.2614 -1.50554 1.2589,-1.26916 -1.5059 1.25882,-1.25647 -1.49993 1.28739,-1.25232 -1.48812 1.31337,-1.25101 -1.47147 1.33629,-1.25207 -1.47147 1.33858,-1.2635 -1.50577 1.2575,-1.25844 -1.50099 1.28621,-1.25392 -1.48989 1.31252,-1.25201 -1.47375 1.33582,-1.25329 -1.47375 1.33858,-1.26045 -1.50195 1.28502,-1.25559 -1.49159 1.31163,-1.2531 -1.47599 1.33531,-1.25461 -1.47599 1.33858,-1.2625 -1.50281 1.2838,-1.25731 -1.4932 1.31072,-1.25427 -1.47817 1.33476,-1.25604 -1.47817 1.33858,-1.26458 -1.50357 1.28256,-1.2591 -1.49473 1.30977,-1.25553 -1.48029 1.33417,-1.25757 -1.48029 1.33858,-1.26638 -1.50413 1.28149,-1.26065 -1.49595 1.30894,-1.25666 -1.48203 1.33364,-1.2592 -1.48235 1.33858,-1.2688 -1.50477 1.28004,-1.26282 -1.4975 1.30779,-1.25827 -1.48431 1.33288,-1.26092 -1.48434 1.33858,-1.27094 -1.50521 1.27876,-1.26478 -1.49877 1.30675,-1.25979 -1.48627 1.33217,-1.26273 -1.48627 1.33858,-1.2731 -1.50554 1.27748,-1.28096 -1.5059 1.27797,-1.26677 -1.49993 1.30569,-1.26136 -1.48812 1.33143,-1.26463 -1.48812 1.33858,-1.27527 -1.50577 1.27619,-1.2688 -1.50099 1.30462,-1.263 -1.48989 1.33066,-1.27087 -1.50195 1.30352,-1.2647 -1.49159 1.32986,-1.27297 -1.50281 1.3024,-1.26647 -1.4932 1.32903,-1.27511 -1.50357 1.30127,-1.2683 -1.49473 1.32817,-1.26628 -1.48989 1.33784,-1.26661 -1.48989 1.33858,-1.27696 -1.50413 1.30028,-1.26989 -1.49595 1.32743,-1.268 -1.49159 1.33707,-1.26867 -1.49159 1.33858,-1.27945 -1.50477 1.29896,-1.27211 -1.4975 1.32638,-1.26979 -1.4932 1.33628,-1.27081 -1.4932 1.33858,-1.28166 -1.50521 1.29779,-1.27412 -1.49877 1.32544,-1.27163 -1.49473 1.33545,-1.27302 -1.49473 1.33858,-1.28387 -1.50554 1.29661,-1.29179 -1.5059 1.29768,-1.27616 -1.49993 1.32448,-1.27324 -1.49595 1.33474,-1.27529 -1.49617 1.33858,-1.2861 -1.50577 1.29543,-1.27824 -1.50099 1.32351,-1.27548 -1.4975 1.33374,-1.27763 -1.49751 1.33858,-1.28037 -1.50195 1.32251,-1.27751 -1.49877 1.33283,-1.28002 -1.49877 1.33858,-1.28252 -1.50281 1.3215,-1.27956 -1.49993 1.33191,-1.28247 -1.49993 1.33858,-1.28471 -1.50357 1.32047,-1.28167 -1.50099 1.33098,-1.28497 -1.50099 1.33858,-1.2866 -1.50413 1.31958,-1.2838 -1.50195 1.33002,-1.28916 -1.50477 1.31838,-1.28598 -1.50281 1.32905,-1.29142 -1.50521 1.31732,-1.28819 -1.50357 1.32806,-1.29369 -1.50554 1.31625,-1.2901 -1.50413 1.32721,-1.28713 -1.50195 1.33767,-1.28751 -1.50195 1.33858,-1.30164 -1.5059 1.3179,-1.29597 -1.50577 1.31518,-1.29268 -1.50477 1.32606,-1.28932 -1.50281 1.33674,-1.2901 -1.50281 1.33858,-1.29496 -1.50521 1.32504,-1.29155 -1.50357 1.3358,-1.29272 -1.50357 1.33858,-1.29725 -1.50554 1.32402,-1.29348 -1.50413 1.33498,-1.29536 -1.50422 1.33858,-1.29955 -1.50577 1.32299,-1.29608 -1.50477 1.33388,-1.29804 -1.50477 1.33858,-1.29837 -1.50521 1.33291,-1.30073 -1.50521 1.33858,-1.30069 -1.50554 1.33193,-1.30344 -1.50554 1.33858,-1.31046 -1.5059 1.33858,-1.30301 -1.50577 1.33094,-1.30616 -1.50577 1.33858,-1.30831 -1.50587 1.33858]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,14,16,-1,15,13,14,-1,17,16,18,-1,17,15,16,-1,19,17,18,-1,20,18,21,-1,20,21,22,-1,20,19,18,-1,23,20,22,-1,24,23,22,-1,24,22,25,-1,26,24,25,-1,26,25,27,-1,28,26,27,-1,28,27,29,-1,30,28,29,-1,30,29,31,-1,32,30,31,-1,32,31,33,-1,34,32,33,-1,34,33,35,-1,36,34,35,-1,36,35,37,-1,38,36,37,-1,38,37,39,-1,40,38,39,-1,40,39,41,-1,42,40,41,-1,42,41,43,-1,44,42,43,-1,44,43,45,-1,46,44,45,-1,46,45,47,-1]
coord Coordinate { point [-1.24614 -1.44685 1.33858,-1.24614 1.44685 1.33858,-1.23747 1.44685 1.32125,-1.23747 -1.44685 1.32125,-1.22797 1.44685 1.30437,-1.22797 -1.44685 1.30437,-1.21765 1.44685 1.28798,-1.21765 -1.44685 1.28798,-1.20653 1.44685 1.27211,-1.20653 -1.44685 1.27211,-1.19465 1.44685 1.25682,-1.19465 -1.44685 1.25682,-1.18203 1.44685 1.24212,-1.18203 -1.44685 1.24212,-1.1687 1.44685 1.22806,-1.1687 -1.44685 1.22806,-1.15469 1.44685 1.21468,-1.15469 -1.44685 1.21468,-1.14005 1.44685 1.202,-1.14005 -1.44685 1.202,-1.12479 -1.44685 1.19005,-1.12479 1.44685 1.19005,-1.10897 1.44685 1.17888,-1.10897 -1.44685 1.17888,-1.09262 -1.44685 1.16849,-1.09262 1.44685 1.16849,-1.07578 -1.44685 1.15892,-1.07578 1.44685 1.15892,-1.05848 -1.44685 1.15019,-1.05848 1.44685 1.15019,-1.04078 -1.44685 1.14232,-1.04078 1.44685 1.14232,-1.02271 -1.44685 1.13533,-1.02271 1.44685 1.13533,-1.00432 -1.44685 1.12924,-1.00432 1.44685 1.12924,-0.985658 -1.44685 1.12406,-0.985658 1.44685 1.12406,-0.966759 -1.44685 1.11981,-0.966759 1.44685 1.11981,-0.947673 -1.44685 1.11649,-0.947673 1.44685 1.11649,-0.928448 -1.44685 1.11411,-0.928448 1.44685 1.11411,-0.909128 -1.44685 1.11268,-0.909128 1.44685 1.11268,-0.889762 -1.44685 1.1122,-0.889762 1.44685 1.1122]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,8,7,9,-1,10,11,6,-1,7,11,9,-1,6,11,7,-1,12,13,14,-1,15,16,10,-1,11,16,9,-1,10,16,11,-1,17,18,12,-1,12,18,13,-1,19,20,15,-1,15,20,16,-1,21,22,17,-1,17,22,18,-1,19,23,20,-1,24,23,19,-1,25,26,21,-1,21,26,22,-1,24,27,23,-1,28,27,24,-1,29,30,25,-1,25,30,26,-1,28,31,27,-1,32,31,28,-1,33,34,29,-1,29,34,30,-1,32,35,31,-1,36,35,32,-1,33,37,34,-1,38,37,33,-1,14,39,36,-1,36,39,35,-1,9,40,41,-1,42,43,38,-1,38,43,37,-1,14,44,39,-1,13,44,14,-1,40,45,41,-1,9,45,40,-1,42,46,43,-1,47,46,42,-1,48,49,50,-1,18,51,13,-1,13,51,44,-1,9,52,45,-1,16,52,9,-1,45,52,41,-1,47,53,46,-1,54,53,47,-1,55,56,48,-1,48,56,49,-1,22,57,18,-1,18,57,51,-1,16,58,52,-1,20,58,16,-1,55,59,56,-1,60,59,55,-1,50,61,54,-1,54,61,53,-1,26,62,22,-1,22,62,57,-1,23,63,20,-1,20,63,58,-1,50,64,61,-1,49,64,50,-1,60,65,59,-1,66,65,60,-1,26,67,62,-1,30,67,26,-1,27,68,23,-1,23,68,63,-1,49,69,64,-1,56,69,49,-1,66,70,65,-1,71,70,66,-1,34,72,30,-1,30,72,67,-1,27,73,68,-1,31,73,27,-1,56,74,69,-1,59,74,56,-1,75,76,71,-1,71,76,70,-1,77,78,79,-1,34,80,72,-1,37,80,34,-1,31,81,73,-1,35,81,31,-1,65,82,59,-1,59,82,74,-1,83,84,75,-1,75,84,76,-1,77,85,78,-1,86,85,77,-1,43,87,37,-1,37,87,80,-1,35,88,81,-1,39,88,35,-1,41,89,90,-1,91,92,86,-1,86,92,85,-1,65,93,82,-1,70,93,65,-1,83,94,84,-1,79,94,83,-1,46,95,43,-1,43,95,87,-1,44,96,39,-1,39,96,88,-1,41,97,89,-1,89,97,90,-1,76,98,70,-1,70,98,93,-1,79,99,94,-1,78,99,79,-1,91,100,92,-1,101,100,91,-1,46,102,95,-1,53,102,46,-1,44,103,96,-1,51,103,44,-1,52,104,41,-1,41,104,97,-1,97,104,90,-1,84,105,76,-1,76,105,98,-1,78,106,99,-1,85,106,78,-1,107,108,101,-1,101,108,100,-1,61,109,53,-1,53,109,102,-1,51,110,103,-1,57,110,51,-1,58,111,52,-1,52,111,104,-1,85,112,106,-1,92,112,85,-1,84,113,105,-1,94,113,84,-1,107,114,108,-1,115,114,107,-1,64,116,61,-1,61,116,109,-1,57,117,110,-1,62,117,57,-1,58,118,111,-1,63,118,58,-1,99,119,94,-1,94,119,113,-1,92,120,112,-1,100,120,92,-1,121,122,123,-1,115,122,114,-1,124,122,115,-1,125,122,124,-1,123,122,125,-1,69,126,64,-1,64,126,116,-1,62,127,117,-1,67,127,62,-1,63,128,118,-1,68,128,63,-1,106,129,99,-1,99,129,119,-1,108,130,100,-1,100,130,120,-1,69,131,126,-1,74,131,69,-1,67,132,127,-1,72,132,67,-1,68,133,128,-1,73,133,68,-1,112,134,106,-1,106,134,129,-1,108,135,130,-1,114,135,108,-1,82,136,74,-1,74,136,131,-1,80,137,72,-1,72,137,132,-1,73,138,133,-1,81,138,73,-1,120,139,112,-1,112,139,134,-1,121,140,122,-1,122,140,114,-1,114,140,135,-1,93,141,82,-1,82,141,136,-1,87,142,80,-1,80,142,137,-1,88,143,81,-1,81,143,138,-1,90,144,145,-1,130,146,120,-1,120,146,139,-1,93,147,141,-1,98,147,93,-1,87,148,142,-1,95,148,87,-1,88,149,143,-1,96,149,88,-1,144,150,145,-1,90,150,144,-1,130,151,146,-1,135,151,130,-1,98,152,147,-1,105,152,98,-1,102,153,95,-1,95,153,148,-1,103,154,96,-1,96,154,149,-1,104,155,90,-1,90,155,150,-1,150,155,145,-1,156,157,121,-1,140,157,135,-1,135,157,151,-1,121,157,140,-1,105,158,152,-1,113,158,105,-1,102,159,153,-1,109,159,102,-1,103,160,154,-1,110,160,103,-1,104,161,155,-1,111,161,104,-1,113,162,158,-1,119,162,113,-1,116,163,109,-1,109,163,159,-1,117,164,110,-1,110,164,160,-1,118,165,111,-1,111,165,161,-1,119,166,162,-1,129,166,119,-1,116,167,163,-1,126,167,116,-1,127,168,117,-1,117,168,164,-1,128,169,118,-1,118,169,165,-1,129,170,166,-1,134,170,129,-1,131,171,126,-1,126,171,167,-1,132,172,127,-1,127,172,168,-1,128,173,169,-1,133,173,128,-1,139,174,134,-1,134,174,170,-1,131,175,171,-1,136,175,131,-1,132,176,172,-1,137,176,132,-1,138,177,133,-1,133,177,173,-1,146,178,139,-1,139,178,174,-1,141,179,136,-1,136,179,175,-1,142,180,137,-1,137,180,176,-1,143,181,138,-1,138,181,177,-1,145,182,183,-1,151,184,146,-1,146,184,178,-1,147,185,141,-1,141,185,179,-1,142,186,180,-1,148,186,142,-1,143,187,181,-1,149,187,143,-1,182,188,183,-1,145,188,182,-1,157,189,151,-1,156,189,157,-1,151,189,184,-1,152,190,147,-1,147,190,185,-1,148,191,186,-1,153,191,148,-1,149,192,187,-1,154,192,149,-1,145,193,188,-1,188,193,183,-1,155,193,145,-1,152,194,190,-1,158,194,152,-1,153,195,191,-1,159,195,153,-1,154,196,192,-1,160,196,154,-1,161,197,155,-1,155,197,193,-1,158,198,194,-1,162,198,158,-1,159,199,195,-1,163,199,159,-1,160,200,196,-1,164,200,160,-1,161,201,197,-1,165,201,161,-1,162,202,198,-1,166,202,162,-1,167,203,163,-1,163,203,199,-1,168,204,164,-1,164,204,200,-1,169,205,165,-1,165,205,201,-1,166,206,202,-1,170,206,166,-1,167,207,203,-1,171,207,167,-1,168,208,204,-1,172,208,168,-1,173,209,169,-1,169,209,205,-1,170,210,206,-1,174,210,170,-1,171,211,207,-1,175,211,171,-1,172,212,208,-1,176,212,172,-1,177,213,173,-1,173,213,209,-1,174,214,210,-1,178,214,174,-1,179,215,175,-1,175,215,211,-1,176,216,212,-1,180,216,176,-1,181,217,177,-1,177,217,213,-1,183,218,219,-1,178,220,214,-1,184,220,178,-1,179,221,215,-1,185,221,179,-1,186,222,180,-1,180,222,216,-1,181,223,217,-1,187,223,181,-1,218,224,219,-1,183,224,218,-1,225,226,156,-1,156,226,189,-1,184,226,220,-1,189,226,184,-1,190,227,185,-1,185,227,221,-1,186,228,222,-1,191,228,186,-1,187,229,223,-1,192,229,187,-1,183,230,224,-1,224,230,219,-1,193,230,183,-1,190,231,227,-1,194,231,190,-1,195,232,191,-1,191,232,228,-1,196,233,192,-1,192,233,229,-1,193,234,230,-1,197,234,193,-1,198,235,194,-1,194,235,231,-1,195,236,232,-1,199,236,195,-1,200,237,196,-1,196,237,233,-1,197,238,234,-1,201,238,197,-1,202,239,198,-1,198,239,235,-1,199,240,236,-1,203,240,199,-1,200,241,237,-1,204,241,200,-1,205,242,201,-1,201,242,238,-1,202,243,239,-1,206,243,202,-1,207,244,203,-1,203,244,240,-1,204,245,241,-1,208,245,204,-1,205,246,242,-1,209,246,205,-1,210,247,206,-1,206,247,243,-1,211,248,207,-1,207,248,244,-1,208,249,245,-1,212,249,208,-1,213,250,209,-1,209,250,246,-1,210,251,247,-1,214,251,210,-1,215,252,211,-1,211,252,248,-1,216,253,212,-1,212,253,249,-1,213,254,250,-1,217,254,213,-1,219,255,256,-1,214,257,251,-1,220,257,214,-1,215,258,252,-1,221,258,215,-1,222,259,216,-1,216,259,253,-1,223,260,217,-1,217,260,254,-1,219,261,255,-1,255,261,256,-1,262,263,225,-1,225,263,226,-1,220,263,257,-1,226,263,220,-1,221,264,258,-1,227,264,221,-1,222,265,259,-1,228,265,222,-1,223,266,260,-1,229,266,223,-1,230,267,219,-1,261,267,256,-1,219,267,261,-1,231,268,227,-1,227,268,264,-1,228,269,265,-1,232,269,228,-1,229,270,266,-1,233,270,229,-1,230,271,267,-1,234,271,230,-1,235,272,231,-1,231,272,268,-1,232,273,269,-1,236,273,232,-1,233,274,270,-1,237,274,233,-1,234,275,271,-1,238,275,234,-1,239,276,235,-1,235,276,272,-1,236,277,273,-1,240,277,236,-1,237,278,274,-1,241,278,237,-1,242,279,238,-1,238,279,275,-1,239,280,276,-1,243,280,239,-1,240,281,277,-1,244,281,240,-1,241,282,278,-1,245,282,241,-1,246,283,242,-1,242,283,279,-1,247,284,243,-1,243,284,280,-1,248,285,244,-1,244,285,281,-1,245,286,282,-1,249,286,245,-1,246,287,283,-1,250,287,246,-1,247,288,284,-1,251,288,247,-1,252,289,248,-1,248,289,285,-1,253,290,249,-1,249,290,286,-1,254,291,250,-1,250,291,287,-1,256,292,293,-1,251,294,288,-1,257,294,251,-1,258,295,252,-1,252,295,289,-1,253,296,290,-1,259,296,253,-1,254,297,291,-1,260,297,254,-1,256,298,292,-1,292,298,293,-1,299,300,262,-1,262,300,263,-1,257,300,294,-1,263,300,257,-1,264,301,258,-1,258,301,295,-1,265,302,259,-1,259,302,296,-1,266,303,260,-1,260,303,297,-1,298,304,293,-1,267,304,256,-1,256,304,298,-1,264,305,301,-1,268,305,264,-1,265,306,302,-1,269,306,265,-1,266,307,303,-1,270,307,266,-1,271,308,267,-1,267,308,304,-1,268,309,305,-1,272,309,268,-1,269,310,306,-1,273,310,269,-1,274,311,270,-1,270,311,307,-1,275,312,271,-1,271,312,308,-1,272,313,309,-1,276,313,272,-1,277,314,273,-1,273,314,310,-1,274,315,311,-1,278,315,274,-1,279,316,275,-1,275,316,312,-1,276,317,313,-1,280,317,276,-1,281,318,277,-1,277,318,314,-1,282,319,278,-1,278,319,315,-1,283,320,279,-1,279,320,316,-1,284,321,280,-1,280,321,317,-1,281,322,318,-1,285,322,281,-1,282,323,319,-1,286,323,282,-1,287,324,283,-1,283,324,320,-1,288,325,284,-1,284,325,321,-1,289,326,285,-1,285,326,322,-1,286,327,323,-1,290,327,286,-1,287,328,324,-1,291,328,287,-1,293,329,330,-1,288,331,325,-1,294,331,288,-1,295,332,289,-1,289,332,326,-1,296,333,290,-1,290,333,327,-1,291,334,328,-1,297,334,291,-1,293,335,329,-1,329,335,330,-1,336,337,299,-1,299,337,300,-1,294,337,331,-1,300,337,294,-1,301,338,295,-1,295,338,332,-1,296,339,333,-1,302,339,296,-1,303,340,297,-1,297,340,334,-1,293,341,335,-1,335,341,330,-1,304,341,293,-1,305,342,301,-1,301,342,338,-1,306,343,302,-1,302,343,339,-1,307,344,303,-1,303,344,340,-1,308,345,304,-1,304,345,341,-1,305,346,342,-1,309,346,305,-1,306,347,343,-1,310,347,306,-1,307,348,344,-1,311,348,307,-1,312,349,308,-1,308,349,345,-1,309,350,346,-1,313,350,309,-1,314,351,310,-1,310,351,347,-1,315,352,311,-1,311,352,348,-1,312,353,349,-1,316,353,312,-1,313,354,350,-1,317,354,313,-1,318,355,314,-1,314,355,351,-1,315,356,352,-1,319,356,315,-1,320,357,316,-1,316,357,353,-1,321,358,317,-1,317,358,354,-1,318,359,355,-1,322,359,318,-1,319,360,356,-1,323,360,319,-1,320,361,357,-1,324,361,320,-1,325,362,321,-1,321,362,358,-1,322,363,359,-1,326,363,322,-1,327,364,323,-1,323,364,360,-1,328,365,324,-1,324,365,361,-1,330,366,367,-1,325,368,362,-1,331,368,325,-1,332,369,326,-1,326,369,363,-1,327,370,364,-1,333,370,327,-1,334,371,328,-1,328,371,365,-1,366,372,367,-1,330,372,366,-1,373,374,336,-1,336,374,337,-1,331,374,368,-1,337,374,331,-1,338,375,332,-1,332,375,369,-1,333,376,370,-1,339,376,333,-1,340,377,334,-1,334,377,371,-1,372,378,367,-1,341,378,330,-1,330,378,372,-1,338,379,375,-1,342,379,338,-1,339,380,376,-1,343,380,339,-1,344,381,340,-1,340,381,377,-1,345,382,341,-1,341,382,378,-1,342,383,379,-1,346,383,342,-1,343,384,380,-1,347,384,343,-1,344,385,381,-1,348,385,344,-1,345,386,382,-1,349,386,345,-1,346,387,383,-1,350,387,346,-1,347,388,384,-1,351,388,347,-1,352,389,348,-1,348,389,385,-1,353,390,349,-1,349,390,386,-1,354,391,350,-1,350,391,387,-1,355,392,351,-1,351,392,388,-1,356,393,352,-1,352,393,389,-1,357,394,353,-1,353,394,390,-1,354,395,391,-1,358,395,354,-1,359,396,355,-1,355,396,392,-1,360,397,356,-1,356,397,393,-1,357,398,394,-1,361,398,357,-1,362,399,358,-1,358,399,395,-1,363,400,359,-1,359,400,396,-1,360,401,397,-1,364,401,360,-1,361,402,398,-1,365,402,361,-1,367,403,404,-1,368,405,362,-1,362,405,399,-1,369,406,363,-1,363,406,400,-1,364,407,401,-1,370,407,364,-1,371,408,365,-1,365,408,402,-1,367,409,403,-1,403,409,404,-1,410,411,373,-1,373,411,374,-1,368,411,405,-1,374,411,368,-1,375,412,369,-1,369,412,406,-1,376,413,370,-1,370,413,407,-1,371,414,408,-1,377,414,371,-1,367,415,409,-1,409,415,404,-1,378,415,367,-1,375,416,412,-1,379,416,375,-1,376,417,413,-1,380,417,376,-1,381,418,377,-1,377,418,414,-1,382,419,378,-1,378,419,415,-1,383,420,379,-1,379,420,416,-1,384,421,380,-1,380,421,417,-1,388,421,384,-1,381,422,418,-1,385,422,381,-1,382,423,419,-1,386,423,382,-1,383,424,420,-1,387,424,383,-1,388,425,421,-1,389,426,385,-1,385,426,422,-1,390,427,386,-1,386,427,423,-1,391,428,387,-1,387,428,424,-1,392,429,388,-1,388,429,425,-1,389,430,426,-1,393,430,389,-1,394,431,390,-1,390,431,427,-1,391,432,428,-1,395,432,391,-1,396,433,392,-1,392,433,429,-1,397,434,393,-1,393,434,430,-1,398,435,394,-1,394,435,431,-1,395,436,432,-1,399,436,395,-1,400,437,396,-1,396,437,433,-1,397,438,434,-1,401,438,397,-1,398,439,435,-1,402,439,398,-1,404,440,441,-1,405,442,399,-1,399,442,436,-1,400,443,437,-1,406,443,400,-1,401,444,438,-1,407,444,401,-1,414,445,408,-1,402,445,439,-1,408,445,402,-1,440,446,441,-1,404,446,440,-1,447,448,410,-1,405,448,442,-1,410,448,411,-1,411,448,405,-1,406,449,443,-1,412,449,406,-1,413,450,407,-1,407,450,444,-1,414,451,445,-1,415,452,404,-1,404,452,446,-1,446,452,441,-1,412,453,449,-1,416,453,412,-1,413,454,450,-1,417,454,413,-1,421,454,417,-1,414,455,451,-1,418,455,414,-1,415,456,452,-1,419,456,415,-1,424,457,420,-1,416,457,453,-1,420,457,416,-1,421,458,454,-1,422,459,418,-1,418,459,455,-1,423,460,419,-1,419,460,456,-1,424,461,457,-1,425,462,421,-1,421,462,458,-1,426,463,422,-1,422,463,459,-1,427,464,423,-1,423,464,460,-1,431,464,427,-1,428,465,424,-1,424,465,461,-1,433,466,429,-1,429,466,425,-1,425,466,462,-1,430,467,426,-1,426,467,463,-1,431,468,464,-1,432,469,428,-1,428,469,465,-1,433,470,466,-1,430,471,467,-1,438,471,434,-1,434,471,430,-1,435,472,431,-1,431,472,468,-1,436,473,432,-1,432,473,469,-1,437,474,433,-1,433,474,470,-1,438,475,471,-1,439,476,435,-1,435,476,472,-1,441,477,478,-1,436,479,473,-1,442,479,436,-1,443,480,437,-1,437,480,474,-1,444,481,438,-1,438,481,475,-1,445,482,439,-1,439,482,476,-1,441,483,477,-1,477,483,478,-1,484,485,447,-1,447,485,448,-1,442,485,479,-1,448,485,442,-1,443,486,480,-1,449,486,443,-1,450,487,444,-1,444,487,481,-1,451,488,445,-1,445,488,482,-1,441,489,483,-1,452,489,441,-1,449,490,486,-1,453,490,449,-1,454,491,450,-1,450,491,487,-1,451,492,488,-1,455,492,451,-1,452,493,489,-1,456,493,452,-1,453,494,490,-1,457,494,453,-1,454,495,491,-1,458,495,454,-1,455,496,492,-1,459,496,455,-1,456,497,493,-1,460,497,456,-1,461,498,457,-1,457,498,494,-1,458,499,495,-1,462,499,458,-1,459,500,496,-1,463,500,459,-1,460,501,497,-1,464,501,460,-1,461,502,498,-1,465,502,461,-1,466,503,462,-1,462,503,499,-1,463,504,500,-1,467,504,463,-1,468,505,464,-1,464,505,501,-1,469,506,465,-1,465,506,502,-1,470,507,466,-1,466,507,503,-1,467,508,504,-1,471,508,467,-1,468,509,505,-1,472,509,468,-1,469,510,506,-1,473,510,469,-1,479,510,473,-1,474,511,470,-1,470,511,507,-1,471,512,508,-1,475,512,471,-1,472,513,509,-1,476,513,472,-1,478,514,515,-1,479,516,510,-1,474,517,511,-1,480,517,474,-1,475,518,512,-1,481,518,475,-1,488,519,482,-1,476,519,513,-1,482,519,476,-1,478,520,514,-1,514,520,515,-1,483,520,478,-1,521,522,484,-1,484,522,485,-1,479,522,516,-1,485,522,479,-1,480,523,517,-1,486,523,480,-1,487,524,481,-1,481,524,518,-1,488,525,519,-1,483,526,520,-1,489,526,483,-1,486,527,523,-1,490,527,486,-1,491,528,487,-1,487,528,524,-1,488,529,525,-1,492,529,488,-1,489,530,526,-1,493,530,489,-1,490,531,527,-1,494,531,490,-1,495,532,491,-1,491,532,528,-1,496,533,492,-1,492,533,529,-1,497,534,493,-1,493,534,530,-1,498,535,494,-1,494,535,531,-1,499,536,495,-1,495,536,532,-1,500,537,496,-1,496,537,533,-1,501,538,497,-1,497,538,534,-1,498,539,535,-1,502,539,498,-1,499,540,536,-1,503,540,499,-1,504,541,500,-1,500,541,537,-1,505,542,501,-1,501,542,538,-1,506,543,502,-1,502,543,539,-1,507,544,503,-1,503,544,540,-1,504,545,541,-1,512,545,508,-1,508,545,504,-1,505,546,542,-1,509,546,505,-1,506,547,543,-1,510,547,506,-1,507,548,544,-1,511,548,507,-1,512,549,545,-1,513,550,509,-1,509,550,546,-1,515,551,552,-1,516,553,510,-1,510,553,547,-1,517,554,511,-1,511,554,548,-1,512,555,549,-1,518,555,512,-1,519,556,513,-1,513,556,550,-1,551,557,552,-1,520,557,515,-1,515,557,551,-1,558,559,521,-1,560,559,558,-1,521,559,522,-1,516,559,553,-1,522,559,516,-1,523,561,517,-1,527,561,523,-1,517,561,554,-1,518,562,555,-1,524,562,518,-1,525,563,519,-1,519,563,556,-1,520,564,557,-1,526,564,520,-1,527,565,561,-1,524,566,562,-1,528,566,524,-1,529,567,525,-1,525,567,563,-1,534,568,530,-1,526,568,564,-1,530,568,526,-1,531,569,527,-1,527,569,565,-1,532,570,528,-1,528,570,566,-1,533,571,529,-1,537,571,533,-1,529,571,567,-1,534,572,568,-1,535,573,531,-1,531,573,569,-1,536,574,532,-1,532,574,570,-1,537,575,571,-1,538,576,534,-1,534,576,572,-1,535,577,573,-1,539,577,535,-1,540,578,536,-1,544,578,540,-1,536,578,574,-1,537,579,575,-1,541,579,537,-1,546,580,542,-1,542,580,538,-1,538,580,576,-1,543,581,539,-1,539,581,577,-1,544,582,578,-1,545,583,541,-1,541,583,579,-1,550,584,546,-1,546,584,580,-1,543,585,581,-1,547,585,543,-1,544,586,582,-1,548,586,544,-1,545,587,583,-1,549,587,545,-1,550,588,584,-1,552,589,590,-1,547,591,585,-1,553,591,547,-1,548,592,586,-1,554,592,548,-1,555,593,549,-1,549,593,587,-1,562,593,555,-1,556,594,550,-1,550,594,588,-1,552,595,589,-1,557,595,552,-1,589,595,590,-1,564,595,557,-1,560,596,559,-1,553,596,591,-1,559,596,553,-1,554,597,592,-1,561,597,554,-1,562,598,593,-1,556,599,594,-1,567,599,563,-1,563,599,556,-1,564,600,595,-1,565,601,561,-1,561,601,597,-1,562,602,598,-1,566,602,562,-1,567,603,599,-1,568,604,564,-1,564,604,600,-1,569,605,565,-1,565,605,601,-1,570,606,566,-1,566,606,602,-1,571,607,567,-1,567,607,603,-1,572,608,568,-1,568,608,604,-1,573,609,569,-1,569,609,605,-1,570,610,606,-1,574,610,570,-1,575,611,571,-1,571,611,607,-1,576,612,572,-1,572,612,608,-1,573,613,609,-1,577,613,573,-1,574,614,610,-1,578,614,574,-1,575,615,611,-1,579,615,575,-1,576,616,612,-1,580,616,576,-1,581,617,577,-1,577,617,613,-1,585,617,581,-1,582,618,578,-1,578,618,614,-1,579,619,615,-1,583,619,579,-1,580,620,616,-1,584,620,580,-1,588,620,584,-1,585,621,617,-1,582,622,618,-1,586,622,582,-1,587,623,583,-1,583,623,619,-1,588,624,620,-1,590,625,626,-1,585,627,621,-1,591,627,585,-1,596,627,591,-1,586,628,622,-1,592,628,586,-1,593,629,587,-1,587,629,623,-1,588,630,624,-1,594,630,588,-1,590,631,625,-1,625,631,626,-1,595,631,590,-1,632,633,560,-1,634,633,632,-1,560,633,596,-1,596,633,627,-1,597,635,592,-1,592,635,628,-1,593,636,629,-1,602,636,598,-1,598,636,593,-1,599,637,594,-1,594,637,630,-1,604,638,600,-1,595,638,631,-1,600,638,595,-1,597,639,635,-1,601,639,597,-1,602,640,636,-1,599,641,637,-1,603,641,599,-1,604,642,638,-1,605,643,601,-1,601,643,639,-1,606,644,602,-1,602,644,640,-1,603,645,641,-1,607,645,603,-1,608,646,604,-1,604,646,642,-1,609,647,605,-1,605,647,643,-1,606,648,644,-1,610,648,606,-1,607,649,645,-1,611,649,607,-1,616,650,612,-1,612,650,608,-1,608,650,646,-1,613,651,609,-1,609,651,647,-1,614,652,610,-1,610,652,648,-1,611,653,649,-1,615,653,611,-1,616,654,650,-1,617,655,613,-1,613,655,651,-1,614,656,652,-1,618,656,614,-1,615,657,653,-1,619,657,615,-1,616,658,654,-1,620,658,616,-1,621,659,617,-1,617,659,655,-1,622,660,618,-1,618,660,656,-1,619,661,657,-1,623,661,619,-1,620,662,658,-1,624,662,620,-1,626,663,664,-1,627,665,621,-1,621,665,659,-1,628,666,622,-1,622,666,660,-1,629,667,623,-1,623,667,661,-1,630,668,624,-1,624,668,662,-1,626,669,663,-1,663,669,664,-1,631,669,626,-1,638,669,631,-1,627,670,665,-1,634,670,633,-1,633,670,627,-1,628,671,666,-1,635,671,628,-1,629,672,667,-1,636,672,629,-1,630,673,668,-1,637,673,630,-1,638,674,669,-1,639,675,635,-1,635,675,671,-1,640,676,636,-1,636,676,672,-1,641,677,637,-1,637,677,673,-1,642,678,638,-1,638,678,674,-1,647,679,643,-1,643,679,639,-1,639,679,675,-1,644,680,640,-1,640,680,676,-1,645,681,641,-1,649,681,645,-1,641,681,677,-1,642,682,678,-1,646,682,642,-1,650,682,646,-1,647,683,679,-1,644,684,680,-1,648,684,644,-1,649,685,681,-1,653,685,649,-1,650,686,682,-1,651,687,647,-1,647,687,683,-1,652,688,648,-1,648,688,684,-1,653,689,685,-1,650,690,686,-1,654,690,650,-1,658,690,654,-1,651,691,687,-1,655,691,651,-1,656,692,652,-1,652,692,688,-1,653,693,689,-1,657,693,653,-1,662,694,658,-1,658,694,690,-1,659,695,655,-1,655,695,691,-1,660,696,656,-1,656,696,692,-1,657,697,693,-1,661,697,657,-1,662,698,694,-1,664,699,700,-1,659,701,695,-1,665,701,659,-1,666,702,660,-1,660,702,696,-1,661,703,697,-1,667,703,661,-1,662,704,698,-1,668,704,662,-1,664,705,699,-1,699,705,700,-1,669,705,664,-1,706,707,634,-1,634,707,670,-1,665,707,701,-1,670,707,665,-1,666,708,702,-1,671,708,666,-1,672,709,667,-1,667,709,703,-1,668,710,704,-1,677,710,673,-1,673,710,668,-1,674,711,669,-1,669,711,705,-1,675,712,671,-1,671,712,708,-1,676,713,672,-1,672,713,709,-1,677,714,710,-1,674,715,711,-1,678,715,674,-1,679,716,675,-1,683,716,679,-1,675,716,712,-1,676,717,713,-1,680,717,676,-1,677,718,714,-1,681,718,677,-1,678,719,715,-1,682,719,678,-1,683,720,716,-1,680,721,717,-1,688,721,684,-1,684,721,680,-1,681,722,718,-1,685,722,681,-1,686,723,682,-1,682,723,719,-1,687,724,683,-1,683,724,720,-1,688,725,721,-1,685,726,722,-1,689,726,685,-1,686,727,723,-1,690,727,686,-1,687,728,724,-1,691,728,687,-1,688,729,725,-1,692,729,688,-1,689,730,726,-1,693,730,689,-1,690,731,727,-1,694,731,690,-1,695,732,691,-1,691,732,728,-1,692,733,729,-1,696,733,692,-1,693,734,730,-1,697,734,693,-1,694,735,731,-1,698,735,694,-1,700,736,737,-1,695,738,732,-1,701,738,695,-1,696,739,733,-1,702,739,696,-1,697,740,734,-1,703,740,697,-1,698,741,735,-1,704,741,698,-1,700,742,736,-1,705,742,700,-1,743,744,706,-1,706,744,707,-1,701,744,738,-1,707,744,701,-1,708,745,702,-1,702,745,739,-1,709,746,703,-1,703,746,740,-1,713,746,709,-1,710,747,704,-1,704,747,741,-1,711,748,705,-1,705,748,742,-1,712,749,708,-1,708,749,745,-1,713,750,746,-1,714,751,710,-1,710,751,747,-1,715,752,711,-1,719,752,715,-1,711,752,748,-1,716,753,712,-1,712,753,749,-1,721,754,717,-1,713,754,750,-1,717,754,713,-1,714,755,751,-1,722,755,718,-1,718,755,714,-1,719,756,752,-1,716,757,753,-1,720,757,716,-1,721,758,754,-1,722,759,755,-1,719,760,756,-1,723,760,719,-1,720,761,757,-1,724,761,720,-1,721,762,758,-1,725,762,721,-1,726,763,722,-1,722,763,759,-1,727,764,723,-1,723,764,760,-1,728,765,724,-1,724,765,761,-1,729,766,725,-1,725,766,762,-1,726,767,763,-1,730,767,726,-1,731,768,727,-1,727,768,764,-1,728,769,765,-1,732,769,728,-1,733,770,729,-1,729,770,766,-1,734,771,730,-1,730,771,767,-1,735,772,731,-1,731,772,768,-1,737,773,774,-1,736,773,737,-1,742,773,736,-1,732,775,769,-1,738,775,732,-1,733,776,770,-1,739,776,733,-1,740,777,734,-1,734,777,771,-1,741,778,735,-1,735,778,772,-1,742,779,773,-1,780,781,743,-1,782,781,780,-1,743,781,744,-1,738,781,775,-1,744,781,738,-1,745,783,739,-1,739,783,776,-1,746,784,740,-1,740,784,777,-1,741,785,778,-1,747,785,741,-1,742,786,779,-1,748,786,742,-1,749,787,745,-1,745,787,783,-1,750,788,746,-1,746,788,784,-1,747,789,785,-1,751,789,747,-1,748,790,786,-1,752,790,748,-1,749,791,787,-1,753,791,749,-1,757,791,753,-1,750,792,788,-1,754,792,750,-1,751,793,789,-1,755,793,751,-1,756,794,752,-1,760,794,756,-1,752,794,790,-1,757,795,791,-1,758,796,754,-1,754,796,792,-1,755,797,793,-1,759,797,755,-1,760,798,794,-1,761,799,757,-1,757,799,795,-1,762,800,758,-1,758,800,796,-1,759,801,797,-1,763,801,759,-1,764,802,760,-1,760,802,798,-1,768,802,764,-1,761,803,799,-1,765,803,761,-1,766,804,762,-1,762,804,800,-1,767,805,763,-1,763,805,801,-1,768,806,802,-1,775,807,769,-1,765,807,803,-1,769,807,765,-1,766,808,804,-1,770,808,766,-1,767,809,805,-1,771,809,767,-1,772,810,768,-1,768,810,806,-1,779,811,773,-1,0,811,1,-1,773,811,774,-1,774,811,0,-1,775,812,807,-1,770,813,808,-1,776,813,770,-1,771,814,809,-1,777,814,771,-1,772,815,810,-1,785,815,778,-1,778,815,772,-1,1,816,817,-1,779,816,811,-1,811,816,1,-1,781,818,775,-1,775,818,812,-1,782,818,781,-1,783,819,776,-1,776,819,813,-1,784,820,777,-1,777,820,814,-1,785,821,815,-1,817,822,823,-1,779,822,816,-1,786,822,779,-1,816,822,817,-1,787,824,783,-1,791,824,787,-1,783,824,819,-1,788,825,784,-1,784,825,820,-1,785,826,821,-1,789,826,785,-1,823,827,828,-1,786,827,822,-1,794,827,790,-1,822,827,823,-1,790,827,786,-1,791,829,824,-1,792,830,788,-1,788,830,825,-1,793,831,789,-1,789,831,826,-1,794,832,827,-1,828,832,833,-1,827,832,828,-1,791,834,829,-1,795,834,791,-1,796,835,792,-1,792,835,830,-1,797,836,793,-1,793,836,831,-1,833,837,838,-1,832,837,833,-1,794,837,832,-1,798,837,794,-1,802,837,798,-1,795,839,834,-1,799,839,795,-1,796,840,835,-1,800,840,796,-1,801,841,797,-1,797,841,836,-1,837,842,838,-1,802,842,837,-1,803,843,799,-1,799,843,839,-1,800,844,840,-1,804,844,800,-1,801,845,841,-1,805,845,801,-1,838,846,847,-1,806,846,802,-1,802,846,842,-1,842,846,838,-1,803,848,843,-1,807,848,803,-1,808,849,804,-1,804,849,844,-1,805,850,845,-1,809,850,805,-1,847,851,852,-1,806,851,846,-1,846,851,847,-1,815,851,810,-1,810,851,806,-1,807,853,848,-1,812,853,807,-1,808,854,849,-1,813,854,808,-1,809,855,850,-1,814,855,809,-1,852,856,857,-1,851,856,852,-1,815,856,851,-1,782,858,818,-1,818,858,812,-1,859,858,782,-1,812,858,853,-1,819,860,813,-1,813,860,854,-1,814,861,855,-1,820,861,814,-1,825,861,820,-1,815,862,856,-1,857,862,863,-1,856,862,857,-1,821,862,815,-1,824,864,819,-1,819,864,860,-1,830,865,825,-1,825,865,861,-1,863,866,867,-1,821,866,862,-1,826,866,821,-1,862,866,863,-1,829,868,824,-1,824,868,864,-1,830,869,865,-1,826,870,866,-1,867,870,871,-1,866,870,867,-1,831,870,826,-1,829,872,868,-1,834,872,829,-1,835,873,830,-1,840,873,835,-1,830,873,869,-1,871,874,875,-1,831,874,870,-1,870,874,871,-1,836,874,831,-1,839,876,834,-1,834,876,872,-1,840,877,873,-1,836,878,874,-1,841,878,836,-1,874,878,875,-1,839,879,876,-1,843,879,839,-1,849,880,844,-1,840,880,877,-1,844,880,840,-1,875,881,882,-1,841,881,878,-1,878,881,875,-1,845,881,841,-1,843,883,879,-1,848,883,843,-1,849,884,880,-1,882,885,886,-1,845,885,881,-1,881,885,882,-1,850,885,845,-1,848,887,883,-1,853,887,848,-1,849,888,884,-1,854,888,849,-1,886,889,890,-1,885,889,886,-1,850,889,885,-1,855,889,850,-1,859,891,858,-1,858,891,853,-1,892,891,859,-1,853,891,887,-1,860,893,854,-1,854,893,888,-1,861,894,855,-1,855,894,889,-1,889,894,890,-1,865,894,861,-1,890,894,895,-1,864,896,860,-1,868,896,864,-1,860,896,893,-1,865,897,894,-1,894,897,895,-1,895,897,898,-1,868,899,896,-1,865,900,897,-1,897,900,898,-1,898,900,901,-1,869,900,865,-1,872,902,868,-1,868,902,899,-1,873,903,869,-1,869,903,900,-1,901,903,904,-1,900,903,901,-1,876,905,872,-1,872,905,902,-1,903,906,904,-1,873,906,903,-1,877,906,873,-1,879,907,876,-1,883,907,879,-1,876,907,905,-1,877,908,906,-1,880,908,877,-1,904,908,909,-1,906,908,904,-1,883,910,907,-1,908,911,909,-1,884,911,880,-1,880,911,908,-1,909,911,912,-1,883,913,910,-1,887,913,883,-1,911,914,912,-1,888,914,884,-1,884,914,911,-1,912,914,915,-1,916,917,892,-1,887,917,913,-1,892,917,891,-1,891,917,887,-1,893,918,888,-1,888,918,914,-1,914,918,915,-1,915,918,919,-1,893,920,918,-1,918,920,919,-1,899,920,896,-1,896,920,893,-1,919,920,921,-1,920,922,921,-1,899,922,920,-1,921,922,923,-1,902,924,899,-1,899,924,922,-1,922,924,923,-1,923,924,925,-1,905,926,902,-1,902,926,924,-1,924,926,925,-1,907,927,905,-1,905,927,926,-1,926,927,925,-1,925,927,928,-1,910,929,907,-1,907,929,927,-1,927,929,928,-1,928,929,930,-1,913,931,910,-1,910,931,929,-1,929,931,930,-1,930,931,932,-1,3,933,916,-1,917,933,913,-1,913,933,931,-1,5,933,3,-1,931,933,932,-1,916,933,917,-1,932,933,5,-1]
coord Coordinate { point [-0.909128 1.44685 1.11268,-0.889762 1.44975 1.11213,-0.889762 1.44685 1.1122,-0.912244 1.5059 1.05371,-0.889762 1.5059 1.05315,-0.889762 1.50583 1.05605,-1.2462 1.44939 1.33858,-1.2394 1.44939 1.32481,-1.24614 1.44685 1.33858,-1.23747 1.44685 1.32125,-1.24638 1.45192 1.33858,-1.23955 1.45192 1.32473,-1.25207 1.47147 1.33858,-1.25187 1.47147 1.33816,-1.25096 1.46914 1.33858,-1.24668 1.45445 1.33858,-1.23979 1.45445 1.32461,-1.25329 1.47375 1.33858,-1.25288 1.47375 1.33769,-1.2471 1.45696 1.33858,-1.24013 1.45696 1.32443,-1.25461 1.47599 1.33858,-1.25397 1.47599 1.33718,-1.24056 1.45945 1.32421,-1.24764 1.45945 1.33858,-1.25604 1.47817 1.33858,-1.25515 1.47817 1.33664,-1.24109 1.46192 1.32394,-1.2483 1.46192 1.33858,-1.25757 1.48029 1.33858,-1.25641 1.48029 1.33605,-1.24161 1.46399 1.32367,-1.24907 1.46436 1.33858,-1.2592 1.48235 1.33858,-1.25754 1.48203 1.33553,-1.24242 1.46674 1.32325,-1.24996 1.46677 1.33858,-1.25916 1.48431 1.33478,-1.26092 1.48434 1.33858,-1.24323 1.46914 1.32283,-1.22998 1.44939 1.30767,-1.22797 1.44685 1.30437,-1.26273 1.48627 1.33858,-1.26068 1.48627 1.33408,-1.24413 1.47147 1.32236,-1.23012 1.45192 1.30759,-1.26225 1.48812 1.33335,-1.26463 1.48812 1.33858,-1.27081 1.4932 1.33858,-1.27046 1.4932 1.33779,-1.26867 1.49159 1.33858,-1.24511 1.47375 1.32185,-1.23036 1.45445 1.30745,-1.26389 1.48989 1.33259,-1.26661 1.48989 1.33858,-1.27302 1.49473 1.33858,-1.27231 1.49473 1.33697,-1.24618 1.47599 1.3213,-1.23068 1.45696 1.30726,-1.27392 1.49595 1.33626,-1.27529 1.49617 1.33858,-1.2656 1.49159 1.3318,-1.24734 1.47817 1.3207,-1.23111 1.45945 1.30701,-1.26738 1.4932 1.33097,-1.27616 1.4975 1.33527,-1.27763 1.49751 1.33858,-1.24857 1.48029 1.32006,-1.23162 1.46192 1.30671,-1.26921 1.49473 1.33012,-1.27819 1.49877 1.33438,-1.28002 1.49877 1.33858,-1.24967 1.48203 1.31949,-1.23213 1.46399 1.30642,-1.27081 1.49595 1.32938,-1.28247 1.49993 1.33858,-1.28025 1.49993 1.33347,-1.2901 1.50281 1.33858,-1.28971 1.50281 1.33766,-1.28751 1.50195 1.33858,-1.25126 1.48431 1.31867,-1.23291 1.46674 1.30596,-1.27303 1.4975 1.32836,-1.28497 1.50099 1.33858,-1.28236 1.50099 1.33254,-1.29194 1.50357 1.33672,-1.29272 1.50357 1.33858,-1.25275 1.48627 1.3179,-1.23371 1.46914 1.3055,-1.21972 1.44939 1.29102,-1.21765 1.44685 1.28798,-1.29536 1.50422 1.33858,-1.29387 1.50413 1.33591,-1.27505 1.49877 1.32742,-1.2845 1.50195 1.33159,-1.25428 1.48812 1.3171,-1.23458 1.47147 1.30499,-1.21985 1.45192 1.29093,-1.27709 1.49993 1.32647,-1.28668 1.50281 1.33063,-1.29647 1.50477 1.33481,-1.29804 1.50477 1.33858,-1.25589 1.48989 1.31627,-1.23554 1.47375 1.30443,-1.22008 1.45445 1.29078,-1.27918 1.50099 1.32551,-1.28889 1.50357 1.32965,-1.30073 1.50521 1.33858,-1.29877 1.50521 1.33385,-1.25756 1.49159 1.3154,-1.23658 1.47599 1.30383,-1.2204 1.45696 1.29058,-1.29081 1.50413 1.32881,-1.2813 1.50195 1.32452,-1.30108 1.50554 1.33287,-1.30344 1.50554 1.33858,-1.2593 1.4932 1.3145,-1.2377 1.47817 1.30317,-1.22081 1.45945 1.29031,-1.28347 1.50281 1.32352,-1.29339 1.50477 1.32766,-1.30164 1.5059 1.3179,-1.30341 1.50577 1.33189,-1.31046 1.5059 1.33858,-1.30616 1.50577 1.33858,-1.30831 1.50587 1.33858,-1.2611 1.49473 1.31357,-1.2389 1.48029 1.30247,-1.22131 1.46192 1.28998,-1.28566 1.50357 1.32251,-1.29567 1.50521 1.32666,-1.26266 1.49595 1.31276,-1.23997 1.48203 1.30185,-1.2218 1.46399 1.28966,-1.28756 1.50413 1.32163,-1.29797 1.50554 1.32564,-1.26483 1.4975 1.31164,-1.24151 1.48431 1.30095,-1.22256 1.46674 1.28917,-1.29012 1.50477 1.32044,-1.30028 1.50577 1.32462,-1.26681 1.49877 1.31062,-1.24296 1.48627 1.30011,-1.22333 1.46914 1.28867,-1.20864 1.44939 1.2749,-1.20653 1.44685 1.27211,-1.29238 1.50521 1.31939,-1.26881 1.49993 1.30958,-1.24446 1.48812 1.29923,-1.22418 1.47147 1.28812,-1.20877 1.45192 1.27481,-1.29466 1.50554 1.31833,-1.27085 1.50099 1.30852,-1.24602 1.48989 1.29832,-1.2251 1.47375 1.28751,-1.20899 1.45445 1.27465,-1.29179 1.5059 1.29768,-1.29695 1.50577 1.31727,-1.27293 1.50195 1.30744,-1.24765 1.49159 1.29737,-1.22611 1.47599 1.28685,-1.2093 1.45696 1.27442,-1.27505 1.50281 1.30635,-1.24934 1.4932 1.29639,-1.2272 1.47817 1.28615,-1.2097 1.45945 1.27414,-1.27719 1.50357 1.30524,-1.25109 1.49473 1.29537,-1.22837 1.48029 1.28539,-1.21018 1.46192 1.27379,-1.27905 1.50413 1.30427,-1.25261 1.49595 1.29449,-1.22941 1.48203 1.28471,-1.21065 1.46399 1.27344,-1.28156 1.50477 1.30298,-1.25472 1.4975 1.29325,-1.2309 1.48431 1.28374,-1.21139 1.46674 1.27291,-1.28377 1.50521 1.30183,-1.25665 1.49877 1.29213,-1.23231 1.48627 1.28282,-1.21213 1.46914 1.27237,-1.19677 1.44939 1.25935,-1.19465 1.44685 1.25682,-1.286 1.50554 1.30067,-1.25859 1.49993 1.291,-1.23376 1.48812 1.28188,-1.21295 1.47147 1.27178,-1.1969 1.45192 1.25925,-1.28824 1.50577 1.29951,-1.26058 1.50099 1.28984,-1.23528 1.48989 1.28089,-1.21385 1.47375 1.27113,-1.19711 1.45445 1.25908,-1.2626 1.50195 1.28866,-1.23686 1.49159 1.27986,-1.21482 1.47599 1.27042,-1.19741 1.45696 1.25884,-1.26466 1.50281 1.28746,-1.23849 1.4932 1.27879,-1.21587 1.47817 1.26966,-1.19779 1.45945 1.25854,-1.26675 1.50357 1.28625,-1.24019 1.49473 1.27769,-1.217 1.48029 1.26884,-1.19826 1.46192 1.25816,-1.26856 1.50413 1.28519,-1.24166 1.49595 1.27673,-1.21801 1.48203 1.26812,-1.19871 1.46399 1.2578,-1.271 1.50477 1.28377,-1.24371 1.4975 1.27539,-1.21945 1.48431 1.26707,-1.19942 1.46674 1.25723,-1.27315 1.50521 1.28251,-1.24558 1.49877 1.27418,-1.22081 1.48627 1.26609,-1.20014 1.46914 1.25665,-1.18415 1.44939 1.24441,-1.18203 1.44685 1.24212,-1.27532 1.50554 1.28125,-1.24747 1.49993 1.27295,-1.22221 1.48812 1.26507,-1.20092 1.47147 1.25602,-1.18427 1.45192 1.2443,-1.28096 1.5059 1.27797,-1.2775 1.50577 1.27998,-1.24939 1.50099 1.27169,-1.22368 1.48989 1.26401,-1.20179 1.47375 1.25533,-1.18448 1.45445 1.24412,-1.25136 1.50195 1.27042,-1.2252 1.49159 1.2629,-1.20273 1.47599 1.25457,-1.18476 1.45696 1.24387,-1.25335 1.50281 1.26912,-1.22679 1.4932 1.26176,-1.20374 1.47817 1.25376,-1.18513 1.45945 1.24354,-1.25538 1.50357 1.2678,-1.22842 1.49473 1.26057,-1.20483 1.48029 1.25289,-1.18557 1.46192 1.24315,-1.25713 1.50413 1.26665,-1.22985 1.49595 1.25954,-1.20579 1.48203 1.25211,-1.18601 1.46399 1.24276,-1.2595 1.50477 1.26511,-1.23183 1.4975 1.2581,-1.20718 1.48431 1.25099,-1.18669 1.46674 1.24216,-1.26159 1.50521 1.26375,-1.23363 1.49877 1.2568,-1.20849 1.48627 1.24994,-1.18738 1.46914 1.24155,-1.1708 1.44939 1.23012,-1.1687 1.44685 1.22806,-1.26369 1.50554 1.26238,-1.23546 1.49993 1.25547,-1.20984 1.48812 1.24886,-1.18813 1.47147 1.24088,-1.17092 1.45192 1.23,-1.26916 1.5059 1.25882,-1.26581 1.50577 1.26101,-1.23732 1.50099 1.25413,-1.21125 1.48989 1.24773,-1.18896 1.47375 1.24014,-1.17112 1.45445 1.22981,-1.23922 1.50195 1.25275,-1.21272 1.49159 1.24655,-1.18986 1.47599 1.23934,-1.17139 1.45696 1.22954,-1.24115 1.50281 1.25135,-1.21425 1.4932 1.24532,-1.19083 1.47817 1.23848,-1.17174 1.45945 1.2292,-1.2431 1.50357 1.24994,-1.21582 1.49473 1.24406,-1.19187 1.48029 1.23755,-1.17216 1.46192 1.22878,-1.2448 1.50413 1.24871,-1.2172 1.49595 1.24295,-1.1928 1.48203 1.23673,-1.17258 1.46399 1.22837,-1.24709 1.50477 1.24705,-1.2191 1.4975 1.24142,-1.19413 1.48431 1.23555,-1.17323 1.46674 1.22774,-1.24911 1.50521 1.24559,-1.22084 1.49877 1.24003,-1.19539 1.48627 1.23443,-1.17388 1.46914 1.22709,-1.15676 1.44939 1.2165,-1.15469 1.44685 1.21468,-1.25114 1.50554 1.24411,-1.22259 1.49993 1.23862,-1.19668 1.48812 1.23328,-1.1746 1.47147 1.22639,-1.15687 1.45192 1.21638,-1.25642 1.5059 1.24029,-1.25318 1.50577 1.24263,-1.22439 1.50099 1.23718,-1.19804 1.48989 1.23208,-1.17539 1.47375 1.22561,-1.15706 1.45445 1.21618,-1.22621 1.50195 1.23571,-1.19944 1.49159 1.23083,-1.17625 1.47599 1.22477,-1.15732 1.45696 1.2159,-1.22807 1.50281 1.23422,-1.20091 1.4932 1.22953,-1.17718 1.47817 1.22386,-1.15765 1.45945 1.21554,-1.22996 1.50357 1.23271,-1.20242 1.49473 1.22819,-1.17817 1.48029 1.22288,-1.15805 1.46192 1.2151,-1.23159 1.50413 1.23139,-1.20373 1.49595 1.22702,-1.17906 1.48203 1.22201,-1.15845 1.46399 1.21467,-1.23379 1.50477 1.22963,-1.20556 1.4975 1.22539,-1.18033 1.48431 1.22077,-1.15907 1.46674 1.214,-1.23574 1.50521 1.22806,-1.20723 1.49877 1.22392,-1.18153 1.48627 1.21959,-1.15969 1.46914 1.21333,-1.14206 1.44939 1.2036,-1.14005 1.44685 1.202,-1.23769 1.50554 1.22649,-1.20891 1.49993 1.22242,-1.18277 1.48812 1.21838,-1.16037 1.47147 1.21259,-1.14217 1.45192 1.20347,-1.24278 1.5059 1.22241,-1.23966 1.50577 1.22491,-1.21063 1.50099 1.22089,-1.18406 1.48989 1.21711,-1.16112 1.47375 1.21177,-1.14234 1.45445 1.20326,-1.21238 1.50195 1.21934,-1.1854 1.49159 1.21579,-1.16194 1.47599 1.21089,-1.14259 1.45696 1.20297,-1.21416 1.50281 1.21775,-1.1868 1.4932 1.21442,-1.16282 1.47817 1.20993,-1.1429 1.45945 1.2026,-1.21597 1.50357 1.21615,-1.18824 1.49473 1.213,-1.16377 1.48029 1.20891,-1.14328 1.46192 1.20214,-1.21754 1.50413 1.21476,-1.1895 1.49595 1.21177,-1.16461 1.48203 1.208,-1.14366 1.46399 1.20169,-1.21965 1.50477 1.21288,-1.19125 1.4975 1.21006,-1.16582 1.48431 1.20669,-1.14424 1.46674 1.20099,-1.22151 1.50521 1.21123,-1.19283 1.49877 1.2085,-1.16695 1.48627 1.20546,-1.14483 1.46914 1.20029,-1.12674 1.44939 1.19144,-1.12479 1.44685 1.19005,-1.22339 1.50554 1.20956,-1.19444 1.49993 1.20692,-1.16813 1.48812 1.20418,-1.14547 1.47147 1.19951,-1.12684 1.45192 1.19131,-1.22826 1.5059 1.20523,-1.22527 1.50577 1.20789,-1.19608 1.50099 1.20531,-1.16935 1.48989 1.20285,-1.14618 1.47375 1.19866,-1.127 1.45445 1.1911,-1.19775 1.50195 1.20367,-1.17063 1.49159 1.20147,-1.14696 1.47599 1.19774,-1.12723 1.45696 1.19079,-1.19945 1.50281 1.202,-1.17196 1.4932 1.20003,-1.14779 1.47817 1.19674,-1.12753 1.45945 1.1904,-1.20118 1.50357 1.20031,-1.17333 1.49473 1.19854,-1.14868 1.48029 1.19567,-1.12788 1.46192 1.18993,-1.20267 1.50413 1.19884,-1.17452 1.49595 1.19725,-1.14947 1.48203 1.19472,-1.12824 1.46399 1.18946,-1.20469 1.50477 1.19686,-1.17618 1.4975 1.19545,-1.15062 1.48431 1.19335,-1.12878 1.46674 1.18873,-1.20647 1.50521 1.19512,-1.17769 1.49877 1.19382,-1.15169 1.48627 1.19206,-1.12934 1.46914 1.188,-1.11083 1.44939 1.18006,-1.10897 1.44685 1.17888,-1.20826 1.50554 1.19336,-1.17922 1.49993 1.19216,-1.1528 1.48812 1.19073,-1.12994 1.47147 1.18719,-1.11092 1.45192 1.17993,-1.21292 1.5059 1.18879,-1.21006 1.50577 1.19159,-1.18078 1.50099 1.19047,-1.15396 1.48989 1.18934,-1.13061 1.47375 1.18631,-1.11108 1.45445 1.1797,-1.18237 1.50195 1.18875,-1.15517 1.49159 1.1879,-1.13134 1.47599 1.18535,-1.11129 1.45696 1.17939,-1.18398 1.50281 1.187,-1.15642 1.4932 1.18639,-1.13212 1.47817 1.18431,-1.11157 1.45945 1.17898,-1.18562 1.50357 1.18522,-1.15772 1.49473 1.18484,-1.13295 1.48029 1.1832,-1.1119 1.46192 1.17849,-1.18704 1.50413 1.18368,-1.15884 1.49595 1.18349,-1.1337 1.48203 1.18221,-1.11223 1.46399 1.17801,-1.18896 1.50477 1.18161,-1.16041 1.4975 1.18161,-1.13477 1.48431 1.18078,-1.11274 1.46674 1.17725,-1.19065 1.50521 1.17977,-1.16184 1.49877 1.1799,-1.13578 1.48627 1.17944,-1.11326 1.46914 1.17649,-1.09438 1.44939 1.16949,-1.09262 1.44685 1.16849,-1.19235 1.50554 1.17793,-1.16328 1.49993 1.17817,-1.13683 1.48812 1.17806,-1.11382 1.47147 1.17566,-1.09446 1.45192 1.16935,-1.19677 1.5059 1.17314,-1.19406 1.50577 1.17608,-1.16476 1.50099 1.17641,-1.13792 1.48989 1.17661,-1.11444 1.47375 1.17474,-1.09461 1.45445 1.16912,-1.16626 1.50195 1.17461,-1.13905 1.49159 1.17511,-1.11512 1.47599 1.17375,-1.0948 1.45696 1.16879,-1.16778 1.50281 1.17278,-1.14023 1.4932 1.17355,-1.11585 1.47817 1.17267,-1.09506 1.45945 1.16837,-1.16933 1.50357 1.17093,-1.14144 1.49473 1.17193,-1.11663 1.48029 1.17152,-1.09537 1.46192 1.16786,-1.17067 1.50413 1.16932,-1.1425 1.49595 1.17053,-1.11733 1.48203 1.17049,-1.09567 1.46399 1.16736,-1.17248 1.50477 1.16715,-1.14398 1.4975 1.16857,-1.11833 1.48431 1.16902,-1.09615 1.46674 1.16659,-1.17408 1.50521 1.16524,-1.14531 1.49877 1.1668,-1.11927 1.48627 1.16763,-1.09662 1.46914 1.1658,-1.07742 1.44939 1.15974,-1.07578 1.44685 1.15892,-1.17569 1.50554 1.16331,-1.14667 1.49993 1.165,-1.12024 1.48812 1.1662,-1.09715 1.47147 1.16494,-1.0775 1.45192 1.1596,-1.17987 1.5059 1.1583,-1.17731 1.50577 1.16137,-1.14805 1.50099 1.16316,-1.12126 1.48989 1.1647,-1.09772 1.47375 1.16399,-1.07763 1.45445 1.15936,-1.14946 1.50195 1.16129,-1.12232 1.49159 1.16314,-1.09835 1.47599 1.16296,-1.07781 1.45696 1.15902,-1.1509 1.50281 1.15939,-1.12341 1.4932 1.16152,-1.09902 1.47817 1.16185,-1.07804 1.45945 1.15859,-1.15235 1.50357 1.15746,-1.12455 1.49473 1.15985,-1.09975 1.48029 1.16067,-1.07833 1.46192 1.15807,-1.15361 1.50413 1.15578,-1.12554 1.49595 1.15839,-1.10039 1.48203 1.15961,-1.07861 1.46399 1.15756,-1.15531 1.50477 1.15353,-1.12691 1.4975 1.15636,-1.10132 1.48431 1.15808,-1.07904 1.46674 1.15676,-1.15681 1.50521 1.15154,-1.12816 1.49877 1.15452,-1.10219 1.48627 1.15665,-1.07948 1.46914 1.15595,-1.06 1.44939 1.15085,-1.05848 1.44685 1.15019,-1.15832 1.50554 1.14953,-1.12943 1.49993 1.15266,-1.10309 1.48812 1.15517,-1.07996 1.47147 1.15506,-1.06007 1.45192 1.1507,-1.16225 1.5059 1.14433,-1.15984 1.50577 1.14752,-1.13072 1.50099 1.15076,-1.10403 1.48989 1.15362,-1.08049 1.47375 1.15409,-1.06019 1.45445 1.15046,-1.13203 1.50195 1.14882,-1.10501 1.49159 1.15201,-1.08106 1.47599 1.15303,-1.06035 1.45696 1.15011,-1.13337 1.50281 1.14685,-1.10602 1.4932 1.15034,-1.08168 1.47817 1.15189,-1.06057 1.45945 1.14967,-1.13473 1.50357 1.14485,-1.10708 1.49473 1.14861,-1.08234 1.48029 1.15066,-1.06082 1.46192 1.14914,-1.1359 1.50413 1.14311,-1.10799 1.49595 1.14711,-1.08293 1.48203 1.14957,-1.06108 1.46399 1.14861,-1.13749 1.50477 1.14078,-1.10926 1.4975 1.14502,-1.08378 1.48431 1.14801,-1.06147 1.46674 1.14779,-1.13889 1.50521 1.13871,-1.11042 1.49877 1.14312,-1.08458 1.48627 1.14653,-1.06187 1.46914 1.14696,-1.04216 1.44939 1.14284,-1.04078 1.44685 1.14232,-1.1403 1.50554 1.13664,-1.11159 1.49993 1.1412,-1.08541 1.48812 1.14501,-1.0623 1.47147 1.14605,-1.04222 1.45192 1.14268,-1.14396 1.5059 1.13124,-1.14171 1.50577 1.13455,-1.12504 1.5059 1.11908,-1.11278 1.50099 1.13923,-1.08627 1.48989 1.14342,-1.06278 1.47375 1.14505,-1.04233 1.45445 1.14243,-1.114 1.50195 1.13723,-1.08717 1.49159 1.14176,-1.0633 1.47599 1.14397,-1.04248 1.45696 1.14208,-1.11524 1.50281 1.13519,-1.0881 1.4932 1.14004,-1.06386 1.47817 1.14279,-1.04267 1.45945 1.14163,-1.1165 1.50357 1.13313,-1.08907 1.49473 1.13826,-1.06447 1.48029 1.14154,-1.0429 1.46192 1.14108,-1.11758 1.50413 1.13134,-1.0899 1.49595 1.13672,-1.065 1.48203 1.14042,-1.04312 1.46399 1.14054,-1.11905 1.50477 1.12893,-1.09107 1.4975 1.13456,-1.06577 1.48431 1.13881,-1.04348 1.46674 1.1397,-1.12035 1.50521 1.1268,-1.09213 1.49877 1.13261,-1.0665 1.48627 1.1373,-1.04383 1.46914 1.13886,-1.02394 1.44939 1.13572,-1.02271 1.44685 1.13533,-1.12165 1.50554 1.12465,-1.0932 1.49993 1.13063,-1.06725 1.48812 1.13574,-1.04422 1.47147 1.13793,-1.024 1.45192 1.13556,-1.12296 1.50577 1.1225,-1.0943 1.50099 1.12861,-1.06803 1.48989 1.13411,-1.04465 1.47375 1.13691,-1.02409 1.45445 1.13531,-1.09542 1.50195 1.12655,-1.06884 1.49159 1.13241,-1.04512 1.47599 1.13579,-1.02422 1.45696 1.13495,-1.09655 1.50281 1.12445,-1.06969 1.4932 1.13064,-1.04562 1.47817 1.1346,-1.02439 1.45945 1.13449,-1.0977 1.50357 1.12233,-1.07056 1.49473 1.12882,-1.04616 1.48029 1.13331,-1.02459 1.46192 1.13393,-1.0987 1.50413 1.12049,-1.07132 1.49595 1.12723,-1.04664 1.48203 1.13217,-1.02479 1.46399 1.13338,-1.10005 1.50477 1.11801,-1.07238 1.4975 1.12503,-1.04733 1.48431 1.13053,-1.0251 1.46674 1.13252,-1.10124 1.50521 1.11581,-1.07335 1.49877 1.12302,-1.04798 1.48627 1.12898,-1.02541 1.46914 1.13166,-1.0054 1.44939 1.12951,-1.00432 1.44685 1.12924,-1.10243 1.50554 1.11361,-1.07432 1.49993 1.12099,-1.04865 1.48812 1.12738,-1.02576 1.47147 1.13071,-1.00544 1.45192 1.12935,-1.10554 1.5059 1.10787,-1.10364 1.50577 1.11139,-1.08551 1.5059 1.09765,-1.07531 1.50099 1.11892,-1.04935 1.48989 1.12571,-1.02614 1.47375 1.12967,-1.00552 1.45445 1.12909,-1.07633 1.50195 1.1168,-1.05008 1.49159 1.12398,-1.02655 1.47599 1.12854,-1.00564 1.45696 1.12873,-1.07736 1.50281 1.11466,-1.05083 1.4932 1.12217,-1.02699 1.47817 1.12732,-1.00578 1.45945 1.12826,-1.0784 1.50357 1.11248,-1.05162 1.49473 1.12031,-1.02746 1.48029 1.12601,-1.00595 1.46192 1.12769,-1.07931 1.50413 1.11059,-1.0523 1.49595 1.11869,-1.02789 1.48203 1.12484,-1.00613 1.46399 1.12713,-1.08053 1.50477 1.10804,-1.05325 1.4975 1.11643,-1.02849 1.48431 1.12316,-1.00639 1.46674 1.12626,-1.08161 1.50521 1.10579,-1.05411 1.49877 1.11438,-1.02906 1.48627 1.12159,-1.00666 1.46914 1.12538,-0.986563 1.44939 1.12423,-0.985658 1.44685 1.12406,-1.08269 1.50554 1.10353,-1.05498 1.49993 1.1123,-1.02966 1.48812 1.11996,-1.00696 1.47147 1.12442,-0.986603 1.45192 1.12407,-1.08378 1.50577 1.10126,-1.05587 1.50099 1.11018,-1.03027 1.48989 1.11826,-1.00728 1.47375 1.12336,-0.98667 1.45445 1.12381,-1.05677 1.50195 1.10802,-1.03091 1.49159 1.11649,-1.00764 1.47599 1.12221,-0.986764 1.45696 1.12344,-1.0577 1.50281 1.10582,-1.03158 1.4932 1.11465,-1.00802 1.47817 1.12097,-0.986884 1.45945 1.12297,-1.05863 1.50357 1.1036,-1.03227 1.49473 1.11275,-1.00843 1.48029 1.11964,-0.98703 1.46192 1.12239,-1.05944 1.50413 1.10166,-1.03287 1.49595 1.11109,-1.00879 1.48203 1.11845,-0.987174 1.46399 1.12182,-1.06054 1.50477 1.09906,-1.0337 1.4975 1.10879,-1.00932 1.48431 1.11675,-0.987398 1.46674 1.12094,-1.0615 1.50521 1.09676,-1.03446 1.49877 1.1067,-1.00981 1.48627 1.11515,-0.987624 1.46914 1.12005,-0.967491 1.44939 1.1199,-0.966759 1.44685 1.11981,-1.06247 1.50554 1.09445,-1.03523 1.49993 1.10458,-1.01032 1.48812 1.11349,-0.987872 1.47147 1.11907,-0.967523 1.45192 1.11974,-1.065 1.5059 1.08843,-1.06345 1.50577 1.09212,-1.03601 1.50099 1.10242,-1.01085 1.48989 1.11176,-0.988144 1.47375 1.118,-0.967577 1.45445 1.11947,-1.03681 1.50195 1.10022,-1.0114 1.49159 1.10996,-0.98844 1.47599 1.11683,-0.967652 1.45696 1.11909,-1.03762 1.50281 1.09798,-1.01198 1.4932 1.10809,-0.988759 1.47817 1.11557,-0.967749 1.45945 1.11862,-1.03845 1.50357 1.09571,-1.01257 1.49473 1.10616,-0.989101 1.48029 1.11422,-0.967866 1.46192 1.11803,-1.03916 1.50413 1.09374,-1.01309 1.49595 1.10447,-0.989406 1.48203 1.11302,-0.967982 1.46399 1.11746,-1.04012 1.50477 1.09108,-1.01381 1.4975 1.10213,-0.989845 1.48431 1.11129,-0.968161 1.46674 1.11657,-1.04097 1.50521 1.08874,-1.01446 1.49877 1.10001,-0.990257 1.48627 1.10967,-0.968343 1.46914 1.11567,-0.948227 1.44939 1.11651,-0.947673 1.44685 1.11649,-1.04183 1.50554 1.08638,-1.01512 1.49993 1.09785,-0.990683 1.48812 1.10799,-0.968542 1.47147 1.11468,-0.948251 1.45192 1.11635,-1.04405 1.5059 1.08025,-1.04269 1.50577 1.08401,-1.0158 1.50099 1.09566,-0.991128 1.48989 1.10623,-0.96876 1.47375 1.11359,-0.948292 1.45445 1.11608,-1.01648 1.50195 1.09342,-0.991591 1.49159 1.10441,-0.968998 1.47599 1.11241,-0.948348 1.45696 1.1157,-1.01718 1.50281 1.09114,-0.992072 1.4932 1.10251,-0.969255 1.47817 1.11114,-0.948421 1.45945 1.11522,-1.01789 1.50357 1.08883,-0.992569 1.49473 1.10055,-0.969529 1.48029 1.10977,-0.948509 1.46192 1.11463,-1.01851 1.50413 1.08683,-0.993002 1.49595 1.09884,-0.969774 1.48203 1.10856,-0.948596 1.46399 1.11405,-1.01934 1.50477 1.08413,-0.993604 1.4975 1.09647,-0.970126 1.48431 1.10681,-0.948731 1.46674 1.11315,-1.02007 1.50521 1.08174,-0.99415 1.49877 1.09432,-0.970457 1.48627 1.10516,-0.948868 1.46914 1.11225,-0.928819 1.44939 1.11409,-0.928448 1.44685 1.11411,-1.02081 1.50554 1.07934,-0.994704 1.49993 1.09213,-0.970799 1.48812 1.10347,-0.949018 1.47147 1.11125,-0.928835 1.45192 1.11393,-1.02272 1.5059 1.07311,-1.02155 1.50577 1.07693,-1.00107 1.5059 1.06704,-0.995269 1.50099 1.0899,-0.971157 1.48989 1.10169,-0.949182 1.47375 1.11015,-0.928862 1.45445 1.11366,-0.995845 1.50195 1.08763,-0.971529 1.49159 1.09984,-0.949361 1.47599 1.10896,-0.9289 1.45696 1.11328,-0.996431 1.50281 1.08532,-0.971914 1.4932 1.09793,-0.949554 1.47817 1.10768,-0.928949 1.45945 1.11279,-0.997025 1.50357 1.08298,-0.972314 1.49473 1.09595,-0.94976 1.48029 1.1063,-0.929008 1.46192 1.1122,-0.99754 1.50413 1.08095,-0.972661 1.49595 1.09422,-0.949944 1.48203 1.10507,-0.929066 1.46399 1.11161,-0.998234 1.50477 1.07821,-0.973144 1.4975 1.09182,-0.950209 1.48431 1.10331,-0.929156 1.46674 1.11071,-0.998847 1.50521 1.0758,-0.973583 1.49877 1.08964,-0.950458 1.48627 1.10165,-0.929247 1.46914 1.1098,-0.909315 1.44939 1.11263,-0.999465 1.50554 1.07336,-0.974028 1.49993 1.08743,-0.950716 1.48812 1.09994,-0.929347 1.47147 1.10879,-0.909323 1.45192 1.11247,-0.889762 1.45264 1.11192,-1.00008 1.50577 1.07092,-0.974482 1.50099 1.08518,-0.950984 1.48989 1.09815,-0.929457 1.47375 1.10769,-0.909336 1.45445 1.1122,-0.889762 1.45551 1.11156,-0.974945 1.50195 1.08288,-0.951264 1.49159 1.09629,-0.929576 1.47599 1.10649,-0.909355 1.45696 1.11182,-0.889762 1.45837 1.11107,-0.975415 1.50281 1.08054,-0.951554 1.4932 1.09435,-0.929705 1.47817 1.1052,-0.909379 1.45945 1.11133,-0.889762 1.4612 1.11043,-0.975892 1.50357 1.07818,-0.951855 1.49473 1.09235,-0.929843 1.48029 1.10381,-0.909409 1.46192 1.11073,-0.889762 1.46399 1.10966,-0.976305 1.50413 1.07612,-0.952116 1.49595 1.09061,-0.929966 1.48203 1.10258,-0.909438 1.46399 1.11015,-0.976863 1.50477 1.07335,-0.95248 1.4975 1.08819,-0.930143 1.48431 1.10081,-0.909483 1.46674 1.10924,-0.889762 1.46674 1.10875,-0.977355 1.50521 1.07091,-0.95281 1.49877 1.08599,-0.93031 1.48627 1.09914,-0.909529 1.46914 1.10832,-0.889762 1.46945 1.10771,-0.977851 1.50554 1.06845,-0.953144 1.49993 1.08376,-0.930481 1.48812 1.09741,-0.909579 1.47147 1.10732,-0.889762 1.4721 1.10653,-0.978348 1.50577 1.06598,-0.979138 1.5059 1.06206,-0.953486 1.50099 1.08149,-0.930661 1.48989 1.09561,-0.909634 1.47375 1.10621,-0.889762 1.47469 1.10523,-0.953834 1.50195 1.07917,-0.930848 1.49159 1.09374,-0.909694 1.47599 1.10501,-0.889762 1.47721 1.1038,-0.954187 1.50281 1.07682,-0.931042 1.4932 1.09179,-0.909758 1.47817 1.10371,-0.889762 1.47966 1.10225,-0.954546 1.50357 1.07443,-0.931242 1.49473 1.08978,-0.909827 1.48029 1.10232,-0.889762 1.48203 1.10058,-0.954857 1.50413 1.07236,-0.931417 1.49595 1.08803,-0.909889 1.48203 1.10108,-0.955276 1.50477 1.06956,-0.93166 1.4975 1.08559,-0.909978 1.48431 1.0993,-0.889762 1.48431 1.0988,-0.955647 1.50521 1.0671,-0.93188 1.49877 1.08338,-0.910061 1.48627 1.09763,-0.889762 1.48651 1.0969,-0.956019 1.50554 1.06461,-0.932104 1.49993 1.08114,-0.910147 1.48812 1.09589,-0.889762 1.48861 1.09491,-0.956394 1.50577 1.06212,-0.956987 1.5059 1.05817,-0.932332 1.50099 1.07885,-0.910237 1.48989 1.09409,-0.889762 1.4906 1.09281,-0.932564 1.50195 1.07652,-0.91033 1.49159 1.0922,-0.889762 1.4925 1.09061,-0.932801 1.50281 1.07415,-0.910427 1.4932 1.09025,-0.889762 1.49428 1.08833,-0.93304 1.50357 1.07174,-0.910528 1.49473 1.08823,-0.889762 1.49595 1.08596,-0.933248 1.50413 1.06966,-0.910615 1.49595 1.08647,-0.933528 1.50477 1.06685,-0.910737 1.4975 1.08403,-0.889762 1.4975 1.08351,-0.933776 1.50521 1.06437,-0.910847 1.49877 1.08181,-0.889762 1.49893 1.08099,-0.934025 1.50554 1.06187,-0.910959 1.49993 1.07956,-0.889762 1.50023 1.0784,-0.934671 1.5059 1.05538,-0.934275 1.50577 1.05936,-0.911073 1.50099 1.07726,-0.889762 1.50141 1.07575,-0.91119 1.50195 1.07492,-0.889762 1.50245 1.07304,-0.911308 1.50281 1.07254,-0.889762 1.50336 1.07029,-0.911428 1.50357 1.07013,-0.889762 1.50413 1.0675,-0.911532 1.50413 1.06804,-0.911672 1.50477 1.06522,-0.889762 1.50477 1.06467,-0.911796 1.50521 1.06273,-0.889762 1.50526 1.06181,-0.911921 1.50554 1.06022,-0.889762 1.50562 1.05894,-0.912046 1.50577 1.0577]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,1,-1,3,1,0,-1,5,4,3,-1,6,4,5,-1,7,6,5,-1,8,7,5,-1,9,8,5,-1,10,9,5,-1,11,10,5,-1,12,11,5,-1,13,12,5,-1,13,14,12,-1,13,15,14,-1,13,16,15,-1,13,17,16,-1,13,18,17,-1,13,19,18,-1,13,20,19,-1,13,21,20,-1,13,22,21,-1,13,23,22,-1,24,23,13,-1,25,24,13,-1,26,25,13,-1,27,26,13,-1,28,27,13,-1,29,3,30,-1,29,5,3,-1,31,32,28,-1,31,33,32,-1,31,34,33,-1,31,28,13,-1,35,31,13,-1,36,34,31,-1,37,31,35,-1,38,39,36,-1,40,39,41,-1,42,40,41,-1,43,42,41,-1,44,43,41,-1,45,39,38,-1,46,47,44,-1,46,48,47,-1,46,49,48,-1,46,50,49,-1,46,51,50,-1,46,52,51,-1,46,53,52,-1,46,54,53,-1,46,55,54,-1,46,56,55,-1,46,57,56,-1,46,58,57,-1,46,44,41,-1,46,59,58,-1,46,60,59,-1,46,61,60,-1,62,63,64,-1,62,65,61,-1,62,66,65,-1,62,67,66,-1,62,68,67,-1,62,69,68,-1,62,61,46,-1,62,64,69,-1,70,41,71,-1,70,46,41,-1,72,63,62,-1,72,62,73,-1,72,74,63,-1,75,74,72,-1,75,76,74,-1,77,72,73,-1,40,34,36,-1,40,36,39,-1]
coord Coordinate { point [-2.54921 1.5059 0.492125,-2.51968 1.5059 1.33858,-2.54921 1.5059 1.33858,-2.20472 1.5059 0.492125,-1.99606 1.5059 1.33858,-1.73228 1.5059 0.925195,-1.31046 1.5059 1.33858,-1.30164 1.5059 1.3179,-1.29179 1.5059 1.29768,-1.28096 1.5059 1.27797,-1.26916 1.5059 1.25882,-1.25642 1.5059 1.24029,-1.24278 1.5059 1.22241,-1.22047 1.5059 0.925195,-1.22826 1.5059 1.20523,-1.21292 1.5059 1.18879,-1.19677 1.5059 1.17314,-1.17987 1.5059 1.1583,-1.16225 1.5059 1.14433,-1.14396 1.5059 1.13124,-1.12504 1.5059 1.11908,-1.10554 1.5059 1.10787,-1.08551 1.5059 1.09765,-1.065 1.5059 1.08843,-1.04405 1.5059 1.08025,-1.02272 1.5059 1.07311,-1.00107 1.5059 1.06704,-0.979138 1.5059 1.06206,-0.956987 1.5059 1.05817,-1.73228 1.5059 0.03937,-2.20472 1.5059 0.03937,-0.74803 1.5059 0.925195,-0.934671 1.5059 1.05538,-0.912244 1.5059 1.05371,-0.889762 1.5059 1.05315,-1.22047 1.5059 0.03937,-0.23622 1.5059 0.925195,-0.74803 1.5059 0.03937,-0.23622 1.5059 0.03937,0.23622 1.5059 0.925195,0.889762 1.5059 1.05315,0.74803 1.5059 0.925195,0.912244 1.5059 1.05371,0.934671 1.5059 1.05538,0.956987 1.5059 1.05817,0.23622 1.5059 0.03937,1.22047 1.5059 0.925195,0.979138 1.5059 1.06206,1.00107 1.5059 1.06704,1.02272 1.5059 1.07311,1.04405 1.5059 1.08025,1.065 1.5059 1.08843,1.08551 1.5059 1.09765,1.10554 1.5059 1.10787,1.12504 1.5059 1.11908,1.14396 1.5059 1.13124,1.16225 1.5059 1.14433,1.17987 1.5059 1.1583,1.19677 1.5059 1.17314,1.21292 1.5059 1.18879,1.22826 1.5059 1.20523,1.24278 1.5059 1.22241,1.73228 1.5059 0.925195,1.99606 1.5059 1.33858,1.31046 1.5059 1.33858,1.25642 1.5059 1.24029,1.26916 1.5059 1.25882,1.28096 1.5059 1.27797,1.29179 1.5059 1.29768,1.30164 1.5059 1.3179,1.22047 1.5059 0.03937,0.74803 1.5059 0.03937,2.20472 1.5059 0.492125,1.73228 1.5059 0.03937,2.51968 1.5059 1.33858,2.54921 1.5059 0.492125,2.54921 1.5059 1.33858,2.20472 1.5059 0.03937]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,19,20,-1,18,17,19,-1,18,16,17,-1,21,18,20,-1,22,21,20,-1,22,20,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,25,27,-1,28,27,29,-1,28,26,27,-1,30,29,31,-1,30,28,29,-1,32,31,33,-1,32,30,31,-1,34,33,35,-1,34,32,33,-1,36,35,37,-1,36,34,35,-1,38,37,39,-1,38,36,37,-1,40,39,41,-1,40,38,39,-1,42,43,44,-1,42,41,43,-1,42,40,41,-1,45,42,44,-1,46,47,48,-1,46,44,47,-1,46,45,44,-1,49,46,48,-1,50,51,52,-1,50,48,51,-1,50,49,48,-1,53,50,52,-1]
coord Coordinate { point [1.12204 2.87373 0.853789,1.12204 2.87586 0.847383,0.846455 2.87586 0.847383,0.846455 2.87373 0.853789,1.12204 2.87128 0.860082,0.846455 2.87128 0.860082,1.12204 2.86854 0.866249,0.846455 2.86854 0.866249,1.12204 2.86549 0.872274,0.846455 2.86549 0.872274,1.12204 2.86215 0.878142,0.846455 2.86215 0.878142,1.12204 2.85853 0.883839,0.846455 2.85853 0.883839,1.12204 2.85463 0.889352,0.846455 2.85463 0.889352,1.12204 2.85047 0.894668,0.846455 2.85047 0.894668,1.12204 2.84605 0.899773,0.846455 2.84605 0.899773,0.846455 2.84139 0.904656,1.12204 2.84139 0.904656,1.12204 2.83649 0.909305,0.846455 2.83649 0.909305,1.12204 2.83138 0.913708,0.846455 2.83138 0.913708,1.12204 2.82605 0.917856,0.846455 2.82605 0.917856,1.12204 2.82052 0.921737,0.846455 2.82052 0.921737,1.12204 2.81482 0.925343,0.846455 2.81482 0.925343,1.12204 2.80894 0.928666,0.846455 2.80894 0.928666,1.12204 2.80291 0.931696,0.846455 2.80291 0.931696,1.12204 2.79673 0.934428,0.846455 2.79673 0.934428,1.12204 2.79043 0.936853,0.846455 2.79043 0.936853,1.12204 2.78402 0.938967,0.846455 2.78402 0.938967,1.12204 2.77751 0.940765,0.846455 2.77751 0.940765,0.846455 2.77092 0.942242,1.12204 2.77092 0.942242,1.12204 2.76427 0.943394,0.846455 2.76427 0.943394,0.846455 2.75757 0.944219,1.12204 2.75757 0.944219,1.12204 2.75084 0.944715,0.846455 2.75084 0.944715,0.846455 2.74409 0.94488,1.12204 2.74409 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.12204 2.87586 0.847383,1.12204 3.09462 0.132038,0.846455 2.87586 0.847383,0.846455 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,2,4,5,-1,1,4,2,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,14,15,16,-1,13,15,14,-1,12,15,13,-1,15,17,16,-1,16,18,19,-1,17,18,16,-1,19,20,21,-1,18,20,19,-1,21,22,23,-1,20,22,21,-1,23,24,25,-1,22,24,23,-1,24,26,25,-1,25,26,27,-1,26,28,27,-1,27,28,29,-1,28,30,29,-1,29,30,31,-1,32,33,34,-1,31,33,32,-1,30,33,31,-1,33,35,34,-1,34,36,37,-1,35,36,34,-1,37,38,39,-1,36,38,37,-1,39,40,41,-1,38,40,39,-1,41,42,43,-1,40,42,41,-1,43,44,45,-1,42,44,43,-1]
coord Coordinate { point [1.12204 3.11345 0.11811,0.846455 3.11231 0.118143,1.12204 3.11231 0.118143,0.846455 3.11345 0.11811,0.846455 3.11117 0.118242,1.12204 3.11117 0.118242,0.846455 3.11005 0.118406,1.12204 3.11005 0.118406,0.846455 3.10893 0.118636,1.12204 3.10893 0.118636,0.846455 3.10783 0.118929,1.12204 3.10783 0.118929,0.846455 3.10675 0.119286,1.12204 3.10675 0.119286,1.12204 3.10569 0.119705,0.846455 3.10569 0.119705,1.12204 3.10465 0.120185,0.846455 3.10465 0.120185,0.846455 3.10365 0.120724,1.12204 3.10365 0.120724,0.846455 3.10268 0.121319,1.12204 3.10268 0.121319,0.846455 3.10174 0.121971,1.12204 3.10174 0.121971,0.846455 3.10084 0.122675,1.12204 3.10084 0.122675,0.846455 3.09999 0.12343,1.12204 3.09999 0.12343,0.846455 3.09918 0.124233,1.12204 3.09918 0.124233,0.846455 3.09842 0.125081,1.12204 3.09842 0.125081,1.12204 3.09771 0.125972,0.846455 3.09771 0.125972,1.12204 3.09705 0.126903,0.846455 3.09705 0.126903,0.846455 3.09645 0.12787,1.12204 3.09645 0.12787,0.846455 3.0959 0.128871,1.12204 3.0959 0.128871,0.846455 3.09542 0.129901,1.12204 3.09542 0.129901,0.846455 3.09499 0.130958,1.12204 3.09499 0.130958,0.846455 3.09462 0.132038,1.12204 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.12204 3.11345 0.11811,1.12204 3.42519 0.11811,0.846455 3.11345 0.11811,0.846455 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1]
coord Coordinate { point [1.12204 3.42519 3.93735e-13,0.846455 3.42519 3.93735e-13,0.846455 3.42519 0.11811,1.12204 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.12204 3.42519 3.93735e-13,1.12204 3.11345 0,0.846455 3.42519 3.93735e-13,0.846455 3.11345 0]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,13,14,-1,12,11,13,-1,12,10,11,-1,15,12,14,-1,16,14,17,-1,16,15,14,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1,22,20,21,-1,22,21,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,25,27,-1,28,27,29,-1,28,26,27,-1,30,29,31,-1,30,28,29,-1,32,31,33,-1,32,30,31,-1,34,33,35,-1,34,32,33,-1,36,35,37,-1,36,34,35,-1,38,37,39,-1,38,36,37,-1,40,39,41,-1,40,38,39,-1,42,41,43,-1,42,40,41,-1,44,43,45,-1,44,42,43,-1,46,45,47,-1,46,44,45,-1,48,47,49,-1,48,46,47,-1,50,51,52,-1,50,49,51,-1,50,48,49,-1,53,50,52,-1]
coord Coordinate { point [0.846455 3.1067 0.000165393,1.12204 3.11345 0,1.12204 3.1067 0.000165393,0.846455 3.11345 0,0.846455 3.09997 0.000661173,1.12204 3.09997 0.000661173,0.846455 3.09327 0.00148615,1.12204 3.09327 0.00148615,0.846455 3.08661 0.00263835,1.12204 3.08661 0.00263835,0.846455 3.08003 0.004115,1.12204 3.08003 0.004115,0.846455 3.07352 0.00591255,1.12204 3.07352 0.00591255,1.12204 3.06711 0.0080267,0.846455 3.06711 0.0080267,0.846455 3.06081 0.0104524,1.12204 3.06081 0.0104524,0.846455 3.05463 0.0131837,1.12204 3.05463 0.0131837,0.846455 3.0486 0.0162142,1.12204 3.0486 0.0162142,0.846455 3.04272 0.0195366,1.12204 3.04272 0.0195366,0.846455 3.03701 0.0231428,1.12204 3.03701 0.0231428,0.846455 3.03149 0.0270243,1.12204 3.03149 0.0270243,0.846455 3.02616 0.0311717,1.12204 3.02616 0.0311717,0.846455 3.02105 0.035575,1.12204 3.02105 0.035575,0.846455 3.01615 0.0402237,1.12204 3.01615 0.0402237,0.846455 3.01149 0.0451067,1.12204 3.01149 0.0451067,0.846455 3.00707 0.0502121,1.12204 3.00707 0.0502121,0.846455 3.00291 0.0555278,1.12204 3.00291 0.0555278,0.846455 2.99901 0.061041,1.12204 2.99901 0.061041,0.846455 2.99539 0.0667385,1.12204 2.99539 0.0667385,0.846455 2.99205 0.0726065,1.12204 2.99205 0.0726065,0.846455 2.989 0.078631,1.12204 2.989 0.078631,0.846455 2.98625 0.0847975,1.12204 2.98625 0.0847975,0.846455 2.98381 0.0910913,1.12204 2.98381 0.0910913,1.12204 2.98168 0.0974972,0.846455 2.98168 0.0974972]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.12204 2.98168 0.0974972,1.12204 2.76291 0.812842,0.846455 2.98168 0.0974972,0.846455 2.76291 0.812842]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,18,19,20,-1,17,19,18,-1,16,19,17,-1,19,21,20,-1,20,22,23,-1,21,22,20,-1,23,24,25,-1,22,24,23,-1,24,26,25,-1,27,26,28,-1,25,26,27,-1,26,29,28,-1,29,30,28,-1,28,30,31,-1,31,32,33,-1,30,32,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,40,41,42,-1,39,41,40,-1,38,41,39,-1,42,43,44,-1,41,43,42,-1,43,45,44,-1]
coord Coordinate { point [1.12204 2.76291 0.812842,1.12204 2.76255 0.813922,0.846455 2.76291 0.812842,0.846455 2.76255 0.813922,1.12204 2.76212 0.814979,0.846455 2.76212 0.814979,1.12204 2.76163 0.816009,0.846455 2.76163 0.816009,1.12204 2.76109 0.81701,0.846455 2.76109 0.81701,1.12204 2.76049 0.817977,0.846455 2.76049 0.817977,1.12204 2.75983 0.818908,0.846455 2.75983 0.818908,1.12204 2.75912 0.819799,0.846455 2.75912 0.819799,1.12204 2.75836 0.820647,0.846455 2.75836 0.820647,0.846455 2.75755 0.82145,1.12204 2.75755 0.82145,0.846455 2.75669 0.822205,1.12204 2.75669 0.822205,1.12204 2.7558 0.822909,0.846455 2.7558 0.822909,1.12204 2.75486 0.823561,0.846455 2.75486 0.823561,1.12204 2.75389 0.824156,0.846455 2.75389 0.824156,0.846455 2.75289 0.824695,1.12204 2.75289 0.824695,1.12204 2.75185 0.825175,0.846455 2.75185 0.825175,1.12204 2.75079 0.825594,0.846455 2.75079 0.825594,1.12204 2.74971 0.825951,0.846455 2.74971 0.825951,1.12204 2.74861 0.826244,0.846455 2.74861 0.826244,1.12204 2.74749 0.826474,0.846455 2.74749 0.826474,0.846455 2.74636 0.826638,1.12204 2.74636 0.826638,0.846455 2.74523 0.826737,1.12204 2.74523 0.826737,0.846455 2.74409 0.82677,1.12204 2.74409 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,19,20,-1,18,17,19,-1,18,16,17,-1,21,18,20,-1,22,21,20,-1,22,20,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,25,27,-1,28,27,29,-1,28,26,27,-1,30,29,31,-1,30,28,29,-1,32,31,33,-1,32,30,31,-1,34,33,35,-1,34,32,33,-1,36,35,37,-1,36,34,35,-1,38,37,39,-1,38,36,37,-1,40,39,41,-1,40,38,39,-1,42,43,44,-1,42,41,43,-1,42,40,41,-1,45,42,44,-1,46,47,48,-1,46,44,47,-1,46,45,44,-1,49,46,48,-1,50,51,52,-1,50,48,51,-1,50,49,48,-1,53,50,52,-1]
coord Coordinate { point [-0.846455 2.87373 0.853789,-0.846455 2.87586 0.847383,-1.12204 2.87586 0.847383,-1.12204 2.87373 0.853789,-0.846455 2.87128 0.860082,-1.12204 2.87128 0.860082,-0.846455 2.86854 0.866249,-1.12204 2.86854 0.866249,-0.846455 2.86549 0.872274,-1.12204 2.86549 0.872274,-0.846455 2.86215 0.878142,-1.12204 2.86215 0.878142,-0.846455 2.85853 0.883839,-1.12204 2.85853 0.883839,-0.846455 2.85463 0.889352,-1.12204 2.85463 0.889352,-0.846455 2.85047 0.894668,-1.12204 2.85047 0.894668,-0.846455 2.84605 0.899773,-1.12204 2.84605 0.899773,-1.12204 2.84139 0.904656,-0.846455 2.84139 0.904656,-0.846455 2.83649 0.909305,-1.12204 2.83649 0.909305,-0.846455 2.83138 0.913708,-1.12204 2.83138 0.913708,-0.846455 2.82605 0.917856,-1.12204 2.82605 0.917856,-0.846455 2.82052 0.921737,-1.12204 2.82052 0.921737,-0.846455 2.81482 0.925343,-1.12204 2.81482 0.925343,-0.846455 2.80894 0.928666,-1.12204 2.80894 0.928666,-0.846455 2.80291 0.931696,-1.12204 2.80291 0.931696,-0.846455 2.79673 0.934428,-1.12204 2.79673 0.934428,-0.846455 2.79043 0.936853,-1.12204 2.79043 0.936853,-0.846455 2.78402 0.938967,-1.12204 2.78402 0.938967,-0.846455 2.77751 0.940765,-1.12204 2.77751 0.940765,-1.12204 2.77092 0.942242,-0.846455 2.77092 0.942242,-0.846455 2.76427 0.943394,-1.12204 2.76427 0.943394,-1.12204 2.75757 0.944219,-0.846455 2.75757 0.944219,-0.846455 2.75084 0.944715,-1.12204 2.75084 0.944715,-1.12204 2.74409 0.94488,-0.846455 2.74409 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.846455 2.87586 0.847383,-0.846455 3.09462 0.132038,-1.12204 2.87586 0.847383,-1.12204 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,2,4,5,-1,1,4,2,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,14,15,16,-1,13,15,14,-1,12,15,13,-1,15,17,16,-1,16,18,19,-1,17,18,16,-1,19,20,21,-1,18,20,19,-1,21,22,23,-1,20,22,21,-1,23,24,25,-1,22,24,23,-1,24,26,25,-1,25,26,27,-1,26,28,27,-1,27,28,29,-1,28,30,29,-1,29,30,31,-1,32,33,34,-1,31,33,32,-1,30,33,31,-1,33,35,34,-1,34,36,37,-1,35,36,34,-1,37,38,39,-1,36,38,37,-1,39,40,41,-1,38,40,39,-1,41,42,43,-1,40,42,41,-1,43,44,45,-1,42,44,43,-1]
coord Coordinate { point [-0.846455 3.11345 0.11811,-1.12204 3.11231 0.118143,-0.846455 3.11231 0.118143,-1.12204 3.11345 0.11811,-1.12204 3.11117 0.118242,-0.846455 3.11117 0.118242,-1.12204 3.11005 0.118406,-0.846455 3.11005 0.118406,-1.12204 3.10893 0.118636,-0.846455 3.10893 0.118636,-1.12204 3.10783 0.118929,-0.846455 3.10783 0.118929,-1.12204 3.10675 0.119286,-0.846455 3.10675 0.119286,-0.846455 3.10569 0.119705,-1.12204 3.10569 0.119705,-0.846455 3.10465 0.120185,-1.12204 3.10465 0.120185,-1.12204 3.10365 0.120724,-0.846455 3.10365 0.120724,-1.12204 3.10268 0.121319,-0.846455 3.10268 0.121319,-1.12204 3.10174 0.121971,-0.846455 3.10174 0.121971,-1.12204 3.10084 0.122675,-0.846455 3.10084 0.122675,-1.12204 3.09999 0.12343,-0.846455 3.09999 0.12343,-1.12204 3.09918 0.124233,-0.846455 3.09918 0.124233,-1.12204 3.09842 0.125081,-0.846455 3.09842 0.125081,-0.846455 3.09771 0.125972,-1.12204 3.09771 0.125972,-0.846455 3.09705 0.126903,-1.12204 3.09705 0.126903,-1.12204 3.09645 0.12787,-0.846455 3.09645 0.12787,-1.12204 3.0959 0.128871,-0.846455 3.0959 0.128871,-1.12204 3.09542 0.129901,-0.846455 3.09542 0.129901,-1.12204 3.09499 0.130958,-0.846455 3.09499 0.130958,-1.12204 3.09462 0.132038,-0.846455 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.846455 3.11345 0.11811,-0.846455 3.42519 0.11811,-1.12204 3.11345 0.11811,-1.12204 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [-0.846455 3.42519 0.11811,-0.846455 3.42519 3.93735e-13,-1.12204 3.42519 3.93735e-13,-1.12204 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.846455 3.42519 3.93735e-13,-0.846455 3.11345 0,-1.12204 3.42519 3.93735e-13,-1.12204 3.11345 0]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,13,14,-1,12,11,13,-1,12,10,11,-1,15,12,14,-1,16,14,17,-1,16,15,14,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1,22,20,21,-1,22,21,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,25,27,-1,28,27,29,-1,28,26,27,-1,30,29,31,-1,30,28,29,-1,32,31,33,-1,32,30,31,-1,34,33,35,-1,34,32,33,-1,36,35,37,-1,36,34,35,-1,38,37,39,-1,38,36,37,-1,40,39,41,-1,40,38,39,-1,42,41,43,-1,42,40,41,-1,44,43,45,-1,44,42,43,-1,46,45,47,-1,46,44,45,-1,48,47,49,-1,48,46,47,-1,50,51,52,-1,50,49,51,-1,50,48,49,-1,53,50,52,-1]
coord Coordinate { point [-1.12204 3.1067 0.000165393,-0.846455 3.11345 0,-0.846455 3.1067 0.000165393,-1.12204 3.11345 0,-1.12204 3.09997 0.000661173,-0.846455 3.09997 0.000661173,-1.12204 3.09327 0.00148615,-0.846455 3.09327 0.00148615,-1.12204 3.08661 0.00263835,-0.846455 3.08661 0.00263835,-1.12204 3.08003 0.004115,-0.846455 3.08003 0.004115,-1.12204 3.07352 0.00591255,-0.846455 3.07352 0.00591255,-0.846455 3.06711 0.0080267,-1.12204 3.06711 0.0080267,-1.12204 3.06081 0.0104524,-0.846455 3.06081 0.0104524,-1.12204 3.05463 0.0131837,-0.846455 3.05463 0.0131837,-1.12204 3.0486 0.0162142,-0.846455 3.0486 0.0162142,-1.12204 3.04272 0.0195366,-0.846455 3.04272 0.0195366,-1.12204 3.03701 0.0231428,-0.846455 3.03701 0.0231428,-1.12204 3.03149 0.0270243,-0.846455 3.03149 0.0270243,-1.12204 3.02616 0.0311717,-0.846455 3.02616 0.0311717,-1.12204 3.02105 0.035575,-0.846455 3.02105 0.035575,-1.12204 3.01615 0.0402237,-0.846455 3.01615 0.0402237,-1.12204 3.01149 0.0451067,-0.846455 3.01149 0.0451067,-1.12204 3.00707 0.0502121,-0.846455 3.00707 0.0502121,-1.12204 3.00291 0.0555278,-0.846455 3.00291 0.0555278,-1.12204 2.99901 0.061041,-0.846455 2.99901 0.061041,-1.12204 2.99539 0.0667385,-0.846455 2.99539 0.0667385,-1.12204 2.99205 0.0726065,-0.846455 2.99205 0.0726065,-1.12204 2.989 0.078631,-0.846455 2.989 0.078631,-1.12204 2.98625 0.0847975,-0.846455 2.98625 0.0847975,-1.12204 2.98381 0.0910913,-0.846455 2.98381 0.0910913,-0.846455 2.98168 0.0974972,-1.12204 2.98168 0.0974972]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.846455 2.98168 0.0974972,-0.846455 2.76291 0.812842,-1.12204 2.98168 0.0974972,-1.12204 2.76291 0.812842]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,18,19,20,-1,17,19,18,-1,16,19,17,-1,19,21,20,-1,20,22,23,-1,21,22,20,-1,23,24,25,-1,22,24,23,-1,24,26,25,-1,27,26,28,-1,25,26,27,-1,26,29,28,-1,29,30,28,-1,28,30,31,-1,31,32,33,-1,30,32,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,40,41,42,-1,39,41,40,-1,38,41,39,-1,42,43,44,-1,41,43,42,-1,43,45,44,-1]
coord Coordinate { point [-0.846455 2.76291 0.812842,-0.846455 2.76255 0.813922,-1.12204 2.76291 0.812842,-1.12204 2.76255 0.813922,-0.846455 2.76212 0.814979,-1.12204 2.76212 0.814979,-0.846455 2.76163 0.816009,-1.12204 2.76163 0.816009,-0.846455 2.76109 0.81701,-1.12204 2.76109 0.81701,-0.846455 2.76049 0.817977,-1.12204 2.76049 0.817977,-0.846455 2.75983 0.818908,-1.12204 2.75983 0.818908,-0.846455 2.75912 0.819799,-1.12204 2.75912 0.819799,-0.846455 2.75836 0.820647,-1.12204 2.75836 0.820647,-1.12204 2.75755 0.82145,-0.846455 2.75755 0.82145,-1.12204 2.75669 0.822205,-0.846455 2.75669 0.822205,-0.846455 2.7558 0.822909,-1.12204 2.7558 0.822909,-0.846455 2.75486 0.823561,-1.12204 2.75486 0.823561,-0.846455 2.75389 0.824156,-1.12204 2.75389 0.824156,-1.12204 2.75289 0.824695,-0.846455 2.75289 0.824695,-0.846455 2.75185 0.825175,-1.12204 2.75185 0.825175,-0.846455 2.75079 0.825594,-1.12204 2.75079 0.825594,-0.846455 2.74971 0.825951,-1.12204 2.74971 0.825951,-0.846455 2.74861 0.826244,-1.12204 2.74861 0.826244,-0.846455 2.74749 0.826474,-1.12204 2.74749 0.826474,-1.12204 2.74636 0.826638,-0.846455 2.74636 0.826638,-1.12204 2.74523 0.826737,-0.846455 2.74523 0.826737,-1.12204 2.74409 0.82677,-0.846455 2.74409 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,14,16,-1,15,13,14,-1,17,16,18,-1,17,15,16,-1,19,18,20,-1,19,17,18,-1,21,20,22,-1,21,19,20,-1,23,22,24,-1,23,21,22,-1,25,24,26,-1,25,23,24,-1,27,25,26,-1,27,26,28,-1,29,27,28,-1,29,28,30,-1,31,29,30,-1,31,30,32,-1,33,32,34,-1,33,31,32,-1,35,33,34,-1,35,34,36,-1,37,36,38,-1,37,35,36,-1,39,38,40,-1,39,37,38,-1,41,40,42,-1,41,39,40,-1,43,42,44,-1,43,41,42,-1,45,43,44,-1]
coord Coordinate { point [1.73228 1.5059 0.925195,1.22047 1.5059 0.925195,1.22047 1.50614 0.915528,1.73228 1.50614 0.915528,1.22047 1.50685 0.905884,1.73228 1.50685 0.905884,1.22047 1.50804 0.896287,1.73228 1.50804 0.896287,1.22047 1.50969 0.886759,1.73228 1.50969 0.886759,1.22047 1.51181 0.877325,1.73228 1.51181 0.877325,1.22047 1.51439 0.868005,1.73228 1.51439 0.868005,1.22047 1.51743 0.858824,1.73228 1.51743 0.858824,1.22047 1.52091 0.849803,1.73228 1.52091 0.849803,1.22047 1.52483 0.840964,1.73228 1.52483 0.840964,1.22047 1.52918 0.832328,1.73228 1.52918 0.832328,1.22047 1.53396 0.823917,1.73228 1.53396 0.823917,1.22047 1.53913 0.815749,1.73228 1.53913 0.815749,1.22047 1.5447 0.807846,1.73228 1.5447 0.807846,1.22047 1.55066 0.800226,1.73228 1.55066 0.800226,1.22047 1.55698 0.792907,1.73228 1.55698 0.792907,1.22047 1.56365 0.785908,1.73228 1.56365 0.785908,1.22047 1.57066 0.779245,1.73228 1.57066 0.779245,1.22047 1.57799 0.772934,1.73228 1.57799 0.772934,1.22047 1.58561 0.766991,1.73228 1.58561 0.766991,1.22047 1.59352 0.761429,1.73228 1.59352 0.761429,1.22047 1.6017 0.756263,1.73228 1.6017 0.756263,1.22047 1.61012 0.751504,1.73228 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [1.22047 2.09645 0.492125,1.73228 2.09645 0.492125,1.22047 1.61012 0.751504,1.73228 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,14,16,-1,15,13,14,-1,17,16,18,-1,17,15,16,-1,19,18,20,-1,19,17,18,-1,21,20,22,-1,21,19,20,-1,23,22,24,-1,23,21,22,-1,25,24,26,-1,25,23,24,-1,27,25,26,-1,27,26,28,-1,29,27,28,-1,29,28,30,-1,31,29,30,-1,31,30,32,-1,33,32,34,-1,33,31,32,-1,35,33,34,-1,35,34,36,-1,37,36,38,-1,37,35,36,-1,39,38,40,-1,39,37,38,-1,41,40,42,-1,41,39,40,-1,43,42,44,-1,43,41,42,-1,45,43,44,-1]
coord Coordinate { point [0.74803 1.5059 0.925195,0.23622 1.5059 0.925195,0.23622 1.50614 0.915528,0.74803 1.50614 0.915528,0.23622 1.50685 0.905884,0.74803 1.50685 0.905884,0.23622 1.50804 0.896287,0.74803 1.50804 0.896287,0.23622 1.50969 0.886759,0.74803 1.50969 0.886759,0.23622 1.51181 0.877325,0.74803 1.51181 0.877325,0.23622 1.51439 0.868005,0.74803 1.51439 0.868005,0.23622 1.51743 0.858824,0.74803 1.51743 0.858824,0.23622 1.52091 0.849803,0.74803 1.52091 0.849803,0.23622 1.52483 0.840964,0.74803 1.52483 0.840964,0.23622 1.52918 0.832328,0.74803 1.52918 0.832328,0.23622 1.53396 0.823917,0.74803 1.53396 0.823917,0.23622 1.53913 0.815749,0.74803 1.53913 0.815749,0.23622 1.5447 0.807846,0.74803 1.5447 0.807846,0.23622 1.55066 0.800226,0.74803 1.55066 0.800226,0.23622 1.55698 0.792907,0.74803 1.55698 0.792907,0.23622 1.56365 0.785908,0.74803 1.56365 0.785908,0.23622 1.57066 0.779245,0.74803 1.57066 0.779245,0.23622 1.57799 0.772934,0.74803 1.57799 0.772934,0.23622 1.58561 0.766991,0.74803 1.58561 0.766991,0.23622 1.59352 0.761429,0.74803 1.59352 0.761429,0.23622 1.6017 0.756263,0.74803 1.6017 0.756263,0.23622 1.61012 0.751504,0.74803 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.23622 2.09645 0.492125,0.74803 2.09645 0.492125,0.23622 1.61012 0.751504,0.74803 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,14,16,-1,15,13,14,-1,17,16,18,-1,17,15,16,-1,19,18,20,-1,19,17,18,-1,21,20,22,-1,21,19,20,-1,23,22,24,-1,23,21,22,-1,25,24,26,-1,25,23,24,-1,27,25,26,-1,27,26,28,-1,29,27,28,-1,29,28,30,-1,31,29,30,-1,31,30,32,-1,33,32,34,-1,33,31,32,-1,35,33,34,-1,35,34,36,-1,37,36,38,-1,37,35,36,-1,39,38,40,-1,39,37,38,-1,41,40,42,-1,41,39,40,-1,43,42,44,-1,43,41,42,-1,45,43,44,-1]
coord Coordinate { point [-0.23622 1.5059 0.925195,-0.74803 1.5059 0.925195,-0.74803 1.50614 0.915528,-0.23622 1.50614 0.915528,-0.74803 1.50685 0.905884,-0.23622 1.50685 0.905884,-0.74803 1.50804 0.896287,-0.23622 1.50804 0.896287,-0.74803 1.50969 0.886759,-0.23622 1.50969 0.886759,-0.74803 1.51181 0.877325,-0.23622 1.51181 0.877325,-0.74803 1.51439 0.868005,-0.23622 1.51439 0.868005,-0.74803 1.51743 0.858824,-0.23622 1.51743 0.858824,-0.74803 1.52091 0.849803,-0.23622 1.52091 0.849803,-0.74803 1.52483 0.840964,-0.23622 1.52483 0.840964,-0.74803 1.52918 0.832328,-0.23622 1.52918 0.832328,-0.74803 1.53396 0.823917,-0.23622 1.53396 0.823917,-0.74803 1.53913 0.815749,-0.23622 1.53913 0.815749,-0.74803 1.5447 0.807846,-0.23622 1.5447 0.807846,-0.74803 1.55066 0.800226,-0.23622 1.55066 0.800226,-0.74803 1.55698 0.792907,-0.23622 1.55698 0.792907,-0.74803 1.56365 0.785908,-0.23622 1.56365 0.785908,-0.74803 1.57066 0.779245,-0.23622 1.57066 0.779245,-0.74803 1.57799 0.772934,-0.23622 1.57799 0.772934,-0.74803 1.58561 0.766991,-0.23622 1.58561 0.766991,-0.74803 1.59352 0.761429,-0.23622 1.59352 0.761429,-0.74803 1.6017 0.756263,-0.23622 1.6017 0.756263,-0.74803 1.61012 0.751504,-0.23622 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-0.74803 2.09645 0.492125,-0.23622 2.09645 0.492125,-0.74803 1.61012 0.751504,-0.23622 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,3,0,2,-1,5,4,6,-1,5,3,4,-1,7,6,8,-1,7,5,6,-1,9,8,10,-1,9,7,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,14,16,-1,15,13,14,-1,17,16,18,-1,17,15,16,-1,19,18,20,-1,19,17,18,-1,21,20,22,-1,21,19,20,-1,23,22,24,-1,23,21,22,-1,25,24,26,-1,25,23,24,-1,27,25,26,-1,27,26,28,-1,29,27,28,-1,29,28,30,-1,31,29,30,-1,31,30,32,-1,33,32,34,-1,33,31,32,-1,35,33,34,-1,35,34,36,-1,37,36,38,-1,37,35,36,-1,39,38,40,-1,39,37,38,-1,41,40,42,-1,41,39,40,-1,43,42,44,-1,43,41,42,-1,45,43,44,-1]
coord Coordinate { point [-1.22047 1.5059 0.925195,-1.73228 1.5059 0.925195,-1.73228 1.50614 0.915528,-1.22047 1.50614 0.915528,-1.73228 1.50685 0.905884,-1.22047 1.50685 0.905884,-1.73228 1.50804 0.896287,-1.22047 1.50804 0.896287,-1.73228 1.50969 0.886759,-1.22047 1.50969 0.886759,-1.73228 1.51181 0.877325,-1.22047 1.51181 0.877325,-1.73228 1.51439 0.868005,-1.22047 1.51439 0.868005,-1.73228 1.51743 0.858824,-1.22047 1.51743 0.858824,-1.73228 1.52091 0.849803,-1.22047 1.52091 0.849803,-1.73228 1.52483 0.840964,-1.22047 1.52483 0.840964,-1.73228 1.52918 0.832328,-1.22047 1.52918 0.832328,-1.73228 1.53396 0.823917,-1.22047 1.53396 0.823917,-1.73228 1.53913 0.815749,-1.22047 1.53913 0.815749,-1.73228 1.5447 0.807846,-1.22047 1.5447 0.807846,-1.73228 1.55066 0.800226,-1.22047 1.55066 0.800226,-1.73228 1.55698 0.792907,-1.22047 1.55698 0.792907,-1.73228 1.56365 0.785908,-1.22047 1.56365 0.785908,-1.73228 1.57066 0.779245,-1.22047 1.57066 0.779245,-1.73228 1.57799 0.772934,-1.22047 1.57799 0.772934,-1.73228 1.58561 0.766991,-1.22047 1.58561 0.766991,-1.73228 1.59352 0.761429,-1.22047 1.59352 0.761429,-1.73228 1.6017 0.756263,-1.22047 1.6017 0.756263,-1.73228 1.61012 0.751504,-1.22047 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-1.73228 2.09645 0.492125,-1.22047 2.09645 0.492125,-1.73228 1.61012 0.751504,-1.22047 1.61012 0.751504]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,19,20,-1,18,17,19,-1,18,16,17,-1,21,18,20,-1,22,21,20,-1,22,20,23,-1,24,22,23,-1,24,25,26,-1,24,23,25,-1,27,24,26,-1,28,27,26,-1,28,26,29,-1,30,31,32,-1,30,29,31,-1,30,28,29,-1,33,30,32,-1,34,32,35,-1,34,33,32,-1,36,37,38,-1,36,35,37,-1,36,34,35,-1,39,36,38,-1,40,38,41,-1,40,39,38,-1,42,41,43,-1,42,40,41,-1,44,43,45,-1,44,42,43,-1,46,45,47,-1,46,44,45,-1,48,49,50,-1,48,47,49,-1,48,46,47,-1,51,50,52,-1,51,48,50,-1,53,51,52,-1]
coord Coordinate { point [0.137795 2.87373 0.853789,0.137795 2.87586 0.847383,-0.137795 2.87586 0.847383,-0.137795 2.87373 0.853789,0.137795 2.87128 0.860082,-0.137795 2.87128 0.860082,0.137795 2.86854 0.866249,-0.137795 2.86854 0.866249,0.137795 2.86549 0.872274,-0.137795 2.86549 0.872274,0.137795 2.86215 0.878142,-0.137795 2.86215 0.878142,0.137795 2.85853 0.883839,-0.137795 2.85853 0.883839,0.137795 2.85463 0.889352,-0.137795 2.85463 0.889352,0.137795 2.85047 0.894668,-0.137795 2.85047 0.894668,0.137795 2.84605 0.899773,-0.137795 2.84605 0.899773,-0.137795 2.84139 0.904656,0.137795 2.84139 0.904656,0.137795 2.83649 0.909305,-0.137795 2.83649 0.909305,0.137795 2.83138 0.913708,-0.137795 2.83138 0.913708,-0.137795 2.82605 0.917856,0.137795 2.82605 0.917856,0.137795 2.82052 0.921737,-0.137795 2.82052 0.921737,0.137795 2.81482 0.925343,-0.137795 2.81482 0.925343,-0.137795 2.80894 0.928666,0.137795 2.80894 0.928666,0.137795 2.80291 0.931696,-0.137795 2.80291 0.931696,0.137795 2.79673 0.934428,-0.137795 2.79673 0.934428,-0.137795 2.79043 0.936853,0.137795 2.79043 0.936853,0.137795 2.78402 0.938967,-0.137795 2.78402 0.938967,0.137795 2.77751 0.940765,-0.137795 2.77751 0.940765,0.137795 2.77092 0.942242,-0.137795 2.77092 0.942242,0.137795 2.76427 0.943394,-0.137795 2.76427 0.943394,0.137795 2.75757 0.944219,-0.137795 2.75757 0.944219,-0.137795 2.75084 0.944715,0.137795 2.75084 0.944715,-0.137795 2.74409 0.94488,0.137795 2.74409 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.137795 2.87586 0.847383,0.137795 3.09462 0.132038,-0.137795 2.87586 0.847383,-0.137795 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,2,4,5,-1,1,4,2,-1,5,6,7,-1,4,6,5,-1,8,9,10,-1,7,9,8,-1,6,9,7,-1,9,11,10,-1,10,12,13,-1,11,12,10,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,20,21,22,-1,19,21,20,-1,18,21,19,-1,22,23,24,-1,21,23,22,-1,23,25,24,-1,25,26,24,-1,27,26,28,-1,24,26,27,-1,26,29,28,-1,28,30,31,-1,29,30,28,-1,31,32,33,-1,30,32,31,-1,33,34,35,-1,32,34,33,-1,36,37,38,-1,35,37,36,-1,34,37,35,-1,37,39,38,-1,40,41,42,-1,38,41,40,-1,39,41,38,-1,41,43,42,-1,42,44,45,-1,43,44,42,-1]
coord Coordinate { point [0.137795 3.11345 0.11811,-0.137795 3.11231 0.118143,0.137795 3.11231 0.118143,-0.137795 3.11345 0.11811,-0.137795 3.11117 0.118242,0.137795 3.11117 0.118242,-0.137795 3.11005 0.118406,0.137795 3.11005 0.118406,0.137795 3.10893 0.118636,-0.137795 3.10893 0.118636,0.137795 3.10783 0.118929,-0.137795 3.10783 0.118929,-0.137795 3.10675 0.119286,0.137795 3.10675 0.119286,-0.137795 3.10569 0.119705,0.137795 3.10569 0.119705,-0.137795 3.10465 0.120185,0.137795 3.10465 0.120185,-0.137795 3.10365 0.120724,0.137795 3.10365 0.120724,0.137795 3.10268 0.121319,-0.137795 3.10268 0.121319,0.137795 3.10174 0.121971,-0.137795 3.10174 0.121971,0.137795 3.10084 0.122675,-0.137795 3.10084 0.122675,-0.137795 3.09999 0.12343,0.137795 3.09999 0.12343,0.137795 3.09918 0.124233,-0.137795 3.09918 0.124233,-0.137795 3.09842 0.125081,0.137795 3.09842 0.125081,-0.137795 3.09771 0.125972,0.137795 3.09771 0.125972,-0.137795 3.09705 0.126903,0.137795 3.09705 0.126903,0.137795 3.09645 0.12787,-0.137795 3.09645 0.12787,0.137795 3.0959 0.128871,-0.137795 3.0959 0.128871,0.137795 3.09542 0.129901,-0.137795 3.09542 0.129901,0.137795 3.09499 0.130958,-0.137795 3.09499 0.130958,-0.137795 3.09462 0.132038,0.137795 3.09462 0.132038]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.137795 3.11345 0.11811,0.137795 3.42519 0.11811,-0.137795 3.11345 0.11811,-0.137795 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [0.137795 3.42519 0.11811,0.137795 3.42519 3.93735e-13,-0.137795 3.42519 3.93735e-13,-0.137795 3.42519 0.11811]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.137795 3.42519 3.93735e-13,0.137795 3.11345 0,-0.137795 3.42519 3.93735e-13,-0.137795 3.11345 0]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,0,2,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,11,12,-1,10,9,11,-1,10,8,9,-1,13,10,12,-1,14,12,15,-1,14,13,12,-1,16,17,18,-1,16,15,17,-1,16,14,15,-1,19,16,18,-1,20,19,18,-1,20,18,21,-1,22,20,21,-1,22,21,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,27,28,-1,26,25,27,-1,29,26,28,-1,30,28,31,-1,30,29,28,-1,32,33,34,-1,32,31,33,-1,32,30,31,-1,35,32,34,-1,36,34,37,-1,36,35,34,-1,38,37,39,-1,38,36,37,-1,40,41,42,-1,40,39,41,-1,40,38,39,-1,43,40,42,-1,44,45,46,-1,44,42,45,-1,44,43,42,-1,47,44,46,-1,48,49,50,-1,48,46,49,-1,48,47,46,-1,51,50,52,-1,51,48,50,-1,53,51,52,-1]
coord Coordinate { point [-0.137795 3.1067 0.000165393,0.137795 3.11345 0,0.137795 3.1067 0.000165393,-0.137795 3.11345 0,-0.137795 3.09997 0.000661173,0.137795 3.09997 0.000661173,-0.137795 3.09327 0.00148615,0.137795 3.09327 0.00148615,-0.137795 3.08661 0.00263835,0.137795 3.08661 0.00263835,-0.137795 3.08003 0.004115,0.137795 3.08003 0.004115,0.137795 3.07352 0.00591255,-0.137795 3.07352 0.00591255,-0.137795 3.06711 0.0080267,0.137795 3.06711 0.0080267,-0.137795 3.06081 0.0104524,0.137795 3.06081 0.0104524,0.137795 3.05463 0.0131837,-0.137795 3.05463 0.0131837,-0.137795 3.0486 0.0162142,0.137795 3.0486 0.0162142,-0.137795 3.04272 0.0195366,0.137795 3.04272 0.0195366,-0.137795 3.03701 0.0231428,0.137795 3.03701 0.0231428,-0.137795 3.03149 0.0270243,0.137795 3.03149 0.0270243,0.137795 3.02616 0.0311717,-0.137795 3.02616 0.0311717,-0.137795 3.02105 0.035575,0.137795 3.02105 0.035575,-0.137795 3.01615 0.0402237,0.137795 3.01615 0.0402237,0.137795 3.01149 0.0451067,-0.137795 3.01149 0.0451067,-0.137795 3.00707 0.0502121,0.137795 3.00707 0.0502121,-0.137795 3.00291 0.0555278,0.137795 3.00291 0.0555278,-0.137795 2.99901 0.061041,0.137795 2.99901 0.061041,0.137795 2.99539 0.0667385,-0.137795 2.99539 0.0667385,-0.137795 2.99205 0.0726065,0.137795 2.99205 0.0726065,0.137795 2.989 0.078631,-0.137795 2.989 0.078631,-0.137795 2.98625 0.0847975,0.137795 2.98625 0.0847975,0.137795 2.98381 0.0910913,-0.137795 2.98381 0.0910913,0.137795 2.98168 0.0974972,-0.137795 2.98168 0.0974972]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [0.137795 2.98168 0.0974972,0.137795 2.76291 0.812842,-0.137795 2.98168 0.0974972,-0.137795 2.76291 0.812842]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,20,21,22,-1,19,21,20,-1,18,21,19,-1,21,23,22,-1,24,25,26,-1,22,25,24,-1,23,25,22,-1,25,27,26,-1,27,28,26,-1,26,28,29,-1,28,30,29,-1,29,30,31,-1,31,32,33,-1,30,32,31,-1,33,34,35,-1,32,34,33,-1,35,36,37,-1,34,36,35,-1,37,38,39,-1,36,38,37,-1,39,40,41,-1,38,40,39,-1,42,43,44,-1,41,43,42,-1,40,43,41,-1,43,45,44,-1]
coord Coordinate { point [0.137795 2.76291 0.812842,0.137795 2.76255 0.813922,-0.137795 2.76291 0.812842,-0.137795 2.76255 0.813922,0.137795 2.76212 0.814979,-0.137795 2.76212 0.814979,0.137795 2.76163 0.816009,-0.137795 2.76163 0.816009,0.137795 2.76109 0.81701,-0.137795 2.76109 0.81701,0.137795 2.76049 0.817977,-0.137795 2.76049 0.817977,0.137795 2.75983 0.818908,-0.137795 2.75983 0.818908,0.137795 2.75912 0.819799,-0.137795 2.75912 0.819799,0.137795 2.75836 0.820647,-0.137795 2.75836 0.820647,0.137795 2.75755 0.82145,-0.137795 2.75755 0.82145,-0.137795 2.75669 0.822205,0.137795 2.75669 0.822205,-0.137795 2.7558 0.822909,0.137795 2.7558 0.822909,-0.137795 2.75486 0.823561,0.137795 2.75486 0.823561,-0.137795 2.75389 0.824156,0.137795 2.75389 0.824156,0.137795 2.75289 0.824695,-0.137795 2.75289 0.824695,0.137795 2.75185 0.825175,-0.137795 2.75185 0.825175,0.137795 2.75079 0.825594,-0.137795 2.75079 0.825594,0.137795 2.74971 0.825951,-0.137795 2.74971 0.825951,0.137795 2.74861 0.826244,-0.137795 2.74861 0.826244,0.137795 2.74749 0.826474,-0.137795 2.74749 0.826474,0.137795 2.74636 0.826638,-0.137795 2.74636 0.826638,-0.137795 2.74523 0.826737,0.137795 2.74523 0.826737,-0.137795 2.74409 0.82677,0.137795 2.74409 0.82677]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,19,20,-1,18,17,19,-1,18,16,17,-1,21,18,20,-1,22,21,20,-1,22,20,23,-1,24,22,23,-1,24,23,25,-1,26,24,25,-1,26,25,27,-1,28,27,29,-1,28,26,27,-1,30,29,31,-1,30,28,29,-1,32,33,34,-1,32,31,33,-1,32,30,31,-1,35,32,34,-1,36,34,37,-1,36,35,34,-1,38,37,39,-1,38,36,37,-1,40,39,41,-1,40,38,39,-1,42,41,43,-1,42,40,41,-1,44,43,45,-1,44,42,43,-1,46,45,47,-1,46,44,45,-1,48,47,49,-1,48,46,47,-1,50,51,52,-1,50,49,51,-1,50,48,49,-1,53,50,52,-1]
coord Coordinate { point [-1.83071 2.87373 0.853789,-1.83071 2.87586 0.847383,-2.10629 2.87586 0.847383,-2.10629 2.87373 0.853789,-1.83071 2.87128 0.860082,-2.10629 2.87128 0.860082,-1.83071 2.86854 0.866249,-2.10629 2.86854 0.866249,-1.83071 2.86549 0.872274,-2.10629 2.86549 0.872274,-1.83071 2.86215 0.878142,-2.10629 2.86215 0.878142,-1.83071 2.85853 0.883839,-2.10629 2.85853 0.883839,-1.83071 2.85463 0.889352,-2.10629 2.85463 0.889352,-1.83071 2.85047 0.894668,-2.10629 2.85047 0.894668,-1.83071 2.84605 0.899773,-2.10629 2.84605 0.899773,-2.10629 2.84139 0.904656,-1.83071 2.84139 0.904656,-1.83071 2.83649 0.909305,-2.10629 2.83649 0.909305,-1.83071 2.83138 0.913708,-2.10629 2.83138 0.913708,-1.83071 2.82605 0.917856,-2.10629 2.82605 0.917856,-1.83071 2.82052 0.921737,-2.10629 2.82052 0.921737,-1.83071 2.81482 0.925343,-2.10629 2.81482 0.925343,-1.83071 2.80894 0.928666,-2.10629 2.80894 0.928666,-2.10629 2.80291 0.931696,-1.83071 2.80291 0.931696,-1.83071 2.79673 0.934428,-2.10629 2.79673 0.934428,-1.83071 2.79043 0.936853,-2.10629 2.79043 0.936853,-1.83071 2.78402 0.938967,-2.10629 2.78402 0.938967,-1.83071 2.77751 0.940765,-2.10629 2.77751 0.940765,-1.83071 2.77092 0.942242,-2.10629 2.77092 0.942242,-1.83071 2.76427 0.943394,-2.10629 2.76427 0.943394,-1.83071 2.75757 0.944219,-2.10629 2.75757 0.944219,-1.83071 2.75084 0.944715,-2.10629 2.75084 0.944715,-2.10629 2.74409 0.94488,-1.83071 2.74409 0.94488]
}}
appearance Appearance{material Material{diffuseColor 0.85098 0.85098 0.85098
transparency 0}}}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-1.83071 2.87586 0.847383,-1.83071 3.09462 0.132038,-2.10629 2.87586 0.847383,-2.10629 3.09462 0.132038]
}}