-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhamburger.fbx
4575 lines (4563 loc) · 340 KB
/
hamburger.fbx
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
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: [email protected]
; ----------------------------------------------------
FBXHeaderExtension: {
FBXHeaderVersion: 1003
FBXVersion: 6100
CreationTimeStamp: {
Version: 1000
Year: 2011
Month: 08
Day: 15
Hour: 06
Minute: 56
Second: 30
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2011-08-15 06:56:30:000"
Creator: "Blender version 2.58 (sub 1)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 26
ObjectType: "Model" {
Count: 13
}
ObjectType: "Geometry" {
Count: 3
}
ObjectType: "Material" {
Count: 4
}
ObjectType: "Texture" {
Count: 4
}
ObjectType: "Video" {
Count: 4
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::Camera Switcher", "CameraSwitcher" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Camera Index", "Integer", "A+",100
}
MultiLayer: 0
MultiTake: 1
Hidden: "True"
Shading: W
Culling: "CullingOff"
Version: 101
Name: "Model::Camera Switcher"
CameraId: 0
CameraName: 100
CameraIndexName:
}
Model: "Model::Camera", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-0.235031932592392,4.147525787353516,5.551289081573486
Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999988843970513,65.255436084911295,-89.999988843970513
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000119209290,1.000000119209290
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
Property: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",49.134342
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0.000000
Property: "OpticalCenterY", "Real", "A+",0.000000
Property: "BackgroundColor", "Color", "A+",0,0,0
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",2
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",1920
Property: "AspectH", "double", "",1080
Property: "PixelAspectRatio", "double", "",2
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",0.100000
Property: "FarPlane", "double", "",100.000000
Property: "FilmWidth", "double", "",1.0
Property: "FilmHeight", "double", "",1.0
Property: "FilmAspectRatio", "double", "",1.777778
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",0
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.777778
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",0
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: -0.235032,4.147526,5.551289
Up: 0.000000,0.908183,-0.418574
LookAt: -1.000000,-0.000000,-0.000000
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Lamp", "Light" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-2.830904245376587,7.523199081420898,4.536363601684570
Property: "Lcl Rotation", "Lcl Rotation", "A+",32.669286573744287,-4.976452777375691,22.104216776894930
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
Property: "LightType", "enum", "",1
Property: "CastLightOnObject", "bool", "",1
Property: "DrawVolumetricLight", "bool", "",1
Property: "DrawGroundProjection", "bool", "",1
Property: "DrawFrontFacingVolumetricLight", "bool", "",0
Property: "GoboProperty", "object", ""
Property: "Color", "Color", "A+",1,1,1
Property: "Intensity", "Intensity", "A+",68.00
Property: "Fog", "Fog", "A+",50
Property: "Color", "Color", "A",1.00,1.00,1.00
Property: "Intensity", "Intensity", "A+",68.00
Property: "Fog", "Fog", "A+",50
Property: "LightType", "enum", "",1
Property: "CastLightOnObject", "bool", "",1
Property: "DrawGroundProjection", "bool", "",1
Property: "DrawFrontFacingVolumetricLight", "bool", "",0
Property: "DrawVolumetricLight", "bool", "",1
Property: "GoboProperty", "object", ""
Property: "DecayType", "enum", "",0
Property: "DecayStart", "double", "",30.00
Property: "EnableNearAttenuation", "bool", "",0
Property: "NearAttenuationStart", "double", "",0
Property: "NearAttenuationEnd", "double", "",0
Property: "EnableFarAttenuation", "bool", "",0
Property: "FarAttenuationStart", "double", "",0
Property: "FarAttenuationEnd", "double", "",0
Property: "CastShadows", "bool", "",1
Property: "ShadowColor", "ColorRGBA", "",0,0,0,1
}
MultiLayer: 0
MultiTake: 0
Shading: Y
Culling: "CullingOff"
TypeFlags: "Light"
GeometryVersion: 124
}
Model: "Model::Hamburger", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-1.133215308189392,0.750150322914124,-0.402920126914978
Property: "Lcl Rotation", "Lcl Rotation", "A+",-84.044494189645661,-48.732822576986095,-5.305971411901075
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.447001338005066,1.381249427795410,0.225845918059349
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: 0.004902,-0.005322,-0.588322,0.174443,-0.003610,-0.517206,0.310521,0.008600,-0.386633,0.427144,0.017243,-0.258033,0.019653,-0.194936,-0.580969,0.010862,-0.353730,-0.482552,-0.007721,-0.476630,-0.348004
,-0.173516,0.000458,-0.601544,-0.337179,0.003273,-0.599236,-0.483159,0.002245,-0.590322,-0.011556,0.174548,-0.562494,-0.016408,0.333461,-0.549256,-0.015599,0.477154,-0.531565,0.163041,0.169550,-0.529818
,0.324287,0.163249,-0.453417,0.429804,0.162362,-0.305190,0.151102,0.330526,-0.525382,0.308866,0.318661,-0.461434,0.415717,0.301530,-0.330518,0.135995,0.470050,-0.486354,0.286800,0.455153,-0.436609
,0.403032,0.426258,-0.346861,0.187336,-0.187444,-0.501899,0.164363,-0.337730,-0.397900,0.133656,-0.457191,-0.270038,0.299915,-0.147644,-0.331878,0.276905,-0.291007,-0.255758,0.246503,-0.410380,-0.162217
,0.415600,-0.129203,-0.210209,0.386125,-0.262718,-0.146473,0.346755,-0.371783,-0.074482,-0.159256,-0.184544,-0.606596,-0.326973,-0.172934,-0.613695,-0.477812,-0.163214,-0.599748,-0.154335,-0.345173,-0.525497
,-0.311832,-0.328579,-0.545500,-0.452276,-0.308577,-0.537090,-0.157317,-0.469361,-0.399469,-0.299302,-0.444209,-0.424471,-0.418421,-0.406185,-0.417923,-0.175359,0.170448,-0.601027,-0.171414,0.327595,-0.589502
,-0.167687,0.457545,-0.525859,-0.333561,0.163273,-0.619903,-0.325161,0.319617,-0.627164,-0.311830,0.453142,-0.569389,-0.477601,0.156196,-0.596990,-0.472070,0.309376,-0.618404,-0.450238,0.441264,-0.578084
,-0.011807,0.006897,0.622321,-0.015692,0.167660,0.615269,-0.023765,0.320855,0.609461,-0.030924,0.463589,0.582158,-0.161273,0.010028,0.562695,-0.308762,0.010684,0.502879,-0.458927,0.007432,0.447258
,0.002654,-0.148712,0.565237,0.001085,-0.311501,0.555941,-0.003049,-0.468855,0.532691,0.142454,0.004383,0.651965,0.291953,0.001089,0.680221,0.436841,-0.000410,0.692623,0.132719,0.164718,0.670915
,0.122429,0.317818,0.646538,0.112016,0.437701,0.562023,0.285852,0.161548,0.710989,0.268520,0.308349,0.658343,0.241152,0.412220,0.549571,0.429438,0.155379,0.688122,0.396527,0.288326,0.617960
,0.351769,0.383046,0.525051,-0.159388,0.165818,0.554632,-0.289809,0.160364,0.473794,-0.423226,0.154740,0.411278,-0.170548,0.317134,0.573088,-0.314057,0.307232,0.522904,-0.421342,0.288311,0.421590
,-0.182103,0.466801,0.571120,-0.319151,0.446726,0.515770,-0.423002,0.412893,0.428099,-0.149902,-0.146466,0.532260,-0.133699,-0.294216,0.481679,-0.139062,-0.450818,0.465132,-0.309906,-0.147715,0.501507
,-0.269148,-0.279897,0.419931,-0.245489,-0.404827,0.360644,-0.462957,-0.149345,0.446401,-0.419711,-0.282685,0.384561,-0.382857,-0.399694,0.330304,0.150399,-0.147890,0.589721,0.289531,-0.145153,0.597798
,0.421639,-0.148753,0.635480,0.148367,-0.302964,0.573365,0.284188,-0.287231,0.567774,0.401869,-0.278502,0.574288,0.144077,-0.450157,0.545274,0.274884,-0.430023,0.562445,0.385082,-0.402237,0.558359
,0.696307,0.000977,0.279843,0.694422,0.155034,0.238528,0.716172,0.321646,0.196038,0.694215,0.490229,0.152822,0.660818,-0.005306,0.363383,0.644731,-0.008393,0.446707,0.605420,-0.007598,0.527866
,0.706157,-0.156682,0.315610,0.675298,-0.310475,0.339598,0.621887,-0.454817,0.348903,0.713565,0.005415,0.176285,0.679584,0.010009,0.066925,0.612308,0.015540,-0.037855,0.689025,0.158466,0.136939
,0.694357,0.314696,0.085591,0.675141,0.475259,0.031935,0.640116,0.157538,0.038525,0.657310,0.305227,-0.022417,0.641234,0.454253,-0.080829,0.584873,0.157965,-0.064059,0.608016,0.296803,-0.132446
,0.590903,0.429520,-0.182336,0.682466,0.147394,0.334868,0.634962,0.135075,0.415832,0.600250,0.136239,0.510480,0.686024,0.307962,0.302952,0.621719,0.281759,0.388643,0.539712,0.253949,0.446101
,0.680635,0.484777,0.278004,0.617725,0.447573,0.380778,0.527606,0.393350,0.441962,0.674343,-0.154897,0.398552,0.661216,-0.307033,0.421054,0.613604,-0.449952,0.426921,0.639470,-0.152075,0.468115
,0.621243,-0.294661,0.483010,0.580741,-0.429623,0.486375,0.600871,-0.149453,0.541068,0.568919,-0.281971,0.529583,0.535659,-0.405014,0.527699,0.712087,-0.152917,0.212706,0.668189,-0.140750,0.106723
,0.599528,-0.127982,0.003928,0.653424,-0.296727,0.246620,0.606894,-0.274618,0.151886,0.584044,-0.273194,0.031932,0.587983,-0.429803,0.263219,0.544419,-0.398601,0.176566,0.524585,-0.388611,0.069117
,-0.002197,-0.776021,0.127625,0.136351,-0.708087,0.195968,0.276970,-0.694473,0.257377,0.393963,-0.622180,0.305832,0.004124,-0.769544,0.210198,0.006944,-0.739068,0.294674,0.006996,-0.677350,0.376731
,-0.155539,-0.786859,0.056659,-0.295855,-0.726720,-0.011130,-0.436859,-0.674737,-0.070965,-0.008820,-0.770488,0.042198,-0.011893,-0.743876,-0.052163,-0.013013,-0.683647,-0.149108,0.121990,-0.698814,0.127117
,0.259763,-0.674232,0.185935,0.374303,-0.602729,0.237873,0.116211,-0.686652,0.038788,0.240220,-0.635511,0.107886,0.363261,-0.584345,0.152194,0.117620,-0.646852,-0.064891,0.231290,-0.588043,0.017010
,0.340632,-0.536558,0.068575,0.148240,-0.720878,0.263756,0.150415,-0.712137,0.343219,0.145289,-0.669732,0.430492,0.286928,-0.705006,0.327299,0.285069,-0.688414,0.401456,0.276184,-0.640361,0.474308
,0.404547,-0.629745,0.368765,0.400598,-0.614987,0.431500,0.385949,-0.576506,0.487540,-0.146535,-0.767278,0.144495,-0.282737,-0.711365,0.073420,-0.444843,-0.689489,0.028799,-0.135948,-0.723684,0.229321
,-0.263784,-0.668944,0.156714,-0.426861,-0.655760,0.130255,-0.129716,-0.659017,0.312992,-0.248108,-0.607029,0.237100,-0.395037,-0.592503,0.215966,-0.158365,-0.778711,-0.032710,-0.157758,-0.735850,-0.119225
,-0.158043,-0.662290,-0.199291,-0.297937,-0.712205,-0.090405,-0.294043,-0.667131,-0.160909,-0.290949,-0.615503,-0.237840,-0.411666,-0.616934,-0.139365,-0.400162,-0.568597,-0.189998,-0.403120,-0.562674,-0.277192
,-0.728379,0.005792,-0.146735,-0.736987,-0.154144,-0.157572,-0.728917,-0.320974,-0.158241,-0.654317,-0.463455,-0.145701,-0.715228,0.008022,-0.030556,-0.711517,0.007087,0.102085,-0.680388,0.004463,0.244369
,-0.785164,0.165997,-0.128853,-0.789904,0.333331,-0.106357,-0.717798,0.476369,-0.081798,-0.736504,0.003347,-0.257567,-0.720955,0.002247,-0.362743,-0.678430,0.002236,-0.459432,-0.695237,-0.144617,-0.255390
,-0.682987,-0.299648,-0.253466,-0.620332,-0.436352,-0.231835,-0.680861,-0.141908,-0.345027,-0.632449,-0.275860,-0.319020,-0.573827,-0.396875,-0.285544,-0.662874,-0.145613,-0.446122,-0.609179,-0.273641,-0.395132
,-0.535238,-0.364816,-0.320043,-0.747111,-0.155584,-0.036090,-0.741664,-0.157161,0.102862,-0.689539,-0.154838,0.239963,-0.747079,-0.327676,-0.034919,-0.717777,-0.318456,0.095504,-0.645679,-0.299719,0.213180
,-0.686402,-0.482895,-0.028189,-0.667859,-0.471059,0.097894,-0.602073,-0.435615,0.203017,-0.724310,0.159815,-0.009746,-0.718887,0.311412,0.015293,-0.651401,0.439848,0.034578,-0.659837,0.154237,0.099649
,-0.661673,0.296140,0.127281,-0.630993,0.429530,0.152222,-0.640611,0.153212,0.236232,-0.615481,0.288133,0.244601,-0.576418,0.405318,0.251402,-0.782828,0.163338,-0.253581,-0.763613,0.160335,-0.376375
,-0.697922,0.154972,-0.478243,-0.794308,0.333619,-0.240933,-0.740009,0.316139,-0.358165,-0.687385,0.308143,-0.473243,-0.731266,0.483888,-0.215812,-0.685120,0.458059,-0.333731,-0.639772,0.440242,-0.444529
,-0.029634,0.846934,0.010421,0.141354,0.816949,0.028942,0.309577,0.786688,0.051024,0.461616,0.716484,0.078016,-0.024742,0.845423,-0.145448,-0.019965,0.795174,-0.288182,-0.019874,0.683575,-0.382471
,-0.201368,0.824042,-0.006111,-0.352013,0.746523,-0.021867,-0.485771,0.667793,-0.038685,-0.034416,0.865374,0.172056,-0.039248,0.837278,0.334317,-0.041471,0.742326,0.465934,0.135079,0.809364,0.178523
,0.286980,0.738314,0.186030,0.430041,0.672765,0.203663,0.128932,0.794037,0.333798,0.275731,0.715069,0.323319,0.416704,0.657637,0.333409,0.116995,0.704741,0.458010,0.256122,0.644647,0.438667
,0.381541,0.594162,0.434412,0.153175,0.854951,-0.127063,0.154256,0.814401,-0.274597,0.142517,0.705841,-0.375702,0.323561,0.810608,-0.096755,0.321617,0.778270,-0.238537,0.301603,0.687870,-0.342344
,0.467603,0.718742,-0.056456,0.454130,0.685628,-0.180922,0.422531,0.619717,-0.274959,-0.190813,0.788216,-0.151209,-0.348820,0.749162,-0.161541,-0.490721,0.680532,-0.171140,-0.180476,0.745360,-0.285792
,-0.330682,0.705252,-0.289801,-0.467696,0.646869,-0.293746,-0.169538,0.666656,-0.393617,-0.310056,0.633627,-0.394469,-0.443537,0.602515,-0.403187,-0.201430,0.808921,0.144599,-0.199084,0.773377,0.290833
,-0.195036,0.706059,0.422353,-0.351486,0.742977,0.117015,-0.340419,0.706944,0.249151,-0.317708,0.630741,0.353263,-0.478331,0.657405,0.088148,-0.462933,0.632370,0.210161,-0.426347,0.571412,0.302607
,0.327226,-0.464101,-0.006063,0.229731,-0.511760,-0.073147,0.121608,-0.567518,-0.167837,-0.013197,-0.591219,-0.244015,-0.157016,-0.578342,-0.293960,-0.289004,-0.559924,-0.346588,-0.401172,-0.509408,-0.358172
,0.512678,0.414695,-0.270932,0.530070,0.293063,-0.238612,0.511202,0.159837,-0.171011,0.502728,0.025514,-0.119328,0.529886,-0.128093,-0.112969,0.517086,-0.271922,-0.081305,0.467169,-0.380767,-0.028189
,0.395007,0.530415,-0.326718,0.280984,0.573604,-0.399641,0.129691,0.585245,-0.432611,-0.016522,0.598870,-0.478793,-0.164991,0.580367,-0.485988,-0.301237,0.551152,-0.482378,-0.432504,0.537487,-0.498971
,-0.503313,-0.379016,-0.388410,-0.559375,-0.287706,-0.484369,-0.597319,-0.152660,-0.541024,-0.602916,0.002057,-0.544267,-0.598393,0.151732,-0.547878,-0.595516,0.302237,-0.561927,-0.564001,0.430529,-0.532926
,0.437578,0.362076,0.478685,0.480955,0.260359,0.527814,0.528407,0.140664,0.593720,0.548779,-0.002610,0.628525,0.533667,-0.148285,0.612144,0.498706,-0.274790,0.562828,0.473096,-0.391035,0.552425
,0.375020,-0.504887,0.528491,0.269528,-0.553896,0.532540,0.140652,-0.581585,0.504732,0.003433,-0.587888,0.456849,-0.131701,-0.571064,0.395874,-0.242646,-0.522453,0.311041,-0.375957,-0.509027,0.285184
,-0.506346,-0.405805,0.282165,-0.546411,-0.285453,0.312741,-0.593586,-0.150915,0.358147,-0.594111,0.004061,0.367151,-0.557679,0.151782,0.348133,-0.522480,0.279906,0.334164,-0.490113,0.385934,0.323646
,0.347993,0.491273,0.488899,0.236853,0.528636,0.503826,0.108239,0.571700,0.527245,-0.038266,0.605469,0.544032,-0.187482,0.598037,0.516867,-0.314655,0.557356,0.453224,-0.411994,0.505948,0.380331
,0.438524,-0.472742,0.089915,0.464981,-0.504103,0.178841,0.484789,-0.526748,0.264564,0.513812,-0.554298,0.338042,0.518876,-0.556902,0.407040,0.502995,-0.537635,0.465946,0.473005,-0.502668,0.507119
,0.508462,0.528448,-0.209308,0.546235,0.566778,-0.118615,0.573863,0.596095,-0.009760,0.585458,0.611060,0.111218,0.583205,0.614492,0.240487,0.548855,0.585297,0.360213,0.482984,0.519363,0.439319
,-0.486585,-0.477245,-0.301467,-0.494577,-0.492937,-0.239381,-0.512160,-0.527171,-0.187006,-0.555287,-0.581997,-0.117439,-0.581491,-0.607210,-0.008860,-0.567718,-0.588956,0.106964,-0.520196,-0.538941,0.201177
,-0.557077,0.539880,-0.414379,-0.589437,0.568265,-0.306831,-0.621638,0.597769,-0.188761,-0.608792,0.584095,-0.058213,-0.578408,0.556813,0.060045,-0.560994,0.541136,0.176151,-0.513106,0.499003,0.264992
,0.471296,0.491691,-0.267948,0.413521,-0.442926,0.017865,-0.467292,-0.454305,-0.345429,-0.522885,0.509400,-0.488828,0.423935,0.457728,0.473658,0.442452,-0.467050,0.528278,-0.471038,-0.488398,0.260389
,-0.469235,0.460967,0.319717
PolygonVertexIndex: 0,10,13,-2,1,13,14,-3,2,14,15,-4,3,15,303,-305,10,11,16,-14,13,16,17,-15,14,17,18,-16,15,18,302,-304,11,12,19,-17,16,19,20,-18,17,20,21,-19,18,21,301,-303,12,311,310,-20
,19,310,309,-21,20,309,308,-22,21,308,378,-302,0,1,22,-5,4,22,23,-6,5,23,24,-7,6,24,296,-298,1,2,25,-23,22,25,26,-24,23,26,27,-25,24,27,295,-297,2,3,28,-26,25,28,29,-27
,26,29,30,-28,27,30,294,-296,3,304,305,-29,28,305,306,-30,29,306,307,-31,30,307,379,-295,0,4,31,-8,7,31,32,-9,8,32,33,-10,9,33,317,-319,4,5,34,-32,31,34,35,-33,32,35,36,-34
,33,36,316,-318,5,6,37,-35,34,37,38,-36,35,38,39,-37,36,39,315,-317,6,297,298,-38,37,298,299,-39,38,299,300,-40,39,300,380,-316,0,7,40,-11,10,40,41,-12,11,41,42,-13,12,42,312,-312
,7,8,43,-41,40,43,44,-42,41,44,45,-43,42,45,313,-313,8,9,46,-44,43,46,47,-45,44,47,48,-46,45,48,314,-314,9,318,319,-47,46,319,320,-48,47,320,321,-49,48,321,381,-315,49,59,62,-51
,50,62,63,-52,51,63,64,-53,52,64,345,-347,59,60,65,-63,62,65,66,-64,63,66,67,-65,64,67,344,-346,60,61,68,-66,65,68,69,-67,66,69,70,-68,67,70,343,-345,61,325,324,-69,68,324,323,-70
,69,323,322,-71,70,322,382,-344,49,50,71,-54,53,71,72,-55,54,72,73,-56,55,73,340,-340,50,51,74,-72,71,74,75,-73,72,75,76,-74,73,76,341,-341,51,52,77,-75,74,77,78,-76,75,78,79,-77
,76,79,342,-342,52,346,347,-78,77,347,348,-79,78,348,349,-80,79,349,385,-343,49,53,80,-57,56,80,81,-58,57,81,82,-59,58,82,333,-333,53,54,83,-81,80,83,84,-82,81,84,85,-83,82,85,334,-334
,54,55,86,-84,83,86,87,-85,84,87,88,-86,85,88,335,-335,55,339,338,-87,86,338,337,-88,87,337,336,-89,88,336,384,-336,49,56,89,-60,59,89,90,-61,60,90,91,-62,61,91,326,-326,56,57,92,-90
,89,92,93,-91,90,93,94,-92,91,94,327,-327,57,58,95,-93,92,95,96,-94,93,96,97,-95,94,97,328,-328,58,332,331,-96,95,331,330,-97,96,330,329,-98,97,329,383,-329,98,108,111,-100,99,111,112,-101
,100,112,113,-102,101,113,359,-361,108,109,114,-112,111,114,115,-113,112,115,116,-114,113,116,358,-360,109,110,117,-115,114,117,118,-116,115,118,119,-117,116,119,357,-359,110,304,303,-118,117,303,302,-119,118,302,301,-120
,119,301,378,-358,98,99,120,-103,102,120,121,-104,103,121,122,-105,104,122,324,-326,99,100,123,-121,120,123,124,-122,121,124,125,-123,122,125,323,-325,100,101,126,-124,123,126,127,-125,124,127,128,-126,125,128,322,-324
,101,360,361,-127,126,361,362,-128,127,362,363,-129,128,363,382,-323,98,102,129,-106,105,129,130,-107,106,130,131,-108,107,131,354,-354,102,103,132,-130,129,132,133,-131,130,133,134,-132,131,134,355,-355,103,104,135,-133
,132,135,136,-134,133,136,137,-135,134,137,356,-356,104,325,326,-136,135,326,327,-137,136,327,328,-138,137,328,383,-357,98,105,138,-109,108,138,139,-110,109,139,140,-111,110,140,305,-305,105,106,141,-139,138,141,142,-140
,139,142,143,-141,140,143,306,-306,106,107,144,-142,141,144,145,-143,142,145,146,-144,143,146,307,-307,107,353,352,-145,144,352,351,-146,145,351,350,-147,146,350,379,-308,147,157,160,-149,148,160,161,-150,149,161,162,-151
,150,162,352,-354,157,158,163,-161,160,163,164,-162,161,164,165,-163,162,165,351,-353,158,159,166,-164,163,166,167,-165,164,167,168,-166,165,168,350,-352,159,297,296,-167,166,296,295,-168,167,295,294,-169,168,294,379,-351
,147,148,169,-152,151,169,170,-153,152,170,171,-154,153,171,331,-333,148,149,172,-170,169,172,173,-171,170,173,174,-172,171,174,330,-332,149,150,175,-173,172,175,176,-174,173,176,177,-175,174,177,329,-331,150,353,354,-176
,175,354,355,-177,176,355,356,-178,177,356,383,-330,147,151,178,-155,154,178,179,-156,155,179,180,-157,156,180,368,-368,151,152,181,-179,178,181,182,-180,179,182,183,-181,180,183,369,-369,152,153,184,-182,181,184,185,-183
,182,185,186,-184,183,186,370,-370,153,332,333,-185,184,333,334,-186,185,334,335,-187,186,335,384,-371,147,154,187,-158,157,187,188,-159,158,188,189,-160,159,189,298,-298,154,155,190,-188,187,190,191,-189,188,191,192,-190
,189,192,299,-299,155,156,193,-191,190,193,194,-192,191,194,195,-193,192,195,300,-300,156,367,366,-194,193,366,365,-195,194,365,364,-196,195,364,380,-301,196,206,209,-198,197,209,210,-199,198,210,211,-200,199,211,366,-368
,206,207,212,-210,209,212,213,-211,210,213,214,-212,211,214,365,-367,207,208,215,-213,212,215,216,-214,213,216,217,-215,214,217,364,-366,208,318,317,-216,215,317,316,-217,216,316,315,-218,217,315,380,-365,196,197,218,-201
,200,218,219,-202,201,219,220,-203,202,220,338,-340,197,198,221,-219,218,221,222,-220,219,222,223,-221,220,223,337,-339,198,199,224,-222,221,224,225,-223,222,225,226,-224,223,226,336,-338,199,367,368,-225,224,368,369,-226
,225,369,370,-227,226,370,384,-337,196,200,227,-204,203,227,228,-205,204,228,229,-206,205,229,375,-375,200,201,230,-228,227,230,231,-229,228,231,232,-230,229,232,376,-376,201,202,233,-231,230,233,234,-232,231,234,235,-233
,232,235,377,-377,202,339,340,-234,233,340,341,-235,234,341,342,-236,235,342,385,-378,196,203,236,-207,206,236,237,-208,207,237,238,-209,208,238,319,-319,203,204,239,-237,236,239,240,-238,237,240,241,-239,238,241,320,-320
,204,205,242,-240,239,242,243,-241,240,243,244,-242,241,244,321,-321,205,374,373,-243,242,373,372,-244,243,372,371,-245,244,371,381,-322,245,255,258,-247,246,258,259,-248,247,259,260,-249,248,260,361,-361,255,256,261,-259
,258,261,262,-260,259,262,263,-261,260,263,362,-362,256,257,264,-262,261,264,265,-263,262,265,266,-264,263,266,363,-363,257,346,345,-265,264,345,344,-266,265,344,343,-267,266,343,382,-364,245,246,267,-250,249,267,268,-251
,250,268,269,-252,251,269,310,-312,246,247,270,-268,267,270,271,-269,268,271,272,-270,269,272,309,-311,247,248,273,-271,270,273,274,-272,271,274,275,-273,272,275,308,-310,248,360,359,-274,273,359,358,-275,274,358,357,-276
,275,357,378,-309,245,249,276,-253,252,276,277,-254,253,277,278,-255,254,278,373,-375,249,250,279,-277,276,279,280,-278,277,280,281,-279,278,281,372,-374,250,251,282,-280,279,282,283,-281,280,283,284,-282,281,284,371,-373
,251,311,312,-283,282,312,313,-284,283,313,314,-285,284,314,381,-372,245,252,285,-256,255,285,286,-257,256,286,287,-258,257,287,347,-347,252,253,288,-286,285,288,289,-287,286,289,290,-288,287,290,348,-348,253,254,291,-289
,288,291,292,-290,289,292,293,-291,290,293,349,-349,254,374,375,-292,291,375,376,-293,292,376,377,-294,293,377,385,-350
Edges: 0,1,1,2,2,3,3,304,1,13,10,13,13,16,13,14,16,19,14,15,19,310,15,303,2,14
,11,16,14,17,16,17,17,20,17,18,20,309,18,302,3,15,12,19,15,18,19,20,18,21,20,21
,21,308,21,301,0,4,4,5,5,6,6,297,4,22,1,22,22,25,22,23,25,28,23,24,28,305
,24,296,5,23,2,25,23,26,25,26,26,29,26,27,29,306,27,295,6,24,3,28,24,27,28,29
,27,30,29,30,30,307,30,294,0,7,7,8,8,9,9,318,7,31,4,31,31,34,31,32,34,37
,32,33,37,298,33,317,8,32,5,34,32,35,34,35,35,38,35,36,38,299,36,316,9,33,6,37
,33,36,37,38,36,39,38,39,39,300,39,315,0,10,10,11,11,12,12,311,10,40,7,40,40,43
,40,41,43,46,41,42,46,319,42,312,11,41,8,43,41,44,43,44,44,47,44,45,47,320,45,313
,12,42,9,46,42,45,46,47,45,48,47,48,48,321,48,314,49,50,50,51,51,52,52,346,50,62
,59,62,62,65,62,63,65,68,63,64,68,324,64,345,51,63,60,65,63,66,65,66,66,69,66,67
,69,323,67,344,52,64,61,68,64,67,68,69,67,70,69,70,70,322,70,343,49,53,53,54,54,55
,55,339,53,71,50,71,71,74,71,72,74,77,72,73,77,347,73,340,54,72,51,74,72,75,74,75
,75,78,75,76,78,348,76,341,55,73,52,77,73,76,77,78,76,79,78,79,79,349,79,342,49,56
,56,57,57,58,58,332,56,80,53,80,80,83,80,81,83,86,81,82,86,338,82,333,57,81,54,83
,81,84,83,84,84,87,84,85,87,337,85,334,58,82,55,86,82,85,86,87,85,88,87,88,88,336
,88,335,49,59,59,60,60,61,61,325,59,89,56,89,89,92,89,90,92,95,90,91,95,331,91,326
,60,90,57,92,90,93,92,93,93,96,93,94,96,330,94,327,61,91,58,95,91,94,95,96,94,97
,96,97,97,329,97,328,98,99,99,100,100,101,101,360,99,111,108,111,111,114,111,112,114,117,112,113
,117,303,113,359,100,112,109,114,112,115,114,115,115,118,115,116,118,302,116,358,101,113,110,117,113,116
,117,118,116,119,118,119,119,301,119,357,98,102,102,103,103,104,104,325,102,120,99,120,120,123,120,121
,123,126,121,122,126,361,122,324,103,121,100,123,121,124,123,124,124,127,124,125,127,362,125,323,104,122
,101,126,122,125,126,127,125,128,127,128,128,363,128,322,98,105,105,106,106,107,107,353,105,129,102,129
,129,132,129,130,132,135,130,131,135,326,131,354,106,130,103,132,130,133,132,133,133,136,133,134,136,327
,134,355,107,131,104,135,131,134,135,136,134,137,136,137,137,328,137,356,98,108,108,109,109,110,110,304
,108,138,105,138,138,141,138,139,141,144,139,140,144,352,140,305,109,139,106,141,139,142,141,142,142,145
,142,143,145,351,143,306,110,140,107,144,140,143,144,145,143,146,145,146,146,350,146,307,147,148,148,149
,149,150,150,353,148,160,157,160,160,163,160,161,163,166,161,162,166,296,162,352,149,161,158,163,161,164
,163,164,164,167,164,165,167,295,165,351,150,162,159,166,162,165,166,167,165,168,167,168,168,294,168,350
,147,151,151,152,152,153,153,332,151,169,148,169,169,172,169,170,172,175,170,171,175,354,171,331,152,170
,149,172,170,173,172,173,173,176,173,174,176,355,174,330,153,171,150,175,171,174,175,176,174,177,176,177
,177,356,177,329,147,154,154,155,155,156,156,367,154,178,151,178,178,181,178,179,181,184,179,180,184,333
,180,368,155,179,152,181,179,182,181,182,182,185,182,183,185,334,183,369,156,180,153,184,180,183,184,185
,183,186,185,186,186,335,186,370,147,157,157,158,158,159,159,297,157,187,154,187,187,190,187,188,190,193
,188,189,193,366,189,298,158,188,155,190,188,191,190,191,191,194,191,192,194,365,192,299,159,189,156,193
,189,192,193,194,192,195,194,195,195,364,195,300,196,197,197,198,198,199,199,367,197,209,206,209,209,212
,209,210,212,215,210,211,215,317,211,366,198,210,207,212,210,213,212,213,213,216,213,214,216,316,214,365
,199,211,208,215,211,214,215,216,214,217,216,217,217,315,217,364,196,200,200,201,201,202,202,339,200,218
,197,218,218,221,218,219,221,224,219,220,224,368,220,338,201,219,198,221,219,222,221,222,222,225,222,223
,225,369,223,337,202,220,199,224,220,223,224,225,223,226,225,226,226,370,226,336,196,203,203,204,204,205
,205,374,203,227,200,227,227,230,227,228,230,233,228,229,233,340,229,375,204,228,201,230,228,231,230,231
,231,234,231,232,234,341,232,376,205,229,202,233,229,232,233,234,232,235,234,235,235,342,235,377,196,206
,206,207,207,208,208,318,206,236,203,236,236,239,236,237,239,242,237,238,242,373,238,319,207,237,204,239
,237,240,239,240,240,243,240,241,243,372,241,320,208,238,205,242,238,241,242,243,241,244,243,244,244,371
,244,321,245,246,246,247,247,248,248,360,246,258,255,258,258,261,258,259,261,264,259,260,264,345,260,361
,247,259,256,261,259,262,261,262,262,265,262,263,265,344,263,362,248,260,257,264,260,263,264,265,263,266
,265,266,266,343,266,363,245,249,249,250,250,251,251,311,249,267,246,267,267,270,267,268,270,273,268,269
,273,359,269,310,250,268,247,270,268,271,270,271,271,274,271,272,274,358,272,309,251,269,248,273,269,272
,273,274,272,275,274,275,275,357,275,308,245,252,252,253,253,254,254,374,252,276,249,276,276,279,276,277
,279,282,277,278,282,312,278,373,253,277,250,279,277,280,279,280,280,283,280,281,283,313,281,372,254,278
,251,282,278,281,282,283,281,284,283,284,284,314,284,371,245,255,255,256,256,257,257,346,255,285,252,285
,285,288,285,286,288,291,286,287,291,375,287,347,256,286,253,288,286,289,288,289,289,292,289,290,292,376
,290,348,257,287,254,291,287,290,291,292,290,293,292,293,293,377,293,349,294,379,294,295,295,296,296,297
,297,298,298,299,299,300,300,380,301,378,301,302,302,303,303,304,304,305,305,306,306,307,307,379,308,378
,308,309,309,310,310,311,311,312,312,313,313,314,314,381,315,380,315,316,316,317,317,318,318,319,319,320
,320,321,321,381,322,382,322,323,323,324,324,325,325,326,326,327,327,328,328,383,329,383,329,330,330,331
,331,332,332,333,333,334,334,335,335,384,336,384,336,337,337,338,338,339,339,340,340,341,341,342,342,385
,343,382,343,344,344,345,345,346,346,347,347,348,348,349,349,385,350,379,350,351,351,352,352,353,353,354
,354,355,355,356,356,383,357,378,357,358,358,359,359,360,360,361,361,362,362,363,363,382,364,380,364,365
,365,366,366,367,367,368,368,369,369,370,370,384,371,381,371,372,372,373,373,374,374,375,375,376,376,377
,377,385
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByVertice"
ReferenceInformationType: "Direct"
Normals: 0.237708672881126,0.028962064534426,-0.970885336399078,0.523636579513550,-0.075411237776279,-0.848567128181458
,0.715170741081238,-0.215491190552711,-0.664845705032349,0.782677710056305,-0.208777129650116,-0.586321592330933
,0.281594276428223,-0.272164076566696,-0.920102536678314,0.287423312664032,-0.622608125209808,-0.727805435657501
,0.306955158710480,-0.689016401767731,-0.656514167785645,0.081026643514633,0.021210364997387,-0.996459841728210
,-0.029663991183043,-0.006286812946200,-0.999511718750000,-0.244575336575508,-0.007965330965817,-0.969573020935059
,0.208471938967705,0.070345163345337,-0.975463092327118,0.174352243542671,0.159337133169174,-0.971678793430328
,0.136051520705223,0.313669234514236,-0.939725935459137,0.359660625457764,-0.008911404758692,-0.933011889457703
,0.649281263351440,-0.106509596109390,-0.753044247627258,0.782738745212555,-0.185888245701790,-0.593890190124512
,0.284035772085190,0.139347508549690,-0.948606848716736,0.578173160552979,0.102542191743851,-0.809411883354187
,0.716086328029633,-0.046205021440983,-0.696462929248810,0.283761113882065,0.306131154298782,-0.908688604831696
,0.489150673151016,0.250740081071854,-0.835352659225464,0.643787980079651,0.139103367924690,-0.752433836460114
,0.619006931781769,-0.288613557815552,-0.730399489402771,0.594561576843262,-0.569200694561005,-0.567888438701630
,0.572161018848419,-0.617450475692749,-0.539750337600708,0.753715634346008,-0.309610277414322,-0.579699099063873
,0.714438319206238,-0.494949191808701,-0.494521915912628,0.676656365394592,-0.554582357406616,-0.484267711639404
,0.691213726997375,-0.279793679714203,-0.666219055652618,0.552354514598846,-0.485854685306549,-0.677327811717987
,0.490066230297089,-0.595538198947906,-0.636463522911072,0.079531237483025,-0.219641715288162,-0.972319722175598
,-0.035218358039856,-0.181646168231964,-0.982726514339447,-0.269661545753479,-0.197271645069122,-0.942503154277802
,0.088412120938301,-0.597613453865051,-0.796868801116943,-0.070070497691631,-0.588518917560577,-0.805413961410522
,-0.294808804988861,-0.599810779094696,-0.743797123432159,0.125400558114052,-0.685384690761566,-0.717276513576508
,-0.074251532554626,-0.663411378860474,-0.744529545307159,-0.333201080560684,-0.668172240257263,-0.665181457996368
,0.154698327183723,0.025879696011543,-0.987609505653381,0.188726454973221,0.197759941220284,-0.961882352828979
,0.082247383892536,0.385418266057968,-0.919064939022064,0.002838221378624,-0.057802058756351,-0.998321473598480
,0.067873165011406,0.169591352343559,-0.983153760433197,0.076601460576057,0.484359264373779,-0.871486544609070
,-0.246040225028992,-0.073244422674179,-0.966460168361664,-0.240363776683807,0.119602039456367,-0.963255703449249
,-0.182988986372948,0.486312448978424,-0.854365646839142,-0.279976814985275,-0.165288239717484,0.945646524429321
,-0.317209392786026,0.004882961511612,0.948332190513611,-0.197088539600372,0.131717890501022,0.971465170383453
,-0.025513473898172,0.259346306324005,0.965422511100769,-0.354228347539902,-0.051789909601212,0.933713793754578
,-0.366863012313843,0.076693013310432,0.927091300487518,-0.434095263481140,0.128727078437805,0.891598224639893
,-0.237525552511215,-0.231788083910942,0.943296611309052,-0.264320820569992,-0.135166481137276,0.954893648624420
,-0.292550444602966,-0.304086416959763,0.906582832336426,-0.195318460464478,-0.256660670042038,0.946531593799591
,-0.118716999888420,-0.275643169879913,0.953886508941650,0.229560226202011,-0.151615947484970,0.961394071578979
,-0.237098306417465,0.029602954164147,0.971007406711578,-0.100772120058537,0.358684033155441,0.927976310253143
,0.115359961986542,0.404339730739594,0.907284796237946,-0.018158514052629,0.113376259803772,0.993377506732941
,0.119602039456367,0.526261150836945,0.841853082180023,0.218359932303429,0.523483991622925,0.823541998863220
,0.411328464746475,0.262794882059097,0.872768342494965,0.465010523796082,0.582659363746643,0.666493713855743
,0.409436315298080,0.513595998287201,0.754020810127258,-0.392010241746902,-0.033906064927578,0.919309079647064
,-0.455732911825180,-0.016296884045005,0.889950275421143,-0.485579997301102,0.108249150216579,0.867427587509155
,-0.309915453195572,-0.050752282142639,0.949400305747986,-0.498428285121918,-0.115298926830292,0.859218120574951
,-0.634235680103302,-0.014282662421465,0.772972822189331,-0.275246441364288,0.207770019769669,0.938627302646637
,-0.545579373836517,0.202948093414307,0.813074111938477,-0.737113535404205,0.194219797849655,0.647206008434296
,-0.303811758756638,-0.263679921627045,0.915494263172150,-0.433362841606140,-0.250770598649979,0.865596473217010
,-0.552781760692596,-0.301797538995743,0.776726603507996,-0.294198423624039,-0.275368511676788,0.915189087390900
,-0.331278413534164,-0.427594840526581,0.841059625148773,-0.446333199739456,-0.366374701261520,0.816400647163391
,-0.414441347122192,-0.254585415124893,0.873714387416840,-0.323282569646835,-0.468123406171799,0.822382271289825
,-0.274269849061966,-0.411938846111298,0.868923008441925,-0.104739524424076,-0.263100057840347,0.959044158458710
,-0.111941888928413,-0.329783022403717,0.937376022338867,0.046998504549265,-0.362804055213928,0.930661916732788
,-0.063570052385330,-0.125370040535927,0.990050971508026,-0.042542800307274,-0.159581288695335,0.986266672611237
,0.019440289586782,-0.237098306417465,0.971282064914703,-0.097964413464069,-0.238410592079163,0.966185510158539
,0.005005035549402,-0.183324679732323,0.983031690120697,0.087008267641068,-0.193182170391083,0.977263689041138
,0.977111101150513,0.067690052092075,0.201513722538948,0.994537174701691,-0.004455702379346,0.104159675538540
,0.999633789062500,0.011993774212897,0.023194067180157,0.922360897064209,0.384838402271271,-0.033478803932667
,0.939329206943512,0.073671683669090,0.334971159696579,0.923886835575104,0.068758204579353,0.376415282487869
,0.864131569862366,0.063142798841000,0.499282807111740,0.984710216522217,-0.055787835270166,0.164983063936234
,0.957762360572815,-0.287392795085907,-0.007599108852446,0.824915289878845,-0.544969022274017,-0.149967953562737
,0.990081489086151,0.028229620307684,-0.137455374002457,0.892727434635162,-0.035065766423941,-0.449201941490173
,0.792535185813904,-0.066927090287209,-0.606097579002380,0.976744890213013,-0.024567399173975,-0.212866604328156
,0.965971887111664,-0.063417464494705,-0.250648528337479,0.911404788494110,0.320780038833618,-0.257698297500610
,0.902859568595886,-0.069551683962345,-0.424176752567291,0.915524780750275,-0.144260987639427,-0.375469207763672
,0.881435573101044,0.249366745352745,-0.401074260473251,0.811883926391602,-0.194830164313316,-0.550309777259827
,0.840571284294128,-0.213507488369942,-0.497787415981293,0.808221697807312,0.175298318266869,-0.562120437622070
,0.929502248764038,0.040925320237875,0.366496771574020,0.855159163475037,0.176580101251602,0.487319558858871
,0.796166896820068,0.317453533411026,0.515060901641846,0.918149352073669,0.065309613943100,0.390728473663330
,0.724906146526337,0.158848837018013,0.670247495174408,0.637714743614197,0.351603746414185,0.685293138027191
,0.867488622665405,0.370220035314560,0.332193970680237,0.680227041244507,0.249946594238281,0.689046919345856
,0.499771118164062,0.180822163820267,0.847041249275208,0.932157337665558,0.025788139551878,0.361033976078033
,0.911038517951965,-0.177007347345352,0.372295290231705,0.812982559204102,-0.490035712718964,0.314493238925934
,0.880764186382294,-0.012359996326268,0.473342090845108,0.779198586940765,-0.145054474473000,0.609729290008545
,0.656758308410645,-0.380565822124481,0.650990307331085,0.778862893581390,-0.124637588858604,0.614642798900604
,0.602343797683716,-0.199102759361267,0.772972822189331,0.449598670005798,-0.282631903886795,0.847315907478333
,0.958037018775940,-0.214697718620300,-0.189855650067329,0.864162087440491,-0.277565836906433,-0.419660031795502
,0.822473824024200,-0.205633714795113,-0.530289649963379,0.848414540290833,-0.404278695583344,-0.341593682765961
,0.816522717475891,-0.441022992134094,-0.372478395700455,0.834437072277069,-0.390758991241455,-0.388531148433685
,0.728659927845001,-0.528092265129089,-0.436048448085785,0.747215211391449,-0.552018821239471,-0.370036929845810
,0.728476822376251,-0.596911549568176,-0.336100339889526,0.253456234931946,-0.966917932033539,-0.027802363038063
,0.336832791566849,-0.925412774085999,-0.173558756709099,0.410290837287903,-0.873226106166840,-0.262886434793472
,0.571398079395294,-0.769371628761292,-0.285561680793762,0.087374493479729,-0.979918837547302,0.179143652319908
,-0.116306036710739,-0.891567707061768,0.437635421752930,-0.261574149131775,-0.733359754085541,0.627460539340973
,-0.200720235705376,-0.977996170520782,0.056367687880993,-0.340739160776138,-0.937040328979492,-0.076387830078602
,-0.352671891450882,-0.866023719310760,-0.354380935430527,0.332590728998184,-0.924649775028229,-0.185308396816254
,0.353740036487579,-0.849940478801727,-0.390423297882080,0.334940642118454,-0.749046325683594,-0.571581184864044
,0.446241647005081,-0.864131569862366,-0.232551038265228,0.431623280048370,-0.841975152492523,-0.323618263006210
,0.583697021007538,-0.729697585105896,-0.356120496988297,0.526902079582214,-0.794305264949799,-0.302316367626190
,0.497543245553970,-0.777611613273621,-0.384319603443146,0.565965771675110,-0.720755636692047,-0.400189220905304
,0.573076546192169,-0.691610455513000,-0.439527571201324,0.590929925441742,-0.660267949104309,-0.463454097509384
,0.538987398147583,-0.659169256687164,-0.524369001388550,0.207678452134132,-0.978026688098907,0.017456587404013
,0.027985472232103,-0.936246812343597,0.350169390439987,-0.109439373016357,-0.762138724327087,0.638050496578217
,0.342112481594086,-0.939634382724762,0.001312295906246,0.231452375650406,-0.898525953292847,0.372844636440277
,0.122043520212173,-0.710043668746948,0.693472087383270,0.525406658649445,-0.849330127239227,0.050325021147728
,0.418866544961929,-0.793481230735779,0.441450238227844,0.289651185274124,-0.604693770408630,0.741904973983765
,-0.320627450942993,-0.892086565494537,0.318338572978973,-0.365092933177948,-0.883602380752563,0.293069243431091
,-0.375957518815994,-0.919705808162689,0.112979523837566,-0.427564322948456,-0.754417538642883,0.497970521450043
,-0.383953362703323,-0.759361565113068,0.525284588336945,-0.319315165281296,-0.814752638339996,0.483901500701904
,-0.491225928068161,-0.633136987686157,0.598162770271301,-0.416638702154160,-0.641041278839111,0.644550919532776
,-0.265541553497314,-0.673085749149323,0.690206587314606,-0.092928864061832,-0.960997343063354,-0.260444968938828
,-0.021637622267008,-0.848414540290833,-0.528824746608734,0.028168585151434,-0.778191447257996,-0.627338469028473
,-0.311014115810394,-0.847407460212708,-0.430249959230423,-0.310617387294769,-0.783043920993805,-0.538834810256958
,-0.241737112402916,-0.840113520622253,-0.485488444566727,-0.323068946599960,-0.723715960979462,-0.609759807586670
,-0.439802229404449,-0.775963604450226,-0.452101200819016,-0.486159861087799,-0.800775170326233,-0.349803149700165
,-0.990478217601776,-0.130771815776825,0.042451247572899,-0.983764171600342,-0.015869624912739,-0.178655356168747
,-0.917569518089294,-0.244880527257919,-0.313119918107986,-0.721640646457672,-0.559007525444031,-0.408276617527008
,-0.986632883548737,0.041810356080532,0.157353430986404,-0.964781641960144,0.179021582007408,0.192602306604385
,-0.892971575260162,0.166142761707306,0.418317198753357,-0.966277062892914,-0.162419512867928,0.199774160981178
,-0.946501076221466,0.168248549103737,0.275337994098663,-0.813409805297852,0.497909486293793,0.300668358802795
,-0.964903712272644,-0.240028083324432,-0.106295965611935,-0.933164477348328,-0.245551928877831,-0.262367635965347
,-0.828272342681885,-0.155034035444260,-0.538438081741333,-0.942808330059052,-0.168279066681862,-0.287667483091354
,-0.805749714374542,-0.289498567581177,-0.516647875308990,-0.561601638793945,-0.561601638793945,-0.607592999935150
,-0.923703730106354,-0.284463018178940,-0.256538599729538,-0.766472339630127,-0.435560166835785,-0.471968740224838
,-0.544694364070892,-0.557756304740906,-0.626239836215973,-0.868129491806030,-0.289834290742874,-0.402905374765396
,-0.764427602291107,-0.550462365150452,-0.335581541061401,-0.667073607444763,-0.603686630725861,-0.436506241559982
,-0.998474061489105,0.052949614822865,0.014587847515941,-0.973418354988098,-0.005767998285592,0.228888824582100
,-0.853205978870392,-0.130283519625664,0.505020320415497,-0.975524127483368,-0.219702750444412,-0.007507553324103
,-0.914578676223755,-0.230567336082458,0.332132935523987,-0.744926273822784,-0.304116934537888,0.593768119812012
,-0.850245654582977,-0.524307966232300,-0.046205021440983,-0.809167742729187,-0.448927283287048,0.379009366035461
,-0.651326000690460,-0.378551602363586,0.657582342624664,-0.922025203704834,-0.062074646353722,0.382061213254929
,-0.874721527099609,0.116122931241989,0.470473349094391,-0.830103456974030,0.403027445077896,0.385326713323593
,-0.948087990283966,0.097720265388489,0.302560508251190,-0.920255124568939,0.114352852106094,0.374156922101974
,-0.861323893070221,0.345133811235428,0.372722566127777,-0.886257529258728,0.201116979122162,0.417218536138535
,-0.831324219703674,0.163762316107750,0.531083106994629,-0.736503183841705,0.270851761102676,0.619800388813019
,-0.984282970428467,-0.141483813524246,-0.105502486228943,-0.931913197040558,-0.072969757020473,-0.355204939842224
,-0.775688946247101,-0.044709615409374,-0.629505276679993,-0.961424589157104,0.215643793344498,-0.170720547437668
,-0.882076501846313,0.244849994778633,-0.402417063713074,-0.772057235240936,0.220343634486198,-0.596118032932281
,-0.810907304286957,0.564867079257965,-0.152714625000954,-0.745109379291534,0.535111546516418,-0.398022413253784
,-0.702322483062744,0.505386531352997,-0.501266539096832,-0.041749320924282,0.999053955078125,-0.010284737683833
,0.189519941806793,0.973387837409973,0.128635510802269,0.320322275161743,0.920255124568939,0.224646747112274
,0.512222647666931,0.843897819519043,0.159428685903549,-0.130832850933075,0.977752029895782,-0.163884401321411
,-0.133518472313881,0.837305843830109,-0.530167520046234,-0.024201177060604,0.681814014911652,-0.731101393699646
,-0.309121996164322,0.949583411216736,-0.052034057676792,-0.451246678829193,0.892330706119537,0.009887997061014
,-0.559312701225281,0.821039438247681,0.114108704030514,-0.023224584758282,0.996642947196960,0.078279979526997
,-0.069612719118595,0.925412774085999,0.372417360544205,-0.068056277930737,0.694021403789520,0.716696679592133
,0.312448501586914,0.942442119121552,0.118930630385876,0.362956643104553,0.903317332267761,0.228553116321564
,0.389110982418060,0.888943135738373,0.241492971777916,0.342387169599533,0.867458105087280,0.360881388187408
,0.396160781383514,0.846736073493958,0.354991316795349,0.353679001331329,0.842677056789398,0.405896186828613
,0.282174140214920,0.626056730747223,0.726889848709106,0.322519600391388,0.609057903289795,0.724539935588837
,0.289864808320999,0.582262635231018,0.759514153003693,0.117770925164223,0.991332769393921,-0.057863093912601
,0.116214483976364,0.849604785442352,-0.514419972896576,0.138279363512993,0.589312434196472,-0.795953273773193
,0.389019429683685,0.920499265193939,-0.035676136612892,0.452436894178391,0.769432663917542,-0.450788915157318
,0.429822683334351,0.494674533605576,-0.755302608013153,0.657795965671539,0.745048344135284,-0.110354930162430
,0.714743494987488,0.573473334312439,-0.400311291217804,0.677785575389862,0.365642249584198,-0.637867391109467
,-0.272011488676071,0.935178697109222,-0.226691484451294,-0.360209971666336,0.914731264114380,-0.182958468794823
,-0.485366374254227,0.866267919540405,-0.118167668581009,-0.212286755442619,0.846522390842438,-0.488113045692444
,-0.262550741434097,0.859370708465576,-0.438734084367752,-0.391644030809402,0.834955871105194,-0.386547446250916
,-0.133243814110756,0.742912054061890,-0.655964851379395,-0.172521129250526,0.779381692409515,-0.602282762527466
,-0.277626872062683,0.809259295463562,-0.517685472965240,-0.372234255075455,0.920529782772064,0.118503369390965
,-0.450239568948746,0.820947885513306,0.351084947586060,-0.452375859022141,0.665395081043243,0.593737602233887
,-0.501785337924957,0.851283311843872,0.153172403573990,-0.542222380638123,0.742545843124390,0.393139451742172
,-0.583574950695038,0.611651957035065,0.534134924411774,-0.622882783412933,0.761589407920837,0.178838461637497
,-0.638172566890717,0.651142895221710,0.410687595605850,-0.637714743614197,0.513565480709076,0.574053168296814
,0.515579700469971,-0.613208413124084,-0.598406910896301,0.655079782009125,-0.559984147548676,-0.507156610488892
,0.579515993595123,-0.607074201107025,-0.543687224388123,0.321604043245316,-0.680684804916382,-0.658162176609039
,0.110873743891716,-0.727256059646606,-0.677297294139862,-0.082064270973206,-0.733787059783936,-0.674367487430573
,-0.376537382602692,-0.654194772243500,-0.655873298645020,0.677571952342987,0.108554340898991,-0.727378129959106
,0.731955945491791,-0.196081429719925,-0.652485728263855,0.774742901325226,-0.254371762275696,-0.578783512115479
,0.767967760562897,-0.124240852892399,-0.628284573554993,0.726035356521606,-0.175389871001244,-0.664876222610474
,0.631824672222137,-0.416058838367462,-0.653950631618500,0.489150673151016,-0.628284573554993,-0.604907393455505
,0.624652862548828,0.249244660139084,-0.740012824535370,0.417981505393982,0.327982425689697,-0.847163319587708
,0.228675186634064,0.444990396499634,-0.865810096263885,0.085085600614548,0.540024995803833,-0.837305843830109
,-0.054109316319227,0.586199522018433,-0.808313250541687,-0.039185766130686,0.663014590740204,-0.747550904750824
,-0.167699202895164,0.718070030212402,-0.675435662269592,-0.606769025325775,-0.660725712776184,-0.441846966743469
,-0.601519823074341,-0.595049917697906,-0.532944738864899,-0.632374048233032,-0.245185703039169,-0.734794139862061
,-0.570451974868774,-0.049836724996567,-0.819788217544556,-0.521652877330780,-0.048768579959869,-0.851741075515747
,-0.539445161819458,0.137577444314957,-0.830683290958405,-0.505294978618622,0.468855857849121,-0.724417865276337
,0.514542043209076,0.358226269483566,0.779015481472015,0.632251977920532,0.509598076343536,0.583544433116913
,0.705679476261139,0.355235457420349,0.612994790077209,0.668691039085388,0.000915555283427,0.743522465229034
,0.499343842267990,-0.273110151290894,0.822199165821075,0.311044633388519,-0.269722580909729,0.911282718181610
,0.219946891069412,-0.227851197123528,0.948515295982361,0.173833429813385,-0.374004334211349,0.910977482795715
,0.037781916558743,-0.417767882347107,0.907742559909821,-0.146519362926483,-0.498001039028168,0.854701399803162
,-0.306100636720657,-0.556199848651886,0.772576093673706,-0.538224458694458,-0.506698787212372,0.673421442508698
,-0.466414391994476,-0.483260601758957,0.740867316722870,-0.257515192031860,-0.494125187397003,0.830347597599030
,-0.459181487560272,-0.381817072629929,0.802087485790253,-0.538438081741333,-0.398541212081909,0.742423772811890
,-0.643421709537506,-0.218390449881554,0.733664989471436,-0.666554749011993,0.124912261962891,0.734885692596436
,-0.639667987823486,0.207892090082169,0.739982306957245,-0.664662599563599,0.150944545865059,0.731711804866791
,-0.710562467575073,0.217169716954231,0.669240415096283,0.283028662204742,0.338694423437119,0.897274672985077
,0.248176515102386,0.373454988002777,0.893795609474182,0.218909263610840,0.365825384855270,0.904538094997406
,-0.009216589853168,0.412854403257370,0.910733342170715,-0.359355449676514,0.472731709480286,0.804559469223022
,-0.583941161632538,0.493240147829056,0.644734025001526,-0.704886019229889,0.429120749235153,0.564745008945465
,0.587176144123077,-0.677785575389862,-0.442426830530167,0.645100235939026,-0.667928099632263,-0.370983004570007
,0.612445473670959,-0.677144706249237,-0.407818853855133,0.619434177875519,-0.745780825614929,-0.245094150304794
,0.612140238285065,-0.769524216651917,0.181829273700714,0.498397767543793,-0.659688115119934,0.562456130981445
,0.328379154205322,-0.491317480802536,0.806665241718292,0.730613112449646,0.366985082626343,-0.575762212276459
,0.779351174831390,0.482650220394135,-0.399517804384232,0.768669724464417,0.604358017444611,-0.209326460957527
,0.687215805053711,0.726401567459106,0.005767998285592,0.597430348396301,0.767662584781647,0.231849119067192
,0.514847278594971,0.649739086627960,0.559221148490906,0.385448783636093,0.384685814380646,0.838679134845734
,-0.651966929435730,-0.624011933803558,-0.430707722902298,-0.490737617015839,-0.714133143424988,-0.499130219221115
,-0.344248771667480,-0.684377551078796,-0.642719805240631,-0.498702973127365,-0.724387347698212,-0.475936144590378
,-0.643482744693756,-0.764671802520752,-0.034699544310570,-0.600756883621216,-0.686819076538086,0.409009069204330
,-0.479598373174667,-0.558000445365906,0.677175223827362,-0.515518665313721,0.726218461990356,-0.454725801944733
,-0.558854937553406,0.744193851947784,-0.365794867277145,-0.623828828334808,0.773888349533081,-0.109042637050152
,-0.678701102733612,0.695425271987915,0.235969111323357,-0.749076843261719,0.607745587825775,0.263588368892670
,-0.759422600269318,0.526963114738464,0.381481379270554,-0.682607471942902,0.384807884693146,0.621204257011414
,0.659443974494934,0.284371465444565,-0.695852518081665,0.430402547121048,-0.690145552158356,-0.581713318824768
,-0.625232696533203,-0.560563981533051,-0.542954802513123,-0.414624482393265,0.676412224769592,-0.608691692352295
,0.348216205835342,0.224341556429863,0.910153508186340,0.192754909396172,-0.365031898021698,0.910794377326965
,-0.381908625364304,-0.454603731632233,0.804620504379272,-0.725669145584106,0.316843152046204,0.610705912113190
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0
}
LayerElementUV: 0 {
Version: 101
Name: "UVTex"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.248836,0.452488,0.283137,0.453172,0.279813,0.520899,0.245931,0.522202,0.245931,0.522202,0.279813,0.520899,0.276690,0.590139
,0.242719,0.599058,0.242719,0.599058,0.276690,0.590139,0.273506,0.665436,0.239973,0.674499,0.239973,0.674499,0.273506,0.665436
,0.269553,0.735932,0.236371,0.746582,0.283137,0.453172,0.313629,0.455665,0.310818,0.520351,0.279813,0.520899,0.279813,0.520899
,0.310818,0.520351,0.307155,0.585672,0.276690,0.590139,0.276690,0.590139,0.307155,0.585672,0.303718,0.654501,0.273506,0.665436
,0.273506,0.665436,0.303718,0.654501,0.302500,0.718006,0.269553,0.735932,0.313629,0.455665,0.341142,0.460648,0.338899,0.521473
,0.310818,0.520351,0.310818,0.520351,0.338899,0.521473,0.334747,0.583706,0.307155,0.585672,0.307155,0.585672,0.334747,0.583706
,0.329996,0.644300,0.303718,0.654501,0.303718,0.654501,0.329996,0.644300,0.328618,0.700831,0.302500,0.718006,0.341142,0.460648
,0.366276,0.466722,0.364003,0.526868,0.338899,0.521473,0.338899,0.521473,0.364003,0.526868,0.359333,0.588004,0.334747,0.583706
,0.334747,0.583706,0.359333,0.588004,0.352205,0.644189,0.329996,0.644300,0.329996,0.644300,0.352205,0.644189,0.345765,0.686260
,0.328618,0.700831,0.248836,0.452488,0.245931,0.522202,0.210807,0.518935,0.214198,0.452061,0.214198,0.452061,0.210807,0.518935
,0.175406,0.522532,0.179161,0.452969,0.179161,0.452969,0.175406,0.522532,0.137296,0.527979,0.141069,0.455336,0.141069,0.455336
,0.137296,0.527979,0.101961,0.533501,0.105878,0.459503,0.245931,0.522202,0.242719,0.599058,0.207162,0.601703,0.210807,0.518935
,0.210807,0.518935,0.207162,0.601703,0.170941,0.602167,0.175406,0.522532,0.175406,0.522532,0.170941,0.602167,0.134992,0.604014
,0.137296,0.527979,0.137296,0.527979,0.134992,0.604014,0.101605,0.609702,0.101961,0.533501,0.242719,0.599058,0.239973,0.674499
,0.204417,0.678063,0.207162,0.601703,0.207162,0.601703,0.204417,0.678063,0.168522,0.675494,0.170941,0.602167,0.170941,0.602167
,0.168522,0.675494,0.135295,0.671276,0.134992,0.604014,0.134992,0.604014,0.135295,0.671276,0.105953,0.674424,0.101605,0.609702
,0.239973,0.674499,0.236371,0.746582,0.199538,0.748351,0.204417,0.678063,0.204417,0.678063,0.199538,0.748351,0.165095,0.744527
,0.168522,0.675494,0.168522,0.675494,0.165095,0.744527,0.134691,0.734127,0.135295,0.671276,0.135295,0.671276,0.134691,0.734127
,0.111962,0.720758,0.105953,0.674424,0.248836,0.452488,0.214198,0.452061,0.218335,0.387004,0.252562,0.386569,0.252562,0.386569
,0.218335,0.387004,0.222458,0.326236,0.255024,0.325872,0.255024,0.325872,0.222458,0.326236,0.225896,0.272048,0.256440,0.271127
,0.256440,0.271127,0.225896,0.272048,0.227922,0.223735,0.257597,0.221616,0.214198,0.452061,0.179161,0.452969,0.184308,0.387160
,0.218335,0.387004,0.218335,0.387004,0.184308,0.387160,0.190562,0.326717,0.222458,0.326236,0.222458,0.326236,0.190562,0.326717
,0.196422,0.273839,0.225896,0.272048,0.225896,0.272048,0.196422,0.273839,0.198641,0.226702,0.227922,0.223735,0.179161,0.452969
,0.141069,0.455336,0.147792,0.387234,0.184308,0.387160,0.184308,0.387160,0.147792,0.387234,0.156046,0.325627,0.190562,0.326717
,0.190562,0.326717,0.156046,0.325627,0.163643,0.272174,0.196422,0.273839,0.196422,0.273839,0.163643,0.272174,0.167242,0.229655
,0.198641,0.226702,0.141069,0.455336,0.105878,0.459503,0.113431,0.389424,0.147792,0.387234,0.147792,0.387234,0.113431,0.389424
,0.125388,0.328509,0.156046,0.325627,0.156046,0.325627,0.125388,0.328509,0.136690,0.278531,0.163643,0.272174,0.163643,0.272174
,0.136690,0.278531,0.145721,0.242242,0.167242,0.229655,0.248836,0.452488,0.252562,0.386569,0.284121,0.390079,0.283137,0.453172
,0.283137,0.453172,0.284121,0.390079,0.313413,0.395069,0.313629,0.455665,0.313629,0.455665,0.313413,0.395069,0.340674,0.402101
,0.341142,0.460648,0.341142,0.460648,0.340674,0.402101,0.365866,0.408049,0.366276,0.466722,0.252562,0.386569,0.255024,0.325872
,0.284530,0.331404,0.284121,0.390079,0.284121,0.390079,0.284530,0.331404,0.312311,0.338044,0.313413,0.395069,0.313413,0.395069
,0.312311,0.338044,0.338010,0.345763,0.340674,0.402101,0.340674,0.402101,0.338010,0.345763,0.363117,0.352349,0.365866,0.408049
,0.255024,0.325872,0.256440,0.271127,0.285115,0.277695,0.284530,0.331404,0.284530,0.331404,0.285115,0.277695,0.312236,0.287278
,0.312311,0.338044,0.312311,0.338044,0.312236,0.287278,0.335699,0.296501,0.338010,0.345763,0.338010,0.345763,0.335699,0.296501
,0.358262,0.301113,0.363117,0.352349,0.256440,0.271127,0.257597,0.221616,0.286775,0.228216,0.285115,0.277695,0.285115,0.277695
,0.286775,0.228216,0.314136,0.240341,0.312236,0.287278,0.312236,0.287278,0.314136,0.240341,0.337272,0.253414,0.335699,0.296501
,0.335699,0.296501,0.337272,0.253414,0.354373,0.266032,0.358262,0.301113,0.739568,0.400766,0.744570,0.338659,0.775652,0.352010
,0.771488,0.414286,0.771488,0.414286,0.775652,0.352010,0.804999,0.366443,0.802107,0.426551,0.802107,0.426551,0.804999,0.366443
,0.833423,0.383012,0.830219,0.441868,0.830219,0.441868,0.833423,0.383012,0.860550,0.400022,0.857293,0.458616,0.744570,0.338659
,0.750380,0.280415,0.779569,0.293979,0.775652,0.352010,0.775652,0.352010,0.779569,0.293979,0.806809,0.310459,0.804999,0.366443
,0.804999,0.366443,0.806809,0.310459,0.836233,0.327569,0.833423,0.383012,0.833423,0.383012,0.836233,0.327569,0.862054,0.342660
,0.860550,0.400022,0.750380,0.280415,0.756428,0.227940,0.782882,0.243216,0.779569,0.293979,0.779569,0.293979,0.782882,0.243216
,0.810249,0.259235,0.806809,0.310459,0.806809,0.310459,0.810249,0.259235,0.838109,0.276668,0.836233,0.327569,0.836233,0.327569
,0.838109,0.276668,0.862323,0.290907,0.862054,0.342660,0.756428,0.227940,0.759710,0.180483,0.788672,0.192031,0.782882,0.243216
,0.782882,0.243216,0.788672,0.192031,0.817888,0.209049,0.810249,0.259235,0.810249,0.259235,0.817888,0.209049,0.842154,0.232542
,0.838109,0.276668,0.838109,0.276668,0.842154,0.232542,0.861195,0.253472,0.862323,0.290907,0.739568,0.400766,0.771488,0.414286
,0.766170,0.477198,0.734076,0.466225,0.734076,0.466225,0.766170,0.477198,0.760352,0.539978,0.728695,0.532253,0.728695,0.532253
,0.760352,0.539978,0.755142,0.601293,0.722340,0.597320,0.722340,0.597320,0.755142,0.601293,0.748818,0.665591,0.715737,0.661113
,0.771488,0.414286,0.802107,0.426551,0.796971,0.486711,0.766170,0.477198,0.766170,0.477198,0.796971,0.486711,0.791628,0.545846
,0.760352,0.539978,0.760352,0.539978,0.791628,0.545846,0.784061,0.605184,0.755142,0.601293,0.755142,0.601293,0.784061,0.605184
,0.779198,0.664293,0.748818,0.665591,0.802107,0.426551,0.830219,0.441868,0.825414,0.499504,0.796971,0.486711,0.796971,0.486711
,0.825414,0.499504,0.818217,0.553771,0.791628,0.545846,0.791628,0.545846,0.818217,0.553771,0.810301,0.606603,0.784061,0.605184
,0.784061,0.605184,0.810301,0.606603,0.804581,0.660270,0.779198,0.664293,0.830219,0.441868,0.857293,0.458616,0.850902,0.514394
,0.825414,0.499504,0.825414,0.499504,0.850902,0.514394,0.841751,0.568425,0.818217,0.553771,0.818217,0.553771,0.841751,0.568425
,0.831389,0.618618,0.810301,0.606603,0.810301,0.606603,0.831389,0.618618,0.822164,0.655854,0.804581,0.660270,0.739568,0.400766
,0.734076,0.466225,0.700599,0.453836,0.705657,0.387947,0.705657,0.387947,0.700599,0.453836,0.667182,0.440847,0.671905,0.375010
,0.671905,0.375010,0.667182,0.440847,0.633991,0.426707,0.639406,0.363819,0.639406,0.363819,0.633991,0.426707,0.603912,0.421893
,0.609816,0.356981,0.734076,0.466225,0.728695,0.532253,0.696055,0.522126,0.700599,0.453836,0.700599,0.453836,0.696055,0.522126
,0.662955,0.505446,0.667182,0.440847,0.667182,0.440847,0.662955,0.505446,0.632457,0.494616,0.633991,0.426707,0.633991,0.426707
,0.632457,0.494616,0.602550,0.491636,0.603912,0.421893,0.728695,0.532253,0.722340,0.597320,0.690537,0.588139,0.696055,0.522126
,0.696055,0.522126,0.690537,0.588139,0.659423,0.572238,0.662955,0.505446,0.662955,0.505446,0.659423,0.572238,0.630793,0.557930
,0.632457,0.494616,0.632457,0.494616,0.630793,0.557930,0.603822,0.555840,0.602550,0.491636,0.722340,0.597320,0.715737,0.661113
,0.684101,0.651167,0.690537,0.588139,0.690537,0.588139,0.684101,0.651167,0.653262,0.634468,0.659423,0.572238,0.659423,0.572238
,0.653262,0.634468,0.626058,0.616387,0.630793,0.557930,0.630793,0.557930,0.626058,0.616387,0.606944,0.600939,0.603822,0.555840
,0.739568,0.400766,0.705657,0.387947,0.711884,0.326207,0.744570,0.338659,0.744570,0.338659,0.711884,0.326207,0.717881,0.270394
,0.750380,0.280415,0.750380,0.280415,0.717881,0.270394,0.726060,0.217336,0.756428,0.227940,0.756428,0.227940,0.726060,0.217336
,0.730715,0.171632,0.759710,0.180483,0.705657,0.387947,0.671905,0.375010,0.679884,0.314862,0.711884,0.326207,0.711884,0.326207
,0.679884,0.314862,0.688398,0.260029,0.717881,0.270394,0.717881,0.270394,0.688398,0.260029,0.695633,0.211267,0.726060,0.217336
,0.726060,0.217336,0.695633,0.211267,0.700304,0.168780,0.730715,0.171632,0.671905,0.375010,0.639406,0.363819,0.648842,0.305414
,0.679884,0.314862,0.679884,0.314862,0.648842,0.305414,0.658426,0.252756,0.688398,0.260029,0.688398,0.260029,0.658426,0.252756
,0.668228,0.208348,0.695633,0.211267,0.695633,0.211267,0.668228,0.208348,0.673845,0.171618,0.700304,0.168780,0.639406,0.363819
,0.609816,0.356981,0.619979,0.297527,0.648842,0.305414,0.648842,0.305414,0.619979,0.297527,0.631957,0.246251,0.658426,0.252756
,0.658426,0.252756,0.631957,0.246251,0.645000,0.204192,0.668228,0.208348,0.668228,0.208348,0.645000,0.204192,0.655475,0.177648
,0.673845,0.171618,0.211248,0.994639,0.218238,0.934498,0.263536,0.921854,0.259687,0.982278,0.259687,0.982278,0.263536,0.921854
,0.308953,0.897764,0.311627,0.963082,0.311627,0.963082,0.308953,0.897764,0.351094,0.859611,0.361407,0.926951,0.361407,0.926951
,0.351094,0.859611,0.385234,0.805608,0.402546,0.866582,0.218238,0.934498,0.224778,0.874190,0.265401,0.860101,0.263536,0.921854
,0.263536,0.921854,0.265401,0.860101,0.305963,0.836723,0.308953,0.897764,0.308953,0.897764,0.305963,0.836723,0.341627,0.802069
,0.351094,0.859611,0.351094,0.859611,0.341627,0.802069,0.369610,0.755278,0.385234,0.805608,0.224778,0.874190,0.230519,0.811682
,0.267095,0.799114,0.265401,0.860101,0.265401,0.860101,0.267095,0.799114,0.303804,0.777842,0.305963,0.836723,0.305963,0.836723
,0.303804,0.777842,0.333335,0.751311,0.341627,0.802069,0.341627,0.802069,0.333335,0.751311,0.355903,0.714350,0.369610,0.755278
,0.230519,0.811682,0.236371,0.746582,0.269553,0.735932,0.267095,0.799114,0.267095,0.799114,0.269553,0.735932,0.302500,0.718006
,0.303804,0.777842,0.303804,0.777842,0.302500,0.718006,0.328618,0.700831,0.333335,0.751311,0.333335,0.751311,0.328618,0.700831
,0.345765,0.686260,0.355903,0.714350,0.784711,0.001145,0.831973,0.009484,0.818879,0.059282,0.776330,0.049867,0.776330,0.049867
,0.818879,0.059282,0.806394,0.103686,0.769565,0.091454,0.769565,0.091454,0.806394,0.103686,0.795849,0.147562,0.764500,0.133135
,0.764500,0.133135,0.795849,0.147562,0.788672,0.192031,0.759710,0.180483,0.831973,0.009484,0.883232,0.032785,0.862389,0.082996
,0.818879,0.059282,0.818879,0.059282,0.862389,0.082996,0.843280,0.127274,0.806394,0.103686,0.806394,0.103686,0.843280,0.127274
,0.827918,0.167927,0.795849,0.147562,0.795849,0.147562,0.827918,0.167927,0.817888,0.209049,0.788672,0.192031,0.883232,0.032785
,0.930481,0.083365,0.903067,0.127210,0.862389,0.082996,0.862389,0.082996,0.903067,0.127210,0.879137,0.163528,0.843280,0.127274
,0.843280,0.127274,0.879137,0.163528,0.857087,0.197159,0.827918,0.167927,0.827918,0.167927,0.857087,0.197159,0.842154,0.232542
,0.817888,0.209049,0.930481,0.083365,0.964184,0.159477,0.931207,0.186914,0.903067,0.127210,0.903067,0.127210,0.931207,0.186914
,0.903786,0.212797,0.879137,0.163528,0.879137,0.163528,0.903786,0.212797,0.879546,0.236284,0.857087,0.197159,0.857087,0.197159
,0.879546,0.236284,0.861195,0.253472,0.842154,0.232542,0.784711,0.001145,0.776330,0.049867,0.734992,0.049645,0.737242,0.000000
,0.737242,0.000000,0.734992,0.049645,0.694861,0.061447,0.691700,0.016397,0.691700,0.016397,0.694861,0.061447,0.658851,0.084444
,0.649333,0.045180,0.649333,0.045180,0.658851,0.084444,0.627783,0.117516,0.614121,0.092292,0.776330,0.049867,0.769565,0.091454
,0.733694,0.089885,0.734992,0.049645,0.734992,0.049645,0.733694,0.089885,0.698436,0.098750,0.694861,0.061447,0.694861,0.061447
,0.698436,0.098750,0.666359,0.114587,0.658851,0.084444,0.658851,0.084444,0.666359,0.114587,0.638556,0.139758,0.627783,0.117516
,0.769565,0.091454,0.764500,0.133135,0.732497,0.129126,0.733694,0.089885,0.733694,0.089885,0.732497,0.129126,0.700729,0.132646
,0.698436,0.098750,0.698436,0.098750,0.700729,0.132646,0.672201,0.141772,0.666359,0.114587,0.666359,0.114587,0.672201,0.141772
,0.648002,0.160486,0.638556,0.139758,0.764500,0.133135,0.759710,0.180483,0.730715,0.171632,0.732497,0.129126,0.732497,0.129126
,0.730715,0.171632,0.700304,0.168780,0.700729,0.132646,0.700729,0.132646,0.700304,0.168780,0.673845,0.171618,0.672201,0.141772
,0.672201,0.141772,0.673845,0.171618,0.655475,0.177648,0.648002,0.160486,0.211248,0.994639,0.162326,0.988565,0.173469,0.933513
,0.218238,0.934498,0.218238,0.934498,0.173469,0.933513,0.183822,0.875081,0.224778,0.874190,0.224778,0.874190,0.183822,0.875081
,0.193152,0.813800,0.230519,0.811682,0.230519,0.811682,0.193152,0.813800,0.199538,0.748351,0.236371,0.746582,0.162326,0.988565
,0.115808,0.966268,0.129705,0.916631,0.173469,0.933513,0.173469,0.933513,0.129705,0.916631,0.143110,0.862524,0.183822,0.875081
,0.183822,0.875081,0.143110,0.862524,0.156309,0.804808,0.193152,0.813800,0.193152,0.813800,0.156309,0.804808,0.165095,0.744527
,0.199538,0.748351,0.115808,0.966268,0.073617,0.928073,0.090075,0.882292,0.129705,0.916631,0.129705,0.916631,0.090075,0.882292
,0.106782,0.834672,0.143110,0.862524,0.143110,0.862524,0.106782,0.834672,0.123576,0.785848,0.156309,0.804808,0.156309,0.804808
,0.123576,0.785848,0.134691,0.734127,0.165095,0.744527,0.073617,0.928073,0.042623,0.864955,0.059049,0.827400,0.090075,0.882292
,0.090075,0.882292,0.059049,0.827400,0.077184,0.789433,0.106782,0.834672,0.106782,0.834672,0.077184,0.789433,0.096375,0.751185
,0.123576,0.785848,0.123576,0.785848,0.096375,0.751185,0.111962,0.720758,0.134691,0.734127,0.000000,0.514598,0.022146,0.493696
,0.020380,0.590533,0.003418,0.615329,0.003418,0.615329,0.020380,0.590533,0.024393,0.678915,0.006921,0.707676,0.006921,0.707676
,0.024393,0.678915,0.037827,0.759144,0.022379,0.789922,0.022379,0.789922,0.037827,0.759144,0.059049,0.827400,0.042623,0.864955
,0.022146,0.493696,0.046866,0.477901,0.042480,0.565649,0.020380,0.590533,0.020380,0.590533,0.042480,0.565649,0.045792,0.650119
,0.024393,0.678915,0.024393,0.678915,0.045792,0.650119,0.057280,0.726281,0.037827,0.759144,0.037827,0.759144,0.057280,0.726281
,0.077184,0.789433,0.059049,0.827400,0.046866,0.477901,0.074593,0.466929,0.070266,0.545752,0.042480,0.565649,0.042480,0.565649
,0.070266,0.545752,0.071678,0.625686,0.045792,0.650119,0.045792,0.650119,0.071678,0.625686,0.079939,0.695246,0.057280,0.726281
,0.057280,0.726281,0.079939,0.695246,0.096375,0.751185,0.077184,0.789433,0.074593,0.466929,0.105878,0.459503,0.101961,0.533501
,0.070266,0.545752,0.070266,0.545752,0.101961,0.533501,0.101605,0.609702,0.071678,0.625686,0.071678,0.625686,0.101605,0.609702
,0.105953,0.674424,0.079939,0.695246,0.079939,0.695246,0.105953,0.674424,0.111962,0.720758,0.096375,0.751185,0.511942,0.369435
,0.531028,0.279581,0.550807,0.279509,0.534824,0.360739,0.534824,0.360739,0.550807,0.279509,0.571974,0.283175,0.557800,0.354822
,0.557800,0.354822,0.571974,0.283175,0.594971,0.289645,0.582625,0.353435,0.582625,0.353435,0.594971,0.289645,0.619979,0.297527
,0.609816,0.356981,0.531028,0.279581,0.556244,0.206674,0.574723,0.215039,0.550807,0.279509,0.550807,0.279509,0.574723,0.215039
,0.592020,0.225198,0.571974,0.283175,0.571974,0.283175,0.592020,0.225198,0.610527,0.236424,0.594971,0.289645,0.594971,0.289645
,0.610527,0.236424,0.631957,0.246251,0.619979,0.297527,0.556244,0.206674,0.583343,0.144775,0.599149,0.160302,0.574723,0.215039
,0.574723,0.215039,0.599149,0.160302,0.613376,0.176082,0.592020,0.225198,0.592020,0.225198,0.613376,0.176082,0.627547,0.192099
,0.610527,0.236424,0.610527,0.236424,0.627547,0.192099,0.645000,0.204192,0.631957,0.246251,0.583343,0.144775,0.614121,0.092292
,0.627783,0.117516,0.599149,0.160302,0.599149,0.160302,0.627783,0.117516,0.638556,0.139758,0.613376,0.176082,0.613376,0.176082
,0.638556,0.139758,0.648002,0.160486,0.627547,0.192099,0.627547,0.192099,0.648002,0.160486,0.655475,0.177648,0.645000,0.204192
,0.511942,0.369435,0.534824,0.360739,0.525114,0.447064,0.501233,0.465900,0.501233,0.465900,0.525114,0.447064,0.525124,0.538619
,0.503432,0.565680,0.503432,0.565680,0.525124,0.538619,0.534252,0.629360,0.510708,0.661649,0.510708,0.661649,0.534252,0.629360
,0.552663,0.703576,0.530145,0.747822,0.534824,0.360739,0.557800,0.354822,0.549553,0.432706,0.525114,0.447064,0.525114,0.447064
,0.549553,0.432706,0.549077,0.515234,0.525124,0.538619,0.525124,0.538619,0.549077,0.515234,0.556722,0.598894,0.534252,0.629360
,0.534252,0.629360,0.556722,0.598894,0.572988,0.664668,0.552663,0.703576,0.557800,0.354822,0.582625,0.353435,0.575672,0.424216
,0.549553,0.432706,0.549553,0.432706,0.575672,0.424216,0.574767,0.498644,0.549077,0.515234,0.549077,0.515234,0.574767,0.498644
,0.579422,0.571433,0.556722,0.598894,0.556722,0.598894,0.579422,0.571433,0.591859,0.628732,0.572988,0.664668,0.582625,0.353435
,0.609816,0.356981,0.603912,0.421893,0.575672,0.424216,0.575672,0.424216,0.603912,0.421893,0.602550,0.491636,0.574767,0.498644
,0.574767,0.498644,0.602550,0.491636,0.603822,0.555840,0.579422,0.571433,0.579422,0.571433,0.603822,0.555840,0.606944,0.600939
,0.591859,0.628732,0.000000,0.514598,0.006492,0.415436,0.031321,0.406147,0.022146,0.493696,0.022146,0.493696,0.031321,0.406147
,0.056017,0.399393,0.046866,0.477901,0.046866,0.477901,0.056017,0.399393,0.082983,0.393138,0.074593,0.466929,0.074593,0.466929
,0.082983,0.393138,0.113431,0.389424,0.105878,0.459503,0.006492,0.415436,0.025047,0.323793,0.048658,0.323109,0.031321,0.406147
,0.031321,0.406147,0.048658,0.323109,0.071837,0.323182,0.056017,0.399393,0.056017,0.399393,0.071837,0.323182,0.096237,0.324192
,0.082983,0.393138,0.082983,0.393138,0.096237,0.324192,0.125388,0.328509,0.113431,0.389424,0.025047,0.323793,0.048329,0.238175
,0.074727,0.251743,0.048658,0.323109,0.048658,0.323109,0.074727,0.251743,0.093886,0.257695,0.071837,0.323182,0.071837,0.323182
,0.093886,0.257695,0.114594,0.271495,0.096237,0.324192,0.096237,0.324192,0.114594,0.271495,0.136690,0.278531,0.125388,0.328509
,0.048329,0.238175,0.078669,0.164769,0.103362,0.194979,0.074727,0.251743,0.074727,0.251743,0.103362,0.194979,0.119826,0.210634
,0.093886,0.257695,0.093886,0.257695,0.119826,0.210634,0.134696,0.227135,0.114594,0.271495,0.114594,0.271495,0.134696,0.227135
,0.145721,0.242242,0.136690,0.278531,0.256592,0.001753,0.257228,0.068418,0.214829,0.084392,0.206765,0.021843,0.206765,0.021843
,0.214829,0.084392,0.172737,0.106272,0.156768,0.050760,0.156768,0.050760,0.172737,0.106272,0.134992,0.142075,0.115041,0.103179