-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBG95.wrl
12831 lines (12830 loc) · 892 KB
/
BG95.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,3,1,0,-1,0,4,3,-1,1,5,2,-1,0,6,4,-1,5,7,2,-1,0,8,6,-1,7,9,2,-1,0,10,8,-1,9,11,2,-1,0,12,10,-1,2,13,14,-1,11,13,2,-1,0,15,12,-1,13,16,14,-1,17,18,19,-1,20,18,17,-1,21,18,20,-1,22,18,21,-1,23,18,22,-1,24,18,23,-1,15,18,24,-1,0,18,15,-1,25,26,16,-1,27,26,25,-1,28,26,27,-1,29,26,28,-1,30,26,29,-1,19,26,30,-1,16,26,14,-1,18,26,19,-1]
coord Coordinate { point [-3.75196 4.05662 0.807085,-3.33229 3.78681 0.807085,-3.75196 -4.48031 0.807085,-3.36781 3.81828 0.807085,-3.39477 3.85733 0.807085,-3.29027 3.76475 0.807085,-3.4116 3.9017 0.807085,-3.24419 3.7534 0.807085,-3.41732 3.94881 0.807085,-3.19674 3.7534 0.807085,-3.4116 3.99592 0.807085,-3.15066 3.76475 0.807085,-3.39477 4.04029 0.807085,-3.10864 3.78681 0.807085,3.75196 -4.48031 0.807085,-3.36781 4.07935 0.807085,-3.07312 3.81828 0.807085,-3.10864 4.11082 0.807085,-3.32828 4.48031 0.807085,-3.07312 4.07935 0.807085,-3.15066 4.13287 0.807085,-3.19674 4.14423 0.807085,-3.24419 4.14423 0.807085,-3.29027 4.13287 0.807085,-3.33229 4.11082 0.807085,-3.04616 3.85733 0.807085,3.75196 4.48031 0.807085,-3.02934 3.9017 0.807085,-3.02362 3.94881 0.807085,-3.02934 3.99592 0.807085,-3.04616 4.04029 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,4,1,5,-1,6,7,8,-1,9,1,10,-1,10,1,11,-1,11,1,12,-1,12,1,13,-1,12,13,14,-1,12,14,15,-1,13,1,3,-1,8,7,16,-1,17,18,19,-1,20,21,22,-1,23,18,24,-1,19,18,23,-1,22,25,20,-1,6,26,7,-1,27,26,6,-1,20,28,21,-1,25,29,20,-1,18,30,24,-1,9,31,20,-1,20,31,28,-1,24,30,20,-1,32,33,27,-1,29,24,20,-1,9,34,31,-1,27,33,26,-1,32,35,33,-1,36,35,32,-1,9,37,34,-1,9,38,37,-1,39,40,36,-1,36,40,35,-1,9,41,38,-1,39,42,40,-1,43,42,39,-1,9,44,41,-1,43,15,42,-1,12,15,43,-1,9,45,44,-1,9,10,45,-1,46,5,30,-1,47,16,48,-1,49,5,46,-1,50,5,49,-1,8,16,47,-1,51,5,50,-1,52,5,51,-1,4,5,52,-1,30,5,20,-1,48,17,47,-1,53,1,4,-1,54,1,53,-1,47,17,19,-1,55,1,54,-1,2,1,55,-1]
coord Coordinate { point [2.02339 4.48031 0.407229,3.75196 4.48031 0.334645,2.04682 4.48031 0.423403,1.99677 4.48031 0.397132,2.08575 4.48031 0.526047,3.75196 4.48031 0.807085,-1.85807 4.48031 0.553692,1.85807 4.48031 0.553692,-1.8713 4.48031 0.578904,-3.32828 4.48031 0.334645,-1.9685 4.48031 0.3937,-1.94023 4.48031 0.397132,-1.91361 4.48031 0.407229,1.9685 4.48031 0.3937,1.94023 4.48031 0.397132,1.91361 4.48031 0.407229,1.8713 4.48031 0.578904,1.91361 4.48031 0.616391,1.94023 4.48031 0.626488,-1.91361 4.48031 0.616391,-3.32828 4.48031 0.807085,-2.0657 4.48031 0.578904,-2.04682 4.48031 0.600217,-1.94023 4.48031 0.626488,-1.9685 4.48031 0.62992,-2.02339 4.48031 0.616391,1.85125 4.48031 0.526047,-1.85125 4.48031 0.526047,-2.07893 4.48031 0.553692,-1.99677 4.48031 0.626488,1.9685 4.48031 0.62992,-2.08575 4.48031 0.526047,-1.85125 4.48031 0.497573,1.85125 4.48031 0.497573,-2.08575 4.48031 0.497573,1.85807 4.48031 0.469928,-1.85807 4.48031 0.469928,-2.07893 4.48031 0.469928,-2.0657 4.48031 0.444716,-1.8713 4.48031 0.444716,1.8713 4.48031 0.444716,-2.04682 4.48031 0.423403,1.89018 4.48031 0.423403,-1.89018 4.48031 0.423403,-2.02339 4.48031 0.407229,-1.99677 4.48031 0.397132,1.99677 4.48031 0.626488,-1.89018 4.48031 0.600217,1.89018 4.48031 0.600217,2.02339 4.48031 0.616391,2.04682 4.48031 0.600217,2.0657 4.48031 0.578904,2.07893 4.48031 0.553692,2.08575 4.48031 0.497573,2.07893 4.48031 0.469928,2.0657 4.48031 0.444716]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.75196 4.53936 0.334645,3.75196 4.48031 0.807085,3.75196 4.48031 0.334645,3.75196 4.53936 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,0,6,1,-1,3,7,4,-1,3,8,7,-1,3,9,8,-1,3,10,9,-1,3,11,10,-1,12,13,14,-1,0,2,15,-1,16,14,13,-1,3,5,13,-1,17,2,18,-1,19,13,12,-1,20,21,11,-1,20,22,21,-1,17,15,2,-1,20,23,22,-1,20,24,23,-1,20,25,24,-1,20,26,25,-1,20,11,3,-1,27,16,13,-1,28,29,13,-1,20,29,30,-1,20,30,31,-1,20,31,32,-1,28,13,19,-1,20,32,33,-1,34,6,0,-1,33,32,35,-1,35,32,36,-1,37,17,18,-1,20,33,26,-1,37,18,38,-1,39,27,13,-1,40,41,6,-1,42,29,28,-1,40,6,34,-1,5,38,39,-1,5,39,13,-1,43,29,42,-1,5,37,38,-1,44,41,40,-1,44,45,41,-1,46,29,43,-1,47,45,44,-1,48,29,46,-1,47,49,45,-1,50,29,48,-1,51,52,49,-1,51,49,47,-1,53,29,50,-1,54,52,51,-1,54,55,52,-1,30,29,53,-1,36,55,54,-1,36,32,55,-1]
coord Coordinate { point [1.89977 4.53936 0.559253,-1.89977 4.53936 0.559253,-1.91312 4.53936 0.574323,3.75196 4.53936 0.807085,1.98849 4.53936 0.5929,1.9685 4.53936 0.595326,-1.89041 4.53936 0.541425,2.00731 4.53936 0.58576,2.02388 4.53936 0.574323,2.03723 4.53936 0.559253,2.04659 4.53936 0.541425,2.05141 4.53936 0.521877,-2.03723 4.53936 0.559253,-3.32828 4.53936 0.807085,-2.02388 4.53936 0.574323,1.91312 4.53936 0.574323,-2.00731 4.53936 0.58576,1.92969 4.53936 0.58576,-1.92969 4.53936 0.58576,-2.04659 4.53936 0.541425,3.75196 4.53936 0.334645,2.05141 4.53936 0.501743,2.04659 4.53936 0.482195,2.03723 4.53936 0.464367,2.02388 4.53936 0.449297,2.00731 4.53936 0.43786,1.98849 4.53936 0.43072,-1.98849 4.53936 0.5929,-2.05141 4.53936 0.521877,-3.32828 4.53936 0.334645,-1.9685 4.53936 0.428294,-1.94851 4.53936 0.43072,-1.92969 4.53936 0.43786,1.9685 4.53936 0.428294,1.89041 4.53936 0.541425,1.94851 4.53936 0.43072,1.92969 4.53936 0.43786,1.94851 4.53936 0.5929,-1.94851 4.53936 0.5929,-1.9685 4.53936 0.595326,1.88559 4.53936 0.521877,-1.88559 4.53936 0.521877,-2.05141 4.53936 0.501743,-2.04659 4.53936 0.482195,1.88559 4.53936 0.501743,-1.88559 4.53936 0.501743,-2.03723 4.53936 0.464367,1.89041 4.53936 0.482195,-2.02388 4.53936 0.449297,-1.89041 4.53936 0.482195,-2.00731 4.53936 0.43786,1.89977 4.53936 0.464367,-1.89977 4.53936 0.464367,-1.98849 4.53936 0.43072,1.91312 4.53936 0.449297,-1.91312 4.53936 0.449297]
}}
appearance Appearance{material USE PIN-01 }}
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,9,10,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,13,14,-1,12,11,10,-1,15,12,14,-1]
coord Coordinate { point [3.75196 4.53788 0.820226,-3.32828 4.53936 0.807085,-3.32828 4.53788 0.820226,3.75196 4.53936 0.807085,3.75196 4.53351 0.832708,-3.32828 4.53351 0.832708,3.75196 4.52648 0.843905,-3.32828 4.52648 0.843905,3.75196 4.51713 0.853256,-3.32828 4.51713 0.853256,-3.32828 4.50593 0.860292,3.75196 4.50593 0.860292,3.75196 4.49345 0.864659,-3.32828 4.49345 0.864659,-3.32828 4.48031 0.86614,3.75196 4.48031 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,3,4,-1,1,5,2,-1,2,6,3,-1,5,7,2,-1,2,8,6,-1,7,8,2,-1]
coord Coordinate { point [3.75196 4.53936 0.807085,3.75196 4.53788 0.820226,3.75196 4.48031 0.807085,3.75196 4.49345 0.864659,3.75196 4.48031 0.86614,3.75196 4.53351 0.832708,3.75196 4.50593 0.860292,3.75196 4.52648 0.843905,3.75196 4.51713 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,5,2,3,-1,6,0,2,-1,7,6,2,-1,8,2,5,-1,8,7,2,-1]
coord Coordinate { point [3.80954 4.48031 0.820226,3.81102 4.48031 0.807085,3.75196 4.48031 0.807085,3.7651 4.48031 0.864659,3.75196 4.48031 0.86614,3.77758 4.48031 0.860292,3.80517 4.48031 0.832708,3.79813 4.48031 0.843905,3.78878 4.48031 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.81102 4.48031 0.807085,3.75196 4.48031 0.334645,3.75196 4.48031 0.807085,3.81102 4.48031 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,0,9,10,-1,11,9,12,-1,6,8,13,-1,14,15,16,-1,17,3,5,-1,11,10,9,-1,18,16,15,-1,19,20,21,-1,19,22,20,-1,23,15,14,-1,19,24,22,-1,25,7,6,-1,19,26,24,-1,25,27,7,-1,19,28,26,-1,29,1,0,-1,19,30,28,-1,31,18,15,-1,32,33,15,-1,34,17,5,-1,35,12,36,-1,32,15,23,-1,19,34,15,-1,34,5,37,-1,35,11,12,-1,37,31,15,-1,34,37,15,-1,19,21,34,-1,38,39,30,-1,40,41,1,-1,42,27,25,-1,38,43,39,-1,38,44,43,-1,38,45,44,-1,38,46,45,-1,38,47,46,-1,38,48,47,-1,42,49,27,-1,38,30,19,-1,40,1,29,-1,50,33,32,-1,38,33,51,-1,38,51,52,-1,38,52,53,-1,53,52,54,-1,21,36,34,-1,38,53,55,-1,38,55,48,-1,48,55,56,-1,21,35,36,-1,57,49,42,-1,58,41,40,-1,59,33,50,-1,58,60,41,-1,57,61,49,-1,62,33,59,-1,63,61,57,-1,64,65,60,-1,63,66,61,-1,63,67,66,-1,64,60,58,-1,68,33,62,-1,69,70,65,-1,71,67,63,-1,72,33,68,-1,69,65,64,-1,73,70,69,-1,74,33,72,-1,73,75,70,-1,73,76,75,-1,77,67,71,-1,77,78,67,-1,51,33,74,-1,54,78,77,-1,54,52,78,-1,79,55,76,-1,79,76,73,-1,56,55,79,-1,80,81,4,-1,13,81,80,-1,13,8,81,-1,3,80,4,-1,0,2,9,-1]
coord Coordinate { point [3.81102 -2.68717 0.559253,3.81102 -0.0780892 0.541425,3.81102 -0.0687326 0.559253,3.81102 0.038812 0.58576,3.81102 2.71709 0.58576,3.81102 2.73591 0.5929,3.81102 0.0780892 0.541425,3.81102 2.67781 0.541425,3.81102 2.68717 0.559253,3.81102 -0.0553816 0.574323,3.81102 -2.70052 0.574323,3.81102 -2.71709 0.58576,3.81102 -0.038812 0.58576,3.81102 0.0687326 0.559253,3.81102 2.82463 0.559253,3.81102 4.48031 0.807085,3.81102 2.81128 0.574323,3.81102 0.0199868 0.5929,3.81102 2.79471 0.58576,3.81102 -4.48031 0.807085,3.81102 -2.77589 0.5929,3.81102 -2.7559 0.595326,3.81102 -2.79471 0.58576,3.81102 2.83399 0.541425,3.81102 -2.81128 0.574323,3.81102 0.0829075 0.521877,3.81102 -2.82463 0.559253,3.81102 2.67299 0.521877,3.81102 -2.83399 0.541425,3.81102 -2.67781 0.541425,3.81102 -2.83881 0.521877,3.81102 2.77589 0.5929,3.81102 2.83881 0.521877,3.81102 4.48031 0.334645,3.81102 -6.69218e-12 0.595326,3.81102 -2.73591 0.5929,3.81102 -0.0199868 0.5929,3.81102 2.7559 0.595326,3.81102 -4.48031 0.334645,3.81102 -2.83881 0.501743,3.81102 -2.67299 0.521877,3.81102 -0.0829075 0.521877,3.81102 0.0829075 0.501743,3.81102 -2.83399 0.482195,3.81102 -2.82463 0.464367,3.81102 -2.81128 0.449297,3.81102 -2.79471 0.43786,3.81102 -2.77589 0.43072,3.81102 -2.7559 0.428294,3.81102 2.67299 0.501743,3.81102 2.83881 0.501743,3.81102 2.7559 0.428294,3.81102 2.73591 0.43072,3.81102 -6.69223e-12 0.428294,3.81102 0.0199868 0.43072,3.81102 -0.0199868 0.43072,3.81102 -2.73591 0.43072,3.81102 0.0780892 0.482195,3.81102 -2.67299 0.501743,3.81102 2.83399 0.482195,3.81102 -0.0829075 0.501743,3.81102 2.67781 0.482195,3.81102 2.82463 0.464367,3.81102 0.0687326 0.464367,3.81102 -2.67781 0.482195,3.81102 -0.0780892 0.482195,3.81102 2.68717 0.464367,3.81102 2.70052 0.449297,3.81102 2.81128 0.449297,3.81102 -2.68717 0.464367,3.81102 -0.0687326 0.464367,3.81102 0.0553816 0.449297,3.81102 2.79471 0.43786,3.81102 -2.70052 0.449297,3.81102 2.77589 0.43072,3.81102 -0.0553816 0.449297,3.81102 -0.038812 0.43786,3.81102 0.038812 0.43786,3.81102 2.71709 0.43786,3.81102 -2.71709 0.43786,3.81102 0.0553816 0.574323,3.81102 2.70052 0.574323]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.81102 -4.48031 0.334645,3.75196 -4.48031 0.807085,3.75196 -4.48031 0.334645,3.81102 -4.48031 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.81102 4.48031 0.334645,3.75196 -4.48031 0.334645,3.75196 4.48031 0.334645,3.81102 -4.48031 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,1,0,-1,7,8,9,-1,10,11,12,-1,13,8,7,-1,14,8,13,-1,15,8,14,-1,16,8,15,-1,17,8,16,-1,18,19,20,-1,21,22,23,-1,12,11,24,-1,25,8,21,-1,20,19,26,-1,23,27,21,-1,9,8,25,-1,2,28,29,-1,30,31,17,-1,17,31,8,-1,3,32,4,-1,33,31,30,-1,34,31,33,-1,1,28,2,-1,35,31,34,-1,36,32,3,-1,21,37,22,-1,38,31,35,-1,39,31,38,-1,40,41,10,-1,42,31,43,-1,42,43,44,-1,27,45,21,-1,43,31,46,-1,46,31,47,-1,19,25,26,-1,42,48,21,-1,46,47,49,-1,47,31,50,-1,50,31,51,-1,50,51,52,-1,26,25,53,-1,21,48,37,-1,51,31,39,-1,10,41,11,-1,53,25,21,-1,45,53,21,-1,36,54,32,-1,29,9,25,-1,28,9,29,-1,55,54,36,-1,56,54,55,-1,42,57,48,-1,58,59,40,-1,42,60,57,-1,40,59,41,-1,56,61,54,-1,42,62,60,-1,63,64,58,-1,56,65,61,-1,58,64,59,-1,66,65,56,-1,42,67,62,-1,66,68,65,-1,69,70,63,-1,71,68,66,-1,42,72,67,-1,63,70,64,-1,73,68,71,-1,69,74,70,-1,42,44,72,-1,73,75,68,-1,76,74,69,-1,73,49,75,-1,46,49,73,-1,77,78,76,-1,76,78,74,-1,77,52,78,-1,50,52,77,-1,79,80,20,-1,79,5,80,-1,12,24,0,-1,81,5,79,-1,3,5,81,-1,80,18,20,-1,0,24,6,-1]
coord Coordinate { point [3.75196 -0.0783214 0.600217,3.75196 -2.70101 0.616391,3.75196 -0.0548885 0.616391,3.75196 2.64547 0.553692,3.75196 0.110435 0.553692,3.75196 0.0972026 0.578904,3.75196 -2.67758 0.600217,3.75196 -2.78417 0.626488,3.75196 -4.48031 0.807085,3.75196 -2.7559 0.62992,3.75196 -0.110435 0.553692,3.75196 -2.64547 0.553692,3.75196 -0.0972026 0.578904,3.75196 -2.81079 0.616391,3.75196 -2.83422 0.600217,3.75196 -2.8531 0.578904,3.75196 -2.86633 0.553692,3.75196 -2.87315 0.526047,3.75196 0.0548885 0.616391,3.75196 0.0282656 0.626488,3.75196 2.70101 0.616391,3.75196 4.48031 0.807085,3.75196 2.8531 0.578904,3.75196 2.83422 0.600217,3.75196 -2.6587 0.578904,3.75196 -6.69218e-12 0.62992,3.75196 2.72763 0.626488,3.75196 2.81079 0.616391,3.75196 -2.72763 0.626488,3.75196 -0.0282656 0.626488,3.75196 -2.87315 0.497573,3.75196 -4.48031 0.334645,3.75196 0.117249 0.526047,3.75196 -2.86633 0.469928,3.75196 -2.8531 0.444716,3.75196 -2.83422 0.423403,3.75196 2.63865 0.526047,3.75196 2.86633 0.553692,3.75196 -2.81079 0.407229,3.75196 -2.78417 0.397132,3.75196 -0.117249 0.526047,3.75196 -2.63865 0.526047,3.75196 4.48031 0.334645,3.75196 2.7559 0.3937,3.75196 2.78417 0.397132,3.75196 2.78417 0.626488,3.75196 2.72763 0.397132,3.75196 -6.69223e-12 0.3937,3.75196 2.87315 0.526047,3.75196 0.0282656 0.397132,3.75196 -0.0282656 0.397132,3.75196 -2.7559 0.3937,3.75196 -2.72763 0.397132,3.75196 2.7559 0.62992,3.75196 0.117249 0.497573,3.75196 2.63865 0.497573,3.75196 2.64547 0.469928,3.75196 2.87315 0.497573,3.75196 -0.117249 0.497573,3.75196 -2.63865 0.497573,3.75196 2.86633 0.469928,3.75196 0.110435 0.469928,3.75196 2.8531 0.444716,3.75196 -0.110435 0.469928,3.75196 -2.64547 0.469928,3.75196 0.0972026 0.444716,3.75196 2.6587 0.444716,3.75196 2.83422 0.423403,3.75196 0.0783214 0.423403,3.75196 -0.0972026 0.444716,3.75196 -2.6587 0.444716,3.75196 2.67758 0.423403,3.75196 2.81079 0.407229,3.75196 2.70101 0.407229,3.75196 -2.67758 0.423403,3.75196 0.0548885 0.407229,3.75196 -0.0783214 0.423403,3.75196 -0.0548885 0.407229,3.75196 -2.70101 0.407229,3.75196 2.67758 0.600217,3.75196 0.0783214 0.600217,3.75196 2.6587 0.578904]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 -2.67163 0.496952,3.72023 -2.6818 0.469027,3.6999 -2.7137 0.496449,3.6999 -2.71099 0.51181,3.72023 -2.67163 0.526668,3.75196 -2.63865 0.526047,3.75196 -2.63865 0.497573,3.75196 -2.64547 0.553692,3.6999 -2.7137 0.527171,3.75196 -2.72763 0.397132,3.75196 -2.7559 0.3937,3.72719 -2.7559 0.417212,3.72023 -2.6818 0.554593,3.75196 -2.6587 0.578904,3.6999 -2.7215 0.540678,3.6999 -2.7481 0.556039,3.69686 -2.7559 0.54573,3.70849 -2.7559 0.577835,3.6999 -2.73344 0.550704,3.72023 -2.7009 0.577357,3.75196 -2.67758 0.600217,3.75196 -2.70101 0.616391,3.72023 -2.72663 0.592216,3.72719 -2.7559 0.606408,3.75196 -2.72763 0.626488,3.69467 -2.74286 0.493194,3.69686 -2.7559 0.47789,3.69291 -2.7559 0.51181,3.6999 -2.73344 0.472916,3.6999 -2.7481 0.467581,3.69467 -2.73983 0.49574,3.6999 -2.7215 0.482942,3.69467 -2.73983 0.52788,3.69467 -2.74286 0.530426,3.75196 -2.7559 0.62992,3.70849 -2.7559 0.445785,3.72023 -2.72663 0.431404,3.75196 -2.70101 0.407229,3.72023 -2.7009 0.446263,3.75196 -2.67758 0.423403,3.75196 -2.6587 0.444716,3.75196 -2.64547 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 -2.84017 0.526668,3.72023 -2.83 0.554593,3.6999 -2.7981 0.527171,3.6999 -2.80081 0.51181,3.72023 -2.84017 0.496952,3.75196 -2.87315 0.497573,3.75196 -2.87315 0.526047,3.75196 -2.86633 0.469928,3.6999 -2.7981 0.496449,3.75196 -2.78417 0.626488,3.75196 -2.7559 0.62992,3.72719 -2.7559 0.606408,3.72023 -2.83 0.469027,3.75196 -2.8531 0.444716,3.6999 -2.7903 0.482942,3.6999 -2.7637 0.467581,3.69686 -2.7559 0.47789,3.70849 -2.7559 0.445785,3.6999 -2.77836 0.472916,3.72023 -2.8109 0.446263,3.75196 -2.83422 0.423403,3.75196 -2.81079 0.407229,3.72023 -2.78517 0.431404,3.72719 -2.7559 0.417212,3.75196 -2.78417 0.397132,3.69467 -2.76894 0.530426,3.69686 -2.7559 0.54573,3.69291 -2.7559 0.51181,3.6999 -2.77836 0.550704,3.6999 -2.7637 0.556039,3.69467 -2.77197 0.52788,3.6999 -2.7903 0.540678,3.69467 -2.77197 0.49574,3.69467 -2.76894 0.493194,3.75196 -2.7559 0.3937,3.70849 -2.7559 0.577835,3.72023 -2.78517 0.592216,3.75196 -2.81079 0.616391,3.72023 -2.8109 0.577357,3.75196 -2.83422 0.600217,3.75196 -2.8531 0.578904,3.75196 -2.86633 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 0.0842658 0.496952,3.72023 0.0741021 0.469027,3.6999 0.0422028 0.496449,3.6999 0.0449113 0.51181,3.72023 0.0842658 0.526668,3.75196 0.117249 0.526047,3.75196 0.117249 0.497573,3.75196 0.110435 0.553692,3.6999 0.0422028 0.527171,3.75196 0.0282656 0.397132,3.75196 -6.69223e-12 0.3937,3.72719 -6.69223e-12 0.417212,3.72023 0.0741021 0.554593,3.75196 0.0972026 0.578904,3.6999 0.0344041 0.540678,3.6999 0.00779877 0.556039,3.69686 -6.6922e-12 0.54573,3.70849 -6.69219e-12 0.577835,3.6999 0.0224557 0.550704,3.72023 0.0550006 0.577357,3.75196 0.0783214 0.600217,3.75196 0.0548885 0.616391,3.72023 0.0292652 0.592216,3.72719 -6.69218e-12 0.606408,3.75196 0.0282656 0.626488,3.69467 0.0130354 0.493194,3.69686 -6.69221e-12 0.47789,3.69291 -6.69223e-12 0.51181,3.6999 0.0224557 0.472916,3.6999 0.00779877 0.467581,3.69467 0.0160701 0.49574,3.6999 0.0344041 0.482942,3.69467 0.0160701 0.52788,3.69467 0.0130354 0.530426,3.75196 -6.69218e-12 0.62992,3.70849 -6.69222e-12 0.445785,3.72023 0.0292652 0.431404,3.75196 0.0548885 0.407229,3.72023 0.0550006 0.446263,3.75196 0.0783214 0.423403,3.75196 0.0972026 0.444716,3.75196 0.110435 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 -0.0842658 0.526668,3.72023 -0.0741021 0.554593,3.6999 -0.0422028 0.527171,3.6999 -0.0449113 0.51181,3.72023 -0.0842658 0.496952,3.75196 -0.117249 0.497573,3.75196 -0.117249 0.526047,3.75196 -0.110435 0.469928,3.6999 -0.0422028 0.496449,3.75196 -0.0282656 0.626488,3.75196 -6.69218e-12 0.62992,3.72719 -6.69218e-12 0.606408,3.72023 -0.0741021 0.469027,3.75196 -0.0972026 0.444716,3.6999 -0.0344041 0.482942,3.6999 -0.00779877 0.467581,3.69686 -6.69221e-12 0.47789,3.70849 -6.69222e-12 0.445785,3.6999 -0.0224557 0.472916,3.72023 -0.0550006 0.446263,3.75196 -0.0783214 0.423403,3.75196 -0.0548885 0.407229,3.72023 -0.0292652 0.431404,3.72719 -6.69223e-12 0.417212,3.75196 -0.0282656 0.397132,3.69467 -0.0130354 0.530426,3.69686 -6.6922e-12 0.54573,3.69291 -6.69223e-12 0.51181,3.6999 -0.0224557 0.550704,3.6999 -0.00779877 0.556039,3.69467 -0.0160701 0.52788,3.6999 -0.0344041 0.540678,3.69467 -0.0160701 0.49574,3.69467 -0.0130354 0.493194,3.75196 -6.69223e-12 0.3937,3.70849 -6.69219e-12 0.577835,3.72023 -0.0292652 0.592216,3.75196 -0.0548885 0.616391,3.72023 -0.0550006 0.577357,3.75196 -0.0783214 0.600217,3.75196 -0.0972026 0.578904,3.75196 -0.110435 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 2.84017 0.496952,3.72023 2.83 0.469027,3.6999 2.7981 0.496449,3.6999 2.80081 0.51181,3.72023 2.84017 0.526668,3.75196 2.87315 0.526047,3.75196 2.87315 0.497573,3.75196 2.86633 0.553692,3.6999 2.7981 0.527171,3.75196 2.78417 0.397132,3.75196 2.7559 0.3937,3.72719 2.7559 0.417212,3.72023 2.83 0.554593,3.75196 2.8531 0.578904,3.6999 2.7903 0.540678,3.6999 2.7637 0.556039,3.69686 2.7559 0.54573,3.70849 2.7559 0.577835,3.6999 2.77836 0.550704,3.72023 2.8109 0.577357,3.75196 2.83422 0.600217,3.75196 2.81079 0.616391,3.72023 2.78517 0.592216,3.72719 2.7559 0.606408,3.75196 2.78417 0.626488,3.69467 2.76894 0.493194,3.69686 2.7559 0.47789,3.69291 2.7559 0.51181,3.6999 2.77836 0.472916,3.6999 2.7637 0.467581,3.69467 2.77197 0.49574,3.6999 2.7903 0.482942,3.69467 2.77197 0.52788,3.69467 2.76894 0.530426,3.75196 2.7559 0.62992,3.70849 2.7559 0.445785,3.72023 2.78517 0.431404,3.75196 2.81079 0.407229,3.72023 2.8109 0.446263,3.75196 2.83422 0.423403,3.75196 2.8531 0.444716,3.75196 2.86633 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [3.72023 2.67163 0.526668,3.72023 2.6818 0.554593,3.6999 2.7137 0.527171,3.6999 2.71099 0.51181,3.72023 2.67163 0.496952,3.75196 2.63865 0.497573,3.75196 2.63865 0.526047,3.75196 2.64547 0.469928,3.6999 2.7137 0.496449,3.75196 2.72763 0.626488,3.75196 2.7559 0.62992,3.72719 2.7559 0.606408,3.72023 2.6818 0.469027,3.75196 2.6587 0.444716,3.6999 2.7215 0.482942,3.6999 2.7481 0.467581,3.69686 2.7559 0.47789,3.70849 2.7559 0.445785,3.6999 2.73344 0.472916,3.72023 2.7009 0.446263,3.75196 2.67758 0.423403,3.75196 2.70101 0.407229,3.72023 2.72663 0.431404,3.72719 2.7559 0.417212,3.75196 2.72763 0.397132,3.69467 2.74286 0.530426,3.69686 2.7559 0.54573,3.69291 2.7559 0.51181,3.6999 2.73344 0.550704,3.6999 2.7481 0.556039,3.69467 2.73983 0.52788,3.6999 2.7215 0.540678,3.69467 2.73983 0.49574,3.69467 2.74286 0.493194,3.75196 2.7559 0.3937,3.70849 2.7559 0.577835,3.72023 2.72663 0.592216,3.75196 2.70101 0.616391,3.72023 2.7009 0.577357,3.75196 2.67758 0.600217,3.75196 2.6587 0.578904,3.75196 2.64547 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,0,5,1,-1,4,6,0,-1,6,7,0,-1,0,8,5,-1,7,8,0,-1]
coord Coordinate { point [3.75196 -4.48031 0.807085,3.7651 -4.48031 0.864659,3.75196 -4.48031 0.86614,3.81102 -4.48031 0.807085,3.80954 -4.48031 0.820226,3.77758 -4.48031 0.860292,3.80517 -4.48031 0.832708,3.79813 -4.48031 0.843905,3.78878 -4.48031 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,5,2,3,-1,6,0,2,-1,7,6,2,-1,8,2,5,-1,8,7,2,-1]
coord Coordinate { point [3.75196 -4.53788 0.820226,3.75196 -4.53936 0.807085,3.75196 -4.48031 0.807085,3.75196 -4.49345 0.864659,3.75196 -4.48031 0.86614,3.75196 -4.50593 0.860292,3.75196 -4.53351 0.832708,3.75196 -4.52648 0.843905,3.75196 -4.51713 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.75196 -4.53936 0.807085,3.75196 -4.48031 0.334645,3.75196 -4.48031 0.807085,3.75196 -4.53936 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,0,4,3,-1,5,6,7,-1,0,8,4,-1,5,9,6,-1,0,10,8,-1,0,11,10,-1,0,12,11,-1,5,7,13,-1,14,15,16,-1,0,2,15,-1,17,18,12,-1,17,19,18,-1,17,20,19,-1,21,13,22,-1,23,16,15,-1,17,24,20,-1,17,25,24,-1,17,26,25,-1,17,12,0,-1,27,15,14,-1,17,28,29,-1,29,28,30,-1,17,29,31,-1,17,31,32,-1,17,32,33,-1,34,9,5,-1,33,32,35,-1,36,23,15,-1,35,32,37,-1,38,21,22,-1,17,33,26,-1,39,28,15,-1,38,40,2,-1,38,22,40,-1,39,15,27,-1,41,9,34,-1,41,42,9,-1,2,36,15,-1,43,28,39,-1,1,38,2,-1,44,42,41,-1,44,45,42,-1,46,28,43,-1,47,45,44,-1,47,48,45,-1,49,28,46,-1,50,28,49,-1,51,48,47,-1,51,52,48,-1,53,28,50,-1,54,55,52,-1,54,32,55,-1,54,52,51,-1,30,28,53,-1,37,32,54,-1,13,7,22,-1]
coord Coordinate { point [-3.75196 -4.53936 0.807085,-1.9685 -4.53936 0.595326,1.9685 -4.53936 0.595326,-1.98849 -4.53936 0.5929,-2.00731 -4.53936 0.58576,-1.89977 -4.53936 0.559253,1.89977 -4.53936 0.559253,1.91312 -4.53936 0.574323,-2.02388 -4.53936 0.574323,1.89041 -4.53936 0.541425,-2.03723 -4.53936 0.559253,-2.04659 -4.53936 0.541425,-2.05141 -4.53936 0.521877,-1.91312 -4.53936 0.574323,2.03723 -4.53936 0.559253,3.75196 -4.53936 0.807085,2.02388 -4.53936 0.574323,-3.75196 -4.53936 0.334645,-2.05141 -4.53936 0.501743,-2.04659 -4.53936 0.482195,-2.03723 -4.53936 0.464367,-1.92969 -4.53936 0.58576,1.92969 -4.53936 0.58576,2.00731 -4.53936 0.58576,-2.02388 -4.53936 0.449297,-2.00731 -4.53936 0.43786,-1.98849 -4.53936 0.43072,2.04659 -4.53936 0.541425,3.75196 -4.53936 0.334645,1.9685 -4.53936 0.428294,1.98849 -4.53936 0.43072,1.94851 -4.53936 0.43072,1.92969 -4.53936 0.43786,-1.9685 -4.53936 0.428294,-1.89041 -4.53936 0.541425,-1.94851 -4.53936 0.43072,1.98849 -4.53936 0.5929,-1.92969 -4.53936 0.43786,-1.94851 -4.53936 0.5929,2.05141 -4.53936 0.521877,1.94851 -4.53936 0.5929,-1.88559 -4.53936 0.521877,1.88559 -4.53936 0.521877,2.05141 -4.53936 0.501743,-1.88559 -4.53936 0.501743,1.88559 -4.53936 0.501743,2.04659 -4.53936 0.482195,-1.89041 -4.53936 0.482195,1.89041 -4.53936 0.482195,2.03723 -4.53936 0.464367,2.02388 -4.53936 0.449297,-1.89977 -4.53936 0.464367,1.89977 -4.53936 0.464367,2.00731 -4.53936 0.43786,-1.91312 -4.53936 0.449297,1.91312 -4.53936 0.449297]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.75196 -4.53936 0.334645,-3.75196 -4.48031 0.807085,-3.75196 -4.48031 0.334645,-3.75196 -4.53936 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [3.75196 -4.53936 0.334645,-3.75196 -4.48031 0.334645,3.75196 -4.48031 0.334645,-3.75196 -4.53936 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,11,12,9,-1,13,14,4,-1,7,15,8,-1,8,15,16,-1,9,17,10,-1,12,18,9,-1,19,20,13,-1,21,22,9,-1,23,20,19,-1,9,22,17,-1,13,20,14,-1,18,16,9,-1,21,24,22,-1,25,26,23,-1,23,26,20,-1,21,27,24,-1,25,28,26,-1,21,29,27,-1,25,30,28,-1,21,31,29,-1,32,30,25,-1,21,33,31,-1,32,34,30,-1,35,34,32,-1,21,36,33,-1,15,37,16,-1,38,37,15,-1,39,37,38,-1,40,37,39,-1,41,37,40,-1,42,37,41,-1,43,37,42,-1,3,5,44,-1,16,37,9,-1,45,1,43,-1,44,5,46,-1,47,1,45,-1,48,1,47,-1,49,6,8,-1,50,1,48,-1,44,6,49,-1,51,1,50,-1,2,1,51,-1,43,1,37,-1,46,6,44,-1,21,1,52,-1,21,52,36,-1,52,1,53,-1,54,4,3,-1,53,1,35,-1,13,4,54,-1,35,1,0,-1,35,0,55,-1,35,55,34,-1]
coord Coordinate { point [-1.9685 -4.48031 0.3937,-3.75196 -4.48031 0.334645,-1.99677 -4.48031 0.397132,1.8713 -4.48031 0.578904,-1.85807 -4.48031 0.553692,-1.8713 -4.48031 0.578904,-1.91361 -4.48031 0.616391,-1.94023 -4.48031 0.626488,1.94023 -4.48031 0.626488,3.75196 -4.48031 0.807085,2.0657 -4.48031 0.578904,2.04682 -4.48031 0.600217,2.02339 -4.48031 0.616391,1.85125 -4.48031 0.526047,-1.85125 -4.48031 0.526047,-1.9685 -4.48031 0.62992,1.9685 -4.48031 0.62992,2.07893 -4.48031 0.553692,1.99677 -4.48031 0.626488,1.85125 -4.48031 0.497573,-1.85125 -4.48031 0.497573,3.75196 -4.48031 0.334645,2.08575 -4.48031 0.526047,1.85807 -4.48031 0.469928,2.08575 -4.48031 0.497573,1.8713 -4.48031 0.444716,-1.85807 -4.48031 0.469928,2.07893 -4.48031 0.469928,-1.8713 -4.48031 0.444716,2.0657 -4.48031 0.444716,-1.89018 -4.48031 0.423403,2.04682 -4.48031 0.423403,1.89018 -4.48031 0.423403,2.02339 -4.48031 0.407229,-1.91361 -4.48031 0.407229,1.91361 -4.48031 0.407229,1.99677 -4.48031 0.397132,-3.75196 -4.48031 0.807085,-1.99677 -4.48031 0.626488,-2.02339 -4.48031 0.616391,-2.04682 -4.48031 0.600217,-2.0657 -4.48031 0.578904,-2.07893 -4.48031 0.553692,-2.08575 -4.48031 0.526047,1.89018 -4.48031 0.600217,-2.08575 -4.48031 0.497573,-1.89018 -4.48031 0.600217,-2.07893 -4.48031 0.469928,-2.0657 -4.48031 0.444716,1.91361 -4.48031 0.616391,-2.04682 -4.48031 0.423403,-2.02339 -4.48031 0.407229,1.9685 -4.48031 0.3937,1.94023 -4.48031 0.397132,1.85807 -4.48031 0.553692,-1.94023 -4.48031 0.397132]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [2.05277 -4.44858 0.496952,2.0426 -4.44858 0.469027,2.0107 -4.42825 0.496449,2.01341 -4.42825 0.51181,2.05277 -4.44858 0.526668,2.08575 -4.48031 0.526047,2.08575 -4.48031 0.497573,2.07893 -4.48031 0.553692,2.0107 -4.42825 0.527171,1.99677 -4.48031 0.397132,1.9685 -4.48031 0.3937,1.9685 -4.45554 0.417212,2.0426 -4.44858 0.554593,2.0657 -4.48031 0.578904,2.0029 -4.42825 0.540678,1.9763 -4.42825 0.556039,1.9685 -4.4252 0.54573,1.9685 -4.43684 0.577835,1.99096 -4.42825 0.550704,2.0235 -4.44858 0.577357,2.04682 -4.48031 0.600217,2.02339 -4.48031 0.616391,1.99777 -4.44858 0.592216,1.9685 -4.45554 0.606408,1.99677 -4.48031 0.626488,1.98154 -4.42301 0.493194,1.9685 -4.4252 0.47789,1.9685 -4.42125 0.51181,1.99096 -4.42825 0.472916,1.9763 -4.42825 0.467581,1.98457 -4.42301 0.49574,2.0029 -4.42825 0.482942,1.98457 -4.42301 0.52788,1.98154 -4.42301 0.530426,1.9685 -4.48031 0.62992,1.9685 -4.43684 0.445785,1.99777 -4.44858 0.431404,2.02339 -4.48031 0.407229,2.0235 -4.44858 0.446263,2.04682 -4.48031 0.423403,2.0657 -4.48031 0.444716,2.07893 -4.48031 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [1.88423 -4.44858 0.526668,1.8944 -4.44858 0.554593,1.9263 -4.42825 0.527171,1.92359 -4.42825 0.51181,1.88423 -4.44858 0.496952,1.85125 -4.48031 0.497573,1.85125 -4.48031 0.526047,1.85807 -4.48031 0.469928,1.9263 -4.42825 0.496449,1.94023 -4.48031 0.626488,1.9685 -4.48031 0.62992,1.9685 -4.45554 0.606408,1.8944 -4.44858 0.469027,1.8713 -4.48031 0.444716,1.9341 -4.42825 0.482942,1.9607 -4.42825 0.467581,1.9685 -4.4252 0.47789,1.9685 -4.43684 0.445785,1.94604 -4.42825 0.472916,1.9135 -4.44858 0.446263,1.89018 -4.48031 0.423403,1.91361 -4.48031 0.407229,1.93923 -4.44858 0.431404,1.9685 -4.45554 0.417212,1.94023 -4.48031 0.397132,1.95546 -4.42301 0.530426,1.9685 -4.4252 0.54573,1.9685 -4.42125 0.51181,1.94604 -4.42825 0.550704,1.9607 -4.42825 0.556039,1.95243 -4.42301 0.52788,1.9341 -4.42825 0.540678,1.95243 -4.42301 0.49574,1.95546 -4.42301 0.493194,1.9685 -4.48031 0.3937,1.9685 -4.43684 0.577835,1.93923 -4.44858 0.592216,1.91361 -4.48031 0.616391,1.9135 -4.44858 0.577357,1.89018 -4.48031 0.600217,1.8713 -4.48031 0.578904,1.85807 -4.48031 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-1.88423 -4.44858 0.496952,-1.8944 -4.44858 0.469027,-1.9263 -4.42825 0.496449,-1.92359 -4.42825 0.51181,-1.88423 -4.44858 0.526668,-1.85125 -4.48031 0.526047,-1.85125 -4.48031 0.497573,-1.85807 -4.48031 0.553692,-1.9263 -4.42825 0.527171,-1.94023 -4.48031 0.397132,-1.9685 -4.48031 0.3937,-1.9685 -4.45554 0.417212,-1.8944 -4.44858 0.554593,-1.8713 -4.48031 0.578904,-1.9341 -4.42825 0.540678,-1.9607 -4.42825 0.556039,-1.9685 -4.4252 0.54573,-1.9685 -4.43684 0.577835,-1.94604 -4.42825 0.550704,-1.9135 -4.44858 0.577357,-1.89018 -4.48031 0.600217,-1.91361 -4.48031 0.616391,-1.93923 -4.44858 0.592216,-1.9685 -4.45554 0.606408,-1.94023 -4.48031 0.626488,-1.95546 -4.42301 0.493194,-1.9685 -4.4252 0.47789,-1.9685 -4.42125 0.51181,-1.94604 -4.42825 0.472916,-1.9607 -4.42825 0.467581,-1.95243 -4.42301 0.49574,-1.9341 -4.42825 0.482942,-1.95243 -4.42301 0.52788,-1.95546 -4.42301 0.530426,-1.9685 -4.48031 0.62992,-1.9685 -4.43684 0.445785,-1.93923 -4.44858 0.431404,-1.91361 -4.48031 0.407229,-1.9135 -4.44858 0.446263,-1.89018 -4.48031 0.423403,-1.8713 -4.48031 0.444716,-1.85807 -4.48031 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-2.05277 -4.44858 0.526668,-2.0426 -4.44858 0.554593,-2.0107 -4.42825 0.527171,-2.01341 -4.42825 0.51181,-2.05277 -4.44858 0.496952,-2.08575 -4.48031 0.497573,-2.08575 -4.48031 0.526047,-2.07893 -4.48031 0.469928,-2.0107 -4.42825 0.496449,-1.99677 -4.48031 0.626488,-1.9685 -4.48031 0.62992,-1.9685 -4.45554 0.606408,-2.0426 -4.44858 0.469027,-2.0657 -4.48031 0.444716,-2.0029 -4.42825 0.482942,-1.9763 -4.42825 0.467581,-1.9685 -4.4252 0.47789,-1.9685 -4.43684 0.445785,-1.99096 -4.42825 0.472916,-2.0235 -4.44858 0.446263,-2.04682 -4.48031 0.423403,-2.02339 -4.48031 0.407229,-1.99777 -4.44858 0.431404,-1.9685 -4.45554 0.417212,-1.99677 -4.48031 0.397132,-1.98154 -4.42301 0.530426,-1.9685 -4.4252 0.54573,-1.9685 -4.42125 0.51181,-1.99096 -4.42825 0.550704,-1.9763 -4.42825 0.556039,-1.98457 -4.42301 0.52788,-2.0029 -4.42825 0.540678,-1.98457 -4.42301 0.49574,-1.98154 -4.42301 0.493194,-1.9685 -4.48031 0.3937,-1.9685 -4.43684 0.577835,-1.99777 -4.44858 0.592216,-2.02339 -4.48031 0.616391,-2.0235 -4.44858 0.577357,-2.04682 -4.48031 0.600217,-2.0657 -4.48031 0.578904,-2.07893 -4.48031 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,0,5,1,-1,4,6,0,-1,6,7,0,-1,0,8,5,-1,7,8,0,-1]
coord Coordinate { point [-3.75196 -4.48031 0.807085,-3.75196 -4.49345 0.864659,-3.75196 -4.48031 0.86614,-3.75196 -4.53936 0.807085,-3.75196 -4.53788 0.820226,-3.75196 -4.50593 0.860292,-3.75196 -4.53351 0.832708,-3.75196 -4.52648 0.843905,-3.75196 -4.51713 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,5,2,3,-1,6,0,2,-1,7,6,2,-1,8,2,5,-1,8,7,2,-1]
coord Coordinate { point [-3.80954 -4.48031 0.820226,-3.81102 -4.48031 0.807085,-3.75196 -4.48031 0.807085,-3.7651 -4.48031 0.864659,-3.75196 -4.48031 0.86614,-3.77758 -4.48031 0.860292,-3.80517 -4.48031 0.832708,-3.79813 -4.48031 0.843905,-3.78878 -4.48031 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.81102 -4.48031 0.807085,-3.75196 -4.48031 0.334645,-3.75196 -4.48031 0.807085,-3.81102 -4.48031 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,7,13,8,-1,10,12,14,-1,10,15,11,-1,10,16,15,-1,10,17,16,-1,10,18,17,-1,10,19,18,-1,10,20,19,-1,21,14,22,-1,23,24,25,-1,26,22,14,-1,27,6,3,-1,23,0,24,-1,28,20,10,-1,29,14,21,-1,28,30,20,-1,28,31,30,-1,32,33,13,-1,28,34,31,-1,28,35,34,-1,28,36,35,-1,37,3,5,-1,28,38,36,-1,39,26,14,-1,28,40,38,-1,41,42,6,-1,43,44,14,-1,28,44,45,-1,28,45,46,-1,32,13,7,-1,28,46,47,-1,43,14,29,-1,47,46,48,-1,28,47,49,-1,28,49,40,-1,25,39,14,-1,40,49,50,-1,12,23,25,-1,41,6,27,-1,12,25,14,-1,51,33,32,-1,51,52,33,-1,53,5,54,-1,55,44,43,-1,53,37,5,-1,56,57,42,-1,58,44,55,-1,56,42,41,-1,59,60,52,-1,11,54,12,-1,11,53,54,-1,61,44,58,-1,62,57,56,-1,59,52,51,-1,62,63,57,-1,64,65,60,-1,64,66,65,-1,67,63,62,-1,67,68,63,-1,64,60,59,-1,69,44,61,-1,70,44,69,-1,71,72,68,-1,73,66,64,-1,71,68,67,-1,74,44,70,-1,75,76,66,-1,77,78,72,-1,77,79,78,-1,77,72,71,-1,75,66,73,-1,45,44,74,-1,48,46,76,-1,80,79,77,-1,48,76,75,-1,50,79,80,-1,50,49,79,-1,1,8,2,-1,9,8,1,-1,0,81,24,-1,0,2,81,-1]
coord Coordinate { point [-3.81102 -0.038812 0.58576,-3.81102 -0.0553816 0.574323,-3.81102 -2.70052 0.574323,-3.81102 2.70052 0.574323,-3.81102 0.0553816 0.574323,-3.81102 0.038812 0.58576,-3.81102 0.0687326 0.559253,-3.81102 -0.0780892 0.541425,-3.81102 -2.68717 0.559253,-3.81102 -0.0687326 0.559253,-3.81102 4.05662 0.807085,-3.81102 2.7559 0.595326,-3.81102 -6.69218e-12 0.595326,-3.81102 -2.67781 0.541425,-3.81102 -4.48031 0.807085,-3.81102 2.77589 0.5929,-3.81102 2.79471 0.58576,-3.81102 2.81128 0.574323,-3.81102 2.82463 0.559253,-3.81102 2.83399 0.541425,-3.81102 2.83881 0.521877,-3.81102 -2.82463 0.559253,-3.81102 -2.81128 0.574323,-3.81102 -0.0199868 0.5929,-3.81102 -2.73591 0.5929,-3.81102 -2.7559 0.595326,-3.81102 -2.79471 0.58576,-3.81102 2.68717 0.559253,-3.81102 4.05662 0.334645,-3.81102 -2.83399 0.541425,-3.81102 2.83881 0.501743,-3.81102 2.83399 0.482195,-3.81102 -0.0829075 0.521877,-3.81102 -2.67299 0.521877,-3.81102 2.82463 0.464367,-3.81102 2.81128 0.449297,-3.81102 2.79471 0.43786,-3.81102 2.71709 0.58576,-3.81102 2.77589 0.43072,-3.81102 -2.77589 0.5929,-3.81102 2.7559 0.428294,-3.81102 2.67781 0.541425,-3.81102 0.0780892 0.541425,-3.81102 -2.83881 0.521877,-3.81102 -4.48031 0.334645,-3.81102 -2.7559 0.428294,-3.81102 -2.73591 0.43072,-3.81102 -6.69223e-12 0.428294,-3.81102 -0.0199868 0.43072,-3.81102 0.0199868 0.43072,-3.81102 2.73591 0.43072,-3.81102 -0.0829075 0.501743,-3.81102 -2.67299 0.501743,-3.81102 2.73591 0.5929,-3.81102 0.0199868 0.5929,-3.81102 -2.83881 0.501743,-3.81102 2.67299 0.521877,-3.81102 0.0829075 0.521877,-3.81102 -2.83399 0.482195,-3.81102 -0.0780892 0.482195,-3.81102 -2.67781 0.482195,-3.81102 -2.82463 0.464367,-3.81102 2.67299 0.501743,-3.81102 0.0829075 0.501743,-3.81102 -0.0687326 0.464367,-3.81102 -2.68717 0.464367,-3.81102 -2.70052 0.449297,-3.81102 2.67781 0.482195,-3.81102 0.0780892 0.482195,-3.81102 -2.81128 0.449297,-3.81102 -2.79471 0.43786,-3.81102 2.68717 0.464367,-3.81102 0.0687326 0.464367,-3.81102 -0.0553816 0.449297,-3.81102 -2.77589 0.43072,-3.81102 -0.038812 0.43786,-3.81102 -2.71709 0.43786,-3.81102 2.70052 0.449297,-3.81102 0.0553816 0.449297,-3.81102 0.038812 0.43786,-3.81102 2.71709 0.43786,-3.81102 -2.71709 0.58576]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.81102 4.05662 0.334645,-3.75196 4.05662 0.807085,-3.75196 4.05662 0.334645,-3.81102 4.05662 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.81102 -4.48031 0.334645,-3.75196 4.05662 0.334645,-3.75196 -4.48031 0.334645,-3.81102 4.05662 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,0,2,6,-1,2,1,7,-1,7,1,8,-1,9,4,3,-1,7,8,10,-1,8,1,11,-1,12,13,14,-1,11,1,15,-1,16,13,12,-1,11,15,17,-1,18,19,20,-1,21,19,18,-1,14,13,22,-1,23,24,25,-1,26,27,28,-1,29,27,26,-1,5,30,31,-1,25,32,23,-1,4,30,5,-1,28,27,33,-1,23,34,24,-1,20,35,36,-1,19,35,20,-1,32,37,23,-1,36,35,23,-1,29,38,27,-1,0,39,23,-1,16,40,13,-1,23,39,34,-1,31,41,35,-1,37,36,23,-1,30,41,31,-1,16,42,40,-1,43,42,16,-1,0,44,39,-1,45,46,29,-1,0,47,44,-1,29,46,38,-1,48,49,43,-1,50,49,48,-1,43,49,42,-1,51,52,45,-1,0,53,47,-1,54,52,51,-1,45,52,46,-1,50,55,49,-1,0,56,53,-1,57,58,54,-1,50,59,55,-1,54,58,52,-1,60,59,50,-1,0,61,56,-1,7,62,57,-1,60,63,59,-1,64,63,60,-1,57,62,58,-1,0,6,61,-1,64,17,63,-1,7,10,62,-1,11,17,64,-1,41,65,35,-1,35,65,23,-1,66,65,41,-1,67,65,66,-1,68,69,70,-1,71,65,67,-1,28,69,68,-1,72,65,71,-1,73,65,72,-1,74,65,73,-1,70,69,75,-1,14,22,3,-1,70,21,18,-1,74,1,65,-1,75,21,70,-1,76,1,74,-1,77,1,76,-1,78,1,77,-1,79,1,78,-1,80,1,79,-1,3,22,9,-1,28,33,69,-1,81,1,80,-1,15,1,81,-1]
coord Coordinate { point [-3.75196 -4.48031 0.334645,-3.75196 4.05662 0.334645,-3.75196 -2.7559 0.3937,-3.75196 0.0783214 0.600217,-3.75196 2.70101 0.616391,-3.75196 0.0548885 0.616391,-3.75196 -2.78417 0.397132,-3.75196 -2.72763 0.397132,-3.75196 -6.69223e-12 0.3937,-3.75196 2.67758 0.600217,-3.75196 -0.0282656 0.397132,-3.75196 0.0282656 0.397132,-3.75196 0.110435 0.553692,-3.75196 2.64547 0.553692,-3.75196 0.0972026 0.578904,-3.75196 2.7559 0.3937,-3.75196 0.117249 0.526047,-3.75196 2.72763 0.397132,-3.75196 -2.70101 0.616391,-3.75196 -0.0282656 0.626488,-3.75196 -2.72763 0.626488,-3.75196 -0.0548885 0.616391,-3.75196 2.6587 0.578904,-3.75196 -4.48031 0.807085,-3.75196 -2.8531 0.578904,-3.75196 -2.83422 0.600217,-3.75196 -2.63865 0.526047,-3.75196 -0.117249 0.526047,-3.75196 -2.64547 0.553692,-3.75196 -2.63865 0.497573,-3.75196 2.72763 0.626488,-3.75196 0.0282656 0.626488,-3.75196 -2.81079 0.616391,-3.75196 -0.110435 0.553692,-3.75196 -2.86633 0.553692,-3.75196 -6.69218e-12 0.62992,-3.75196 -2.7559 0.62992,-3.75196 -2.78417 0.626488,-3.75196 -0.117249 0.497573,-3.75196 -2.87315 0.526047,-3.75196 2.63865 0.526047,-3.75196 2.7559 0.62992,-3.75196 2.63865 0.497573,-3.75196 0.117249 0.497573,-3.75196 -2.87315 0.497573,-3.75196 -2.64547 0.469928,-3.75196 -0.110435 0.469928,-3.75196 -2.86633 0.469928,-3.75196 0.110435 0.469928,-3.75196 2.64547 0.469928,-3.75196 0.0972026 0.444716,-3.75196 -2.6587 0.444716,-3.75196 -0.0972026 0.444716,-3.75196 -2.8531 0.444716,-3.75196 -2.67758 0.423403,-3.75196 2.6587 0.444716,-3.75196 -2.83422 0.423403,-3.75196 -2.70101 0.407229,-3.75196 -0.0783214 0.423403,-3.75196 2.67758 0.423403,-3.75196 0.0783214 0.423403,-3.75196 -2.81079 0.407229,-3.75196 -0.0548885 0.407229,-3.75196 2.70101 0.407229,-3.75196 0.0548885 0.407229,-3.75196 4.05662 0.807085,-3.75196 2.78417 0.626488,-3.75196 2.81079 0.616391,-3.75196 -2.6587 0.578904,-3.75196 -0.0972026 0.578904,-3.75196 -2.67758 0.600217,-3.75196 2.83422 0.600217,-3.75196 2.8531 0.578904,-3.75196 2.86633 0.553692,-3.75196 2.87315 0.526047,-3.75196 -0.0783214 0.600217,-3.75196 2.87315 0.497573,-3.75196 2.86633 0.469928,-3.75196 2.8531 0.444716,-3.75196 2.83422 0.423403,-3.75196 2.81079 0.407229,-3.75196 2.78417 0.397132]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-3.72023 -2.84017 0.496952,-3.72023 -2.83 0.469027,-3.6999 -2.7981 0.496449,-3.6999 -2.80081 0.51181,-3.72023 -2.84017 0.526668,-3.75196 -2.87315 0.526047,-3.75196 -2.87315 0.497573,-3.75196 -2.86633 0.553692,-3.6999 -2.7981 0.527171,-3.75196 -2.78417 0.397132,-3.75196 -2.7559 0.3937,-3.72719 -2.7559 0.417212,-3.72023 -2.83 0.554593,-3.75196 -2.8531 0.578904,-3.6999 -2.7903 0.540678,-3.6999 -2.7637 0.556039,-3.69686 -2.7559 0.54573,-3.70849 -2.7559 0.577835,-3.6999 -2.77836 0.550704,-3.72023 -2.8109 0.577357,-3.75196 -2.83422 0.600217,-3.75196 -2.81079 0.616391,-3.72023 -2.78517 0.592216,-3.72719 -2.7559 0.606408,-3.75196 -2.78417 0.626488,-3.69467 -2.76894 0.493194,-3.69686 -2.7559 0.47789,-3.69291 -2.7559 0.51181,-3.6999 -2.77836 0.472916,-3.6999 -2.7637 0.467581,-3.69467 -2.77197 0.49574,-3.6999 -2.7903 0.482942,-3.69467 -2.77197 0.52788,-3.69467 -2.76894 0.530426,-3.75196 -2.7559 0.62992,-3.70849 -2.7559 0.445785,-3.72023 -2.78517 0.431404,-3.75196 -2.81079 0.407229,-3.72023 -2.8109 0.446263,-3.75196 -2.83422 0.423403,-3.75196 -2.8531 0.444716,-3.75196 -2.86633 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,3,7,-1,4,6,0,-1,4,0,3,-1,8,9,10,-1,11,12,5,-1,11,4,7,-1,11,7,13,-1,11,5,4,-1,14,15,16,-1,14,16,17,-1,18,19,12,-1,18,20,19,-1,18,12,11,-1,18,13,17,-1,18,11,13,-1,21,16,22,-1,21,23,20,-1,21,17,16,-1,21,22,23,-1,21,20,18,-1,21,18,17,-1,24,25,26,-1,24,27,28,-1,24,28,25,-1,29,3,2,-1,29,30,27,-1,29,24,26,-1,29,2,30,-1,29,27,24,-1,31,7,3,-1,31,29,26,-1,31,13,7,-1,31,3,29,-1,32,13,31,-1,32,26,15,-1,32,31,26,-1,32,17,13,-1,32,15,14,-1,32,14,17,-1,33,23,22,-1,28,34,25,-1,27,34,28,-1,35,10,34,-1,35,36,8,-1,35,8,10,-1,35,34,27,-1,37,38,36,-1,37,39,38,-1,37,27,30,-1,37,35,27,-1,37,36,35,-1,1,40,39,-1,1,37,30,-1,1,39,37,-1,1,30,2,-1,0,41,40,-1,0,6,41,-1,0,40,1,-1]
coord Coordinate { point [-3.72023 -2.67163 0.526668,-3.72023 -2.6818 0.554593,-3.6999 -2.7137 0.527171,-3.6999 -2.71099 0.51181,-3.72023 -2.67163 0.496952,-3.75196 -2.64547 0.469928,-3.75196 -2.63865 0.497573,-3.6999 -2.7137 0.496449,-3.75196 -2.72763 0.626488,-3.75196 -2.7559 0.62992,-3.72719 -2.7559 0.606408,-3.72023 -2.6818 0.469027,-3.75196 -2.6587 0.444716,-3.6999 -2.7215 0.482942,-3.6999 -2.7481 0.467581,-3.69686 -2.7559 0.47789,-3.70849 -2.7559 0.445785,-3.6999 -2.73344 0.472916,-3.72023 -2.7009 0.446263,-3.75196 -2.67758 0.423403,-3.75196 -2.70101 0.407229,-3.72023 -2.72663 0.431404,-3.72719 -2.7559 0.417212,-3.75196 -2.72763 0.397132,-3.69467 -2.74286 0.530426,-3.69686 -2.7559 0.54573,-3.69291 -2.7559 0.51181,-3.6999 -2.73344 0.550704,-3.6999 -2.7481 0.556039,-3.69467 -2.73983 0.52788,-3.6999 -2.7215 0.540678,-3.69467 -2.73983 0.49574,-3.69467 -2.74286 0.493194,-3.75196 -2.7559 0.3937,-3.70849 -2.7559 0.577835,-3.72023 -2.72663 0.592216,-3.75196 -2.70101 0.616391,-3.72023 -2.7009 0.577357,-3.75196 -2.67758 0.600217,-3.75196 -2.6587 0.578904,-3.75196 -2.64547 0.553692,-3.75196 -2.63865 0.526047]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-3.72023 -0.0842658 0.496952,-3.72023 -0.0741021 0.469027,-3.6999 -0.0422028 0.496449,-3.6999 -0.0449113 0.51181,-3.72023 -0.0842658 0.526668,-3.75196 -0.117249 0.526047,-3.75196 -0.117249 0.497573,-3.75196 -0.110435 0.553692,-3.6999 -0.0422028 0.527171,-3.75196 -0.0282656 0.397132,-3.75196 -6.69223e-12 0.3937,-3.72719 -6.69223e-12 0.417212,-3.72023 -0.0741021 0.554593,-3.75196 -0.0972026 0.578904,-3.6999 -0.0344041 0.540678,-3.6999 -0.00779877 0.556039,-3.69686 -6.6922e-12 0.54573,-3.70849 -6.69219e-12 0.577835,-3.6999 -0.0224557 0.550704,-3.72023 -0.0550006 0.577357,-3.75196 -0.0783214 0.600217,-3.75196 -0.0548885 0.616391,-3.72023 -0.0292652 0.592216,-3.72719 -6.69218e-12 0.606408,-3.75196 -0.0282656 0.626488,-3.69467 -0.0130354 0.493194,-3.69686 -6.69221e-12 0.47789,-3.69291 -6.69223e-12 0.51181,-3.6999 -0.0224557 0.472916,-3.6999 -0.00779877 0.467581,-3.69467 -0.0160701 0.49574,-3.6999 -0.0344041 0.482942,-3.69467 -0.0160701 0.52788,-3.69467 -0.0130354 0.530426,-3.75196 -6.69218e-12 0.62992,-3.70849 -6.69222e-12 0.445785,-3.72023 -0.0292652 0.431404,-3.75196 -0.0548885 0.407229,-3.72023 -0.0550006 0.446263,-3.75196 -0.0783214 0.423403,-3.75196 -0.0972026 0.444716,-3.75196 -0.110435 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-3.72023 0.0842658 0.526668,-3.72023 0.0741021 0.554593,-3.6999 0.0422028 0.527171,-3.6999 0.0449113 0.51181,-3.72023 0.0842658 0.496952,-3.75196 0.117249 0.497573,-3.75196 0.117249 0.526047,-3.75196 0.110435 0.469928,-3.6999 0.0422028 0.496449,-3.75196 0.0282656 0.626488,-3.75196 -6.69218e-12 0.62992,-3.72719 -6.69218e-12 0.606408,-3.72023 0.0741021 0.469027,-3.75196 0.0972026 0.444716,-3.6999 0.0344041 0.482942,-3.6999 0.00779877 0.467581,-3.69686 -6.69221e-12 0.47789,-3.70849 -6.69222e-12 0.445785,-3.6999 0.0224557 0.472916,-3.72023 0.0550006 0.446263,-3.75196 0.0783214 0.423403,-3.75196 0.0548885 0.407229,-3.72023 0.0292652 0.431404,-3.72719 -6.69223e-12 0.417212,-3.75196 0.0282656 0.397132,-3.69467 0.0130354 0.530426,-3.69686 -6.6922e-12 0.54573,-3.69291 -6.69223e-12 0.51181,-3.6999 0.0224557 0.550704,-3.6999 0.00779877 0.556039,-3.69467 0.0160701 0.52788,-3.6999 0.0344041 0.540678,-3.69467 0.0160701 0.49574,-3.69467 0.0130354 0.493194,-3.75196 -6.69223e-12 0.3937,-3.70849 -6.69219e-12 0.577835,-3.72023 0.0292652 0.592216,-3.75196 0.0548885 0.616391,-3.72023 0.0550006 0.577357,-3.75196 0.0783214 0.600217,-3.75196 0.0972026 0.578904,-3.75196 0.110435 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-3.72023 2.67163 0.496952,-3.72023 2.6818 0.469027,-3.6999 2.7137 0.496449,-3.6999 2.71099 0.51181,-3.72023 2.67163 0.526668,-3.75196 2.63865 0.526047,-3.75196 2.63865 0.497573,-3.75196 2.64547 0.553692,-3.6999 2.7137 0.527171,-3.75196 2.72763 0.397132,-3.75196 2.7559 0.3937,-3.72719 2.7559 0.417212,-3.72023 2.6818 0.554593,-3.75196 2.6587 0.578904,-3.6999 2.7215 0.540678,-3.6999 2.7481 0.556039,-3.69686 2.7559 0.54573,-3.70849 2.7559 0.577835,-3.6999 2.73344 0.550704,-3.72023 2.7009 0.577357,-3.75196 2.67758 0.600217,-3.75196 2.70101 0.616391,-3.72023 2.72663 0.592216,-3.72719 2.7559 0.606408,-3.75196 2.72763 0.626488,-3.69467 2.74286 0.493194,-3.69686 2.7559 0.47789,-3.69291 2.7559 0.51181,-3.6999 2.73344 0.472916,-3.6999 2.7481 0.467581,-3.69467 2.73983 0.49574,-3.6999 2.7215 0.482942,-3.69467 2.73983 0.52788,-3.69467 2.74286 0.530426,-3.75196 2.7559 0.62992,-3.70849 2.7559 0.445785,-3.72023 2.72663 0.431404,-3.75196 2.70101 0.407229,-3.72023 2.7009 0.446263,-3.75196 2.67758 0.423403,-3.75196 2.6587 0.444716,-3.75196 2.64547 0.469928]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,4,7,5,-1,4,3,8,-1,4,6,0,-1,4,0,3,-1,9,10,11,-1,12,13,7,-1,12,4,8,-1,12,7,4,-1,12,8,14,-1,15,16,17,-1,15,17,18,-1,19,20,13,-1,19,21,20,-1,19,13,12,-1,19,14,18,-1,19,12,14,-1,22,17,23,-1,22,24,21,-1,22,18,17,-1,22,21,19,-1,22,23,24,-1,22,19,18,-1,25,26,27,-1,25,28,29,-1,25,29,26,-1,30,3,2,-1,30,25,27,-1,30,31,28,-1,30,2,31,-1,30,28,25,-1,32,8,3,-1,32,30,27,-1,32,14,8,-1,32,3,30,-1,33,14,32,-1,33,27,16,-1,33,32,27,-1,33,18,14,-1,33,16,15,-1,33,15,18,-1,34,24,23,-1,29,35,26,-1,28,35,29,-1,36,11,35,-1,36,37,9,-1,36,9,11,-1,36,35,28,-1,38,39,37,-1,38,40,39,-1,38,28,31,-1,38,36,28,-1,38,37,36,-1,1,41,40,-1,1,38,31,-1,1,40,38,-1,1,31,2,-1,0,6,41,-1,0,41,1,-1]
coord Coordinate { point [-3.72023 2.84017 0.526668,-3.72023 2.83 0.554593,-3.6999 2.7981 0.527171,-3.6999 2.80081 0.51181,-3.72023 2.84017 0.496952,-3.75196 2.87315 0.497573,-3.75196 2.87315 0.526047,-3.75196 2.86633 0.469928,-3.6999 2.7981 0.496449,-3.75196 2.78417 0.626488,-3.75196 2.7559 0.62992,-3.72719 2.7559 0.606408,-3.72023 2.83 0.469027,-3.75196 2.8531 0.444716,-3.6999 2.7903 0.482942,-3.6999 2.7637 0.467581,-3.69686 2.7559 0.47789,-3.70849 2.7559 0.445785,-3.6999 2.77836 0.472916,-3.72023 2.8109 0.446263,-3.75196 2.83422 0.423403,-3.75196 2.81079 0.407229,-3.72023 2.78517 0.431404,-3.72719 2.7559 0.417212,-3.75196 2.78417 0.397132,-3.69467 2.76894 0.530426,-3.69686 2.7559 0.54573,-3.69291 2.7559 0.51181,-3.6999 2.77836 0.550704,-3.6999 2.7637 0.556039,-3.69467 2.77197 0.52788,-3.6999 2.7903 0.540678,-3.69467 2.77197 0.49574,-3.69467 2.76894 0.493194,-3.75196 2.7559 0.3937,-3.70849 2.7559 0.577835,-3.72023 2.78517 0.592216,-3.75196 2.81079 0.616391,-3.72023 2.8109 0.577357,-3.75196 2.83422 0.600217,-3.75196 2.8531 0.578904,-3.75196 2.86633 0.553692]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,0,5,1,-1,4,6,0,-1,6,7,0,-1,0,8,5,-1,7,8,0,-1]
coord Coordinate { point [-3.75196 4.05662 0.807085,-3.7651 4.05662 0.864659,-3.75196 4.05662 0.86614,-3.81102 4.05662 0.807085,-3.80954 4.05662 0.820226,-3.77758 4.05662 0.860292,-3.80517 4.05662 0.832708,-3.79813 4.05662 0.843905,-3.78878 4.05662 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,1,-1,5,1,0,-1,6,3,1,-1,7,1,5,-1,8,6,1,-1,8,1,7,-1]
coord Coordinate { point [-3.76125 4.06592 0.864659,-3.75196 4.05662 0.807085,-3.75196 4.05662 0.86614,-3.79267 4.09734 0.820226,-3.79372 4.09838 0.807085,-3.77008 4.07474 0.860292,-3.78958 4.09425 0.832708,-3.778 4.08266 0.853256,-3.78461 4.08927 0.843905]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.79372 4.09838 0.807085,-3.75196 4.05662 0.334645,-3.75196 4.05662 0.807085,-3.79372 4.09838 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.37004 4.52206 0.334645,-3.79372 4.09838 0.807085,-3.37004 4.52206 0.807085,-3.79372 4.09838 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.37004 4.52206 0.334645,-3.32828 4.48031 0.807085,-3.32828 4.48031 0.334645,-3.37004 4.52206 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.79372 4.09838 0.334645,-3.32828 4.48031 0.334645,-3.75196 4.05662 0.334645,-3.37004 4.52206 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1]
coord Coordinate { point [-3.75196 4.05662 0.807085,-3.32828 4.48031 0.334645,-3.32828 4.48031 0.807085,-3.75196 4.05662 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,0,-1,0,5,1,-1,4,6,0,-1,0,7,5,-1,6,8,0,-1,0,8,7,-1]
coord Coordinate { point [-3.32828 4.48031 0.807085,-3.33757 4.4896 0.864659,-3.32828 4.48031 0.86614,-3.37004 4.52206 0.807085,-3.36899 4.52102 0.820226,-3.3464 4.49842 0.860292,-3.3659 4.51793 0.832708,-3.35432 4.50634 0.853256,-3.36093 4.51295 0.843905]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,5,2,3,-1,6,0,2,-1,7,6,2,-1,8,2,5,-1,8,7,2,-1]
coord Coordinate { point [-3.32828 4.53788 0.820226,-3.32828 4.53936 0.807085,-3.32828 4.48031 0.807085,-3.32828 4.49345 0.864659,-3.32828 4.48031 0.86614,-3.32828 4.50593 0.860292,-3.32828 4.53351 0.832708,-3.32828 4.52648 0.843905,-3.32828 4.51713 0.853256]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.32828 4.53936 0.807085,-3.32828 4.48031 0.334645,-3.32828 4.48031 0.807085,-3.32828 4.53936 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [-3.32828 4.53936 0.334645,3.75196 4.48031 0.334645,-3.32828 4.48031 0.334645,3.75196 4.53936 0.334645]
}}
appearance Appearance{material USE PIN-01 }}
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,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [-3.36899 4.52102 0.820226,-3.79372 4.09838 0.807085,-3.79267 4.09734 0.820226,-3.37004 4.52206 0.807085,-3.3659 4.51793 0.832708,-3.78958 4.09425 0.832708,-3.36093 4.51295 0.843905,-3.78461 4.08927 0.843905,-3.35432 4.50634 0.853256,-3.778 4.08266 0.853256,-3.3464 4.49842 0.860292,-3.77008 4.07474 0.860292,-3.33757 4.4896 0.864659,-3.76125 4.06592 0.864659,-3.32828 4.48031 0.86614,-3.75196 4.05662 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,16,10,12,-1,17,16,12,-1,13,18,14,-1,19,17,12,-1,20,21,22,-1,20,22,23,-1,24,19,12,-1,25,2,26,-1,25,0,2,-1,27,28,29,-1,30,24,12,-1,27,31,28,-1,32,33,34,-1,32,34,18,-1,35,36,37,-1,38,30,12,-1,35,39,15,-1,40,41,42,-1,40,42,43,-1,35,37,39,-1,44,21,20,-1,45,46,47,-1,45,48,49,-1,50,51,52,-1,45,47,48,-1,53,38,12,-1,54,55,56,-1,57,58,59,-1,54,60,55,-1,57,59,51,-1,61,62,36,-1,63,64,0,-1,65,66,41,-1,67,68,69,-1,67,70,68,-1,71,72,73,-1,74,75,76,-1,74,77,78,-1,74,78,79,-1,74,79,80,-1,81,53,12,-1,74,80,82,-1,74,82,83,-1,74,83,84,-1,85,86,87,-1,74,84,88,-1,74,88,75,-1,89,90,91,-1,89,91,72,-1,74,92,77,-1,93,94,95,-1,96,97,98,-1,99,100,81,-1,93,101,94,-1,102,49,103,-1,99,81,12,-1,104,25,26,-1,102,45,49,-1,105,106,107,-1,105,107,108,-1,109,52,110,-1,111,112,113,-1,111,113,114,-1,115,99,12,-1,109,110,62,-1,116,107,106,-1,117,101,93,-1,118,105,108,-1,119,40,43,-1,118,108,120,-1,121,107,116,-1,122,104,26,-1,122,26,123,-1,124,125,126,-1,124,126,127,-1,128,27,29,-1,129,130,131,-1,129,132,130,-1,133,134,135,-1,129,131,136,-1,137,138,139,-1,133,140,134,-1,141,118,120,-1,142,46,45,-1,141,120,143,-1,144,112,111,-1,145,117,93,-1,146,147,148,-1,149,150,100,-1,149,151,150,-1,152,138,137,-1,153,154,155,-1,156,119,43,-1,157,141,143,-1,156,158,159,-1,156,43,158,-1,160,133,135,-1,160,58,57,-1,160,135,58,-1,161,162,163,-1,164,21,44,-1,161,165,162,-1,166,167,168,-1,169,102,103,-1,164,170,171,-1,164,172,170,-1,164,173,172,-1,164,44,173,-1,174,13,15,-1,175,35,15,-1,176,160,57,-1,177,121,152,-1,178,121,177,-1,179,177,152,-1,180,125,124,-1,181,152,137,-1,181,137,182,-1,183,117,145,-1,181,179,152,-1,183,184,70,-1,183,67,117,-1,183,145,185,-1,186,165,161,-1,187,96,98,-1,183,70,67,-1,188,121,178,-1,189,140,133,-1,190,144,111,-1,191,157,143,-1,191,143,192,-1,191,193,157,-1,194,195,196,-1,191,197,193,-1,198,199,200,-1,201,202,203,-1,198,204,199,-1,205,103,206,-1,205,169,103,-1,207,204,198,-1,208,181,182,-1,209,210,211,-1,212,121,188,-1,213,214,215,-1,216,167,166,-1,217,122,123,-1,218,3,5,-1,217,123,8,-1,217,8,7,-1,219,220,221,-1,222,124,127,-1,223,191,192,-1,219,224,225,-1,223,192,226,-1,219,227,224,-1,219,228,227,-1,219,221,228,-1,229,197,191,-1,230,207,198,-1,231,232,33,-1,231,33,32,-1,233,234,235,-1,233,236,234,-1,237,175,15,-1,237,61,175,-1,238,239,214,-1,237,240,61,-1,238,182,239,-1,238,208,182,-1,241,176,50,-1,242,132,129,-1,241,50,243,-1,242,244,132,-1,242,245,244,-1,246,214,213,-1,246,238,214,-1,241,160,176,-1,247,115,12,-1,248,217,7,-1,249,186,161,-1,248,7,195,-1,250,233,235,-1,251,21,164,-1,251,92,74,-1,252,96,187,-1,253,124,222,-1,254,71,73,-1,255,122,217,-1,254,73,97,-1,256,247,12,-1,257,97,96,-1,257,254,97,-1,258,185,259,-1,258,183,185,-1,260,180,124,-1,261,262,263,-1,261,264,262,-1,265,266,25,-1,265,25,104,-1,267,248,195,-1,268,202,201,-1,268,187,202,-1,269,270,128,-1,271,5,90,-1,271,218,5,-1,272,264,261,-1,272,273,264,-1,272,274,273,-1,272,275,274,-1,272,276,275,-1,272,277,276,-1,278,270,269,-1,279,280,250,-1,281,269,128,-1,282,283,216,-1,281,128,29,-1,284,285,270,-1,286,3,218,-1,287,279,250,-1,284,270,278,-1,288,266,265,-1,287,250,235,-1,289,290,291,-1,292,237,15,-1,293,29,294,-1,293,294,295,-1,293,281,29,-1,296,297,298,-1,296,298,6,-1,299,248,267,-1,300,287,235,-1,301,302,285,-1,303,271,90,-1,300,304,305,-1,300,235,304,-1,301,285,284,-1,306,287,300,-1,307,195,194,-1,308,306,300,-1,307,267,195,-1,309,310,245,-1,311,312,292,-1,309,245,242,-1,313,156,159,-1,314,226,315,-1,314,223,226,-1,316,306,308,-1,313,159,147,-1,317,318,302,-1,319,300,305,-1,320,297,296,-1,319,321,322,-1,319,305,321,-1,317,302,301,-1,323,293,295,-1,324,288,265,-1,325,326,210,-1,327,32,174,-1,328,323,295,-1,329,330,318,-1,327,174,15,-1,327,231,32,-1,331,315,283,-1,329,318,317,-1,332,333,334,-1,331,314,315,-1,335,328,295,-1,336,256,12,-1,335,295,337,-1,338,90,89,-1,338,303,90,-1,339,340,341,-1,342,241,311,-1,343,232,231,-1,342,160,241,-1,342,344,160,-1,345,268,201,-1,346,336,12,-1,345,201,325,-1,347,92,251,-1,347,251,164,-1,348,307,194,-1,348,207,230,-1,348,194,207,-1,349,256,336,-1,350,325,210,-1,350,210,209,-1,351,330,329,-1,352,253,222,-1,353,346,12,-1,354,348,230,-1,354,340,339,-1,355,277,272,-1,355,356,277,-1,354,339,342,-1,355,357,356,-1,354,230,340,-1,358,330,351,-1,359,360,361,-1,362,307,348,-1,359,363,360,-1,364,254,257,-1,365,366,367,-1,368,353,12,-1,369,299,267,-1,370,147,146,-1,370,313,147,-1,371,372,373,-1,371,374,372,-1,375,92,347,-1,371,376,374,-1,375,330,358,-1,371,212,376,-1,375,358,377,-1,371,121,212,-1,378,379,380,-1,381,115,247,-1,381,382,115,-1,381,247,383,-1,384,364,257,-1,385,71,254,-1,386,387,388,-1,385,389,71,-1,390,332,334,-1,391,205,206,-1,392,282,382,-1,392,283,282,-1,392,331,283,-1,391,60,54,-1,391,206,60,-1,393,272,261,-1,394,395,387,-1,394,387,386,-1,396,320,296,-1,397,392,382,-1,397,382,381,-1,398,371,373,-1,398,399,363,-1,398,373,399,-1,400,401,402,-1,400,378,380,-1,403,12,404,-1,403,368,12,-1,400,380,405,-1,400,405,401,-1,406,398,363,-1,406,363,359,-1,407,156,313,-1,408,403,404,-1,409,379,378,-1,409,410,379,-1,411,412,413,-1,411,414,412,-1,411,415,414,-1,411,416,415,-1,411,417,416,-1,418,299,369,-1,419,368,403,-1,418,420,299,-1,421,332,422,-1,423,411,413,-1,423,424,425,-1,423,426,424,-1,423,413,426,-1,427,428,429,-1,430,431,432,-1,433,422,332,-1,434,375,377,-1,433,332,435,-1,436,54,290,-1,437,438,346,-1,436,391,54,-1,439,375,434,-1,437,346,353,-1,440,408,404,-1,441,333,332,-1,441,332,421,-1,442,443,40,-1,444,438,437,-1,445,446,447,-1,442,40,119,-1,448,388,449,-1,448,386,388,-1,450,451,452,-1,453,375,439,-1,454,455,334,-1,456,440,404,-1,454,457,455,-1,458,445,447,-1,459,390,460,-1,461,354,342,-1,461,462,354,-1,463,433,435,-1,464,397,381,-1,465,458,447,-1,466,444,437,-1,467,465,447,-1,468,463,435,-1,468,469,463,-1,470,471,406,-1,472,92,375,-1,472,375,453,-1,473,402,474,-1,473,474,475,-1,476,477,471,-1,476,471,470,-1,478,381,431,-1,473,400,402,-1,478,464,381,-1,479,425,480,-1,481,406,359,-1,482,410,409,-1,481,470,406,-1,481,359,483,-1,484,485,486,-1,484,480,485,-1,487,448,449,-1,488,486,485,-1,489,490,310,-1,489,310,309,-1,491,334,333,-1,492,480,484,-1,491,454,334,-1,493,488,485,-1,494,205,391,-1,495,496,477,-1,493,485,337,-1,495,477,476,-1,497,469,468,-1,498,480,492,-1,499,449,500,-1,501,480,498,-1,501,479,480,-1,502,481,483,-1,503,493,337,-1,504,443,442,-1,505,397,464,-1,506,503,337,-1,507,508,509,-1,510,497,468,-1,511,479,501,-1,511,512,479,-1,513,506,337,-1,513,337,219,-1,514,515,516,-1,517,512,511,-1,518,102,169,-1,519,478,431,-1,518,520,102,-1,521,512,517,-1,522,510,468,-1,521,523,512,-1,524,525,496,-1,524,526,525,-1,527,521,517,-1,524,496,495,-1,528,521,527,-1,529,521,528,-1,529,92,472,-1,530,436,290,-1,531,459,460,-1,531,460,532,-1,533,483,534,-1,533,502,483,-1,535,431,430,-1,535,519,431,-1,536,516,526,-1,537,350,209,-1,536,514,516,-1,538,491,333,-1,538,333,539,-1,540,541,448,-1,542,260,543,-1,542,544,260,-1,540,448,487,-1,545,533,534,-1,546,547,548,-1,545,534,549,-1,550,551,552,-1,546,553,547,-1,546,554,553,-1,546,555,554,-1,556,392,557,-1,546,558,555,-1,550,475,551,-1,550,552,559,-1,550,473,475,-1,546,560,561,-1,546,548,560,-1,562,546,561,-1,563,520,518,-1,564,529,528,-1,565,394,566,-1,567,529,564,-1,568,513,219,-1,569,522,468,-1,568,219,225,-1,569,570,522,-1,569,571,570,-1,572,571,569,-1,573,546,562,-1,574,504,442,-1,575,529,567,-1,576,577,573,-1,578,543,253,-1,578,253,352,-1,579,456,580,-1,581,531,532,-1,582,573,562,-1,583,536,526,-1,582,576,573,-1,581,532,584,-1,583,526,524,-1,583,585,536,-1,586,582,562,-1,587,538,539,-1,588,529,575,-1,589,395,394,-1,589,394,565,-1,590,586,562,-1,591,590,562,-1,591,562,592,-1,593,594,595,-1,596,597,598,-1,593,568,225,-1,593,225,599,-1,600,601,408,-1,602,357,355,-1,593,599,594,-1,602,603,357,-1,602,604,603,-1,593,592,568,-1,600,408,440,-1,605,343,606,-1,607,345,325,-1,608,290,289,-1,609,183,610,-1,608,530,290,-1,611,572,569,-1,612,610,183,-1,613,585,583,-1,614,183,609,-1,615,364,384,-1,614,153,183,-1,614,616,154,-1,613,617,585,-1,613,618,617,-1,619,611,569,-1,614,154,153,-1,620,258,288,-1,621,601,600,-1,622,623,624,-1,622,625,623,-1,620,183,258,-1,626,252,187,-1,620,612,183,-1,626,187,268,-1,626,384,252,-1,627,592,593,-1,628,587,539,-1,629,630,625,-1,631,592,627,-1,629,632,630,-1,629,633,632,-1,629,634,633,-1,635,595,636,-1,629,637,634,-1,635,636,616,-1,629,625,622,-1,635,593,595,-1,635,616,614,-1,638,288,324,-1,639,338,89,-1,639,89,389,-1,638,620,288,-1,640,619,569,-1,641,430,444,-1,642,592,631,-1,643,592,642,-1,644,584,645,-1,641,444,466,-1,644,581,584,-1,646,592,643,-1,646,591,592,-1,641,535,430,-1,647,618,613,-1,648,539,490,-1,647,649,618,-1,648,628,539,-1,650,638,324,-1,651,487,449,-1,651,449,499,-1,652,621,600,-1,650,324,366,-1,653,563,518,-1,650,654,638,-1,655,654,650,-1,656,657,637,-1,656,658,657,-1,659,646,643,-1,656,637,629,-1,660,640,569,-1,660,661,640,-1,660,662,661,-1,663,664,665,-1,666,644,645,-1,666,645,667,-1,668,629,622,-1,669,648,490,-1,670,589,565,-1,671,650,366,-1,672,545,549,-1,673,371,674,-1,672,663,665,-1,672,665,545,-1,673,333,441,-1,673,675,333,-1,673,676,677,-1,673,677,675,-1,673,674,676,-1,673,441,678,-1,673,678,679,-1,680,466,597,-1,680,641,466,-1,681,664,663,-1,682,683,671,-1,681,684,664,-1,685,639,389,-1,686,672,549,-1,686,549,556,-1,687,370,146,-1,687,186,249,-1,687,146,186,-1,687,249,508,-1,688,689,690,-1,688,635,689,-1,688,593,635,-1,691,684,681,-1,692,550,559,-1,693,662,660,-1,694,646,659,-1,694,659,695,-1,694,696,697,-1,698,699,649,-1,694,695,696,-1,694,700,646,-1,701,693,660,-1,702,671,366,-1,702,366,365,-1,698,649,647,-1,702,682,671,-1,702,703,682,-1,704,535,641,-1,705,694,697,-1,706,707,708,-1,709,701,660,-1,710,694,705,-1,711,338,639,-1,712,686,556,-1,713,714,478,-1,713,478,519,-1,715,365,420,-1,715,702,365,-1,715,420,418,-1,716,680,597,-1,717,544,542,-1,718,703,702,-1,719,709,660,-1,719,720,709,-1,721,700,694,-1,722,723,658,-1,722,724,723,-1,725,726,727,-1,722,658,656,-1,728,700,721,-1,729,508,507,-1,730,674,731,-1,729,687,508,-1,732,694,710,-1,730,676,674,-1,733,699,698,-1,734,694,732,-1,735,736,737,-1,738,739,271,-1,738,271,303,-1,740,714,713,-1,741,720,719,-1,742,556,707,-1,743,685,389,-1,742,712,556,-1,744,700,728,-1,745,680,716,-1,746,694,734,-1,747,597,596,-1,748,325,350,-1,749,694,746,-1,747,716,597,-1,748,607,325,-1,750,602,355,-1,751,741,719,-1,752,355,753,-1,752,750,355,-1,754,722,656,-1,755,656,756,-1,755,754,656,-1,757,751,719,-1,758,606,327,-1,758,327,15,-1,758,605,606,-1,759,684,691,-1,760,384,626,-1,761,759,691,-1,762,757,719,-1,761,691,763,-1,764,762,719,-1,765,740,713,-1,766,410,482,-1,767,754,755,-1,768,769,345,-1,770,767,755,-1,771,772,718,-1,771,773,772,-1,768,345,607,-1,774,739,738,-1,775,756,759,-1,776,762,764,-1,777,615,384,-1,777,384,760,-1,778,715,418,-1,779,364,615,-1,778,418,451,-1,779,780,364,-1,781,755,756,-1,782,778,451,-1,782,451,450,-1,783,737,370,-1,783,370,687,-1,784,761,763,-1,784,785,786,-1,784,787,785,-1,788,776,764,-1,784,763,787,-1,789,766,482,-1,789,482,790,-1,791,389,385,-1,792,781,756,-1,793,773,771,-1,791,743,389,-1,794,750,752,-1,792,756,775,-1,793,795,773,-1,793,796,795,-1,797,794,752,-1,798,799,715,-1,798,715,778,-1,800,669,490,-1,800,801,669,-1,802,803,804,-1,805,788,764,-1,806,784,786,-1,806,807,808,-1,806,809,807,-1,806,786,809,-1,810,805,764,-1,811,812,813,-1,814,796,793,-1,815,753,766,-1,814,816,796,-1,814,817,816,-1,818,810,764,-1,818,764,819,-1,820,806,808,-1,821,818,819,-1,822,823,824,-1,825,821,819,-1,826,781,792,-1,827,769,768,-1,828,825,819,-1,829,830,831,-1,829,832,830,-1,833,828,819,-1,834,688,835,-1,836,820,837,-1,836,806,820,-1,838,833,819,-1,839,832,829,-1,840,841,842,-1,843,844,688,-1,845,838,819,-1,843,688,834,-1,846,670,565,-1,846,565,847,-1,848,320,396,-1,848,608,289,-1,848,289,320,-1,849,850,851,-1,849,851,844,-1,849,844,843,-1,852,840,842,-1,853,845,819,-1,854,731,699,-1,855,835,688,-1,856,853,819,-1,854,730,731,-1,857,774,738,-1,858,859,860,-1,858,850,849,-1,858,860,850,-1,861,819,862,-1,861,856,819,-1,863,781,826,-1,863,864,781,-1,865,861,862,-1,866,865,862,-1,867,782,450,-1,867,450,461,-1,868,688,690,-1,869,866,862,-1,868,855,688,-1,870,752,753,-1,868,690,871,-1,872,596,621,-1,873,874,875,-1,873,859,858,-1,873,875,859,-1,876,877,878,-1,876,879,877,-1,876,790,879,-1,872,621,652,-1,876,789,790,-1,872,747,596,-1,880,867,461,-1,881,869,862,-1,882,742,707,-1,882,883,742,-1,882,884,883,-1,885,800,490,-1,886,854,699,-1,887,888,889,-1,885,490,489,-1,887,874,873,-1,886,699,733,-1,885,489,890,-1,891,839,829,-1,887,889,874,-1,892,673,679,-1,892,679,893,-1,894,868,871,-1,895,883,884,-1,895,896,883,-1,897,881,862,-1,898,888,887,-1,898,899,888,-1,900,892,893,-1,901,836,837,-1,900,893,902,-1,903,707,706,-1,903,882,707,-1,904,897,862,-1,905,782,867,-1,906,899,898,-1,907,836,901,-1,906,908,899,-1,909,673,892,-1,910,911,896,-1,912,894,871,-1,913,904,862,-1,910,896,895,-1,912,914,915,-1,912,871,914,-1,916,864,863,-1,917,824,798,-1,916,918,864,-1,919,730,854,-1,920,880,461,-1,921,922,923,-1,924,872,652,-1,925,753,815,-1,925,870,753,-1,924,652,812,-1,926,913,862,-1,927,911,910,-1,928,396,726,-1,928,848,396,-1,929,880,920,-1,930,920,461,-1,931,900,902,-1,931,902,932,-1,933,886,733,-1,934,822,824,-1,935,706,740,-1,935,903,706,-1,936,937,938,-1,936,939,940,-1,936,941,942,-1,943,747,872,-1,936,944,945,-1,936,945,908,-1,936,942,944,-1,946,947,948,-1,936,940,949,-1,936,938,939,-1,936,906,937,-1,936,908,906,-1,950,946,948,-1,951,936,949,-1,952,953,954,-1,955,956,717,-1,957,936,951,-1,955,717,542,-1,958,745,716,-1,959,960,670,-1,959,670,846,-1,961,962,936,-1,963,964,918,-1,961,936,957,-1,963,918,916,-1,965,924,812,-1,966,673,909,-1,967,968,969,-1,967,733,968,-1,967,933,733,-1,970,607,748,-1,970,748,971,-1,972,840,852,-1,973,758,15,-1,974,910,946,-1,974,975,927,-1,974,927,910,-1,976,977,978,-1,979,930,461,-1,980,740,765,-1,980,935,740,-1,981,946,950,-1,982,983,984,-1,985,976,978,-1,982,986,983,-1,987,988,962,-1,987,962,961,-1,989,608,848,-1,990,982,984,-1,991,985,978,-1,992,993,994,-1,990,984,995,-1,996,991,978,-1,997,735,998,-1,999,924,965,-1,1000,812,811,-1,1000,965,812,-1,1001,979,461,-1,1002,931,932,-1,1002,932,1003,-1,1004,537,956,-1,1004,971,537,-1,1005,1006,1007,-1,1008,1009,988,-1,1008,988,987,-1,1010,885,890,-1,677,676,1011,-1,1010,890,1012,-1,1013,930,979,-1,1014,1015,1016,-1,1017,1018,1019,-1,1014,1020,1015,-1,1014,878,1020,-1,1014,876,878,-1,1021,929,920,-1,1022,1001,461,-1,1023,974,946,-1,1024,1009,1008,-1,1025,436,530,-1,1026,1001,1022,-1,1025,1027,436,-1,1028,1022,461,-1,1029,745,958,-1,1029,1030,745,-1,1031,1009,1024,-1,1032,1033,929,-1,1034,928,726,-1,1032,929,1021,-1,1035,827,768,-1,1036,981,1037,-1,1038,673,966,-1,1039,729,507,-1,1039,507,563,-1,1040,1014,1016,-1,1041,1009,1031,-1,1042,959,846,-1,1043,1044,817,-1,1043,915,1044,-1,1043,912,915,-1,1045,992,994,-1,1046,870,925,-1,1047,1009,1041,-1,1048,1049,980,-1,1048,765,953,-1,1048,980,765,-1,1050,946,981,-1,1050,981,1036,-1,1051,1049,1048,-1,1052,1053,1054,-1,1055,1009,1047,-1,1056,1057,1058,-1,1059,1027,1025,-1,1060,1003,1061,-1,1060,1002,1003,-1,1062,1028,461,-1,1063,1034,726,-1,1064,1065,1066,-1,1063,726,725,-1,1067,1068,1069,-1,1070,1071,1072,-1,1073,1023,946,-1,1074,1062,461,-1,1075,978,1053,-1,1075,996,978,-1,1073,1076,1023,-1,1077,563,653,-1,1078,1067,1069,-1,1079,1009,1055,-1,1077,1039,563,-1,1080,1081,1082,-1,1083,1028,1062,-1,1084,1085,1086,-1,1084,1087,1085,-1,1088,791,385,-1,1088,385,780,-1,1089,1090,1091,-1,1092,673,1038,-1,1093,1026,1022,-1,1094,1074,461,-1,1095,1040,1096,-1,1097,953,952,-1,1095,1014,1040,-1,1097,1048,953,-1,1098,729,1039,-1,1099,972,1080,-1,1100,1094,461,-1,1101,1071,1070,-1,1101,1102,1071,-1,1103,1059,1025,-1,1104,1045,840,-1,1104,972,1099,-1,1104,840,972,-1,1105,1050,1106,-1,1107,955,1108,-1,1109,1110,1026,-1,1111,1060,1061,-1,1112,1087,1084,-1,1109,1026,1093,-1,1113,1114,1043,-1,1115,1051,1048,-1,1116,1010,1012,-1,1117,1073,946,-1,1118,1119,1120,-1,1118,1114,1113,-1,1121,998,783,-1,1118,1120,1114,-1,1122,1088,780,-1,1123,1113,1043,-1,1124,653,1006,-1,1124,1077,653,-1,1123,1043,817,-1,1125,970,971,-1,1126,969,964,-1,1126,967,969,-1,1127,1119,1118,-1,1128,973,15,-1,1128,1129,1130,-1,1128,1130,973,-1,1131,1117,946,-1,1131,946,1050,-1,1131,1050,1105,-1,1132,1133,777,-1,1134,1135,1119,-1,1134,1119,1127,-1,1136,1111,1061,-1,1137,1117,1131,-1,1137,1138,1117,-1,1139,817,814,-1,1139,1123,817,-1,1140,626,1141,-1,1142,1143,1144,-1,1140,760,626,-1,1145,1053,1052,-1,1146,1135,1134,-1,1147,811,839,-1,1147,1000,811,-1,1145,1075,1053,-1,1148,1135,1146,-1,1148,1149,1150,-1,1147,839,891,-1,1148,1150,1135,-1,1151,1142,1144,-1,1152,814,822,-1,1152,822,934,-1,1152,934,1018,-1,1152,1139,814,-1,1153,1154,1155,-1,1153,1156,1154,-1,1157,1125,971,-1,1158,1126,964,-1,1159,1100,461,-1,1157,971,1004,-1,1158,1156,1153,-1,1158,1160,1156,-1,1158,1161,1160,-1,1162,673,1092,-1,1158,963,1161,-1,1158,964,963,-1,1163,870,1046,-1,1164,1149,1148,-1,1165,1112,1084,-1,1164,1166,1149,-1,1163,1167,870,-1,1168,1166,1164,-1,1169,1159,461,-1,1170,791,1088,-1,1171,1100,1159,-1,1172,967,1126,-1,1173,1166,1168,-1,1174,1175,1176,-1,1177,1147,891,-1,1177,891,1065,-1,1178,1179,1074,-1,1178,1074,1094,-1,1180,1181,1182,-1,1183,1184,1185,-1,1186,1124,1006,-1,1187,1166,1173,-1,1186,1006,1005,-1,1188,827,1035,-1,1189,1169,461,-1,1190,992,1045,-1,1188,1141,827,-1,1191,1078,1166,-1,1192,1193,685,-1,1191,1166,1187,-1,1192,685,743,-1,1194,1080,1082,-1,1194,1099,1080,-1,1195,1179,1178,-1,1196,886,933,-1,1196,1197,886,-1,1198,780,779,-1,1199,1189,461,-1,1198,1122,780,-1,1200,1201,692,-1,1202,1104,1099,-1,1203,1191,1187,-1,1204,1000,1147,-1,1205,1206,959,-1,1207,1111,1136,-1,1205,959,1042,-1,1208,1191,1203,-1,1209,1210,1211,-1,1212,1200,692,-1,1212,692,559,-1,1213,1195,1178,-1,1214,1197,1196,-1,1212,559,1215,-1,1216,1045,1104,-1,1217,999,965,-1,1218,1177,1065,-1,1219,1145,1052,-1,1219,1052,1220,-1,1221,997,998,-1,1222,1223,1224,-1,1225,1193,1192,-1,1226,1227,1201,-1,1226,1201,1200,-1,1228,1097,952,-1,1228,952,1030,-1,1229,1095,1096,-1,1228,1030,1029,-1,1230,1222,1224,-1,1231,1177,1218,-1,1232,1116,1012,-1,1232,1012,1233,-1,1234,1218,1065,-1,1235,1191,1208,-1,1236,673,1162,-1,1234,1065,1064,-1,1235,1237,1191,-1,1238,1214,1196,-1,1239,1198,779,-1,1240,1241,1242,-1,1243,1237,1235,-1,1243,1244,1237,-1,1245,1228,1029,-1,1245,1029,1210,-1,1246,1045,1216,-1,1246,1190,1045,-1,1247,1244,1243,-1,1247,1248,1244,-1,1249,1250,999,-1,1249,999,1217,-1,1251,1252,1230,-1,1253,1248,1247,-1,1254,1215,1255,-1,1254,1212,1215,-1,1256,1257,1258,-1,1259,1251,1230,-1,1256,1151,1257,-1,1254,1255,86,-1,1260,1199,461,-1,1256,1142,1151,-1,1261,1248,1253,-1,1262,1097,1228,-1,1263,1095,1229,-1,1264,992,1190,-1,1265,1248,1261,-1,1266,1136,1267,-1,1266,1207,1136,-1,1268,1260,461,-1,1269,1270,1227,-1,1268,311,292,-1,1269,1227,1226,-1,1268,461,342,-1,1268,342,311,-1,1271,1272,1107,-1,1271,1128,15,-1,1273,1063,725,-1,1273,725,774,-1,1274,1202,1275,-1,1276,1199,1260,-1,1273,774,857,-1,1277,1101,1070,-1,1278,1279,1280,-1,1281,1282,1167,-1,1277,1283,1101,-1,1281,1167,1163,-1,1284,1169,1189,-1,1285,1225,1192,-1,1284,1286,1169,-1,1287,1256,1258,-1,1287,1288,1289,-1,1287,1258,1288,-1,1290,1245,1210,-1,1291,1219,1220,-1,1292,1125,1157,-1,1293,1017,1033,-1,675,677,1184,-1,1293,1089,1110,-1,1293,1195,1213,-1,675,1184,1183,-1,1293,1032,1090,-1,1293,1174,1195,-1,1293,1109,1175,-1,1294,1295,1296,-1,1293,1018,1017,-1,1293,1110,1109,-1,1293,1033,1032,-1,1293,1090,1089,-1,1293,1152,1018,-1,1293,1175,1174,-1,1297,1283,1277,-1,1297,1298,1283,-1,1299,1298,1297,-1,1300,1286,1284,-1,1301,1158,1153,-1,1302,1293,1213,-1,1303,956,955,-1,1303,1004,956,-1,1304,1305,1306,-1,1307,1270,1269,-1,1308,1277,1070,-1,1309,1310,1311,-1,1309,1312,1310,-1,1313,1314,1315,-1,1316,1188,1317,-1,1318,1213,1279,-1,1318,1302,1213,-1,1319,1210,1209,-1,1319,1290,1210,-1,1320,1300,1284,-1,1321,857,1181,-1,1321,1273,857,-1,1322,1312,1309,-1,1323,1324,1325,-1,1323,1318,1279,-1,1323,1326,1327,-1,1323,1328,1324,-1,1323,1329,1328,-1,1323,1325,1330,-1,1323,1259,1230,-1,1323,1278,1300,-1,1323,1330,1259,-1,1323,1279,1278,-1,1323,1327,1329,-1,1323,1300,1320,-1,1331,1308,1332,-1,1333,1323,1320,-1,1334,1291,1220,-1,1331,1332,1205,-1,1335,1326,1323,-1,1336,1335,1323,-1,401,1301,1256,-1,1337,1336,1323,-1,1338,1337,1323,-1,1339,1234,1064,-1,1339,1064,1112,-1,1340,1333,1341,-1,1342,1266,1267,-1,1339,1112,1165,-1,1342,1267,1343,-1,1344,1345,1268,-1,1346,1322,1309,-1,1347,1323,1333,-1,1348,1063,1273,-1,1347,1338,1323,-1,1347,1265,1338,-1,1347,1333,1340,-1,1347,1079,1248,-1,1347,1340,1344,-1,1349,1264,1190,-1,1347,1248,1265,-1,1350,86,85,-1,1347,92,1009,-1,1009,92,744,-1,744,92,700,-1,700,92,588,-1,588,92,529,-1,1350,1254,86,-1,1347,1009,1079,-1,15,1347,1268,-1,1268,1347,1344,-1,15,1268,292,-1,1350,85,144,-1,673,12,11,-1,673,11,107,-1,673,107,121,-1,673,121,371,-1,753,410,766,-1,220,1351,1352,-1,1353,1216,1274,-1,1354,295,1355,-1,1355,295,1356,-1,1353,1246,1216,-1,1356,295,1357,-1,1358,1232,1233,-1,822,715,799,-1,822,799,823,-1,1359,771,702,-1,1358,1233,1360,-1,1361,1297,1277,-1,702,771,718,-1,917,934,824,-1,778,917,798,-1,756,684,759,-1,1142,1362,1143,-1,974,1153,975,-1,975,1153,1363,-1,1364,1277,1308,-1,1363,1153,1155,-1,1365,1366,1367,-1,1287,401,1256,-1,1048,1287,1115,-1,1115,1287,1289,-1,1368,1369,1370,-1,1215,1368,1371,-1,1372,1255,1373,-1,1374,1372,1375,-1,1376,1365,1367,-1,736,370,737,-1,997,736,735,-1,1121,1221,998,-1,1377,1165,1305,-1,687,1121,783,-1,1378,1379,1380,-1,1377,1339,1165,-1,314,1381,223,-1,549,331,556,-1,556,331,392,-1,483,1382,534,-1,191,359,229,-1,229,359,1383,-1,1383,359,322,-1,1384,928,1034,-1,322,359,319,-1,319,359,361,-1,1384,1385,928,-1,30,1386,24,-1,1387,192,143,-1,1388,1321,1181,-1,16,120,108,-1,1389,1390,1391,-1,16,108,10,-1,19,1392,17,-1,53,315,226,-1,53,226,38,-1,99,282,216,-1,1393,1299,1297,-1,99,216,166,-1,99,166,149,-1,99,149,100,-1,544,180,260,-1,180,1394,1395,-1,180,1395,125,-1,1396,203,202,-1,1397,404,15,-1,404,1398,456,-1,456,1398,580,-1,580,1398,830,-1,1399,1234,1339,-1,830,1398,831,-1,831,1398,803,-1,803,1398,804,-1,804,1398,1085,-1,1085,1398,1086,-1,1086,1398,1057,-1,1057,1398,1058,-1,1058,1398,1310,-1,1400,1401,1402,-1,1310,1398,1311,-1,1311,1398,1295,-1,1403,1005,1059,-1,1295,1398,1296,-1,1296,1398,1404,-1,1404,1398,1405,-1,1403,1186,1005,-1,1405,1398,1406,-1,1407,1158,1301,-1,1406,1398,1408,-1,1070,1332,1308,-1,1407,1409,1158,-1,1042,1331,1205,-1,1082,1410,1275,-1,1082,1275,1194,-1,1411,127,126,-1,1411,126,1412,-1,1413,1231,1218,-1,542,1108,955,-1,1317,970,1414,-1,760,1132,777,-1,1241,1052,1415,-1,1415,1052,1054,-1,1416,1417,1418,-1,1419,1377,1305,-1,459,332,390,-1,801,666,667,-1,801,667,669,-1,1242,1358,1240,-1,1240,1358,1420,-1,1415,1242,1241,-1,862,978,926,-1,926,978,1421,-1,1421,978,1422,-1,1422,978,1423,-1,1424,1385,1384,-1,1423,978,977,-1,485,335,337,-1,479,423,425,-1,447,512,467,-1,467,512,1425,-1,1425,512,523,-1,1426,1209,1250,-1,1426,1250,1249,-1,721,962,728,-1,1427,1282,1281,-1,728,962,988,-1,936,694,941,-1,941,694,1428,-1,1427,1360,1282,-1,1426,1319,1209,-1,1428,694,749,-1,942,749,944,-1,945,734,908,-1,1429,1342,1343,-1,1429,1343,1430,-1,1431,1377,1419,-1,746,944,749,-1,899,710,888,-1,1432,1419,1305,-1,1432,1305,1304,-1,1433,1272,1271,-1,732,908,734,-1,889,697,874,-1,1433,1271,15,-1,705,888,710,-1,875,695,859,-1,696,874,697,-1,860,643,850,-1,1434,1181,1180,-1,1435,1436,1246,-1,1434,1388,1181,-1,659,859,695,-1,851,631,844,-1,642,850,643,-1,627,844,631,-1,1191,1024,1078,-1,1411,1435,1246,-1,1411,1246,1353,-1,1410,1353,1274,-1,1031,1237,1041,-1,1437,1292,1157,-1,1041,1237,1244,-1,1438,987,1439,-1,1410,1274,1275,-1,1440,1403,1059,-1,1008,1078,1024,-1,1069,957,1441,-1,961,1439,987,-1,951,1441,957,-1,1440,1059,1103,-1,1149,940,1150,-1,1135,1442,995,-1,1135,995,1119,-1,1443,1166,1441,-1,1441,1166,1069,-1,1069,1166,1078,-1,1135,938,1442,-1,939,1150,940,-1,1354,1355,1307,-1,937,1442,938,-1,1444,1349,1436,-1,1354,1269,1365,-1,887,982,990,-1,1354,1307,1269,-1,887,990,898,-1,1120,834,1114,-1,1114,834,835,-1,858,1119,995,-1,858,995,873,-1,1337,1261,1336,-1,1335,1247,1326,-1,1445,1239,779,-1,1369,1249,1401,-1,1445,779,1133,-1,1369,1426,1249,-1,1253,1336,1261,-1,1327,1235,1329,-1,1446,1231,1413,-1,1447,970,1125,-1,1446,1448,1231,-1,1243,1326,1247,-1,1447,1414,970,-1,1324,1203,1325,-1,1208,1329,1235,-1,1330,1173,1259,-1,1187,1325,1203,-1,1251,1164,1252,-1,1168,1259,1173,-1,1449,1146,1222,-1,1450,1319,1426,-1,1451,144,190,-1,1148,1252,1164,-1,1134,1222,1146,-1,1451,427,504,-1,1451,1350,144,-1,1451,190,428,-1,474,402,1452,-1,1318,1113,1302,-1,1302,1113,1123,-1,1118,1323,1230,-1,1118,1230,1127,-1,1451,428,427,-1,1068,1438,1069,-1,1069,1438,1439,-1,1453,1365,1376,-1,1069,1439,1454,-1,1455,990,1442,-1,1442,990,995,-1,1252,1449,1230,-1,1230,1449,1222,-1,1456,1245,1290,-1,1456,1457,1245,-1,1458,1437,1157,-1,1459,1183,1214,-1,1460,1314,1313,-1,1459,1214,1238,-1,1459,1238,1390,-1,1459,675,1183,-1,1461,1317,1414,-1,1462,1406,1408,-1,1461,1316,1317,-1,1463,1464,1465,-1,1466,1186,1403,-1,1467,1468,1404,-1,1467,1404,1405,-1,1417,1420,1358,-1,475,1457,1456,-1,1469,1424,1384,-1,1470,1429,1430,-1,1471,1472,1473,-1,1474,1468,1467,-1,1475,1476,1077,-1,1475,1077,1124,-1,1477,1445,1133,-1,1478,1436,1435,-1,1479,1103,1379,-1,1479,1440,1103,-1,1480,1331,1481,-1,1480,1308,1331,-1,1482,1444,1436,-1,1482,1436,1478,-1,551,475,1456,-1,1483,1390,1389,-1,1483,1459,1390,-1,1484,1476,1475,-1,1485,1239,1445,-1,1486,1432,1304,-1,1486,1304,1322,-1,1486,1322,1346,-1,1487,1474,1467,-1,1488,1489,1490,-1,1488,1490,1491,-1,1492,1379,1378,-1,1492,1479,1379,-1,1493,1486,1346,-1,1494,1495,1496,-1,1493,1346,1464,-1,1497,1416,1498,-1,1497,1220,1416,-1,1499,1470,1430,-1,1499,1500,1470,-1,1501,1498,1416,-1,1374,1369,1401,-1,1374,1401,1400,-1,1502,1432,1486,-1,1503,1220,1497,-1,1503,1504,1334,-1,1503,1334,1220,-1,1505,1506,1507,-1,1508,1354,1365,-1,1509,1482,1478,-1,1510,1511,1122,-1,1512,1448,1446,-1,1512,1374,1400,-1,1510,1122,1198,-1,1512,1400,1448,-1,1371,1368,1370,-1,1513,1477,1133,-1,1513,1133,1132,-1,1418,1501,1416,-1,1514,1431,1419,-1,1515,1504,1503,-1,1515,1516,1504,-1,1517,1493,1464,-1,1518,1435,1411,-1,1518,1411,1412,-1,15,404,12,-1,1396,1480,1481,-1,1396,1519,1480,-1,1520,1433,15,-1,1521,1518,1412,-1,1522,1484,1475,-1,1,1511,1510,-1,1523,1481,1524,-1,1523,1482,1509,-1,1525,1516,1515,-1,1526,1488,1491,-1,1527,1451,504,-1,1527,922,921,-1,1527,921,997,-1,1527,504,574,-1,1527,574,922,-1,1528,1526,1491,-1,1529,1418,1417,-1,1530,1489,1488,-1,1531,1530,1488,-1,1532,1292,1437,-1,1533,1437,1458,-1,1398,1534,1535,-1,1536,1132,1314,-1,1398,1535,1537,-1,1398,1537,1408,-1,1536,1513,1132,-1,1538,1517,1464,-1,1538,1464,1463,-1,1375,1369,1374,-1,1375,1370,1369,-1,1539,1534,1398,-1,1540,1453,1541,-1,1542,1431,1514,-1,1542,1543,1431,-1,1544,1529,1417,-1,1545,1539,1398,-1,1546,1292,1532,-1,559,552,1547,-1,1548,1434,1180,-1,1549,1397,15,-1,1548,1180,1225,-1,1550,1534,1539,-1,1548,1225,1285,-1,2,1,1510,-1,1551,1526,1528,-1,1552,1509,1478,-1,76,1516,1525,-1,76,1553,1516,-1,1552,1478,1554,-1,76,1555,1553,-1,47,1556,1557,-1,1558,1544,1417,-1,1559,1537,1535,-1,1559,1560,1537,-1,1561,78,1500,-1,1562,1545,1398,-1,1561,1500,1499,-1,1215,1371,1373,-1,1563,1564,1549,-1,94,1285,1495,-1,94,1548,1285,-1,75,1555,76,-1,79,78,1561,-1,1565,1365,1453,-1,1565,1453,1540,-1,1566,1512,1446,-1,1566,1446,1506,-1,1567,1221,1472,-1,1567,997,1221,-1,1567,1472,1471,-1,1567,1527,997,-1,48,1560,1559,-1,1568,1434,1548,-1,1569,1570,1571,-1,1572,1573,1574,-1,1572,1574,1520,-1,1575,1562,1398,-1,1572,1520,15,-1,113,1566,1506,-1,113,1506,1505,-1,92,1576,77,-1,92,1577,1576,-1,1578,1474,1487,-1,92,1579,1577,-1,92,1580,1579,-1,92,1581,1580,-1,92,1582,1581,-1,92,1236,1582,-1,1578,1538,1463,-1,92,673,1236,-1,1578,1463,1474,-1,1583,1584,1321,-1,1583,1321,1388,-1,1585,1586,1483,-1,1585,1483,1389,-1,1585,1389,1407,-1,49,48,1559,-1,95,94,1495,-1,1394,1518,1521,-1,1587,1588,1586,-1,1589,1508,1365,-1,1587,1586,1585,-1,1589,1590,1508,-1,1591,1378,1424,-1,1592,1523,1509,-1,1592,1481,1523,-1,1591,1492,1378,-1,1593,1512,1566,-1,1594,1585,1407,-1,1595,1596,1546,-1,1595,1597,1596,-1,1598,1563,1549,-1,1598,1549,15,-1,135,134,1599,-1,135,1599,1600,-1,162,1578,1487,-1,162,1487,1556,-1,59,1461,1597,-1,59,1600,1461,-1,1601,1551,1528,-1,1601,1528,1563,-1,1395,1394,1521,-1,1602,1584,1583,-1,1395,1521,1603,-1,202,1519,1396,-1,1372,1373,1375,-1,34,1531,1551,-1,1604,1546,1532,-1,34,1530,1531,-1,64,1495,1494,-1,64,95,1495,-1,70,1591,1424,-1,114,113,1505,-1,70,1569,1602,-1,70,1469,1570,-1,70,1424,1469,-1,70,1570,1569,-1,1605,1536,1314,-1,1606,1588,1587,-1,1606,1607,1588,-1,1605,1314,1460,-1,1608,1565,1609,-1,1610,1538,1578,-1,1611,1492,1591,-1,1612,1594,1407,-1,1613,1602,1583,-1,1613,70,1602,-1,599,1471,1484,-1,599,1484,1522,-1,599,1522,594,-1,599,1567,1471,-1,1614,1589,1365,-1,43,42,1615,-1,595,594,1616,-1,1617,1618,1440,-1,1617,1440,1479,-1,1619,1530,34,-1,199,1605,1460,-1,1620,1365,1565,-1,1620,1614,1365,-1,1620,1565,1608,-1,66,114,1505,-1,66,1505,1543,-1,66,1543,1542,-1,1621,1493,1517,-1,68,70,1613,-1,1621,1622,1493,-1,636,1618,1617,-1,1623,1624,1614,-1,5,4,1625,-1,1623,1614,1620,-1,5,1625,1626,-1,163,162,1556,-1,1627,1536,1605,-1,158,1622,1621,-1,1628,1629,131,-1,1628,1630,1629,-1,123,26,1631,-1,51,1597,1595,-1,1255,1215,1373,-1,51,59,1597,-1,36,1532,37,-1,136,1632,1607,-1,39,37,1633,-1,136,131,1632,-1,136,1607,1606,-1,39,1572,15,-1,46,163,1556,-1,46,1556,47,-1,31,1427,28,-1,31,1360,1427,-1,31,1358,1360,-1,31,1558,1417,-1,31,1417,1358,-1,14,1598,15,-1,9,1477,1513,-1,9,1634,1477,-1,1635,1575,1398,-1,200,199,1460,-1,220,1352,1636,-1,159,158,1621,-1,18,1601,14,-1,1637,1612,1407,-1,221,220,1636,-1,298,1635,1398,-1,52,51,1595,-1,52,1595,110,-1,8,1634,9,-1,295,1638,1357,-1,295,294,1638,-1,616,636,1617,-1,62,1604,1532,-1,97,73,1639,-1,62,1532,36,-1,1640,1575,1635,-1,62,110,1604,-1,72,1641,73,-1,33,1619,34,-1,206,103,1642,-1,21,1643,22,-1,21,1644,1643,-1,130,1628,131,-1,21,1645,1644,-1,21,1646,1645,-1,21,1647,1646,-1,21,1648,1647,-1,21,1649,1648,-1,21,1650,1649,-1,56,1545,1562,-1,140,1460,134,-1,56,55,1545,-1,6,298,1398,-1,140,200,1460,-1,6,1398,4,-1,41,1542,42,-1,41,66,1542,-1,405,1407,1301,-1,405,1301,401,-1,405,1637,1407,-1,0,64,1494,-1,0,1494,1,-1]
coord Coordinate { point [1.60236 -0.224409 0.86614,1.55643 -0.539369 0.86614,1.60892 -0.539369 0.86614,0.703411 -0.933069 0.86614,0.718918 -1.29134 0.86614,0.869697 -1.29134 0.86614,0.664041 -0.933069 0.86614,1.92388 -0.539369 0.86614,1.87139 -0.539369 0.86614,2.03543 -0.732031 0.86614,-3.1811 -0.933069 0.86614,-3.22047 -0.933069 0.86614,-3.75196 -4.48031 0.86614,3.23571 -3.45768 0.86614,3.22425 -3.59118 0.86614,3.75196 -4.48031 0.86614,-3.1286 -0.933069 0.86614,-3.08923 -0.933069 0.86614,3.11902 -3.45768 0.86614,-2.99737 -0.933069 0.86614,-1.99746 3.38764 0.86614,-2.11777 3.46113 0.86614,-2.0493 3.38821 0.86614,-2.0282 3.3845 0.86614,-2.94488 -0.933069 0.86614,1.64173 -0.224409 0.86614,1.64829 -0.539369 0.86614,-1.89729 3.31538 0.86614,-1.81627 2.76771 0.86614,-1.75065 2.76771 0.86614,-2.85301 -0.933069 0.86614,-2.00049 3.30357 0.86614,3.11902 -3.33663 0.86614,2.98983 -3.27883 0.86614,2.98983 -3.45768 0.86614,3.25216 -1.82456 0.86614,3.11902 -1.82456 0.86614,3.11902 -1.82782 0.86614,-2.81364 -0.933069 0.86614,3.25216 -1.95322 0.86614,-0.687663 0.484251 0.86614,-0.727033 0.484251 0.86614,-0.786088 0.169291 0.86614,-0.602361 0.169291 0.86614,-1.96574 3.39478 0.86614,0.027559 -0.224409 0.86614,-0.156168 -0.224409 0.86614,-0.0577426 -0.539369 0.86614,-0.0183726 -0.539369 0.86614,0.0341206 -0.539369 0.86614,2.86842 -1.43431 0.86614,2.72774 -1.43431 0.86614,2.86842 -1.53655 0.86614,-2.76115 -0.933069 0.86614,0.349081 -0.539369 0.86614,0.185039 -0.732031 0.86614,0.460629 -0.732031 0.86614,2.72774 -1.29134 0.86614,2.59832 -1.29134 0.86614,2.59832 -1.41973 0.86614,0.296587 -0.539369 0.86614,3.11902 -1.6764 0.86614,3.00933 -1.6764 0.86614,1.5105 -0.0652537 0.86614,1.41863 -0.224409 0.86614,-0.818896 0.643406 0.86614,-0.910759 0.484251 0.86614,1.2874 0.169291 0.86614,1.10367 0.169291 0.86614,1.19554 0.0101357 0.86614,0.716534 0.484251 0.86614,1.25254 -1.41973 0.86614,1.12853 -1.41973 0.86614,1.24171 -1.55931 0.86614,-2.28817 3.75239 0.86614,-2.50598 3.61382 0.86614,-2.38977 3.46111 0.86614,-3.07312 4.07935 0.86614,-3.04616 4.04029 0.86614,-2.62793 3.74581 0.86614,-2.58591 3.72989 0.86614,-2.52493 -0.933069 0.86614,-2.54871 3.70522 0.86614,-2.52528 3.67989 0.86614,-2.51325 3.65827 0.86614,-1.04199 0.877951 0.86614,-1.22572 0.877951 0.86614,-1.13386 0.718796 0.86614,-2.50727 3.63661 0.86614,1.12853 -1.29134 0.86614,0.988552 -1.29134 0.86614,0.988552 -1.41973 0.86614,-3.32828 4.48031 0.86614,1.49081 -0.0233707 0.86614,1.32677 -0.224409 0.86614,1.37926 -0.224409 0.86614,1.53838 -1.69866 0.86614,1.38196 -1.6764 0.86614,1.38196 -1.83854 0.86614,-2.47244 -0.933069 0.86614,-2.52493 -0.882809 0.86614,1.21522 -0.0233707 0.86614,0.066929 -0.224409 0.86614,0.0734906 -0.539369 0.86614,1.69422 -0.224409 0.86614,-3.16141 -0.216032 0.86614,-3.19422 -0.190903 0.86614,-3.22047 -0.539369 0.86614,-3.1811 -0.539369 0.86614,3.00933 -1.53655 0.86614,2.86842 -1.55931 0.86614,-0.838581 0.685289 0.86614,-1.11417 0.685289 0.86614,-1.00262 0.484251 0.86614,-0.950129 0.484251 0.86614,-2.43307 -0.933069 0.86614,-3.2139 -0.14902 0.86614,1.32677 0.169291 0.86614,-3.1286 -0.224409 0.86614,-0.635169 0.484251 0.86614,-3.1286 -0.539369 0.86614,-3.22047 -0.115513 0.86614,1.73359 -0.224409 0.86614,1.83202 -0.539369 0.86614,2.72774 -2.87137 0.86614,2.56802 -2.91605 0.86614,2.56802 -3.13788 0.86614,2.84869 -3.15406 0.86614,-1.82632 3.34185 0.86614,-2.62992 2.49966 0.86614,-2.74803 2.46615 0.86614,-2.74803 2.29862 0.86614,-2.7349 2.51641 0.86614,2.46194 -0.933069 0.86614,2.33998 -1.29134 0.86614,2.46916 -1.29134 0.86614,-2.62992 2.24836 0.86614,-3.1286 -0.174149 0.86614,-3.17453 -0.140643 0.86614,-3.15485 -0.165773 0.86614,2.27821 -0.933069 0.86614,-3.07611 -0.224409 0.86614,-0.0643044 -0.0652537 0.86614,-3.06955 -0.539369 0.86614,-1.00262 0.877951 0.86614,1.37926 0.169291 0.86614,-0.287401 0.169291 0.86614,-0.471128 0.169291 0.86614,-0.379264 0.0101357 0.86614,-2.55118 -0.748784 0.86614,-2.72178 -0.882809 0.86614,-2.72178 -0.748784 0.86614,-3.1811 -0.115513 0.86614,0.677164 0.877951 0.86614,0.493437 0.877951 0.86614,0.585301 0.718796 0.86614,-0.595799 0.484251 0.86614,-3.0433 -0.216032 0.86614,-0.562991 0.169291 0.86614,-0.510498 0.169291 0.86614,2.50131 -0.933069 0.86614,-0.0839894 -0.0233707 0.86614,-0.248031 -0.224409 0.86614,-0.195538 -0.224409 0.86614,-1.88328 3.45819 0.86614,-0.359579 -0.0233707 0.86614,-2.55118 -0.698524 0.86614,-2.72178 -0.589629 0.86614,-2.72178 -0.698524 0.86614,0.119422 -0.224409 0.86614,-1.90251 3.42907 0.86614,-1.89127 3.44259 0.86614,-1.91645 3.41753 0.86614,-1.93828 3.40507 0.86614,3.23571 -3.33663 0.86614,3.25216 -1.6764 0.86614,2.86842 -1.29134 0.86614,-3.16797 -0.0233707 0.86614,-3.19422 0.0101357 0.86614,-3.14173 -0.0401239 0.86614,2.69744 -2.78211 0.86614,-3.11548 -0.0485005 0.86614,-3.07611 -0.174149 0.86614,0.716534 0.877951 0.86614,0.604986 0.685289 0.86614,1.41863 0.169291 0.86614,-0.248031 0.169291 0.86614,1.76477 -1.83854 0.86614,-3.20078 0.0436421 0.86614,2.37007 -0.773914 0.86614,-0.950129 0.877951 0.86614,-2.92519 -0.224409 0.86614,-2.8727 -0.539369 0.86614,-3.01705 -0.199279 0.86614,2.14698 -0.539369 0.86614,1.96325 -0.539369 0.86614,2.05511 -0.698524 0.86614,-2.99081 -0.165773 0.86614,2.35039 -0.732031 0.86614,2.18635 -0.933069 0.86614,2.23884 -0.933069 0.86614,2.01254 -2.07988 0.86614,1.76477 -2.23501 0.86614,2.01254 -2.34662 0.86614,2.0748 -0.732031 0.86614,0.158792 -0.224409 0.86614,0.257217 -0.539369 0.86614,2.18635 -0.539369 0.86614,-3.07611 -0.0485005 0.86614,2.56802 -2.62007 0.86614,2.28783 -2.46913 0.86614,2.28783 -2.62007 0.86614,-3.20078 0.0771485 0.86614,-3.01705 -0.0987601 0.86614,-3.03018 -0.14902 0.86614,-3.01705 -0.12389 0.86614,-2.52493 -0.589629 0.86614,1.91732 -0.224409 0.86614,0.887137 -0.933069 0.86614,-0.989499 2.68395 0.86614,-1.37008 2.68395 0.86614,-1.1601 2.48291 0.86614,2.84869 -2.88954 0.86614,-2.88582 -0.224409 0.86614,-0.989499 2.34888 0.86614,-0.963253 2.26512 0.86614,-2.81364 -0.539369 0.86614,-1.02887 2.41589 0.86614,-1.09449 2.46615 0.86614,-2.97768 -0.132266 0.86614,2.23884 -0.539369 0.86614,3.11902 -3.15406 0.86614,2.98983 -3.03314 0.86614,-3.16141 0.0520187 0.86614,-3.13516 0.0101357 0.86614,-3.11548 0.00175908 0.86614,-3.15485 0.0268889 0.86614,3.25216 -1.53655 0.86614,-3.04986 -0.0568771 0.86614,-3.04986 -0.165773 0.86614,3.11902 -1.53655 0.86614,3.00933 -1.29134 0.86614,-2.61679 2.58343 0.86614,3.00933 -1.43431 0.86614,-2.7349 2.58343 0.86614,-2.74803 2.63369 0.86614,-3.03018 -0.0736303 0.86614,-2.1706 -0.933069 0.86614,1.95669 -0.224409 0.86614,-0.195538 0.169291 0.86614,-3.16141 0.0687718 0.86614,-2.01606 3.75239 0.86614,1.67295 -1.69866 0.86614,2.84869 -2.87137 0.86614,1.40614 -1.42806 0.86614,1.82546 -0.0652537 0.86614,-2.13123 -0.933069 0.86614,1.53838 -1.55931 0.86614,1.60236 0.169291 0.86614,1.5105 0.0101357 0.86614,2.72774 -2.74584 0.86614,-2.19685 2.18135 0.86614,-2.24934 2.09758 0.86614,-2.20997 2.13109 0.86614,-2.30183 2.08083 0.86614,1.80577 -0.0233707 0.86614,1.53018 -0.0233707 0.86614,2.00918 -0.224409 0.86614,1.94069 -1.94996 0.86614,-1.54492 3.3483 0.86614,-1.78087 3.37331 0.86614,0.926507 -0.933069 0.86614,-2.31496 2.31537 0.86614,-2.41994 2.08083 0.86614,-2.47244 2.09758 0.86614,-2.51181 2.13109 0.86614,-2.53805 2.18135 0.86614,-2.55118 2.24836 0.86614,-1.55719 3.36164 0.86614,-3.13516 0.110655 0.86614,-3.15485 0.0939016 0.86614,-1.5297 3.33684 0.86614,-2.47244 -0.539369 0.86614,-2.52493 -0.539369 0.86614,-1.56571 3.37648 0.86614,-1.74768 3.41195 0.86614,0.795274 -0.773914 0.86614,-3.11548 0.119031 0.86614,1.64173 0.169291 0.86614,0.572177 -0.539369 0.86614,0.388451 -0.539369 0.86614,0.480314 -0.698524 0.86614,3.25216 -1.43431 0.86614,-1.50582 3.32438 0.86614,-1.68504 2.75096 0.86614,-1.43569 2.76771 0.86614,0.775589 -0.732031 0.86614,0.499999 -0.732031 0.86614,0.611547 -0.933069 0.86614,1.84514 -0.0233707 0.86614,-3.03674 0.0771485 0.86614,-1.57022 3.39218 0.86614,-1.73329 3.43595 0.86614,0.979001 -0.933069 0.86614,-3.07611 0.00175908 0.86614,-3.0433 -0.00661751 0.86614,-3.07611 0.119031 0.86614,2.04855 -0.224409 0.86614,-3.0433 0.0939016 0.86614,-2.59055 2.65044 0.86614,-2.7874 2.7007 0.86614,3.11902 -1.29134 0.86614,3.11902 -1.43431 0.86614,-0.412073 0.484251 0.86614,-2.72178 -0.224409 0.86614,-2.76115 -0.539369 0.86614,-3.05642 0.110655 0.86614,-1.5713 3.41574 0.86614,-1.72123 3.46111 0.86614,-2.99737 0.0771485 0.86614,0.611547 -0.539369 0.86614,-3.01705 -0.0233707 0.86614,-2.99081 -0.0568771 0.86614,-1.46526 3.31139 0.86614,1.69422 0.169291 0.86614,2.15841 -2.07988 0.86614,2.15841 -2.46913 0.86614,3.23571 -3.15406 0.86614,-1.42973 3.30539 0.86614,-1.56324 3.46111 0.86614,-1.69111 3.54699 0.86614,-2.66272 -0.224409 0.86614,-3.17561 3.25746 0.86614,-3.22047 2.76771 0.86614,-3.15166 3.22583 0.86614,-1.39605 3.30357 0.86614,-1.9475 -0.933069 0.86614,-0.989499 2.76771 0.86614,1.01837 -0.933069 0.86614,2.46194 -0.539369 0.86614,2.27821 -0.539369 0.86614,2.37007 -0.698524 0.86614,2.50131 -0.539369 0.86614,3.11902 -3.03314 0.86614,2.38976 -0.732031 0.86614,2.04636 -1.94996 0.86614,-1.90813 -0.933069 0.86614,-1.78072 3.75239 0.86614,2.23228 -0.224409 0.86614,-2.03937 -0.773914 0.86614,2.44399 -2.34662 0.86614,-1.53309 3.54699 0.86614,2.98983 -2.88954 0.86614,-1.85564 -0.933069 0.86614,2.27165 -0.224409 0.86614,-2.31496 2.41589 0.86614,-2.55118 2.49966 0.86614,-2.53805 2.56667 0.86614,-1.51523 3.58386 0.86614,-2.92519 0.169291 0.86614,-3.02362 0.135785 0.86614,-3.00393 0.102278 0.86614,2.14042 -0.0652537 0.86614,-3.04986 0.160914 0.86614,1.53838 -1.42806 0.86614,1.91732 0.169291 0.86614,1.73359 0.169291 0.86614,1.82546 0.0101357 0.86614,-1.81627 -0.933069 0.86614,2.12073 -0.0233707 0.86614,-0.372703 0.484251 0.86614,-3.22047 0.484251 0.86614,-3.14173 0.160914 0.86614,-3.11548 0.169291 0.86614,-3.16797 0.144161 0.86614,-1.62033 3.75239 0.86614,-3.19422 0.110655 0.86614,-1.49373 3.61881 0.86614,-1.93438 2.04732 0.86614,-2.13123 2.09758 0.86614,-2.18372 2.03057 0.86614,-2.1706 -0.539369 0.86614,-2.43307 -0.539369 0.86614,-2.05905 -0.732031 0.86614,1.67295 -1.55931 0.86614,1.40614 -1.29134 0.86614,0.837508 -3.54122 0.86614,0.821331 -3.54122 0.86614,0.821331 -3.7005 0.86614,1.25254 -1.29134 0.86614,-3.12585 3.24174 0.86614,0.342519 -0.224409 0.86614,-2.40026 -0.224409 0.86614,-2.19685 2.31537 0.86614,0.837508 -3.45768 0.86614,0.718918 -3.54122 0.86614,0.664041 -0.539369 0.86614,-2.36089 -0.224409 0.86614,-3.06299 0.484251 0.86614,-3.08267 0.169291 0.86614,-1.86876 1.99706 0.86614,-2.03937 0.877951 0.86614,-2 0.877951 0.86614,-1.63254 -0.933069 0.86614,0.594681 -3.94881 0.86614,-2.23622 1.99706 0.86614,-3.03018 0.492628 0.86614,-0.503936 0.643406 0.86614,-1.59317 -0.933069 0.86614,-1.97375 2.11434 0.86614,-2.11811 2.1646 0.86614,-1.29092 3.46111 0.86614,-1.28057 3.42343 0.86614,-1.26556 3.40952 0.86614,-1.28818 3.43467 0.86614,-1.29152 3.4435 0.86614,-1.2925 3.45104 0.86614,-1.29214 3.45607 0.86614,2.00918 0.169291 0.86614,-1.72441 -0.773914 0.86614,1.95669 0.169291 0.86614,-3.21111 3.36175 0.86614,-3.19478 3.34241 0.86614,-1.28075 3.49049 0.86614,-1.22267 3.38822 0.86614,-1.20159 3.3845 0.86614,-1.2449 3.39689 0.86614,-0.727033 0.877951 0.86614,-0.910759 0.877951 0.86614,-0.818896 0.718796 0.86614,-1.9475 -0.539369 0.86614,-2.13123 -0.539369 0.86614,-2.03937 -0.698524 0.86614,-3.17189 3.32544 0.86614,-1.44863 3.66983 0.86614,-3.15355 3.28385 0.86614,0.381889 -0.224409 0.86614,-1.74409 -0.732031 0.86614,-2.01968 -0.732031 0.86614,-1.38524 3.71382 0.86614,-1.54068 -0.933069 0.86614,-3.22005 3.37953 0.86614,-0.523621 0.685289 0.86614,-0.799211 0.685289 0.86614,-1.90813 -0.539369 0.86614,-1.22529 3.62144 0.86614,-1.24258 3.60015 0.86614,-1.25515 3.5639 0.86614,1.10176 -3.54122 0.86614,1.17458 -3.7005 0.86614,2.23228 0.169291 0.86614,2.04855 0.169291 0.86614,2.14042 0.0101357 0.86614,-1.31309 3.74212 0.86614,-3.05853 3.22612 0.86614,-3.11824 3.23328 0.86614,-1.50131 -0.933069 0.86614,-3.08734 3.23292 0.86614,-1.20329 3.63886 0.86614,-3.11543 3.28312 0.86614,-3.10083 3.25201 0.86614,2.27165 0.169291 0.86614,2.1601 -0.0233707 0.86614,-3.14642 3.31454 0.86614,-2.17716 -0.224409 0.86614,-1.17786 3.65242 0.86614,-1.85564 -0.539369 0.86614,-1.15028 3.66211 0.86614,-3.12951 3.30623 0.86614,-3.14267 3.31779 0.86614,-2.87926 0.509381 0.86614,-3.00393 0.517757 0.86614,-1.23783 3.75239 0.86614,-1.80315 1.98031 0.86614,-1.81627 0.877951 0.86614,-1.7769 0.877951 0.86614,-2.90551 0.542887 0.86614,-2.98425 0.551264 0.86614,-2.13779 -0.224409 0.86614,-0.885001 3.49049 0.86614,-0.921965 3.3845 0.86614,-2.85301 0.492628 0.86614,-1.98687 2.1646 0.86614,-2.86614 0.169291 0.86614,-0.731251 3.36162 0.86614,-0.950241 3.30357 0.86614,-0.718982 3.34828 0.86614,1.22035 -3.58035 0.86614,-0.703745 3.33682 0.86614,-2.53805 2.71745 0.86614,-2.83989 2.75096 0.86614,-3.03139 3.21424 0.86614,-0.739761 3.37646 0.86614,-0.679851 3.32437 0.86614,0.250656 -0.0652537 0.86614,-2.91863 0.576394 0.86614,-2.97768 0.576394 0.86614,-3.13627 3.32282 0.86614,-0.744238 3.39217 0.86614,1.49517 -3.83175 0.86614,1.17458 -3.83175 0.86614,-0.745285 3.41572 0.86614,-2.8202 0.484251 0.86614,-0.639245 3.31138 0.86614,-0.687663 0.877951 0.86614,-2.26902 -0.0652537 0.86614,-0.603662 3.30539 0.86614,0.027559 0.169291 0.86614,-0.156168 0.169291 0.86614,-0.0643044 0.0101357 0.86614,-3.12991 3.32771 0.86614,-0.737135 3.46111 0.86614,-0.859108 3.5639 0.86614,-0.569951 3.30357 0.86614,-3.00393 0.693666 0.86614,-3.01705 0.685289 0.86614,-3.00393 0.676913 0.86614,-0.707266 3.54699 0.86614,0.230971 -0.0233707 0.86614,-2.0853 -0.224409 0.86614,-0.0446194 -0.0233707 0.86614,-0.822291 3.66987 0.86614,-3.12338 3.33227 0.86614,-1.09383 3.66987 0.86614,-2.92519 0.618277 0.86614,-2.97768 0.618277 0.86614,-2.98425 0.643406 0.86614,-0.689514 3.58353 0.86614,-0.668247 3.61822 0.86614,-0.793608 3.75239 0.86614,0.434382 -0.224409 0.86614,-3.07662 3.29027 0.86614,-3.07043 3.25767 0.86614,-2.76115 0.484251 0.86614,-2.70209 0.169291 0.86614,-2.04593 -0.224409 0.86614,-2.98425 0.727172 0.86614,2.56802 -2.34662 0.86614,-2.89078 3.11845 0.86614,-2.90551 2.76771 0.86614,1.22035 -3.45768 0.86614,1.10176 -3.45768 0.86614,2.84869 -2.62007 0.86614,2.84869 -2.74584 0.86614,2.69744 -2.48335 0.86614,-2.72834 0.492628 0.86614,-0.464776 3.46111 0.86614,-0.454515 3.42347 0.86614,-0.439525 3.40955 0.86614,-2.66272 0.169291 0.86614,-1.75065 1.98031 0.86614,-1.72441 0.877951 0.86614,-1.68504 0.877951 0.86614,-0.462108 3.4347 0.86614,-0.46543 3.44353 0.86614,-0.466384 3.45106 0.86614,-2.40026 0.169291 0.86614,-2.28871 -0.0233707 0.86614,-0.466011 3.45608 0.86614,-1.50131 0.877951 0.86614,-0.418872 3.39691 0.86614,-0.39665 3.38822 0.86614,-0.375586 3.3845 0.86614,0.066929 0.169291 0.86614,-0.623056 3.66955 0.86614,0.961313 -3.17263 0.86614,0.961313 -3.45768 0.86614,-0.559374 3.71374 0.86614,-0.124228 3.30357 0.86614,-3.0929 3.33112 0.86614,-3.11651 3.3368 0.86614,-3.1098 3.34099 0.86614,-3.10286 3.34492 0.86614,-0.416492 3.60015 0.86614,-0.635169 0.877951 0.86614,-0.48681 3.74211 0.86614,-0.377317 3.63889 0.86614,-0.399275 3.62146 0.86614,2.98983 -2.74584 0.86614,-1.40945 -0.773914 0.86614,-1.31758 -0.933069 0.86614,-3.04494 3.289 0.86614,-0.35191 3.65244 0.86614,-2.92519 0.743925 0.86614,-3.03856 3.25587 0.86614,-2.97768 0.752302 0.86614,-0.324348 3.66212 0.86614,-2.86058 3.10638 0.86614,-0.411138 3.75239 0.86614,0.718918 -2.89366 0.86614,-0.295923 3.66793 0.86614,-0.267926 3.66987 0.86614,-0.0958613 3.3845 0.86614,0.228758 3.30357 0.86614,0.178477 0.877951 0.86614,0.362204 0.877951 0.86614,-1.63254 -0.539369 0.86614,-1.81627 -0.539369 0.86614,-1.72441 -0.698524 0.86614,-0.963253 2.1981 0.86614,-1.42913 -0.732031 0.86614,-1.70472 -0.732031 0.86614,-2.41994 2.66719 0.86614,-2.51181 2.61693 0.86614,-2.47244 2.65044 0.86614,3.11902 -2.87137 0.86614,3.23571 -3.03314 0.86614,2.19903 -1.94996 0.86614,0.473752 -0.224409 0.86614,1.52362 2.03895 0.86614,1.54987 2.00544 0.86614,-3.0961 3.3485 0.86614,1.57611 1.98869 0.86614,-2.91863 0.785808 0.86614,1.5105 2.07245 0.86614,1.68913 -1.42806 0.86614,0.454067 0.877951 0.86614,-2.97768 0.785808 0.86614,-2.98425 0.810938 0.86614,-3.08911 3.35199 0.86614,1.60892 1.98031 0.86614,-1.59317 -0.539369 0.86614,-2.70866 0.58477 0.86614,-2.7349 0.542887 0.86614,-2.71522 0.55964 0.86614,-2.76115 0.534511 0.86614,1.94069 -1.6764 0.86614,0.244743 3.34975 0.86614,-2.83663 3.10178 0.86614,-2.76771 0.651783 0.86614,-2.8202 0.534511 0.86614,0.246867 3.35547 0.86614,-2.84645 0.542887 0.86614,-2.86614 0.55964 0.86614,-2.87926 0.58477 0.86614,1.50393 2.11434 0.86614,0.401574 0.877951 0.86614,-2.88582 0.618277 0.86614,1.66141 1.98031 0.86614,1.2021 -0.933069 0.86614,-3.08192 3.35521 0.86614,-1.8622 -0.224409 0.86614,0.260582 3.39508 0.86614,0.262671 3.40091 0.86614,-3.00445 3.27956 0.86614,-3.01005 3.24806 0.86614,0.0036426 3.66987 0.86614,-2.90551 0.819315 0.86614,-2.81914 3.10132 0.86614,-3.00393 0.844445 0.86614,1.72703 1.98031 0.86614,1.49517 -3.58035 0.86614,-1.54068 -0.539369 0.86614,0.119422 0.169291 0.86614,1.69422 1.98869 0.86614,1.71391 1.99706 0.86614,-2.76771 0.702042 0.86614,-2.88582 0.743925 0.86614,-2.87926 0.777432 0.86614,0.276487 3.44038 0.86614,-3.05392 3.34841 0.86614,-3.07465 3.35822 0.86614,-3.06758 3.36095 0.86614,-2.57742 0.517757 0.86614,-2.67585 0.542887 0.86614,-2.70209 0.509381 0.86614,-2.96015 3.26126 0.86614,-2.95553 3.21968 0.86614,-2.70866 0.651783 0.86614,-2.80089 3.10343 0.86614,0.837508 -2.89366 0.86614,1.7664 1.98031 0.86614,-2.54461 0.492628 0.86614,-3.75196 4.05662 0.86614,-3.22047 0.877951 0.86614,-3.22047 1.98031 0.86614,-3.22047 1.19291 0.86614,-3.22047 1.58661 0.86614,-3.22411 3.39666 0.86614,-3.22477 3.41444 0.86614,-1.82283 -0.224409 0.86614,-2.59711 0.551264 0.86614,1.74672 2.03895 0.86614,1.73359 2.02219 0.86614,-2.66929 0.576394 0.86614,1.24147 -0.933069 0.86614,-2.51181 0.484251 0.86614,-0.175853 0.484251 0.86614,0.500868 3.30357 0.86614,1.50393 2.23999 0.86614,1.5105 2.28187 0.86614,-2.60367 0.576394 0.86614,-1.68504 1.99706 0.86614,-3.05318 3.36612 0.86614,0.163235 3.67227 0.86614,0.278307 3.44614 0.86614,0.292168 3.4857 0.86614,0.294167 3.49116 0.86614,-2.87926 0.852821 0.86614,-3.03018 0.869574 0.86614,0.0323821 3.75239 0.86614,-3.04557 3.36815 0.86614,1.85826 1.98031 0.86614,1.75984 2.07245 0.86614,-1.95406 -0.0652537 0.86614,0.308029 3.53096 0.86614,-2.17716 0.169291 0.86614,-2.36089 0.169291 0.86614,-2.26902 0.0101357 0.86614,-3.03842 3.37016 0.86614,0.31013 3.53637 0.86614,1.11023 -0.773914 0.86614,-2.48556 0.484251 0.86614,-1.97375 -0.0233707 0.86614,-2.24934 -0.0233707 0.86614,1.89763 1.98031 0.86614,-1.77034 -0.224409 0.86614,2.82683 -2.48335 0.86614,1.7664 2.11434 0.86614,-3.0135 3.3583 0.86614,-3.03089 3.37188 0.86614,0.176961 3.71197 0.86614,-2.8202 0.827691 0.86614,-2.86614 0.802562 0.86614,-2.84645 0.819315 0.86614,0.887137 -0.539369 0.86614,0.703411 -0.539369 0.86614,0.795274 -0.698524 0.86614,0.17904 3.71762 0.86614,-0.136483 0.484251 0.86614,-3.1811 1.19291 0.86614,-3.06299 0.877951 0.86614,0.323664 3.57609 0.86614,-2.85301 0.869574 0.86614,0.325629 3.58185 0.86614,-0.320209 0.668536 0.86614,-0.484251 0.685289 0.86614,-0.320209 0.626653 0.86614,1.09055 -0.732031 0.86614,0.814959 -0.732031 0.86614,-2.13779 0.169291 0.86614,-3.01594 3.37472 0.86614,-2.45275 0.492628 0.86614,1.29396 -0.933069 0.86614,0.191116 3.75239 0.86614,-1.93438 -0.0233707 0.86614,0.339468 3.6213 0.86614,-1.73097 -0.224409 0.86614,2.44399 -2.07988 0.86614,0.341615 3.62704 0.86614,-2.30183 2.66719 0.86614,-3.00848 3.37567 0.86614,-2.19685 2.56667 0.86614,-2.11811 2.41589 0.86614,-2.76115 0.827691 0.86614,-2.70866 0.777432 0.86614,-2.66929 0.702042 0.86614,-3.00094 3.37675 0.86614,3.25216 -2.87137 0.86614,-2.58398 0.66016 0.86614,1.94069 -1.55931 0.86614,-2.55118 0.63503 0.86614,-2.99354 3.37746 0.86614,-2.57086 0.576394 0.86614,-2.9771 3.36105 0.86614,-2.0853 0.169291 0.86614,-1.9475 2.33213 0.86614,-2.7349 0.819315 0.86614,2.19903 -1.81323 0.86614,2.04636 -1.77576 0.86614,-2.71522 0.802562 0.86614,1.81889 2.24836 0.86614,1.7664 2.23999 0.86614,1.75984 2.28187 0.86614,0.926507 -0.539369 0.86614,-2.60367 0.693666 0.86614,-2.98581 3.37795 0.86614,1.82141 -1.42806 0.86614,2.09448 1.98031 0.86614,1.68913 -1.29134 0.86614,1.53838 -1.29134 0.86614,-2.66929 0.777432 0.86614,2.13385 1.98031 0.86614,-0.228346 0.626653 0.86614,-2.51837 0.626653 0.86614,-2.53805 0.534511 0.86614,-2.51837 0.526134 0.86614,-2.55774 0.551264 0.86614,-2.97837 3.37828 0.86614,-1.88189 2.28187 0.86614,-1.92126 2.1646 0.86614,1.33333 -0.933069 0.86614,-2.61679 0.735549 0.86614,1.81889 2.31537 0.86614,-2.24934 2.65044 0.86614,1.74672 2.31537 0.86614,1.72047 2.34888 0.86614,-2.20997 2.61693 0.86614,2.04199 2.12271 0.86614,1.95013 2.12271 0.86614,-2.68286 3.09047 0.86614,-2.73908 3.11356 0.86614,-1.09449 -0.773914 0.86614,-1.18635 -0.933069 0.86614,-1.00262 -0.933069 0.86614,-2.97071 3.37837 0.86614,-2.48556 0.626653 0.86614,-2.45931 0.534511 0.86614,-2.43963 0.551264 0.86614,-2.479 0.526134 0.86614,-2.9674 3.37837 0.86614,-1.31758 -0.539369 0.86614,-1.50131 -0.539369 0.86614,-1.40945 -0.698524 0.86614,1.85826 2.37401 0.86614,-1.98687 2.39914 0.86614,1.69422 2.36563 0.86614,1.66141 2.37401 0.86614,-2.96397 3.37828 0.86614,-2.95 3.35929 0.86614,-2.4265 0.576394 0.86614,-2.96041 3.37807 0.86614,1.89763 2.37401 0.86614,1.95013 2.1646 0.86614,2.04199 2.1646 0.86614,-2.95709 3.37795 0.86614,-2.61679 0.769055 0.86614,2.19903 -1.77576 0.86614,-2.9536 3.37761 0.86614,-1.11417 -0.732031 0.86614,-1.27821 -0.933069 0.86614,-1.22572 -0.933069 0.86614,-1.38976 -0.732031 0.86614,-2.95027 3.37726 0.86614,0.923884 3.35366 0.86614,0.940841 3.33629 0.86614,-2.45275 0.63503 0.86614,-2.41994 0.601523 0.86614,-2.94696 3.37675 0.86614,-1.27821 -0.539369 0.86614,1.88336 -3.7005 0.86614,1.65159 -3.7005 0.86614,1.65159 -3.83175 0.86614,0.919282 3.3611 0.86614,0.517125 3.34975 0.86614,-2.9434 3.37629 0.86614,1.10176 -2.91605 0.86614,1.10176 -3.17263 0.86614,0.657479 -0.224409 0.86614,0.915549 3.36906 0.86614,0.532737 3.39508 0.86614,0.519079 3.35547 0.86614,2.025 -3.83175 0.86614,-2.94033 3.37552 0.86614,-2.99737 1.19291 0.86614,0.965296 3.32153 0.86614,-2.93693 3.37483 0.86614,0.979001 -0.539369 0.86614,0.911209 3.38243 0.86614,0.548406 3.44038 0.86614,0.534759 3.40091 0.86614,-2.93373 3.37402 0.86614,-2.92419 3.35265 0.86614,-2.60367 0.810938 0.86614,-2.67585 0.819315 0.86614,-2.93026 3.37316 0.86614,-2.92718 3.37208 0.86614,2.31758 1.98031 0.86614,0.992614 3.31197 0.86614,-2.92408 3.37115 0.86614,-2.11811 2.56667 0.86614,1.52362 2.31537 0.86614,-1.54724 -0.224409 0.86614,0.908893 3.40003 0.86614,0.564481 3.4857 0.86614,0.550462 3.44614 0.86614,-1.81627 2.26512 0.86614,-1.85564 2.08083 0.86614,-1.81627 2.06408 0.86614,-1.89501 2.11434 0.86614,2.35695 1.98031 0.86614,-2.9208 3.36976 0.86614,-2.26246 0.492628 0.86614,-2.41994 0.517757 0.86614,-2.29527 0.517757 0.86614,-2.63144 3.08088 0.86614,-2.958 1.19291 0.86614,0.909593 3.42857 0.86614,0.58015 3.53096 0.86614,0.566334 3.49116 0.86614,-2.48556 2.75096 0.86614,-1.22572 -0.539369 0.86614,-3.36781 3.81828 0.86614,-3.22185 3.43807 0.86614,1.0378 3.30489 0.86614,-2.31496 0.551264 0.86614,-2.40026 0.551264 0.86614,-2.91772 3.36861 0.86614,0.912621 3.44625 0.86614,0.582353 3.53637 0.86614,-3.33229 3.78681 0.86614,-2.41338 0.651783 0.86614,-3.21634 3.46111 0.86614,-2.22965 0.484251 0.86614,-2.90474 3.36333 0.86614,2.22572 2.13947 0.86614,0.91584 3.46111 0.86614,-2.41338 0.668536 0.86614,0.595932 3.57609 0.86614,-3.39477 3.85733 0.86614,-2.32808 0.58477 0.86614,-2.38713 0.593147 0.86614,1.08327 3.30357 0.86614,-2.89165 3.35734 0.86614,1.54987 2.34888 0.86614,1.57611 2.36563 0.86614,-2.58398 0.844445 0.86614,2.20603 2.18135 0.86614,-2.70209 0.852821 0.86614,-3.08923 1.35207 0.86614,2.40944 1.98031 0.86614,-0.412073 0.877951 0.86614,-0.595799 0.877951 0.86614,-0.503936 0.718796 0.86614,-1.50787 -0.224409 0.86614,-2.01312 2.48291 0.86614,-2.87936 3.35126 0.86614,-2.38057 0.651783 0.86614,0.696849 -0.224409 0.86614,2.2454 2.18135 0.86614,2.44881 1.98031 0.86614,-3.29027 3.76475 0.86614,-3.18645 3.54699 0.86614,-2.90551 1.19291 0.86614,2.09448 2.37401 0.86614,-2.19028 0.484251 0.86614,0.831181 3.67227 0.86614,0.920901 3.47471 0.86614,0.927104 3.49241 0.86614,0.937079 3.52098 0.86614,0.943269 3.53857 0.86614,0.62753 3.66662 0.86614,0.613635 3.62704 0.86614,-1.6391 -0.0652537 0.86614,0.611759 3.6213 0.86614,0.598034 3.58185 0.86614,-2.28871 0.58477 0.86614,-2.27559 0.551264 0.86614,-2.2559 0.534511 0.86614,0.945958 3.54699 0.86614,-2.22965 0.526134 0.86614,0.955335 3.5673 0.86614,-1.8622 0.169291 0.86614,-2.04593 0.169291 0.86614,-1.95406 0.0101357 0.86614,2.98983 -2.50627 0.86614,2.82683 -2.34662 0.86614,0.964587 3.58487 0.86614,-1.65879 -0.0233707 0.86614,1.07495 -2.75693 0.86614,0.837508 -2.75693 0.86614,0.981984 3.6133 0.86614,0.845065 3.71197 0.86614,-2.55118 0.869574 0.86614,-2.72834 0.869574 0.86614,-1.45538 -0.224409 0.86614,-3.4116 3.9017 0.86614,-2.86614 1.19291 0.86614,-2.8202 0.877951 0.86614,-2.76115 0.877951 0.86614,2.44399 -1.94996 0.86614,2.56802 -2.07988 0.86614,2.025 -3.69366 0.86614,3.25216 -2.75693 0.86614,-2.32808 0.66016 0.86614,-2.38057 0.710419 0.86614,-2.82178 3.31743 0.86614,-2.83288 3.32448 0.86614,-2.8031 3.28248 0.86614,2.63254 1.98031 0.86614,-2.15748 0.492628 0.86614,-2.19028 0.526134 0.86614,1.18547 3.42857 0.86614,1.19073 3.41618 0.86614,1.19801 3.40747 0.86614,-2.81106 3.31026 0.86614,1.1875 3.42219 0.86614,0.99475 3.63097 0.86614,0.84703 3.71762 0.86614,0.565616 -0.0652537 0.86614,1.18491 3.44625 0.86614,-2.80651 3.30688 0.86614,1.62973 -3.27883 0.86614,1.49517 -3.27883 0.86614,1.49517 -3.45768 0.86614,1.20796 3.40003 0.86614,-2.8022 3.30406 0.86614,-0.372703 0.877951 0.86614,-0.228346 0.668536 0.86614,-1.61942 -0.0233707 0.86614,-1.41601 -0.224409 0.86614,2.67191 1.98031 0.86614,-3.24419 3.7534 0.86614,-3.1419 3.62617 0.86614,2.72774 -2.21637 0.86614,0.342519 0.169291 0.86614,0.158792 0.169291 0.86614,0.250656 0.0101357 0.86614,1.01934 3.65964 0.86614,0.858892 3.75239 0.86614,-2.56828 3.08129 0.86614,-3.10892 1.39395 0.86614,-2.41994 2.76771 0.86614,2.54068 2.13947 0.86614,-1.75065 2.26512 0.86614,-1.69816 2.08083 0.86614,-1.65879 2.11434 0.86614,2.31758 2.37401 0.86614,2.13385 2.37401 0.86614,2.22572 2.21486 0.86614,-1.73753 2.06408 0.86614,2.52099 2.18135 0.86614,2.7244 1.98031 0.86614,-2.28215 0.66016 0.86614,1.03773 3.6772 0.86614,0.545931 -0.0233707 0.86614,2.56036 2.18135 0.86614,0.270341 -0.0233707 0.86614,2.76377 1.98031 0.86614,-1.77034 0.169291 0.86614,-1.82283 0.169291 0.86614,1.07564 3.70591 0.86614,2.40944 2.37401 0.86614,2.35695 2.37401 0.86614,0.749342 -0.224409 0.86614,2.33998 -1.81323 0.86614,-2.14435 0.551264 0.86614,-2.16404 0.534511 0.86614,-3.41732 3.94881 0.86614,0.047244 0.484251 0.86614,-1.63254 2.1646 0.86614,1.10747 3.72338 0.86614,1.33897 -2.91605 0.86614,1.52929 3.30357 0.86614,1.60892 2.37401 0.86614,1.88336 -3.45768 0.86614,-2.01312 2.54992 0.86614,1.14306 3.73725 0.86614,-2.03937 0.484251 0.86614,-2.12467 0.517757 0.86614,-2.13123 0.576394 0.86614,-2.10498 0.551264 0.86614,-2.66106 3.21086 0.86614,-2.6924 3.20715 0.86614,-2.62213 3.1718 0.86614,1.18036 3.74655 0.86614,-0.779526 -0.773914 0.86614,-0.871389 -0.933069 0.86614,-0.687663 -0.933069 0.86614,0.381889 0.169291 0.86614,-3.19674 3.7534 0.86614,-3.1156 3.65702 0.86614,2.9475 1.98031 0.86614,0.788712 -0.224409 0.86614,-1.00262 -0.539369 0.86614,-1.18635 -0.539369 0.86614,-1.09449 -0.698524 0.86614,1.29544 3.65235 0.86614,1.27837 3.64276 0.86614,1.23146 3.58487 0.86614,0.961313 -2.50301 0.86614,0.718918 -2.62007 0.86614,0.961313 -2.62007 0.86614,-2.22965 0.693666 0.86614,2.98687 1.98031 0.86614,-2.74388 3.31062 0.86614,-2.2559 0.685289 0.86614,0.086614 0.484251 0.86614,1.31353 3.65964 0.86614,1.24141 3.75239 0.86614,2.15841 -3.69366 0.86614,2.15841 -3.83175 0.86614,2.28783 -3.83175 0.86614,2.85564 2.13947 0.86614,-0.799211 -0.732031 0.86614,-0.963253 -0.933069 0.86614,-0.910759 -0.933069 0.86614,-1.0748 -0.732031 0.86614,1.51706 -0.933069 0.86614,2.63254 2.37401 0.86614,2.44881 2.37401 0.86614,2.54068 2.21486 0.86614,-3.4116 3.99592 0.86614,2.83595 2.18135 0.86614,3.03936 1.98031 0.86614,-1.68504 2.28187 0.86614,-1.61942 2.21486 0.86614,-2 0.484251 0.86614,-0.0446194 0.643406 0.86614,2.15841 -3.67297 0.86614,3.07873 1.98031 0.86614,0.837508 -2.34662 0.86614,0.718918 -2.34662 0.86614,0.434382 0.169291 0.86614,2.04636 -3.55541 0.86614,-2.12467 0.618277 0.86614,-2.12467 0.601523 0.86614,3.11902 -2.50627 0.86614,3.11902 -2.62007 0.86614,2.7244 2.37401 0.86614,2.67191 2.37401 0.86614,-3.15066 3.76475 0.86614,-0.963253 -0.539369 0.86614,1.74978 3.35387 0.86614,1.54047 3.33629 0.86614,-2.09186 0.593147 0.86614,-2.47939 3.09904 0.86614,-2.19028 0.693666 0.86614,1.7431 3.36554 0.86614,1.55671 3.38247 0.86614,1.54651 3.35366 0.86614,-0.0643044 0.685289 0.86614,1.55643 -0.933069 0.86614,1.80288 3.31743 0.86614,0.139107 0.484251 0.86614,2.59832 -1.97265 0.86614,-2.68241 1.19291 0.86614,1.73471 3.40225 0.86614,3.25216 -2.62333 0.86614,3.11902 -2.62333 0.86614,3.11902 -2.75693 0.86614,-2.13123 0.643406 0.86614,1.94069 -1.30954 0.86614,1.82141 -1.29134 0.86614,1.73453 3.41373 0.86614,1.59507 3.49241 0.86614,-3.06117 3.70067 0.86614,-2.14435 0.668536 0.86614,-2.16404 0.685289 0.86614,1.85541 3.30605 0.86614,2.19903 -1.55931 0.86614,2.19903 -1.6764 0.86614,-2.29527 0.836068 0.86614,-2.26246 0.727172 0.86614,-2.22965 0.735549 0.86614,-2.68643 3.32658 0.86614,1.73932 3.45021 0.86614,-1.23228 -0.224409 0.86614,1.74221 3.46192 0.86614,1.61124 3.53857 0.86614,1.60483 3.52098 0.86614,-2.19028 0.735549 0.86614,1.90942 3.30357 0.86614,-2.32808 0.877951 0.86614,-2.41994 0.844445 0.86614,-2.40026 0.810938 0.86614,-2.45275 0.869574 0.86614,2.72774 -2.08313 0.86614,-2.64304 1.19291 0.86614,3.26246 1.98031 0.86614,-2.48556 0.877951 0.86614,-2.51837 0.877951 0.86614,-3.39477 4.04029 0.86614,-1.98687 2.63369 0.86614,1.7552 3.4984 0.86614,-0.910759 -0.539369 0.86614,1.61994 3.5639 0.86614,-2.13123 2.65044 0.86614,1.75941 3.51021 0.86614,3.30183 1.98031 0.86614,1.42519 -0.773914 0.86614,3.1706 2.13947 0.86614,-2.77427 1.35207 0.86614,1.77196 3.5467 0.86614,2.9475 2.37401 0.86614,2.76377 2.37401 0.86614,2.85564 2.21486 0.86614,-1.19291 -0.224409 0.86614,3.15091 2.18135 0.86614,2.87532 2.18135 0.86614,1.2021 -0.539369 0.86614,1.01837 -0.539369 0.86614,1.11023 -0.698524 0.86614,-2.99737 1.58661 0.86614,-3.1811 1.58661 0.86614,-3.08923 1.42746 0.86614,0.178477 0.484251 0.86614,1.77604 3.55846 0.86614,2.33998 -1.6764 0.86614,3.35432 1.98031 0.86614,1.76879 -3.17263 0.86614,1.65955 3.6772 0.86614,1.40551 -0.732031 0.86614,1.12992 -0.732031 0.86614,2.27161 -3.67297 0.86614,2.98687 2.37401 0.86614,-2.79396 1.39395 0.86614,-3.06955 1.39395 0.86614,1.60892 -0.933069 0.86614,3.39369 1.98031 0.86614,-1.37008 2.04732 0.86614,-1.61942 2.04732 0.86614,2.15841 -3.55541 0.86614,1.78888 3.59492 0.86614,-1.32414 -0.0652537 0.86614,1.24171 -2.62007 0.86614,1.07495 -2.62007 0.86614,-3.10864 3.78681 0.86614,1.79279 3.60659 0.86614,-1.54724 0.169291 0.86614,-1.73097 0.169291 0.86614,-1.6391 0.0101357 0.86614,-1.30446 1.99706 0.86614,3.03936 2.37401 0.86614,-2.958 1.58661 0.86614,-1.46194 0.877951 0.86614,2.04636 -3.41718 0.86614,-1.34383 -0.0233707 0.86614,-1.14042 -0.224409 0.86614,-2.64569 3.34571 0.86614,-2.54388 3.1966 0.86614,-0.175853 0.877951 0.86614,2.01786 3.41373 0.86614,2.02086 3.41002 0.86614,2.02432 3.40669 0.86614,1.24147 -0.539369 0.86614,-1.40945 2.11434 0.86614,-1.58005 2.11434 0.86614,-1.81627 0.484251 0.86614,-1.6063 2.31537 0.86614,2.03056 3.40225 0.86614,-1.30446 -0.0233707 0.86614,-2.41297 3.12311 0.86614,-2.30183 2.76771 0.86614,-1.10105 -0.224409 0.86614,1.80559 3.64307 0.86614,-3.36781 4.07935 0.86614,1.6695 3.70591 0.86614,-2.90551 1.58661 0.86614,1.64829 -0.933069 0.86614,-2.44562 3.16396 0.86614,-2.50647 3.16506 0.86614,-2.44585 3.1443 0.86614,1.80979 3.65481 0.86614,1.67565 3.72338 0.86614,-1.7769 0.484251 0.86614,1.88336 -3.17263 0.86614,1.82222 3.69128 0.86614,1.68563 3.75239 0.86614,-1.45538 0.169291 0.86614,-1.50787 0.169291 0.86614,2.02749 3.4984 0.86614,2.01468 3.46192 0.86614,1.82637 3.70311 0.86614,-1.23884 1.98031 0.86614,-1.26509 0.877951 0.86614,-2.10498 0.836068 0.86614,-2.15748 0.727172 0.86614,-2.12467 0.702042 0.86614,2.03128 3.51021 0.86614,3.57742 1.98031 0.86614,1.83929 3.7395 0.86614,-1.90813 0.643406 0.86614,-1.6063 2.34888 0.86614,1.62973 -2.89366 0.86614,1.84366 3.75239 0.86614,-3.07312 3.81828 0.86614,-2.99786 3.73187 0.86614,3.61679 1.98031 0.86614,-1.43569 2.18135 0.86614,-1.5538 2.1981 0.86614,3.25216 -2.50627 0.86614,3.11902 -2.37888 0.86614,0.972439 -0.224409 0.86614,2.15841 -3.41718 0.86614,2.27161 -3.55541 0.86614,3.48556 2.13947 0.86614,0.988552 -2.23501 0.86614,3.26246 2.37401 0.86614,3.07873 2.37401 0.86614,3.1706 2.21486 0.86614,-1.9475 2.7007 0.86614,-2.18372 2.71745 0.86614,0.837508 -2.23501 0.86614,3.46587 2.18135 0.86614,1.29396 -0.539369 0.86614,3.19028 2.18135 0.86614,-1.92782 0.685289 0.86614,-2.10498 0.668536 0.86614,-2.09186 0.626653 0.86614,-1.72441 0.484251 0.86614,-2.61337 3.36815 0.86614,2.72774 -1.97265 0.86614,2.35514 3.30357 0.86614,-0.464566 -0.773914 0.86614,-0.556429 -0.933069 0.86614,-0.372703 -0.933069 0.86614,0.869697 -2.10648 0.86614,0.718918 -2.23501 0.86614,0.718918 -1.94996 0.86614,3.30183 2.37401 0.86614,-2.10498 0.877951 0.86614,2.3598 3.31743 0.86614,2.98983 -2.21637 0.86614,-0.687663 -0.539369 0.86614,-0.871389 -0.539369 0.86614,-0.779526 -0.698524 0.86614,-1.54068 2.31537 0.86614,1.12853 -2.34662 0.86614,-0.484251 -0.732031 0.86614,-0.648293 -0.933069 0.86614,-0.595799 -0.933069 0.86614,-0.759841 -0.732031 0.86614,2.19903 -1.41973 0.86614,2.06961 -1.30954 0.86614,2.06961 -1.41973 0.86614,2.33998 -1.55931 0.86614,2.44399 -1.6764 0.86614,2.37263 3.35387 0.86614,-1.68504 0.484251 0.86614,3.35432 2.37401 0.86614,1.01181 -0.224409 0.86614,-0.648293 -0.539369 0.86614,2.37679 3.36554 0.86614,2.06078 3.59492 0.86614,2.04835 3.55846 0.86614,2.0818 3.65481 0.86614,2.07805 3.64307 0.86614,2.06281 3.60015 0.86614,2.06504 3.60659 0.86614,2.04421 3.5467 0.86614,1.33897 -2.50301 0.86614,1.24171 -2.50301 0.86614,3.39369 2.37401 0.86614,-2.59111 3.38994 0.86614,2.09464 3.69128 0.86614,2.09866 3.70311 0.86614,2.1114 3.7395 0.86614,2.11583 3.75239 0.86614,-0.917321 -0.224409 0.86614,3.57742 2.37401 0.86614,3.48556 2.21486 0.86614,-3.04616 3.85733 0.86614,-2.94499 3.74645 0.86614,3.61679 2.37401 0.86614,3.50524 2.18135 0.86614,-0.595799 -0.539369 0.86614,3.75196 4.48031 0.86614,0.880576 -0.0652537 0.86614,1.76879 -2.89366 0.86614,-1.1601 1.98031 0.86614,-1.37008 2.41589 0.86614,-1.30446 2.46615 0.86614,2.15841 -3.27883 0.86614,-1.43569 2.33213 0.86614,-1.54068 2.43265 0.86614,-1.5538 2.54992 0.86614,-1.58005 2.63369 0.86614,-2.33882 3.15932 0.86614,1.85826 2.307 0.86614,-2.23622 2.75096 0.86614,0.988552 -2.10648 0.86614,-2.29527 0.702042 0.86614,-2.38713 0.769055 0.86614,1.12853 -2.23501 0.86614,-1.35695 2.18135 0.86614,-1.33071 2.11434 0.86614,-1.29134 2.08083 0.86614,-1.57349 0.685289 0.86614,-1.46194 0.484251 0.86614,-1.40945 0.626653 0.86614,-1.40945 0.668536 0.86614,-1.15354 0.685289 0.86614,-1.31758 0.668536 0.86614,-1.26509 0.484251 0.86614,-1.31758 0.626653 0.86614,-1.23884 2.06408 0.86614,-0.877951 -0.224409 0.86614,0.657479 0.169291 0.86614,0.473752 0.169291 0.86614,0.565616 0.0101357 0.86614,-2.88582 0.119031 0.86614,-2.70209 -0.165773 0.86614,-2.97768 -0.0903835 0.86614,0.860891 -0.0233707 0.86614,0.585301 -0.0233707 0.86614,-2.85301 -0.623135 0.86614,-2.97112 -0.891186 0.86614,1.0643 -0.224409 0.86614,-2.68241 1.58661 0.86614,-2.86614 1.58661 0.86614,-2.77427 1.42746 0.86614,-3.08923 -0.623135 0.86614,0.869697 -1.94996 0.86614,2.28783 -2.78211 0.86614,2.44399 -2.91605 0.86614,1.62973 -2.34662 0.86614,3.22047 -3.94881 0.86614,0.594681 -1.29134 0.86614,-1.00918 -0.0652537 0.86614,-1.23228 0.169291 0.86614,-1.41601 0.169291 0.86614,-1.32414 0.0101357 0.86614,0.362204 0.484251 0.86614,-0.333333 -0.933069 0.86614,-0.280839 -0.933069 0.86614,-0.241469 -0.933069 0.86614,-2.64304 1.58661 0.86614,-0.0577426 -0.933069 0.86614,-2.75459 1.39395 0.86614,2.28783 -3.27883 0.86614,2.15841 -3.15406 0.86614,2.30849 -3.13788 0.86614,-1.02887 -0.0233707 0.86614,2.46916 -1.69866 0.86614,-2.54669 3.14956 0.86614,-2.42282 3.19613 0.86614,-2.30059 3.21662 0.86614,-2.33233 3.32438 0.86614,-0.825458 -0.224409 0.86614,-2.37749 3.1796 0.86614,-2.86735 3.34492 0.86614,-2.85551 3.33834 0.86614,-2.84408 3.33148 0.86614,0.696849 0.169291 0.86614,-1.12184 3.66793 0.86614,-1.50131 0.484251 0.86614,-1.88189 2.75096 0.86614,0.355453 3.66662 0.86614,-3.02934 3.9017 0.86614,-2.89144 3.75153 0.86614,-0.989499 -0.0233707 0.86614,-0.786088 -0.224409 0.86614,3.25216 -2.37888 0.86614,1.10367 -0.224409 0.86614,2.01254 -3.02208 0.86614,1.88336 -2.89366 0.86614,2.84869 -1.96331 0.86614,1.26286 3.63097 0.86614,1.24609 3.6133 0.86614,0.401574 0.484251 0.86614,1.22526 3.5673 0.86614,1.19328 3.47471 0.86614,1.22434 3.5639 0.86614,1.76879 -2.75693 0.86614,1.83202 -0.933069 0.86614,-1.14042 0.169291 0.86614,2.59832 -1.69866 0.86614,-1.19291 0.169291 0.86614,2.0115 3.45021 0.86614,-1.59317 0.643406 0.86614,-1.09449 1.99706 0.86614,-1.90813 0.718796 0.86614,-1.1601 2.06408 0.86614,1.23688 3.60015 0.86614,1.18843 3.46111 0.86614,-1.61286 0.685289 0.86614,-1.88845 0.685289 0.86614,2.98983 -2.08313 0.86614,-2.90551 1.98031 0.86614,2.19903 -1.29134 0.86614,2.46916 -1.55931 0.86614,-0.149606 -0.773914 0.86614,-0.372703 -0.539369 0.86614,-0.556429 -0.539369 0.86614,-0.464566 -0.698524 0.86614,0.270341 0.643406 0.86614,-0.169291 -0.732031 0.86614,-0.444881 -0.732031 0.86614,0.749342 0.169291 0.86614,-3.02362 3.94881 0.86614,0.047244 0.877951 0.86614,-0.136483 0.877951 0.86614,-0.0446194 0.718796 0.86614,-0.333333 -0.539369 0.86614,0.250656 0.685289 0.86614,-0.0249344 0.685289 0.86614,1.87139 -0.933069 0.86614,2.01254 -2.87137 0.86614,0.454067 0.484251 0.86614,1.49517 -2.34662 0.86614,1.62973 -2.50301 0.86614,1.90757 -2.75693 0.86614,-2.83989 1.99706 0.86614,0.086614 0.877951 0.86614,1.74015 -0.773914 0.86614,-0.602361 -0.224409 0.86614,-0.280839 -0.539369 0.86614,2.88463 -3.7005 0.86614,2.56802 -3.55541 0.86614,2.56802 -3.83175 0.86614,2.99219 -3.83175 0.86614,0.493437 0.484251 0.86614,-0.562991 -0.224409 0.86614,1.51706 -0.539369 0.86614,1.33333 -0.539369 0.86614,1.42519 -0.698524 0.86614,-2.38372 3.36163 0.86614,-2.37145 3.34829 0.86614,-2.77191 3.75239 0.86614,-3.02934 3.99592 0.86614,-2.35622 3.33683 0.86614,-0.694224 -0.0652537 0.86614,-2.39224 3.37647 0.86614,-2.57232 3.41491 0.86614,-0.917321 0.169291 0.86614,-1.10105 0.169291 0.86614,-1.00918 0.0101357 0.86614,-1.34383 2.33213 0.86614,2.01254 -2.75693 0.86614,1.72047 -0.732031 0.86614,1.44488 -0.732031 0.86614,-1.22572 0.484251 0.86614,1.92388 -0.933069 0.86614,-0.713909 -0.0233707 0.86614,-2.39672 3.39216 0.86614,-2.54784 3.46111 0.86614,-0.510498 -0.224409 0.86614,2.28783 -3.02208 0.86614,1.49517 -2.23501 0.86614,3.25216 -2.23826 0.86614,2.30849 -3.02208 0.86614,0.139107 0.877951 0.86614,1.90757 -2.62007 0.86614,1.62973 -2.62007 0.86614,-2.39779 3.41571 0.86614,2.98983 -3.7005 0.86614,-1.02887 2.04732 0.86614,2.99219 -3.7005 0.86614,-2.29173 3.31139 0.86614,2.84869 -3.55541 0.86614,2.88463 -3.59118 0.86614,2.84869 -1.82782 0.86614,2.98983 -1.96331 0.86614,0.0734906 -0.933069 0.86614,0.0341206 -0.933069 0.86614,1.96325 -0.933069 0.86614,-0.0183726 -0.933069 0.86614,-0.471128 -0.224409 0.86614,0.257217 -0.933069 0.86614,-1.06824 2.11434 0.86614,-1.10761 2.08083 0.86614,-0.825458 0.169291 0.86614,-0.877951 0.169291 0.86614,-2.25616 3.30539 0.86614,0.296587 -0.933069 0.86614,2.72774 -1.6764 0.86614,-1.59317 0.718796 0.86614,1.2874 -0.224409 0.86614,3.22047 -3.83175 0.86614,0.165354 -0.773914 0.86614,2.98983 -3.59118 0.86614,2.15841 -2.75693 0.86614,-2.51765 3.54699 0.86614,2.15841 -2.87137 0.86614,-2.50998 3.58006 0.86614,-0.241469 -0.539369 0.86614,-0.149606 -0.698524 0.86614,-2.22245 3.30357 0.86614,0.145669 -0.732031 0.86614,-0.129921 -0.732031 0.86614,-2.67016 3.75146 0.86614,0.349081 -0.933069 0.86614,3.11902 -3.7005 0.86614,3.11902 -3.83175 0.86614,-1.04199 2.1646 0.86614,-1.04199 0.484251 0.86614,-0.989499 2.11434 0.86614,1.19554 -0.0652537 0.86614,0.972439 0.169291 0.86614,0.788712 0.169291 0.86614,0.880576 0.0101357 0.86614,3.25216 -2.10974 0.86614,3.11902 -2.10974 0.86614,3.11902 -2.23826 0.86614,0.388451 -0.933069 0.86614,-3.10864 4.11082 0.86614,-3.15066 4.13287 0.86614,-0.287401 -0.224409 0.86614,-3.19674 4.14423 0.86614,-3.24419 4.14423 0.86614,-3.29027 4.13287 0.86614,-3.33229 4.11082 0.86614,1.17585 -0.0233707 0.86614,0.900261 -0.0233707 0.86614,-2.53805 2.03057 0.86614,-2.7874 2.04732 0.86614,-2.59055 2.09758 0.86614,-2.74803 2.11434 0.86614,-1.23884 2.39914 0.86614,-1.29134 2.38239 0.86614,0.677164 0.484251 0.86614,2.01254 -2.50301 0.86614,-1.13386 0.643406 0.86614,-2.48556 1.99706 0.86614,2.72774 -1.55931 0.86614,2.59832 -1.6764 0.86614,2.59832 -1.55931 0.86614,3.22425 -3.7005 0.86614,2.33998 -1.41973 0.86614,2.46916 -1.41973 0.86614,3.11902 -3.59118 0.86614,1.01181 0.169291 0.86614,2.44399 -3.02208 0.86614,2.86842 -1.6764 0.86614,2.14698 -0.933069 0.86614,-2.61679 2.1646 0.86614,-2.7349 2.1646 0.86614,-1.02887 2.24836 0.86614,-1.02887 2.21486 0.86614,-0.379264 -0.0652537 0.86614,0.585301 0.643406 0.86614,-2.41994 1.98031 0.86614,1.0643 0.169291 0.86614,-1.1601 2.39914 0.86614,-0.694224 0.0101357 0.86614,0.270341 0.718796 0.86614,0.565616 0.685289 0.86614,0.290026 0.685289 0.86614,2.84869 -3.27883 0.86614,-1.04199 2.29862 0.86614,-0.398949 -0.0233707 0.86614,-0.674539 -0.0233707 0.86614,-1.06824 2.34888 0.86614,-1.10761 2.38239 0.86614,0.718918 -1.41973 0.86614,0.869697 -1.41973 0.86614,2.05511 -0.773914 0.86614,-2.7874 2.39914 0.86614,-2.7874 2.36563 0.86614,-2.81364 2.38239 0.86614,1.74015 -0.698524 0.86614,-2.7349 2.24836 0.86614,3.11902 -1.95322 0.86614,1.75984 -0.732031 0.86614,0.572177 -0.933069 0.86614,-1.23884 2.48291 0.86614,-2.30183 1.98031 0.86614,-1.61942 2.7007 0.86614,1.24171 -1.6764 0.86614,0.480314 -0.773914 0.86614,1.12853 -1.55931 0.86614,0.165354 -0.698524 0.86614,-2.07155 3.39687 0.86614,-2.09225 3.40949 0.86614,-2.10132 3.41713 0.86614,-2.10866 3.42506 0.86614,-2.11441 3.43365 0.86614,-2.11803 3.44246 0.86614,-2.11927 3.44999 0.86614,-2.11904 3.45555 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,4,-1,5,0,3,-1,6,0,5,-1,7,1,0,-1,7,0,6,-1,8,7,6,-1,9,7,8,-1]
coord Coordinate { point [-2.89238 2.43265 0.86614,-3.14173 2.66719 0.86614,-3.14173 2.43265 0.86614,-2.82677 2.48291 0.86614,-2.85301 2.4494 0.86614,-2.81364 2.53317 0.86614,-2.81364 2.56667 0.86614,-2.89238 2.66719 0.86614,-2.82677 2.61693 0.86614,-2.85301 2.65044 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,2,4,-1,5,2,3,-1,6,2,5,-1,7,0,2,-1,7,2,6,-1,8,7,6,-1,9,7,8,-1]
coord Coordinate { point [-3.14173 2.33213 0.86614,-3.14173 2.08083 0.86614,-2.89238 2.08083 0.86614,-2.82677 2.13109 0.86614,-2.85301 2.09758 0.86614,-2.81364 2.18135 0.86614,-2.81364 2.23161 0.86614,-2.89238 2.33213 0.86614,-2.82677 2.28187 0.86614,-2.85301 2.31537 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1,4,0,3,-1,5,6,7,-1,8,9,10,-1,8,4,9,-1,8,11,0,-1,8,0,4,-1,12,5,7,-1,13,11,8,-1,14,15,11,-1,14,7,15,-1,14,11,13,-1,16,17,12,-1,16,7,14,-1,16,12,7,-1,18,17,16,-1,19,18,16,-1]
coord Coordinate { point [-1.93438 2.4494 0.86614,-1.90813 2.39914 0.86614,-1.86876 2.36563 0.86614,-1.82939 2.34888 0.86614,-1.73753 2.34888 0.86614,-1.86876 2.66719 0.86614,-1.90813 2.63369 0.86614,-1.93438 2.58343 0.86614,-1.63254 2.4494 0.86614,-1.69816 2.36563 0.86614,-1.65879 2.39914 0.86614,-1.9475 2.49966 0.86614,-1.82939 2.68395 0.86614,-1.61942 2.49966 0.86614,-1.61942 2.53317 0.86614,-1.9475 2.53317 0.86614,-1.63254 2.58343 0.86614,-1.73753 2.68395 0.86614,-1.69816 2.66719 0.86614,-1.65879 2.63369 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
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,8,7,0,-1,9,10,11,-1,12,0,10,-1,12,10,9,-1,13,14,8,-1,13,15,14,-1,13,16,15,-1,17,8,0,-1,17,13,8,-1,17,0,12,-1,18,13,17,-1,19,18,17,-1,20,21,18,-1,20,18,19,-1]
coord Coordinate { point [1.64829 2.08083 0.86614,1.66141 2.03057 0.86614,1.6811 2.03895 0.86614,1.60892 2.03057 0.86614,1.58267 2.03895 0.86614,1.56299 2.0557 0.86614,1.54987 2.08083 0.86614,1.5433 2.11434 0.86614,1.5433 2.23999 0.86614,1.72047 2.08083 0.86614,1.68766 2.08083 0.86614,1.70735 2.0557 0.86614,1.72703 2.11434 0.86614,1.60892 2.32375 0.86614,1.54987 2.27349 0.86614,1.56299 2.29862 0.86614,1.58267 2.31537 0.86614,1.72703 2.23999 0.86614,1.66141 2.32375 0.86614,1.72047 2.27349 0.86614,1.70735 2.29862 0.86614,1.68766 2.31537 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,4,1,3,-1,5,6,1,-1,5,7,6,-1,5,1,4,-1,8,5,4,-1,9,5,8,-1]
coord Coordinate { point [-3.02362 0.735549 0.86614,-3.05642 0.710419 0.86614,-3.03674 0.718796 0.86614,-3.01705 0.760679 0.86614,-3.01705 0.777432 0.86614,-3.05642 0.827691 0.86614,-3.1811 0.710419 0.86614,-3.1811 0.827691 0.86614,-3.02362 0.802562 0.86614,-3.03674 0.819315 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,4,1,3,-1,5,6,1,-1,5,7,6,-1,5,1,4,-1,8,5,4,-1,9,5,8,-1]
coord Coordinate { point [-3.02362 0.55964 0.86614,-3.05642 0.534511 0.86614,-3.03674 0.542887 0.86614,-3.01705 0.58477 0.86614,-3.01705 0.6099 0.86614,-3.05642 0.66016 0.86614,-3.1811 0.534511 0.86614,-3.1811 0.66016 0.86614,-3.02362 0.63503 0.86614,-3.03674 0.651783 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,0,2,-1,4,5,6,-1,7,8,9,-1,7,10,8,-1,7,3,10,-1,7,0,3,-1,11,4,6,-1,12,13,0,-1,12,14,13,-1,12,0,7,-1,15,14,12,-1,16,11,6,-1,17,6,14,-1,17,14,15,-1,17,16,6,-1,18,16,17,-1,19,18,17,-1]
coord Coordinate { point [-2.57742 0.718796 0.86614,-2.5643 0.693666 0.86614,-2.54461 0.676913 0.86614,-2.52493 0.668536 0.86614,-2.54461 0.827691 0.86614,-2.5643 0.810938 0.86614,-2.57742 0.785808 0.86614,-2.4265 0.718796 0.86614,-2.45931 0.676913 0.86614,-2.43963 0.693666 0.86614,-2.479 0.668536 0.86614,-2.52493 0.836068 0.86614,-2.41994 0.743925 0.86614,-2.58398 0.743925 0.86614,-2.58398 0.760679 0.86614,-2.41994 0.760679 0.86614,-2.479 0.836068 0.86614,-2.4265 0.785808 0.86614,-2.45931 0.827691 0.86614,-2.43963 0.810938 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [0.869697 -1.55931 0.86614,0.718918 -1.55931 0.86614,0.718918 -1.6764 0.86614,0.869697 -1.6764 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [0.988552 -1.6764 0.86614,0.869697 -1.81323 0.86614,0.988552 -1.81323 0.86614,0.869697 -1.6764 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [1.12853 -1.81323 0.86614,0.988552 -1.96006 0.86614,1.12853 -1.96006 0.86614,0.988552 -1.81323 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [1.24171 -1.6764 0.86614,1.12853 -1.6764 0.86614,1.12853 -1.81323 0.86614,1.24171 -1.81323 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [1.38196 -1.83854 0.86614,1.25254 -1.96006 0.86614,1.38196 -1.96006 0.86614,1.25254 -1.83854 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,0,2,-1,5,0,4,-1,6,4,7,-1,6,5,4,-1]
coord Coordinate { point [1.38196 -2.10648 0.86614,1.25254 -2.23501 0.86614,1.49517 -2.23501 0.86614,1.25254 -2.10648 0.86614,1.49517 -2.10648 0.86614,1.38196 -1.96006 0.86614,1.62973 -1.96006 0.86614,1.62973 -2.10648 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1]
coord Coordinate { point [2.33998 -1.41973 0.86614,2.19903 -1.55931 0.86614,2.33998 -1.55931 0.86614,2.19903 -1.41973 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1]
coord Coordinate { point [2.56802 -3.45768 0.86614,2.44399 -3.45768 0.86614,2.44399 -3.55541 0.86614,2.56802 -3.55541 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,3,0,-1,5,4,0,-1,6,7,4,-1,6,4,5,-1,8,9,10,-1,8,11,9,-1,5,9,6,-1,11,6,9,-1]
coord Coordinate { point [1.37399 -3.17263 0.86614,1.22035 -3.45768 0.86614,1.37399 -3.45768 0.86614,1.22035 -3.02208 0.86614,1.33897 -3.02208 0.86614,1.49517 -3.17263 0.86614,1.47354 -2.91605 0.86614,1.33897 -2.91605 0.86614,1.62973 -2.62007 0.86614,1.49517 -2.89366 0.86614,1.62973 -2.89366 0.86614,1.47354 -2.62007 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
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,7,6,0,-1,8,7,0,-1,9,8,0,-1,10,9,0,-1,11,10,0,-1,12,11,0,-1,13,12,14,-1,15,12,13,-1,16,12,15,-1,17,11,12,-1,18,19,17,-1,18,12,16,-1,18,17,12,-1,20,19,18,-1,21,20,18,-1,22,21,18,-1,23,22,18,-1,24,23,18,-1,25,26,24,-1,25,24,18,-1,27,26,25,-1,28,25,29,-1,30,25,28,-1,31,25,30,-1,32,27,25,-1,33,32,25,-1,33,25,31,-1]
coord Coordinate { point [-2.92002 3.38737 0.86614,-2.92861 3.38979 0.86614,-2.92452 3.38811 0.86614,-2.93229 3.39231 0.86614,-2.93557 3.39559 0.86614,-2.93845 3.39951 0.86614,-2.94168 3.40561 0.86614,-2.94522 3.41613 0.86614,-2.9474 3.42911 0.86614,-2.94771 3.44226 0.86614,-2.94664 3.45226 0.86614,-2.94442 3.46111 0.86614,-2.78125 3.3845 0.86614,-2.76063 3.39127 0.86614,-2.77063 3.38686 0.86614,-2.74517 3.40262 0.86614,-2.72618 3.42569 0.86614,-2.89572 3.60015 0.86614,-2.71003 3.45819 0.86614,-2.88614 3.61337 0.86614,-2.87459 3.62572 0.86614,-2.8476 3.64611 0.86614,-2.8275 3.65625 0.86614,-2.80651 3.6632 0.86614,-2.76134 3.67056 0.86614,-2.66047 3.60015 0.86614,-2.74025 3.66886 0.86614,-2.70931 3.6593 0.86614,-2.66138 3.6117 0.86614,-2.66051 3.60601 0.86614,-2.66472 3.62117 0.86614,-2.66813 3.6272 0.86614,-2.68602 3.64574 0.86614,-2.67257 3.63315 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
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,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [3.80954 -4.48031 0.820226,3.81102 4.48031 0.807085,3.80954 4.48031 0.820226,3.81102 -4.48031 0.807085,3.80517 -4.48031 0.832708,3.80517 4.48031 0.832708,3.79813 -4.48031 0.843905,3.79813 4.48031 0.843905,3.78878 -4.48031 0.853256,3.78878 4.48031 0.853256,3.77758 -4.48031 0.860292,3.77758 4.48031 0.860292,3.7651 -4.48031 0.864659,3.7651 4.48031 0.864659,3.75196 -4.48031 0.86614,3.75196 4.48031 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
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,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1]
coord Coordinate { point [-3.75196 -4.53788 0.820226,3.75196 -4.53936 0.807085,3.75196 -4.53788 0.820226,-3.75196 -4.53936 0.807085,-3.75196 -4.53351 0.832708,3.75196 -4.53351 0.832708,-3.75196 -4.52648 0.843905,3.75196 -4.52648 0.843905,-3.75196 -4.51713 0.853256,3.75196 -4.51713 0.853256,-3.75196 -4.50593 0.860292,3.75196 -4.50593 0.860292,-3.75196 -4.49345 0.864659,3.75196 -4.49345 0.864659,-3.75196 -4.48031 0.86614,3.75196 -4.48031 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,2,5,-1,4,5,6,-1,4,0,2,-1,7,4,6,-1,8,6,9,-1,8,9,10,-1,8,7,6,-1,11,10,12,-1,11,8,10,-1,13,11,12,-1,14,12,15,-1,14,13,12,-1]
coord Coordinate { point [-3.80954 4.05662 0.820226,-3.81102 -4.48031 0.807085,-3.80954 -4.48031 0.820226,-3.81102 4.05662 0.807085,-3.80517 4.05662 0.832708,-3.80517 -4.48031 0.832708,-3.79813 -4.48031 0.843905,-3.79813 4.05662 0.843905,-3.78878 4.05662 0.853256,-3.78878 -4.48031 0.853256,-3.77758 -4.48031 0.860292,-3.77758 4.05662 0.860292,-3.7651 -4.48031 0.864659,-3.7651 4.05662 0.864659,-3.75196 4.05662 0.86614,-3.75196 -4.48031 0.86614]
}}
appearance Appearance{material USE PIN-01 }}
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,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-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,25,26,27,-1,24,26,25,-1]
coord Coordinate { point [-3.41732 3.94881 0.807085,-3.4116 3.9017 0.86614,-3.4116 3.9017 0.807085,-3.41732 3.94881 0.86614,-3.39477 3.85733 0.86614,-3.39477 3.85733 0.807085,-3.36781 3.81828 0.86614,-3.36781 3.81828 0.807085,-3.33229 3.78681 0.86614,-3.33229 3.78681 0.807085,-3.29027 3.76475 0.86614,-3.29027 3.76475 0.807085,-3.24419 3.7534 0.86614,-3.24419 3.7534 0.807085,-3.19674 3.7534 0.86614,-3.19674 3.7534 0.807085,-3.15066 3.76475 0.86614,-3.15066 3.76475 0.807085,-3.10864 3.78681 0.86614,-3.10864 3.78681 0.807085,-3.07312 3.81828 0.86614,-3.07312 3.81828 0.807085,-3.04616 3.85733 0.86614,-3.04616 3.85733 0.807085,-3.02934 3.9017 0.86614,-3.02934 3.9017 0.807085,-3.02362 3.94881 0.86614,-3.02362 3.94881 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
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,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-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,25,26,27,-1,24,26,25,-1]
coord Coordinate { point [-3.02362 3.94881 0.807085,-3.02934 3.99592 0.86614,-3.02934 3.99592 0.807085,-3.02362 3.94881 0.86614,-3.04616 4.04029 0.86614,-3.04616 4.04029 0.807085,-3.07312 4.07935 0.86614,-3.07312 4.07935 0.807085,-3.10864 4.11082 0.86614,-3.10864 4.11082 0.807085,-3.15066 4.13287 0.86614,-3.15066 4.13287 0.807085,-3.19674 4.14423 0.86614,-3.19674 4.14423 0.807085,-3.24419 4.14423 0.86614,-3.24419 4.14423 0.807085,-3.29027 4.13287 0.86614,-3.29027 4.13287 0.807085,-3.33229 4.11082 0.86614,-3.33229 4.11082 0.807085,-3.36781 4.07935 0.86614,-3.36781 4.07935 0.807085,-3.39477 4.04029 0.86614,-3.39477 4.04029 0.807085,-3.4116 3.99592 0.86614,-3.4116 3.99592 0.807085,-3.41732 3.94881 0.86614,-3.41732 3.94881 0.807085]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.81364 2.38239 0.86614,-2.7874 2.39914 0.86614,-2.81364 2.38239 0.858266,-2.7874 2.39914 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7874 2.36563 0.86614,-2.81364 2.38239 0.86614,-2.7874 2.36563 0.858266,-2.81364 2.38239 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.74803 2.29862 0.86614,-2.7874 2.36563 0.86614,-2.74803 2.29862 0.858266,-2.7874 2.36563 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7349 2.24836 0.86614,-2.74803 2.29862 0.86614,-2.7349 2.24836 0.858266,-2.74803 2.29862 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7349 2.1646 0.86614,-2.7349 2.24836 0.86614,-2.7349 2.1646 0.858266,-2.7349 2.24836 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.74803 2.11434 0.86614,-2.7349 2.1646 0.86614,-2.74803 2.11434 0.858266,-2.7349 2.1646 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7874 2.04732 0.86614,-2.74803 2.11434 0.86614,-2.7874 2.04732 0.858266,-2.74803 2.11434 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.83989 1.99706 0.86614,-2.7874 2.04732 0.86614,-2.83989 1.99706 0.858266,-2.7874 2.04732 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.90551 1.98031 0.86614,-2.83989 1.99706 0.86614,-2.90551 1.98031 0.858266,-2.83989 1.99706 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-3.22047 1.98031 0.86614,-2.90551 1.98031 0.86614,-3.22047 1.98031 0.858266,-2.90551 1.98031 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-3.22047 2.76771 0.86614,-3.22047 1.98031 0.86614,-3.22047 2.76771 0.858266,-3.22047 1.98031 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.90551 2.76771 0.86614,-3.22047 2.76771 0.86614,-2.90551 2.76771 0.858266,-3.22047 2.76771 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.83989 2.75096 0.86614,-2.90551 2.76771 0.86614,-2.83989 2.75096 0.858266,-2.90551 2.76771 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7874 2.7007 0.86614,-2.83989 2.75096 0.86614,-2.7874 2.7007 0.858266,-2.83989 2.75096 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.74803 2.63369 0.86614,-2.7874 2.7007 0.86614,-2.74803 2.63369 0.858266,-2.7874 2.7007 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7349 2.58343 0.86614,-2.74803 2.63369 0.86614,-2.7349 2.58343 0.858266,-2.74803 2.63369 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7349 2.51641 0.86614,-2.7349 2.58343 0.86614,-2.7349 2.51641 0.858266,-2.7349 2.58343 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.74803 2.46615 0.86614,-2.7349 2.51641 0.86614,-2.74803 2.46615 0.858266,-2.7349 2.51641 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,2,1,3,-1]
coord Coordinate { point [-2.7874 2.39914 0.86614,-2.74803 2.46615 0.86614,-2.7874 2.39914 0.858266,-2.74803 2.46615 0.858266]
}}
appearance Appearance{material USE PIN-01 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,4,6,7,-1,8,3,0,-1,8,4,7,-1,8,7,3,-1,9,10,11,-1,12,11,13,-1,14,9,15,-1,14,10,9,-1,13,11,10,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1,19,18,17,-1,20,18,19,-1,21,22,20,-1,21,20,19,-1,23,22,21,-1,24,13,25,-1,24,26,13,-1,12,26,27,-1,12,13,26,-1,28,29,22,-1,28,22,23,-1,30,25,31,-1,30,24,25,-1,32,31,29,-1,32,29,28,-1,32,30,31,-1,33,24,30,-1,34,33,30,-1,35,33,34,-1,36,35,34,-1,37,35,36,-1,38,1,37,-1,38,37,36,-1,2,1,38,-1,5,27,6,-1,5,12,27,-1]
coord Coordinate { point [-2.74803 2.63369 0.858266,-2.81364 2.56667 0.858266,-2.7349 2.58343 0.858266,-2.82677 2.61693 0.858266,-2.83989 2.75096 0.858266,-2.90551 2.76771 0.858266,-2.89238 2.66719 0.858266,-2.85301 2.65044 0.858266,-2.7874 2.7007 0.858266,-2.90551 1.98031 0.858266,-3.14173 2.08083 0.858266,-3.22047 1.98031 0.858266,-3.22047 2.76771 0.858266,-3.14173 2.33213 0.858266,-2.89238 2.08083 0.858266,-2.83989 1.99706 0.858266,-2.85301 2.09758 0.858266,-2.7874 2.04732 0.858266,-2.82677 2.13109 0.858266,-2.74803 2.11434 0.858266,-2.81364 2.18135 0.858266,-2.7349 2.1646 0.858266,-2.81364 2.23161 0.858266,-2.7349 2.24836 0.858266,-2.89238 2.43265 0.858266,-2.89238 2.33213 0.858266,-3.14173 2.43265 0.858266,-3.14173 2.66719 0.858266,-2.74803 2.29862 0.858266,-2.82677 2.28187 0.858266,-2.81364 2.38239 0.858266,-2.85301 2.31537 0.858266,-2.7874 2.36563 0.858266,-2.85301 2.4494 0.858266,-2.7874 2.39914 0.858266,-2.82677 2.48291 0.858266,-2.74803 2.46615 0.858266,-2.81364 2.53317 0.858266,-2.7349 2.51641 0.858266]
}}
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,7,8,-1,6,9,7,-1,10,11,12,-1,13,4,5,-1,13,5,9,-1,13,9,6,-1,14,12,15,-1,14,10,12,-1,16,17,11,-1,16,11,10,-1,18,15,19,-1,18,14,15,-1,20,21,17,-1,20,17,16,-1,22,23,24,-1,22,19,23,-1,22,18,19,-1,25,24,26,-1,25,22,24,-1,27,25,26,-1,28,29,21,-1,28,21,20,-1,30,27,26,-1,31,29,28,-1,32,31,28,-1,33,34,27,-1,33,27,30,-1,35,31,32,-1,36,35,32,-1,37,38,39,-1,37,34,33,-1,40,36,41,-1,40,35,36,-1,42,40,41,-1,42,41,2,-1,43,38,37,-1,43,37,33,-1,1,42,2,-1]
coord Coordinate { point [-2.30183 2.76771 0.858266,-2.41994 2.76771 0.858266,-2.41994 2.66719 0.858266,-2.30183 2.66719 0.858266,-2.23622 2.75096 0.858266,-2.24934 2.65044 0.858266,-2.13123 2.65044 0.858266,-2.19685 2.56667 0.858266,-2.11811 2.56667 0.858266,-2.20997 2.61693 0.858266,-2.51181 2.13109 0.858266,-2.59055 2.09758 0.858266,-2.53805 2.03057 0.858266,-2.18372 2.71745 0.858266,-2.47244 2.09758 0.858266,-2.48556 1.99706 0.858266,-2.53805 2.18135 0.858266,-2.61679 2.1646 0.858266,-2.41994 2.08083 0.858266,-2.41994 1.98031 0.858266,-2.55118 2.24836 0.858266,-2.62992 2.24836 0.858266,-2.30183 2.08083 0.858266,-2.30183 1.98031 0.858266,-2.23622 1.99706 0.858266,-2.24934 2.09758 0.858266,-2.18372 2.03057 0.858266,-2.20997 2.13109 0.858266,-2.55118 2.49966 0.858266,-2.62992 2.49966 0.858266,-2.13123 2.09758 0.858266,-2.61679 2.58343 0.858266,-2.53805 2.56667 0.858266,-2.11811 2.1646 0.858266,-2.19685 2.18135 0.858266,-2.59055 2.65044 0.858266,-2.51181 2.61693 0.858266,-2.19685 2.31537 0.858266,-2.31496 2.41589 0.858266,-2.31496 2.31537 0.858266,-2.53805 2.71745 0.858266,-2.47244 2.65044 0.858266,-2.48556 2.75096 0.858266,-2.11811 2.41589 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,7,1,0,-1,8,9,10,-1,11,10,12,-1,11,8,10,-1,13,14,4,-1,15,1,7,-1,16,17,9,-1,18,19,20,-1,16,9,8,-1,18,13,19,-1,18,20,21,-1,22,23,24,-1,22,12,23,-1,22,11,12,-1,25,15,7,-1,26,14,13,-1,27,24,28,-1,27,22,24,-1,29,27,28,-1,30,25,31,-1,30,15,25,-1,32,13,18,-1,32,33,26,-1,32,26,13,-1,34,29,28,-1,35,29,34,-1,36,30,31,-1,37,38,39,-1,40,41,33,-1,42,39,43,-1,40,33,32,-1,40,44,41,-1,42,37,39,-1,45,31,46,-1,45,36,31,-1,47,48,38,-1,49,50,44,-1,49,44,40,-1,47,38,37,-1,51,42,43,-1,52,46,53,-1,51,43,54,-1,52,45,46,-1,55,53,50,-1,55,50,49,-1,56,35,34,-1,55,52,53,-1,56,57,35,-1,6,13,4,-1,58,48,47,-1,3,48,58,-1,3,2,48,-1,5,51,54,-1,5,59,6,-1,5,54,59,-1,21,20,57,-1,21,57,56,-1]
coord Coordinate { point [-1.93438 2.58343 0.858266,-1.98687 2.63369 0.858266,-2.01312 2.54992 0.858266,-1.9475 2.53317 0.858266,-1.69816 2.36563 0.858266,-1.73753 2.34888 0.858266,-1.68504 2.28187 0.858266,-1.90813 2.63369 0.858266,-1.89501 2.11434 0.858266,-1.97375 2.11434 0.858266,-1.93438 2.04732 0.858266,-1.85564 2.08083 0.858266,-1.86876 1.99706 0.858266,-1.6063 2.34888 0.858266,-1.65879 2.39914 0.858266,-1.9475 2.7007 0.858266,-1.92126 2.1646 0.858266,-1.98687 2.1646 0.858266,-1.54068 2.31537 0.858266,-1.6063 2.31537 0.858266,-1.61942 2.21486 0.858266,-1.5538 2.1981 0.858266,-1.81627 2.06408 0.858266,-1.80315 1.98031 0.858266,-1.75065 1.98031 0.858266,-1.86876 2.66719 0.858266,-1.63254 2.4494 0.858266,-1.73753 2.06408 0.858266,-1.68504 1.99706 0.858266,-1.69816 2.08083 0.858266,-1.88189 2.75096 0.858266,-1.82939 2.68395 0.858266,-1.54068 2.43265 0.858266,-1.61942 2.49966 0.858266,-1.61942 2.04732 0.858266,-1.65879 2.11434 0.858266,-1.81627 2.76771 0.858266,-1.90813 2.39914 0.858266,-1.98687 2.39914 0.858266,-1.9475 2.33213 0.858266,-1.5538 2.54992 0.858266,-1.61942 2.53317 0.858266,-1.86876 2.36563 0.858266,-1.88189 2.28187 0.858266,-1.63254 2.58343 0.858266,-1.75065 2.76771 0.858266,-1.73753 2.68395 0.858266,-1.93438 2.4494 0.858266,-2.01312 2.48291 0.858266,-1.58005 2.63369 0.858266,-1.65879 2.63369 0.858266,-1.82939 2.34888 0.858266,-1.68504 2.75096 0.858266,-1.69816 2.66719 0.858266,-1.81627 2.26512 0.858266,-1.61942 2.7007 0.858266,-1.58005 2.11434 0.858266,-1.63254 2.1646 0.858266,-1.9475 2.49966 0.858266,-1.75065 2.26512 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,6,4,-1,7,3,5,-1,7,1,0,-1,7,5,1,-1,8,9,10,-1,8,11,9,-1,12,13,14,-1,15,14,16,-1,15,12,14,-1,17,18,13,-1,17,13,12,-1,19,16,20,-1,19,15,16,-1,21,22,23,-1,21,20,22,-1,21,19,20,-1,24,21,23,-1,25,24,23,-1,26,27,28,-1,29,24,25,-1,30,26,28,-1,31,32,29,-1,31,29,25,-1,33,30,34,-1,33,26,30,-1,35,36,32,-1,35,32,31,-1,37,33,34,-1,38,39,36,-1,38,2,39,-1,38,36,35,-1,6,34,4,-1,6,37,34,-1,11,26,9,-1,11,27,26,-1,0,2,38,-1]
coord Coordinate { point [-0.989499 2.34888 0.858266,-1.06824 2.34888 0.858266,-1.04199 2.29862 0.858266,-1.09449 2.46615 0.858266,-1.1601 2.39914 0.858266,-1.10761 2.38239 0.858266,-1.1601 2.48291 0.858266,-1.02887 2.41589 0.858266,-0.989499 2.76771 0.858266,-1.37008 2.68395 0.858266,-0.989499 2.68395 0.858266,-1.43569 2.76771 0.858266,-1.33071 2.11434 0.858266,-1.40945 2.11434 0.858266,-1.37008 2.04732 0.858266,-1.29134 2.08083 0.858266,-1.30446 1.99706 0.858266,-1.35695 2.18135 0.858266,-1.43569 2.18135 0.858266,-1.23884 2.06408 0.858266,-1.23884 1.98031 0.858266,-1.1601 2.06408 0.858266,-1.1601 1.98031 0.858266,-1.09449 1.99706 0.858266,-1.10761 2.08083 0.858266,-1.02887 2.04732 0.858266,-1.37008 2.41589 0.858266,-1.43569 2.33213 0.858266,-1.34383 2.33213 0.858266,-1.06824 2.11434 0.858266,-1.29134 2.38239 0.858266,-0.989499 2.11434 0.858266,-1.04199 2.1646 0.858266,-1.30446 2.46615 0.858266,-1.23884 2.39914 0.858266,-0.963253 2.1981 0.858266,-1.02887 2.21486 0.858266,-1.23884 2.48291 0.858266,-0.963253 2.26512 0.858266,-1.02887 2.24836 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,0,3,-1,5,6,7,-1,8,9,10,-1,5,11,6,-1,12,10,13,-1,14,4,3,-1,12,8,10,-1,14,3,15,-1,16,17,9,-1,18,11,5,-1,16,9,8,-1,19,13,20,-1,18,21,11,-1,19,12,13,-1,22,15,23,-1,22,14,15,-1,24,25,17,-1,26,27,21,-1,24,17,16,-1,26,21,18,-1,28,22,23,-1,28,23,27,-1,28,27,26,-1,29,30,31,-1,29,20,30,-1,29,19,20,-1,32,31,33,-1,32,29,31,-1,34,35,36,-1,34,33,35,-1,34,32,33,-1,37,32,34,-1,38,39,32,-1,38,32,37,-1,40,41,25,-1,40,25,24,-1,42,37,34,-1,43,41,40,-1,44,37,42,-1,45,43,40,-1,46,44,42,-1,47,43,45,-1,6,44,46,-1,48,47,45,-1,7,6,46,-1,1,47,48,-1,1,48,2,-1]
coord Coordinate { point [1.57611 2.36563 0.858266,1.54987 2.34888 0.858266,1.58267 2.31537 0.858266,1.60892 2.32375 0.858266,1.60892 2.37401 0.858266,1.7664 2.23999 0.858266,1.72703 2.11434 0.858266,1.7664 2.11434 0.858266,1.56299 2.0557 0.858266,1.52362 2.03895 0.858266,1.54987 2.00544 0.858266,1.72703 2.23999 0.858266,1.58267 2.03895 0.858266,1.57611 1.98869 0.858266,1.66141 2.37401 0.858266,1.66141 2.32375 0.858266,1.54987 2.08083 0.858266,1.5105 2.07245 0.858266,1.75984 2.28187 0.858266,1.60892 2.03057 0.858266,1.60892 1.98031 0.858266,1.72047 2.27349 0.858266,1.69422 2.36563 0.858266,1.68766 2.31537 0.858266,1.5433 2.11434 0.858266,1.50393 2.11434 0.858266,1.74672 2.31537 0.858266,1.70735 2.29862 0.858266,1.72047 2.34888 0.858266,1.66141 2.03057 0.858266,1.66141 1.98031 0.858266,1.69422 1.98869 0.858266,1.6811 2.03895 0.858266,1.71391 1.99706 0.858266,1.73359 2.02219 0.858266,1.72703 1.98031 0.858266,1.7664 1.98031 0.858266,1.70735 2.0557 0.858266,1.68766 2.08083 0.858266,1.64829 2.08083 0.858266,1.5433 2.23999 0.858266,1.50393 2.23999 0.858266,1.74672 2.03895 0.858266,1.5105 2.28187 0.858266,1.72047 2.08083 0.858266,1.54987 2.27349 0.858266,1.75984 2.07245 0.858266,1.52362 2.31537 0.858266,1.56299 2.29862 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,1,0,-1,4,0,5,-1,4,3,0,-1,0,6,5,-1]
coord Coordinate { point [1.85826 2.307 0.858266,1.81889 2.31537 0.858266,1.81889 2.24836 0.858266,1.85826 2.37401 0.858266,1.89763 2.37401 0.858266,1.89763 1.98031 0.858266,1.85826 1.98031 0.858266]
}}
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.04199 2.1646 0.858266,1.95013 2.12271 0.858266,2.04199 2.12271 0.858266,1.95013 2.1646 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [2.22572 2.13947 0.858266,2.31758 1.98031 0.858266,2.35695 1.98031 0.858266,2.09448 1.98031 0.858266,2.13385 1.98031 0.858266,2.20603 2.18135 0.858266,2.2454 2.18135 0.858266,2.22572 2.21486 0.858266,2.13385 2.37401 0.858266,2.09448 2.37401 0.858266,2.31758 2.37401 0.858266,2.35695 2.37401 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [2.54068 2.13947 0.858266,2.63254 1.98031 0.858266,2.67191 1.98031 0.858266,2.40944 1.98031 0.858266,2.44881 1.98031 0.858266,2.52099 2.18135 0.858266,2.56036 2.18135 0.858266,2.54068 2.21486 0.858266,2.44881 2.37401 0.858266,2.40944 2.37401 0.858266,2.63254 2.37401 0.858266,2.67191 2.37401 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [2.85564 2.13947 0.858266,2.9475 1.98031 0.858266,2.98687 1.98031 0.858266,2.7244 1.98031 0.858266,2.76377 1.98031 0.858266,2.83595 2.18135 0.858266,2.87532 2.18135 0.858266,2.85564 2.21486 0.858266,2.76377 2.37401 0.858266,2.7244 2.37401 0.858266,2.9475 2.37401 0.858266,2.98687 2.37401 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [3.1706 2.13947 0.858266,3.26246 1.98031 0.858266,3.30183 1.98031 0.858266,3.03936 1.98031 0.858266,3.07873 1.98031 0.858266,3.15091 2.18135 0.858266,3.19028 2.18135 0.858266,3.1706 2.21486 0.858266,3.07873 2.37401 0.858266,3.03936 2.37401 0.858266,3.26246 2.37401 0.858266,3.30183 2.37401 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [3.48556 2.13947 0.858266,3.57742 1.98031 0.858266,3.61679 1.98031 0.858266,3.35432 1.98031 0.858266,3.39369 1.98031 0.858266,3.46587 2.18135 0.858266,3.50524 2.18135 0.858266,3.48556 2.21486 0.858266,3.39369 2.37401 0.858266,3.35432 2.37401 0.858266,3.57742 2.37401 0.858266,3.61679 2.37401 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-3.08923 1.35207 0.858266,-2.99737 1.19291 0.858266,-2.958 1.19291 0.858266,-3.22047 1.19291 0.858266,-3.1811 1.19291 0.858266,-3.10892 1.39395 0.858266,-3.06955 1.39395 0.858266,-3.08923 1.42746 0.858266,-3.1811 1.58661 0.858266,-3.22047 1.58661 0.858266,-2.99737 1.58661 0.858266,-2.958 1.58661 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-2.77427 1.35207 0.858266,-2.68241 1.19291 0.858266,-2.64304 1.19291 0.858266,-2.90551 1.19291 0.858266,-2.86614 1.19291 0.858266,-2.79396 1.39395 0.858266,-2.75459 1.39395 0.858266,-2.77427 1.42746 0.858266,-2.86614 1.58661 0.858266,-2.90551 1.58661 0.858266,-2.68241 1.58661 0.858266,-2.64304 1.58661 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,4,6,7,-1,8,3,0,-1,8,4,7,-1,9,10,11,-1,8,7,3,-1,12,11,13,-1,14,9,15,-1,14,10,9,-1,13,11,10,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1,19,18,17,-1,20,18,19,-1,21,20,19,-1,22,23,20,-1,22,20,21,-1,24,13,25,-1,24,26,13,-1,12,26,27,-1,12,13,26,-1,28,29,23,-1,28,23,22,-1,30,25,31,-1,30,24,25,-1,32,31,29,-1,32,29,28,-1,32,30,31,-1,33,24,30,-1,34,33,30,-1,35,33,34,-1,36,35,34,-1,37,35,36,-1,38,1,37,-1,38,37,36,-1,2,1,38,-1,5,27,6,-1,5,12,27,-1]
coord Coordinate { point [-2.98425 0.810938 0.858266,-3.01705 0.777432 0.858266,-2.97768 0.785808 0.858266,-3.02362 0.802562 0.858266,-3.03018 0.869574 0.858266,-3.06299 0.877951 0.858266,-3.05642 0.827691 0.858266,-3.03674 0.819315 0.858266,-3.00393 0.844445 0.858266,-3.06299 0.484251 0.858266,-3.1811 0.534511 0.858266,-3.22047 0.484251 0.858266,-3.22047 0.877951 0.858266,-3.1811 0.66016 0.858266,-3.05642 0.534511 0.858266,-3.03018 0.492628 0.858266,-3.03674 0.542887 0.858266,-3.00393 0.517757 0.858266,-3.02362 0.55964 0.858266,-2.98425 0.551264 0.858266,-3.01705 0.58477 0.858266,-2.97768 0.576394 0.858266,-2.97768 0.618277 0.858266,-3.01705 0.6099 0.858266,-3.05642 0.710419 0.858266,-3.05642 0.66016 0.858266,-3.1811 0.710419 0.858266,-3.1811 0.827691 0.858266,-2.98425 0.643406 0.858266,-3.02362 0.63503 0.858266,-3.01705 0.685289 0.858266,-3.03674 0.651783 0.858266,-3.00393 0.676913 0.858266,-3.03674 0.718796 0.858266,-3.00393 0.693666 0.858266,-3.02362 0.735549 0.858266,-2.98425 0.727172 0.858266,-3.01705 0.760679 0.858266,-2.97768 0.752302 0.858266]
}}
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,7,8,-1,6,9,7,-1,10,11,12,-1,13,4,5,-1,13,5,9,-1,13,9,6,-1,14,12,15,-1,14,10,12,-1,16,17,11,-1,16,11,10,-1,18,15,19,-1,18,14,15,-1,20,21,17,-1,20,17,16,-1,22,23,24,-1,22,19,23,-1,22,18,19,-1,25,24,26,-1,25,22,24,-1,27,25,26,-1,28,29,21,-1,28,21,20,-1,30,27,26,-1,31,29,28,-1,32,31,28,-1,33,34,27,-1,33,27,30,-1,35,31,32,-1,36,35,32,-1,37,38,39,-1,37,34,33,-1,40,36,41,-1,40,35,36,-1,42,40,41,-1,42,41,2,-1,43,38,37,-1,43,37,33,-1,1,42,2,-1]
coord Coordinate { point [-2.76115 0.877951 0.858266,-2.8202 0.877951 0.858266,-2.8202 0.827691 0.858266,-2.76115 0.827691 0.858266,-2.72834 0.869574 0.858266,-2.7349 0.819315 0.858266,-2.67585 0.819315 0.858266,-2.70866 0.777432 0.858266,-2.66929 0.777432 0.858266,-2.71522 0.802562 0.858266,-2.86614 0.55964 0.858266,-2.90551 0.542887 0.858266,-2.87926 0.509381 0.858266,-2.70209 0.852821 0.858266,-2.84645 0.542887 0.858266,-2.85301 0.492628 0.858266,-2.87926 0.58477 0.858266,-2.91863 0.576394 0.858266,-2.8202 0.534511 0.858266,-2.8202 0.484251 0.858266,-2.88582 0.618277 0.858266,-2.92519 0.618277 0.858266,-2.76115 0.534511 0.858266,-2.76115 0.484251 0.858266,-2.72834 0.492628 0.858266,-2.7349 0.542887 0.858266,-2.70209 0.509381 0.858266,-2.71522 0.55964 0.858266,-2.88582 0.743925 0.858266,-2.92519 0.743925 0.858266,-2.67585 0.542887 0.858266,-2.91863 0.785808 0.858266,-2.87926 0.777432 0.858266,-2.66929 0.576394 0.858266,-2.70866 0.58477 0.858266,-2.90551 0.819315 0.858266,-2.86614 0.802562 0.858266,-2.70866 0.651783 0.858266,-2.76771 0.702042 0.858266,-2.76771 0.651783 0.858266,-2.87926 0.852821 0.858266,-2.84645 0.819315 0.858266,-2.85301 0.869574 0.858266,-2.66929 0.702042 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,2,3,-1,4,5,6,-1,7,1,0,-1,8,9,10,-1,11,10,12,-1,11,8,10,-1,13,14,4,-1,15,1,7,-1,16,17,9,-1,18,19,20,-1,16,9,8,-1,18,13,19,-1,18,20,21,-1,22,23,24,-1,22,12,23,-1,22,11,12,-1,25,15,7,-1,26,14,13,-1,27,24,28,-1,27,22,24,-1,29,27,28,-1,30,25,31,-1,30,15,25,-1,32,13,18,-1,32,33,26,-1,32,26,13,-1,34,29,28,-1,35,29,34,-1,36,30,31,-1,37,38,39,-1,40,41,33,-1,40,42,41,-1,43,39,44,-1,43,37,39,-1,40,33,32,-1,45,31,46,-1,45,36,31,-1,47,48,38,-1,49,50,42,-1,47,38,37,-1,49,42,40,-1,51,43,44,-1,52,46,53,-1,51,44,54,-1,52,45,46,-1,55,53,50,-1,55,50,49,-1,56,35,34,-1,55,52,53,-1,56,57,35,-1,6,13,4,-1,58,48,47,-1,3,48,58,-1,3,2,48,-1,5,51,54,-1,5,59,6,-1,5,54,59,-1,21,20,57,-1,21,57,56,-1]
coord Coordinate { point [-2.57742 0.785808 0.858266,-2.60367 0.810938 0.858266,-2.61679 0.769055 0.858266,-2.58398 0.760679 0.858266,-2.45931 0.676913 0.858266,-2.479 0.668536 0.858266,-2.45275 0.63503 0.858266,-2.5643 0.810938 0.858266,-2.55774 0.551264 0.858266,-2.59711 0.551264 0.858266,-2.57742 0.517757 0.858266,-2.53805 0.534511 0.858266,-2.54461 0.492628 0.858266,-2.41338 0.668536 0.858266,-2.43963 0.693666 0.858266,-2.58398 0.844445 0.858266,-2.57086 0.576394 0.858266,-2.60367 0.576394 0.858266,-2.38057 0.651783 0.858266,-2.41338 0.651783 0.858266,-2.41994 0.601523 0.858266,-2.38713 0.593147 0.858266,-2.51837 0.526134 0.858266,-2.51181 0.484251 0.858266,-2.48556 0.484251 0.858266,-2.54461 0.827691 0.858266,-2.4265 0.718796 0.858266,-2.479 0.526134 0.858266,-2.45275 0.492628 0.858266,-2.45931 0.534511 0.858266,-2.55118 0.869574 0.858266,-2.52493 0.836068 0.858266,-2.38057 0.710419 0.858266,-2.41994 0.743925 0.858266,-2.41994 0.517757 0.858266,-2.43963 0.551264 0.858266,-2.51837 0.877951 0.858266,-2.5643 0.693666 0.858266,-2.60367 0.693666 0.858266,-2.58398 0.66016 0.858266,-2.38713 0.769055 0.858266,-2.41994 0.760679 0.858266,-2.4265 0.785808 0.858266,-2.54461 0.676913 0.858266,-2.55118 0.63503 0.858266,-2.48556 0.877951 0.858266,-2.479 0.836068 0.858266,-2.57742 0.718796 0.858266,-2.61679 0.735549 0.858266,-2.40026 0.810938 0.858266,-2.43963 0.810938 0.858266,-2.52493 0.668536 0.858266,-2.45275 0.869574 0.858266,-2.45931 0.827691 0.858266,-2.51837 0.626653 0.858266,-2.41994 0.844445 0.858266,-2.40026 0.551264 0.858266,-2.4265 0.576394 0.858266,-2.58398 0.743925 0.858266,-2.48556 0.626653 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,3,4,5,-1,3,6,4,-1,7,3,5,-1,7,1,0,-1,7,5,1,-1,8,9,10,-1,8,11,9,-1,12,13,14,-1,15,14,16,-1,15,12,14,-1,17,18,13,-1,17,13,12,-1,19,16,20,-1,19,15,16,-1,21,22,23,-1,21,20,22,-1,21,19,20,-1,24,21,23,-1,25,24,23,-1,26,27,28,-1,29,24,25,-1,30,26,28,-1,31,32,29,-1,31,29,25,-1,33,30,34,-1,33,26,30,-1,35,36,32,-1,35,32,31,-1,37,33,34,-1,38,39,36,-1,38,2,39,-1,38,36,35,-1,6,34,4,-1,6,37,34,-1,11,26,9,-1,11,27,26,-1,0,2,38,-1]
coord Coordinate { point [-2.10498 0.668536 0.858266,-2.14435 0.668536 0.858266,-2.13123 0.643406 0.858266,-2.15748 0.727172 0.858266,-2.19028 0.693666 0.858266,-2.16404 0.685289 0.858266,-2.19028 0.735549 0.858266,-2.12467 0.702042 0.858266,-2.10498 0.877951 0.858266,-2.29527 0.836068 0.858266,-2.10498 0.836068 0.858266,-2.32808 0.877951 0.858266,-2.27559 0.551264 0.858266,-2.31496 0.551264 0.858266,-2.29527 0.517757 0.858266,-2.2559 0.534511 0.858266,-2.26246 0.492628 0.858266,-2.28871 0.58477 0.858266,-2.32808 0.58477 0.858266,-2.22965 0.526134 0.858266,-2.22965 0.484251 0.858266,-2.19028 0.526134 0.858266,-2.19028 0.484251 0.858266,-2.15748 0.492628 0.858266,-2.16404 0.534511 0.858266,-2.12467 0.517757 0.858266,-2.29527 0.702042 0.858266,-2.32808 0.66016 0.858266,-2.28215 0.66016 0.858266,-2.14435 0.551264 0.858266,-2.2559 0.685289 0.858266,-2.10498 0.551264 0.858266,-2.13123 0.576394 0.858266,-2.26246 0.727172 0.858266,-2.22965 0.693666 0.858266,-2.09186 0.593147 0.858266,-2.12467 0.601523 0.858266,-2.22965 0.735549 0.858266,-2.09186 0.626653 0.858266,-2.12467 0.618277 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-1.90813 0.643406 0.858266,-1.81627 0.484251 0.858266,-1.7769 0.484251 0.858266,-2.03937 0.484251 0.858266,-2 0.484251 0.858266,-1.92782 0.685289 0.858266,-1.88845 0.685289 0.858266,-1.90813 0.718796 0.858266,-2 0.877951 0.858266,-2.03937 0.877951 0.858266,-1.81627 0.877951 0.858266,-1.7769 0.877951 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-1.59317 0.643406 0.858266,-1.50131 0.484251 0.858266,-1.46194 0.484251 0.858266,-1.72441 0.484251 0.858266,-1.68504 0.484251 0.858266,-1.61286 0.685289 0.858266,-1.57349 0.685289 0.858266,-1.59317 0.718796 0.858266,-1.68504 0.877951 0.858266,-1.72441 0.877951 0.858266,-1.50131 0.877951 0.858266,-1.46194 0.877951 0.858266]
}}
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.31758 0.668536 0.858266,-1.40945 0.626653 0.858266,-1.31758 0.626653 0.858266,-1.40945 0.668536 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-1.13386 0.643406 0.858266,-1.04199 0.484251 0.858266,-1.00262 0.484251 0.858266,-1.26509 0.484251 0.858266,-1.22572 0.484251 0.858266,-1.15354 0.685289 0.858266,-1.11417 0.685289 0.858266,-1.13386 0.718796 0.858266,-1.22572 0.877951 0.858266,-1.26509 0.877951 0.858266,-1.04199 0.877951 0.858266,-1.00262 0.877951 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-0.818896 0.643406 0.858266,-0.727033 0.484251 0.858266,-0.687663 0.484251 0.858266,-0.950129 0.484251 0.858266,-0.910759 0.484251 0.858266,-0.838581 0.685289 0.858266,-0.799211 0.685289 0.858266,-0.818896 0.718796 0.858266,-0.910759 0.877951 0.858266,-0.950129 0.877951 0.858266,-0.727033 0.877951 0.858266,-0.687663 0.877951 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet
{ creaseAngle 0.50 coordIndex [0,1,2,-1,0,3,4,-1,5,3,0,-1,6,0,2,-1,6,5,0,-1,7,5,6,-1,8,9,5,-1,8,5,7,-1,10,7,6,-1,11,10,6,-1]
coord Coordinate { point [-0.503936 0.643406 0.858266,-0.412073 0.484251 0.858266,-0.372703 0.484251 0.858266,-0.635169 0.484251 0.858266,-0.595799 0.484251 0.858266,-0.523621 0.685289 0.858266,-0.484251 0.685289 0.858266,-0.503936 0.718796 0.858266,-0.595799 0.877951 0.858266,-0.635169 0.877951 0.858266,-0.412073 0.877951 0.858266,-0.372703 0.877951 0.858266]
}}
appearance Appearance{material USE IC-BODY-EPOXY-04 }}
Shape { geometry IndexedFaceSet