-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMC1.fbx
More file actions
8903 lines (8892 loc) · 863 KB
/
MC1.fbx
File metadata and controls
8903 lines (8892 loc) · 863 KB
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: ideasman42@gmail.com
; ----------------------------------------------------
FBXHeaderExtension: {
FBXHeaderVersion: 1003
FBXVersion: 6100
CreationTimeStamp: {
Version: 1000
Year: 2017
Month: 11
Day: 16
Hour: 16
Minute: 47
Second: 04
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2017-11-16 16:47:04:000"
Creator: "Blender version 2.78 (sub 0)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 65
ObjectType: "Model" {
Count: 33
}
ObjectType: "Geometry" {
Count: 3
}
ObjectType: "Material" {
Count: 2
}
ObjectType: "Deformer" {
Count: 30
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::MC-1_Armature", "Limb" {
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.000002504478065,-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: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
TypeFlags: "Skeleton"
}
Model: "Model::MC-1_Base", "Mesh" {
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: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: 0.181176,1.195331,0.573720,0.180814,1.222862,0.566290,0.180814,1.219330,0.556941,0.181176,1.191799,0.564370,
0.015944,1.242529,0.542936,0.016023,1.164704,0.563937,0.016023,1.170184,0.580505,0.015944,1.248009,0.559505,
0.206532,1.242529,0.542936,0.206532,1.248009,0.559505,0.207556,1.164704,0.563937,0.207556,1.170184,0.580505,
0.042044,1.195331,0.573720,0.042016,1.222862,0.566290,0.042044,1.191799,0.564370,0.042016,1.219330,0.556941,
-0.354035,0.812732,1.456165,-0.361076,0.816797,1.378801,-0.361076,0.845235,1.378801,-0.354035,0.849300,1.456165,
-0.417372,0.812732,1.456165,-0.410332,0.816797,1.378801,-0.385704,0.802578,1.378801,-0.385704,0.794449,1.456165,
-0.385704,0.867584,1.456165,-0.385704,0.859454,1.378801,-0.410332,0.845235,1.378801,-0.417372,0.849300,1.456165,
-0.385704,0.869187,1.370155,-0.418761,0.850102,1.370155,-0.352647,0.850102,1.370155,-0.385704,0.792845,1.370155,
-0.352647,0.811931,1.370155,-0.418761,0.811931,1.370155,-0.352647,0.811931,1.333455,-0.352647,0.850102,1.333455,
-0.418761,0.811931,1.333455,-0.385704,0.792845,1.333455,-0.385704,0.869187,1.333455,-0.418761,0.850102,1.333455,
0.417913,0.918226,1.394950,0.417913,0.939213,1.394950,0.407470,0.939213,1.384508,0.397028,0.939213,1.374066,
0.397028,0.918226,1.374066,0.407470,0.939213,1.363623,0.417912,0.939213,1.353181,0.417912,0.918226,1.353181,
0.428355,0.939213,1.363623,0.438797,0.939213,1.374066,0.438797,0.918226,1.374066,0.428355,0.939213,1.384508,
0.406496,0.913113,1.374066,0.417912,0.913113,1.362649,0.417912,0.673925,1.362649,0.406496,0.673925,1.374066,
0.417913,0.913113,1.385482,0.429328,0.913113,1.374066,0.429328,0.673925,1.374066,0.417913,0.673925,1.385482,
0.432425,0.939167,1.374066,0.417913,0.939167,1.359553,0.403400,0.939167,1.374066,0.417913,0.939167,1.388578,
0.403400,0.953680,1.359553,0.407651,0.968192,1.363804,0.417913,0.968192,1.359553,0.417912,0.953680,1.353542,
0.417913,0.974203,1.374066,0.428174,0.968192,1.363804,0.432425,0.953680,1.359553,0.432425,0.968192,1.374066,
0.438436,0.953680,1.374066,0.428174,0.968192,1.384327,0.432425,0.953680,1.388578,0.417913,0.968192,1.388578,
0.417913,0.953680,1.394589,0.407651,0.968192,1.384327,0.403400,0.953680,1.388578,0.397389,0.953680,1.374066,
0.403400,0.968192,1.374066,0.430354,0.942414,1.374066,0.430354,0.953830,1.362649,0.577650,0.953830,1.362649,
0.577650,0.942414,1.374066,0.430354,0.965247,1.374066,0.430354,0.953830,1.385482,0.577650,0.953830,1.385482,
0.577650,0.965247,1.374066,-0.417855,0.918226,1.394950,-0.396971,0.918226,1.374066,-0.396971,0.939213,1.374066,
-0.407413,0.939213,1.384508,-0.417855,0.939213,1.394950,-0.417855,0.918226,1.353181,-0.417855,0.939213,1.353181,
-0.407413,0.939213,1.363623,-0.438740,0.918226,1.374066,-0.438740,0.939213,1.374066,-0.428298,0.939213,1.363623,
-0.428298,0.939213,1.384508,-0.406439,0.913113,1.374066,-0.406439,0.673925,1.374066,-0.417855,0.673925,1.362649,
-0.417855,0.913113,1.362649,-0.417855,0.913113,1.385482,-0.429271,0.913113,1.374066,-0.429271,0.673925,1.374066,
-0.417855,0.673925,1.385482,-0.432368,0.939167,1.374066,-0.417855,0.939167,1.359553,-0.403343,0.939167,1.374066,
-0.417855,0.939167,1.388578,-0.403343,0.953680,1.359553,-0.417855,0.953680,1.353542,-0.417855,0.968192,1.359553,
-0.407594,0.968192,1.363804,-0.417855,0.974203,1.374066,-0.432368,0.953680,1.359553,-0.428117,0.968192,1.363804,
-0.438379,0.953680,1.374066,-0.432368,0.968192,1.374066,-0.432368,0.953680,1.388578,-0.428117,0.968192,1.384327,
-0.417855,0.953680,1.394589,-0.417855,0.968192,1.388578,-0.407594,0.968192,1.384327,-0.403343,0.953680,1.388578,
-0.397331,0.953680,1.374066,-0.403343,0.968192,1.374066,-0.430297,0.942414,1.374066,-0.577593,0.942414,1.374066,
-0.577593,0.953830,1.362649,-0.430297,0.953830,1.362649,-0.430297,0.965247,1.374066,-0.577593,0.965247,1.374066,
-0.577593,0.953830,1.385482,-0.430297,0.953830,1.385482,0.249840,1.163871,-2.521188,0.265709,1.172082,-2.516909,
0.257090,0.746216,-1.667993,0.241222,0.738005,-1.672274,0.265625,1.188505,-2.508672,0.249673,1.196716,-2.504714,
0.241055,0.770849,-1.655798,0.257007,0.762638,-1.659756,0.233805,1.188505,-2.508994,0.233888,1.172082,-2.517232,
0.225270,0.746216,-1.668316,0.225186,0.762638,-1.660079,0.230765,0.801304,-1.537566,0.231463,0.752418,-1.534000,
0.236031,0.850793,-1.815505,0.233762,0.920637,-1.762133,0.234601,0.635615,-1.593120,0.236776,0.823085,-1.829531,
0.235687,0.618162,-1.630267,0.238684,0.737496,-1.854833,0.214513,0.801047,-1.537920,0.217510,0.920380,-1.762487,
0.219779,0.850536,-1.815860,0.215210,0.752160,-1.534353,0.218349,0.635358,-1.593474,0.220524,0.822828,-1.829885,
0.222431,0.737238,-1.855188,0.219434,0.617905,-1.630620,0.858547,0.871537,-0.904470,0.858547,0.733760,-1.588847,
0.858547,0.777184,-1.588847,0.858547,0.918092,-0.901953,0.858547,1.048321,0.006399,0.858547,1.099363,0.006399,
0.858547,0.975130,1.451156,0.858547,0.924088,1.451156,0.574179,1.048321,0.335490,0.574179,1.099363,0.335490,
0.526381,0.918092,-0.901953,0.526381,0.871537,-0.904470,0.526381,0.777184,-1.588847,0.526381,0.733760,-1.588847,
0.574179,0.924088,1.451156,0.574179,0.975130,1.451156,-0.858489,0.871537,-0.904470,-0.858489,0.918092,-0.901953,
-0.858489,0.777184,-1.588847,-0.858489,0.733760,-1.588847,-0.858489,1.048321,0.006399,-0.858489,1.099363,0.006399,
-0.858489,0.924088,1.451156,-0.858489,0.975130,1.451156,-0.574122,1.048321,0.335490,-0.526324,0.871537,-0.904470,
-0.526324,0.918092,-0.901953,-0.574122,1.099363,0.335490,-0.526324,0.733760,-1.588847,-0.526324,0.777184,-1.588847,
-0.574122,0.975130,1.451156,-0.574122,0.924088,1.451156,0.559362,1.317646,0.353263,0.504918,1.320462,-0.711007,
0.395276,1.319562,-0.071910,0.520397,1.323968,-1.280682,0.504918,1.322472,-1.113519,0.520397,1.321175,-1.049820,
0.279511,1.320913,0.207572,0.839790,1.274369,-0.767094,0.839790,1.276941,-0.019819,0.261722,1.324175,0.524494,
0.000028,1.320913,0.323337,-0.261665,1.324175,0.524494,0.520932,1.221697,-1.357616,-0.520875,1.221697,-1.357616,
-0.520340,1.290720,-1.341551,0.520397,1.290720,-1.341551,-0.526287,0.985154,-1.325076,0.526344,0.985154,-1.325076,
-0.520340,1.323968,-1.280682,-0.279454,1.320913,0.207572,-0.504861,1.322472,-1.113519,0.279511,1.320913,-0.351392,
-0.559305,1.317646,0.353263,-0.395219,1.319562,-0.071910,-0.504861,1.320462,-0.711007,-0.520340,1.321175,-1.049820,
-0.839733,1.274369,-0.767094,-0.839733,1.276941,-0.019819,-0.279454,1.320913,-0.351392,0.000028,1.320913,-0.467158,
0.504918,1.459647,-0.911515,-0.504861,1.459647,-0.911515,-0.504861,1.481384,-0.855428,0.504918,1.481384,-0.855428,
-0.504861,1.463062,-0.802386,0.504918,1.463062,-0.802386,0.395276,1.360517,-0.071910,0.279511,1.360517,0.207572,
0.279511,1.360517,-0.351392,0.000028,1.360517,0.323337,-0.395219,1.360517,-0.071910,-0.279454,1.360517,0.207572,
-0.279454,1.360517,-0.351392,0.000028,1.360517,-0.467158,0.174687,0.601252,1.542188,-0.174630,0.601252,1.542188,
-0.174630,0.601252,1.524324,0.174687,0.601252,1.524324,0.365582,0.704643,1.382383,0.343177,0.656861,1.462687,
0.510232,0.631172,1.422455,0.516603,0.651142,1.394015,0.407207,0.614965,1.279296,0.371138,0.698329,1.285825,
0.511311,0.653638,1.359173,0.524800,0.616074,1.348765,0.364880,0.528292,1.383005,0.371129,0.531579,1.285502,
0.511283,0.578487,1.359049,0.516681,0.582410,1.394256,0.347838,0.618570,1.473465,0.343177,0.580279,1.462687,
0.510232,0.603561,1.422455,0.511581,0.617367,1.426342,0.247902,0.762824,1.342389,0.204198,0.682212,1.504868,
0.306372,0.464846,1.155218,0.325323,0.621654,1.116054,0.248267,0.479189,1.342827,0.309425,0.774232,1.162987,
0.201368,0.622888,1.520853,0.204819,0.563102,1.504679,0.845738,1.074143,0.027546,0.845738,0.925356,-0.769589,
0.526344,0.877295,-1.046215,0.559362,1.047298,0.426322,0.526344,0.295687,-1.099502,0.526344,0.468104,-1.591402,
0.261722,1.002146,0.608390,-0.261665,1.002146,0.608390,-0.217032,0.762718,1.432047,0.217089,0.762718,1.432047,
-0.200697,0.683994,1.523223,-0.174630,0.625392,1.524324,0.174687,0.625392,1.524324,0.200754,0.683994,1.523223,
0.200754,0.561455,1.524324,-0.200697,0.561455,1.524324,-0.222018,0.484093,1.427185,0.222075,0.484093,1.427185,
-0.442650,0.301128,0.697283,0.442707,0.301128,0.697283,-0.559305,1.047298,0.426322,0.174687,0.625392,1.542188,
-0.174630,0.625392,1.542188,-0.526287,0.468104,-1.591402,0.526344,0.301128,0.420591,-0.526287,0.301128,0.420591,
-0.526287,0.295687,-1.099502,-0.365526,0.704643,1.382383,-0.516546,0.651142,1.394015,-0.510175,0.631172,1.422455,
-0.343121,0.656861,1.462687,-0.407150,0.614965,1.279296,-0.524743,0.616074,1.348765,-0.511254,0.653638,1.359173,
-0.371082,0.698329,1.285825,-0.364823,0.528292,1.383005,-0.516624,0.582410,1.394256,-0.511226,0.578487,1.359049,
-0.371073,0.531579,1.285502,-0.347782,0.618570,1.473465,-0.511524,0.617367,1.426342,-0.510175,0.603561,1.422455,
-0.343121,0.580279,1.462687,-0.247845,0.762824,1.342389,-0.204141,0.682212,1.504868,-0.306316,0.464846,1.155218,
-0.325266,0.621654,1.116054,-0.248210,0.479189,1.342827,-0.309368,0.774232,1.162987,-0.201311,0.622888,1.520853,
-0.204762,0.563102,1.504679,-0.845681,1.074143,0.027546,-0.845681,0.925356,-0.769589,-0.526287,0.877295,-1.046215,
0.717537,0.832174,0.678447,0.717537,0.832174,0.050229,0.739850,0.845057,0.050229,0.739850,0.845057,0.678447,
0.695224,0.870821,0.678447,0.695224,0.870821,0.050229,0.695224,0.845057,0.050229,0.695224,0.845057,0.678447,
0.739850,0.870821,0.050229,0.739850,0.870821,0.678447,0.717537,0.883704,0.678447,0.717537,0.883704,0.050229,
0.668241,0.716178,-0.715720,0.668241,0.734106,-0.715720,0.668241,0.734106,-0.870513,0.668241,0.716178,-0.870513,
0.766833,0.716178,-0.870513,0.766833,0.716178,-0.715720,0.707238,0.734106,-0.870513,0.707238,0.734106,-0.715720,
0.766833,0.734106,-0.870513,0.766833,0.734106,-0.715720,0.727836,0.734106,-0.870513,0.727836,0.734106,-0.715720,
0.707238,0.794882,-0.870513,0.727836,0.794882,-0.870513,0.717537,0.161897,0.678447,0.717537,0.161897,0.330733,
0.739850,0.174779,0.330733,0.739850,0.174779,0.678447,0.695224,0.200544,0.678447,0.695224,0.200544,0.330733,
0.695224,0.174779,0.330733,0.695224,0.174779,0.678447,0.739850,0.200544,0.330733,0.739850,0.200544,0.678447,
0.717537,0.213426,0.678447,0.717537,0.213426,0.330733,0.777372,0.273552,0.538901,0.777372,0.273552,0.469809,
0.777372,0.644696,0.469809,0.777372,0.644696,0.538901,0.657701,0.273552,0.538901,0.717537,0.273552,0.573447,
0.717537,0.644696,0.573447,0.657701,0.644696,0.538901,0.717537,0.273552,0.435263,0.657701,0.273552,0.469809,
0.657701,0.644696,0.469809,0.717537,0.644696,0.435263,0.691519,0.644696,0.489333,0.717537,0.644696,0.474312,
0.743554,0.644696,0.489333,0.743554,0.644696,0.519376,0.717537,0.644696,0.534397,0.691519,0.644696,0.519376,
0.743554,0.770720,0.489333,0.743554,0.770720,0.519376,0.717537,0.770720,0.534397,0.691519,0.770720,0.519376,
0.691519,0.770720,0.489333,0.717537,0.770720,0.474312,0.717537,0.273552,0.535945,0.744895,0.273552,0.520150,
0.690178,0.273552,0.488559,0.690178,0.273552,0.520150,0.744895,0.273552,0.488559,0.717537,0.273552,0.472765,
0.744895,0.145571,0.520150,0.744895,0.145571,0.488559,0.690178,0.145571,0.520150,0.717537,0.145571,0.535945,
0.717537,0.145571,0.472765,0.690178,0.145571,0.488559,0.572670,0.682908,1.374240,0.539749,0.682908,1.374240,
0.539749,0.682908,1.440804,0.572670,0.682908,1.440804,0.539749,0.514588,1.375313,0.539749,0.640097,1.342341,
0.572670,0.640097,1.342341,0.572670,0.514588,1.375313,0.572670,0.514588,1.439731,0.572670,0.640097,1.472703,
0.539749,0.640097,1.472703,0.539749,0.514588,1.439731,0.572670,0.500347,1.394427,0.539749,0.500347,1.394427,
0.539749,0.500347,1.420617,0.572670,0.500347,1.420617,0.717537,0.161897,-0.618044,0.717537,0.161897,-0.965758,
0.739850,0.174779,-0.965758,0.739850,0.174779,-0.618044,0.695224,0.200544,-0.618044,0.695224,0.200544,-0.965758,
0.695224,0.174779,-0.965758,0.695224,0.174779,-0.618044,0.739850,0.200544,-0.965758,0.739850,0.200544,-0.618044,
0.717537,0.213426,-0.618044,0.717537,0.213426,-0.965758,0.777372,0.273552,-0.757590,0.777372,0.273552,-0.826683,
0.777372,0.644696,-0.826683,0.777372,0.644696,-0.757590,0.657701,0.273552,-0.757590,0.717537,0.273552,-0.723044,
0.717537,0.644696,-0.723044,0.657701,0.644696,-0.757590,0.717537,0.273552,-0.861229,0.657701,0.273552,-0.826683,
0.657701,0.644696,-0.826683,0.717537,0.644696,-0.861229,0.691519,0.644696,-0.807158,0.717537,0.644696,-0.822179,
0.743554,0.644696,-0.807158,0.743554,0.644696,-0.777115,0.717537,0.644696,-0.762094,0.691519,0.644696,-0.777115,
0.743554,0.719914,-0.807158,0.743554,0.719914,-0.777115,0.717537,0.719914,-0.762094,0.691519,0.719914,-0.777115,
0.691519,0.719914,-0.807158,0.717537,0.719914,-0.822179,0.717537,0.273552,-0.760546,0.744895,0.273552,-0.776341,
0.690178,0.273552,-0.807932,0.690178,0.273552,-0.776341,0.744895,0.273552,-0.807932,0.717537,0.273552,-0.823727,
0.744895,0.145571,-0.776341,0.744895,0.145571,-0.807932,0.690178,0.145571,-0.776341,0.717537,0.145571,-0.760546,
0.717537,0.145571,-0.823727,0.690178,0.145571,-0.807932,0.717537,0.161897,0.040702,0.717537,0.161897,-0.307012,
0.739850,0.174779,-0.307012,0.739850,0.174779,0.040702,0.695224,0.200544,0.040702,0.695224,0.200544,-0.307012,
0.695224,0.174779,-0.307012,0.695224,0.174779,0.040702,0.739850,0.200544,-0.307012,0.739850,0.200544,0.040702,
0.717537,0.213426,0.040702,0.717537,0.213426,-0.307012,0.777372,0.273552,-0.098844,0.777372,0.273552,-0.167937,
0.777372,0.644696,-0.167937,0.777372,0.644696,-0.098844,0.657701,0.273552,-0.098844,0.717537,0.273552,-0.064298,
0.717537,0.644696,-0.064298,0.657701,0.644696,-0.098844,0.717537,0.273552,-0.202482,0.657701,0.273552,-0.167937,
0.657701,0.644696,-0.167937,0.717537,0.644696,-0.202482,0.691519,0.644696,-0.148412,0.717537,0.644696,-0.163433,
0.743554,0.644696,-0.148412,0.743554,0.644696,-0.118369,0.717537,0.644696,-0.103348,0.691519,0.644696,-0.118369,
0.743554,0.770720,-0.148412,0.743554,0.770720,-0.118369,0.717537,0.770720,-0.103348,0.691519,0.770720,-0.118369,
0.691519,0.770720,-0.148412,0.717537,0.770720,-0.163433,0.717537,0.273552,-0.101800,0.744895,0.273552,-0.117595,
0.690178,0.273552,-0.149186,0.690178,0.273552,-0.117595,0.744895,0.273552,-0.149186,0.717537,0.273552,-0.164981,
0.744895,0.145571,-0.117595,0.744895,0.145571,-0.149186,0.690178,0.145571,-0.117595,0.717537,0.145571,-0.101800,
0.717537,0.145571,-0.164981,0.690178,0.145571,-0.149186,0.740179,0.710173,0.498038,0.740179,0.611643,0.596568,
0.717537,0.602399,0.587324,0.717537,0.700929,0.488794,0.717537,0.737904,0.525769,0.717537,0.639374,0.624299,
0.740179,0.630131,0.615056,0.740179,0.728660,0.516526,0.694894,0.710173,0.498038,0.694894,0.611643,0.596568,
0.694894,0.630131,0.615056,0.694894,0.728660,0.516526,0.687564,0.609070,0.642101,0.687564,0.633265,0.617906,
0.687564,0.608792,0.593433,0.687564,0.584598,0.617628,0.717537,0.572361,0.605392,0.717537,0.596556,0.581197,
0.747509,0.608792,0.593433,0.747509,0.584598,0.617628,0.747509,0.633265,0.617906,0.747509,0.609070,0.642101,
0.717537,0.621306,0.654337,0.717537,0.645501,0.630142,0.687564,0.504212,0.746959,0.687564,0.526613,0.724558,
0.687564,0.502141,0.700085,0.687564,0.479739,0.722486,0.717537,0.489904,0.687849,0.717537,0.467503,0.710250,
0.747509,0.502141,0.700085,0.747509,0.479739,0.722486,0.747509,0.504212,0.746959,0.747509,0.526613,0.724558,
0.717537,0.538849,0.736794,0.717537,0.516448,0.759195,0.694894,0.501142,0.744044,0.694894,0.219567,1.025619,
0.717537,0.228810,1.034862,0.717537,0.510385,0.753287,0.740179,0.501142,0.744044,0.740179,0.219567,1.025619,
0.740179,0.201079,1.007131,0.740179,0.482655,0.725556,0.717537,0.191835,0.997888,0.717537,0.473411,0.716313,
0.694894,0.482655,0.725556,0.694894,0.201079,1.007131,0.717537,0.578488,0.611235,0.717537,0.495967,0.693757,
0.694894,0.505211,0.703000,0.694894,0.587732,0.620479,0.694894,0.606219,0.638966,0.694894,0.523698,0.721488,
0.717537,0.532941,0.730732,0.717537,0.615463,0.648210,0.740179,0.606219,0.638966,0.740179,0.523698,0.721488,
0.740179,0.505211,0.703000,0.740179,0.587732,0.620479,0.672125,0.397934,-0.167937,0.672125,0.622115,-0.167937,
0.672125,0.622115,-0.098844,0.672125,0.397934,-0.098844,0.510382,0.397934,-0.167937,0.510382,0.397934,-0.098844,
0.510382,0.622115,-0.167937,0.510382,0.622115,-0.098844,0.672125,0.397933,-0.824734,0.672125,0.622115,-0.824734,
0.672125,0.622115,-0.755642,0.672125,0.397934,-0.755642,0.510382,0.397933,-0.824734,0.510382,0.397934,-0.755642,
0.510382,0.622115,-0.824734,0.510382,0.622115,-0.755642,0.523309,0.584966,0.782882,0.523309,0.481922,0.782882,
0.523309,0.481922,0.629021,0.523309,0.584966,0.629021,0.406016,0.481922,0.629021,0.406016,0.584966,0.629021,
0.406016,0.584966,0.782882,0.406016,0.481922,0.782882,0.562674,0.516120,0.672302,0.562674,0.550769,0.672302,
0.562674,0.550769,0.760268,0.562674,0.516120,0.760268,0.493302,0.516120,0.672302,0.532667,0.498795,0.672302,
0.532667,0.498795,0.760268,0.493302,0.516120,0.760268,0.532667,0.568093,0.672302,0.493302,0.550769,0.672302,
0.493302,0.550769,0.760268,0.532667,0.568093,0.760268,0.528381,0.520517,0.760268,0.544059,0.511466,0.760268,
0.544059,0.511466,1.438327,0.528381,0.520517,1.438327,0.559736,0.520517,0.760268,0.559736,0.546371,0.760268,
0.559736,0.546371,1.438327,0.559736,0.520517,1.438327,0.544059,0.555422,0.760268,0.528381,0.546371,0.760268,
0.528381,0.546371,1.438327,0.544059,0.555423,1.438327,0.672125,0.397934,0.472494,0.672125,0.622115,0.472494,
0.672125,0.622115,0.541587,0.672125,0.397934,0.541587,0.446117,0.397934,0.472494,0.446117,0.397934,0.541587,
0.446117,0.622115,0.472494,0.446117,0.622115,0.541587,-0.717480,0.832174,0.678447,-0.739793,0.845057,0.678447,
-0.739793,0.845057,0.050228,-0.717480,0.832174,0.050228,-0.695167,0.870821,0.678447,-0.695167,0.845057,0.678447,
-0.695167,0.845057,0.050228,-0.695167,0.870821,0.050228,-0.739793,0.870821,0.678447,-0.739793,0.870821,0.050228,
-0.717480,0.883704,0.678447,-0.717480,0.883704,0.050228,-0.668184,0.716178,-0.715720,-0.668184,0.716178,-0.870513,
-0.668184,0.734106,-0.870513,-0.668184,0.734106,-0.715720,-0.766776,0.716178,-0.870513,-0.766776,0.716178,-0.715720,
-0.707181,0.734106,-0.870513,-0.707181,0.734106,-0.715720,-0.766776,0.734106,-0.715720,-0.766776,0.734106,-0.870513,
-0.727779,0.734106,-0.715720,-0.727779,0.734106,-0.870513,-0.727779,0.794882,-0.870513,-0.707181,0.794882,-0.870513,
-0.717480,0.161897,0.678447,-0.739793,0.174779,0.678447,-0.739793,0.174779,0.330733,-0.717480,0.161897,0.330733,
-0.695167,0.200544,0.678447,-0.695167,0.174779,0.678447,-0.695167,0.174779,0.330733,-0.695167,0.200544,0.330733,
-0.739793,0.200544,0.678447,-0.739793,0.200544,0.330733,-0.717480,0.213426,0.678447,-0.717480,0.213426,0.330733,
-0.777315,0.273552,0.538901,-0.777315,0.644696,0.538901,-0.777315,0.644696,0.469809,-0.777315,0.273552,0.469809,
-0.657644,0.273552,0.538901,-0.657644,0.644696,0.538901,-0.717480,0.644696,0.573447,-0.717480,0.273552,0.573447,
-0.717480,0.273552,0.435263,-0.717480,0.644696,0.435263,-0.657644,0.644696,0.469809,-0.657644,0.273552,0.469809,
-0.717480,0.644696,0.474312,-0.691462,0.644696,0.489333,-0.743497,0.644696,0.489333,-0.717480,0.644696,0.534397,
-0.743497,0.644696,0.519376,-0.691462,0.644696,0.519376,-0.743497,0.770720,0.519376,-0.743497,0.770720,0.489333,
-0.691462,0.770720,0.519376,-0.717480,0.770720,0.534397,-0.717480,0.770720,0.474312,-0.691462,0.770720,0.489333,
-0.744838,0.273552,0.520150,-0.717480,0.273552,0.535945,-0.690122,0.273552,0.520150,-0.690122,0.273552,0.488559,
-0.744838,0.273552,0.488559,-0.717480,0.273552,0.472764,-0.744838,0.145571,0.488559,-0.744838,0.145571,0.520150,
-0.717480,0.145571,0.535945,-0.690122,0.145571,0.520150,-0.690122,0.145571,0.488559,-0.717480,0.145571,0.472764,
-0.572613,0.682908,1.374240,-0.572613,0.682908,1.440804,-0.539692,0.682908,1.440804,-0.539692,0.682908,1.374240,
-0.539692,0.514588,1.375313,-0.572613,0.514588,1.375313,-0.572613,0.640097,1.342341,-0.539692,0.640097,1.342341,
-0.572613,0.514588,1.439731,-0.539692,0.514588,1.439731,-0.539692,0.640097,1.472703,-0.572613,0.640097,1.472703,
-0.572613,0.500347,1.394427,-0.539692,0.500347,1.394427,-0.539692,0.500347,1.420617,-0.572613,0.500347,1.420617,
-0.717480,0.161897,-0.618044,-0.739793,0.174779,-0.618044,-0.739793,0.174779,-0.965758,-0.717480,0.161897,-0.965758,
-0.695167,0.200544,-0.618044,-0.695167,0.174779,-0.618044,-0.695167,0.174779,-0.965758,-0.695167,0.200544,-0.965758,
-0.739793,0.200544,-0.618044,-0.739793,0.200544,-0.965758,-0.717480,0.213426,-0.618044,-0.717480,0.213426,-0.965758,
-0.777315,0.273552,-0.757590,-0.777315,0.644696,-0.757590,-0.777315,0.644696,-0.826683,-0.777315,0.273552,-0.826683,
-0.657644,0.273552,-0.757590,-0.657644,0.644696,-0.757590,-0.717480,0.644696,-0.723044,-0.717480,0.273552,-0.723044,
-0.717480,0.273552,-0.861229,-0.717480,0.644696,-0.861229,-0.657644,0.644696,-0.826683,-0.657644,0.273552,-0.826683,
-0.717480,0.644696,-0.822179,-0.691462,0.644696,-0.807158,-0.743497,0.644696,-0.807158,-0.717480,0.644696,-0.762094,
-0.743497,0.644696,-0.777115,-0.691462,0.644696,-0.777115,-0.743497,0.719914,-0.777115,-0.743497,0.719914,-0.807158,
-0.691462,0.719914,-0.777115,-0.717480,0.719914,-0.762094,-0.717480,0.719914,-0.822179,-0.691462,0.719914,-0.807158,
-0.744838,0.273552,-0.776341,-0.717480,0.273552,-0.760546,-0.690122,0.273552,-0.776341,-0.690122,0.273552,-0.807932,
-0.744838,0.273552,-0.807932,-0.717480,0.273552,-0.823727,-0.744838,0.145571,-0.807932,-0.744838,0.145571,-0.776341,
-0.717480,0.145571,-0.760546,-0.690122,0.145571,-0.776341,-0.690122,0.145571,-0.807932,-0.717480,0.145571,-0.823727,
-0.717480,0.161897,0.040702,-0.739793,0.174779,0.040702,-0.739793,0.174779,-0.307012,-0.717480,0.161897,-0.307012,
-0.695167,0.200544,0.040702,-0.695167,0.174779,0.040702,-0.695167,0.174779,-0.307012,-0.695167,0.200544,-0.307012,
-0.739793,0.200544,0.040702,-0.739793,0.200544,-0.307012,-0.717480,0.213426,0.040702,-0.717480,0.213426,-0.307012,
-0.777315,0.273552,-0.098844,-0.777315,0.644696,-0.098844,-0.777315,0.644696,-0.167937,-0.777315,0.273552,-0.167937,
-0.657644,0.273552,-0.098844,-0.657644,0.644696,-0.098844,-0.717480,0.644696,-0.064298,-0.717480,0.273552,-0.064298,
-0.717480,0.273552,-0.202482,-0.717480,0.644696,-0.202482,-0.657644,0.644696,-0.167937,-0.657644,0.273552,-0.167937,
-0.717480,0.644696,-0.163433,-0.691462,0.644696,-0.148412,-0.743497,0.644696,-0.148412,-0.717480,0.644696,-0.103348,
-0.743497,0.644696,-0.118369,-0.691462,0.644696,-0.118369,-0.743497,0.770720,-0.118369,-0.743497,0.770720,-0.148412,
-0.691462,0.770720,-0.118369,-0.717480,0.770720,-0.103348,-0.717480,0.770720,-0.163433,-0.691462,0.770720,-0.148412,
-0.744838,0.273552,-0.117595,-0.717480,0.273552,-0.101800,-0.690122,0.273552,-0.117595,-0.690122,0.273552,-0.149186,
-0.744838,0.273552,-0.149186,-0.717480,0.273552,-0.164981,-0.744838,0.145571,-0.149186,-0.744838,0.145571,-0.117595,
-0.717480,0.145571,-0.101800,-0.690122,0.145571,-0.117595,-0.690122,0.145571,-0.149186,-0.717480,0.145571,-0.164981,
-0.740122,0.710173,0.498038,-0.717480,0.700929,0.488794,-0.717480,0.602399,0.587324,-0.740122,0.611643,0.596568,
-0.717480,0.737904,0.525769,-0.740122,0.728660,0.516525,-0.740122,0.630131,0.615055,-0.717480,0.639374,0.624299,
-0.694837,0.710173,0.498038,-0.694837,0.728660,0.516525,-0.694837,0.630131,0.615055,-0.694837,0.611643,0.596568,
-0.687507,0.609070,0.642101,-0.687507,0.584598,0.617628,-0.687507,0.608792,0.593433,-0.687507,0.633265,0.617906,
-0.717480,0.572361,0.605392,-0.747452,0.584598,0.617628,-0.747452,0.608792,0.593433,-0.717480,0.596556,0.581197,
-0.747452,0.609070,0.642101,-0.747452,0.633265,0.617906,-0.717480,0.621306,0.654337,-0.717480,0.645501,0.630142,
-0.687507,0.504212,0.746959,-0.687507,0.479739,0.722486,-0.687507,0.502141,0.700085,-0.687507,0.526613,0.724558,
-0.717480,0.467503,0.710250,-0.717480,0.489904,0.687849,-0.747452,0.479739,0.722486,-0.747452,0.502141,0.700085,
-0.747452,0.504212,0.746959,-0.717480,0.516448,0.759195,-0.717480,0.538849,0.736794,-0.747452,0.526613,0.724558,
-0.694837,0.501142,0.744044,-0.717480,0.510385,0.753287,-0.717480,0.228810,1.034862,-0.694837,0.219567,1.025619,
-0.740122,0.501142,0.744044,-0.740122,0.482655,0.725556,-0.740122,0.201079,1.007131,-0.740122,0.219567,1.025619,
-0.717480,0.473411,0.716313,-0.717480,0.191836,0.997888,-0.694837,0.482655,0.725556,-0.694837,0.201079,1.007131,
-0.717480,0.578488,0.611235,-0.694837,0.587732,0.620479,-0.694837,0.505211,0.703000,-0.717480,0.495967,0.693757,
-0.694837,0.606219,0.638966,-0.717480,0.615463,0.648210,-0.717480,0.532941,0.730732,-0.694837,0.523698,0.721488,
-0.740122,0.606219,0.638966,-0.740122,0.587732,0.620479,-0.740122,0.505211,0.703000,-0.740122,0.523698,0.721488,
-0.672068,0.397934,-0.167937,-0.672068,0.397934,-0.098844,-0.672068,0.622115,-0.098844,-0.672068,0.622115,-0.167937,
-0.510325,0.397934,-0.167937,-0.510325,0.397934,-0.098844,-0.510325,0.622115,-0.167937,-0.510325,0.622115,-0.098844,
-0.672068,0.397933,-0.824734,-0.672068,0.397934,-0.755642,-0.672068,0.622115,-0.755642,-0.672068,0.622115,-0.824734,
-0.510325,0.397933,-0.824734,-0.510325,0.397934,-0.755642,-0.510325,0.622115,-0.824734,-0.510325,0.622115,-0.755642,
-0.523252,0.584966,0.782882,-0.523252,0.584966,0.629021,-0.523252,0.481922,0.629021,-0.523252,0.481922,0.782882,
-0.405960,0.481922,0.629021,-0.405960,0.584966,0.629021,-0.405960,0.584966,0.782882,-0.405960,0.481922,0.782882,
-0.562617,0.516120,0.672302,-0.562617,0.516120,0.760268,-0.562617,0.550769,0.760268,-0.562617,0.550769,0.672302,
-0.493245,0.516120,0.672302,-0.493245,0.516120,0.760268,-0.532610,0.498795,0.760268,-0.532610,0.498795,0.672302,
-0.532610,0.568093,0.672302,-0.532610,0.568093,0.760268,-0.493245,0.550769,0.760268,-0.493245,0.550769,0.672302,
-0.528325,0.520517,0.760268,-0.528325,0.520517,1.438326,-0.544002,0.511466,1.438326,-0.544002,0.511466,0.760268,
-0.559679,0.520517,0.760268,-0.559679,0.520517,1.438326,-0.559679,0.546371,1.438327,-0.559679,0.546371,0.760268,
-0.544002,0.555422,0.760268,-0.544002,0.555423,1.438326,-0.528325,0.546371,1.438327,-0.528325,0.546371,0.760268,
-0.672068,0.397934,0.472494,-0.672068,0.397934,0.541587,-0.672068,0.622115,0.541587,-0.672068,0.622115,0.472494,
-0.446060,0.397934,0.472494,-0.446060,0.397934,0.541587,-0.446060,0.622115,0.472494,-0.446060,0.622115,0.541587,
0.501195,0.590895,1.395886,0.501195,0.590895,1.369964,0.541581,0.590895,1.369964,0.541581,0.590895,1.395886,
0.501195,0.635792,1.395886,0.501195,0.613343,1.408846,0.541581,0.613343,1.408846,0.541581,0.635792,1.395886,
0.501195,0.613343,1.357003,0.501195,0.635792,1.369964,0.541581,0.635792,1.369964,0.541581,0.613343,1.357003,
0.567754,0.511289,1.427684,0.567754,0.511289,1.401763,0.644986,0.511289,1.401763,0.644986,0.511289,1.427684,
0.567754,0.556186,1.427684,0.567754,0.533738,1.440645,0.644986,0.533738,1.440645,0.644986,0.556186,1.427684,
0.567754,0.533738,1.388802,0.567754,0.556186,1.401763,0.644986,0.556186,1.401763,0.644986,0.533738,1.388802,
-0.501138,0.590895,1.395886,-0.541524,0.590895,1.395886,-0.541524,0.590895,1.369964,-0.501138,0.590895,1.369964,
-0.501138,0.635792,1.395886,-0.541524,0.635792,1.395886,-0.541524,0.613343,1.408846,-0.501138,0.613343,1.408846,
-0.501138,0.613343,1.357003,-0.541524,0.613343,1.357003,-0.541524,0.635792,1.369964,-0.501138,0.635792,1.369964,
-0.567697,0.511289,1.427684,-0.644929,0.511289,1.427684,-0.644929,0.511289,1.401763,-0.567697,0.511289,1.401763,
-0.567697,0.556186,1.427684,-0.644929,0.556186,1.427684,-0.644929,0.533738,1.440645,-0.567697,0.533738,1.440645,
-0.567697,0.533738,1.388802,-0.644929,0.533738,1.388802,-0.644929,0.556186,1.401763,-0.567697,0.556186,1.401763,
0.732564,1.285607,-0.464586,0.704091,1.290839,-0.508394,0.705405,1.298293,-0.508359,0.733878,1.293061,-0.464550,
0.657795,1.298545,-0.414446,0.709416,1.289460,-0.417612,0.710730,1.296914,-0.417575,0.659109,1.305999,-0.414409,
0.652470,1.299924,-0.505228,0.629322,1.303777,-0.458254,0.630636,1.311231,-0.458218,0.653784,1.307378,-0.505193,
0.703659,1.314101,-0.432553,0.718853,1.311571,-0.463387,0.700164,1.315005,-0.492143,0.666281,1.320968,-0.490065,
0.669776,1.320063,-0.430476,0.651086,1.323497,-0.459231,-0.732507,1.285607,-0.464586,-0.733821,1.293061,-0.464550,
-0.705348,1.298293,-0.508358,-0.704034,1.290839,-0.508394,-0.657738,1.298545,-0.414445,-0.659052,1.305999,-0.414409,
-0.710673,1.296914,-0.417575,-0.709359,1.289460,-0.417611,-0.652413,1.299923,-0.505228,-0.653727,1.307378,-0.505193,
-0.630579,1.311231,-0.458218,-0.629265,1.303777,-0.458254,-0.703602,1.314101,-0.432553,-0.666224,1.320968,-0.490065,
-0.700107,1.315005,-0.492143,-0.718796,1.311571,-0.463387,-0.669719,1.320063,-0.430476,-0.651029,1.323497,-0.459231,
-0.215695,1.078543,-2.520547,0.215751,1.078543,-2.520547,0.226851,0.974774,-2.446632,-0.226795,0.974774,-2.446632,
-0.213787,1.217465,-2.533254,0.213843,1.217465,-2.533254,0.357221,0.478048,-1.578452,-0.357165,0.478048,-1.578452,
0.218722,1.205846,-2.500771,-0.218665,1.205846,-2.500771,-0.220535,1.090850,-2.488318,0.220591,1.090850,-2.488318,
0.228432,1.007630,-2.436109,-0.228375,1.007630,-2.436109,-0.358745,0.510903,-1.562927,0.358802,0.510903,-1.562927,
0.165168,0.866322,-2.218587,0.213313,0.866322,-2.218587,0.213313,0.930368,-2.181128,0.165168,0.930368,-2.181128,
0.212693,0.972118,-2.327369,0.213313,0.948091,-1.337751,0.213313,0.903798,-1.578032,0.213313,0.937619,-2.327345,
0.213313,0.868879,-1.366753,0.213313,0.784769,-1.578032,0.165168,0.937619,-2.327345,0.165168,0.972118,-2.327369,
0.165168,0.903798,-1.578032,0.165168,0.948091,-1.337751,0.165168,0.784769,-1.578032,0.165168,0.868879,-1.366753,
-0.165111,0.866322,-2.218587,-0.165111,0.930368,-2.181128,-0.213256,0.930368,-2.181128,-0.213256,0.866322,-2.218587,
-0.213256,0.903798,-1.578032,-0.213256,0.948091,-1.337751,-0.212636,0.972118,-2.327369,-0.213256,0.937619,-2.327345,
-0.213256,0.784769,-1.578032,-0.213256,0.868879,-1.366753,-0.165111,0.972118,-2.327369,-0.165111,0.937619,-2.327345,
-0.165111,0.948091,-1.337751,-0.165111,0.903798,-1.578032,-0.165111,0.868879,-1.366753,-0.165111,0.784769,-1.578032,
0.297513,0.908097,1.462840,0.355547,0.932135,1.462840,0.355547,0.932135,1.388376,0.297513,0.908097,1.388376,
0.413580,0.908097,1.462840,0.413580,0.908097,1.388376,0.437618,0.850064,1.462840,0.413580,0.792031,1.462840,
0.413580,0.792031,1.388376,0.437618,0.850064,1.388376,0.355547,0.767993,1.462840,0.297513,0.792031,1.462840,
0.297513,0.792031,1.388376,0.355547,0.767993,1.388376,0.273475,0.850064,1.462840,0.273475,0.850064,1.388376,
0.321091,0.815608,1.365593,0.355547,0.801336,1.365593,0.321091,0.884520,1.365593,0.306819,0.850064,1.365593,
0.404274,0.850064,1.365593,0.390002,0.884520,1.365593,0.390002,0.815608,1.365593,0.355547,0.898792,1.365593,
0.428524,0.850064,1.462840,0.407150,0.798461,1.462840,0.355547,0.923042,1.462840,0.407150,0.901667,1.462840,
0.303943,0.901667,1.462840,0.355547,0.777086,1.462840,0.303943,0.798461,1.462840,0.282569,0.850064,1.462840,
0.423284,0.850064,1.458175,0.403444,0.802166,1.458175,0.355547,0.917801,1.458175,0.403444,0.897962,1.458175,
0.307649,0.897962,1.458175,0.355547,0.782326,1.458175,0.307649,0.802166,1.458175,0.287809,0.850064,1.458175,
-0.758197,0.813213,0.439741,-0.758197,0.813213,0.285880,-0.758197,0.710169,0.285880,-0.758197,0.710169,0.439741,
-0.692800,0.710169,0.285880,-0.692800,0.813213,0.439741,-0.699519,0.728847,0.367425,-0.699519,0.744368,0.340542,
-0.362242,0.744368,0.340542,-0.362242,0.728847,0.367425,-0.699519,0.775411,0.394309,-0.699519,0.744368,0.394309,
-0.362242,0.744368,0.394309,-0.362242,0.775411,0.394309,-0.699519,0.775411,0.340542,-0.362242,0.775411,0.340542,
-0.699519,0.790932,0.367425,-0.362242,0.790932,0.367425,-0.692800,0.813213,0.285880,-0.692800,0.710169,0.439741,
0.758197,0.813213,0.439741,0.758197,0.813213,0.285880,0.758197,0.710169,0.285880,0.758197,0.710169,0.439741,
0.692800,0.710169,0.285880,0.692800,0.813213,0.439741,0.699519,0.728847,0.367425,0.699519,0.744368,0.340542,
0.362242,0.744368,0.340542,0.362242,0.728847,0.367425,0.699519,0.775411,0.394309,0.699519,0.744368,0.394309,
0.362242,0.744368,0.394309,0.362242,0.775411,0.394309,0.699519,0.775411,0.340542,0.362242,0.775411,0.340542,
0.699519,0.790932,0.367425,0.362242,0.790932,0.367425,0.692800,0.813213,0.285880,0.692800,0.710169,0.439741,
-0.688453,0.753213,-0.968304,-0.688453,0.786363,-0.959421,-0.688453,0.810630,-0.935154,-0.688453,0.819512,-0.902004,
-0.688453,0.810630,-0.868855,-0.688453,0.786363,-0.844587,-0.688453,0.753213,-0.835705,-0.688453,0.720063,-0.844587,
-0.688453,0.695796,-0.868855,-0.688453,0.686914,-0.902004,-0.688453,0.695796,-0.935154,-0.688453,0.720063,-0.959421,
-0.646907,0.753213,-0.968304,-0.646907,0.786363,-0.959421,-0.646907,0.810630,-0.935154,-0.646907,0.819512,-0.902004,
-0.646907,0.810630,-0.868855,-0.646907,0.786363,-0.844587,-0.646907,0.753213,-0.835705,-0.646907,0.720063,-0.844587,
-0.646907,0.695796,-0.868855,-0.646907,0.686914,-0.902004,-0.646907,0.695796,-0.935154,-0.646907,0.720063,-0.959421,
-0.809039,0.753213,-0.968304,-0.809039,0.786363,-0.959421,-0.809039,0.810630,-0.935154,-0.809039,0.819512,-0.902004,
-0.809039,0.810630,-0.868855,-0.809039,0.786363,-0.844587,-0.809039,0.753213,-0.835705,-0.809039,0.720063,-0.844587,
-0.809039,0.695796,-0.868855,-0.809039,0.686914,-0.902004,-0.809039,0.695796,-0.935154,-0.809039,0.720063,-0.959421,
-0.767493,0.753213,-0.968304,-0.767493,0.786363,-0.959421,-0.767493,0.810630,-0.935154,-0.767493,0.819512,-0.902004,
-0.767493,0.810630,-0.868855,-0.767493,0.786363,-0.844587,-0.767493,0.753213,-0.835705,-0.767493,0.720063,-0.844587,
-0.767493,0.695796,-0.868855,-0.767493,0.686914,-0.902004,-0.767493,0.695796,-0.935154,-0.767493,0.720063,-0.959421,
-0.809039,0.857713,0.003798,-0.809039,0.890862,0.012681,-0.809039,0.915130,0.036948,-0.809039,0.924012,0.070098,
-0.809039,0.915130,0.103247,-0.809039,0.890862,0.127515,-0.809039,0.857713,0.136397,-0.809039,0.824563,0.127515,
-0.809039,0.800296,0.103247,-0.809039,0.791413,0.070098,-0.809039,0.800296,0.036948,-0.809039,0.824563,0.012681,
-0.767493,0.857713,0.003798,-0.767493,0.890862,0.012681,-0.767493,0.915130,0.036948,-0.767493,0.924012,0.070098,
-0.767493,0.915130,0.103247,-0.767493,0.890862,0.127515,-0.767493,0.857713,0.136397,-0.767493,0.824563,0.127515,
-0.767493,0.800296,0.103247,-0.767493,0.791413,0.070098,-0.767493,0.800296,0.036948,-0.767493,0.824563,0.012681,
-0.688453,0.857713,0.003798,-0.688453,0.890862,0.012681,-0.688453,0.915130,0.036948,-0.688453,0.924012,0.070098,
-0.688453,0.915130,0.103247,-0.688453,0.890862,0.127515,-0.688453,0.857713,0.136397,-0.688453,0.824563,0.127515,
-0.688453,0.800296,0.103247,-0.688453,0.791413,0.070098,-0.688453,0.800296,0.036948,-0.688453,0.824563,0.012681,
-0.646907,0.857713,0.003798,-0.646907,0.890862,0.012681,-0.646907,0.915130,0.036948,-0.646907,0.924012,0.070098,
-0.646907,0.915130,0.103247,-0.646907,0.890862,0.127515,-0.646907,0.857713,0.136397,-0.646907,0.824563,0.127515,
-0.646907,0.800296,0.103247,-0.646907,0.791413,0.070098,-0.646907,0.800296,0.036948,-0.646907,0.824563,0.012681,
-0.809039,0.857713,0.299694,-0.809039,0.890862,0.308577,-0.809039,0.915130,0.332844,-0.809039,0.924012,0.365994,
-0.809039,0.915130,0.399143,-0.809039,0.890862,0.423411,-0.809039,0.857713,0.432293,-0.809039,0.824563,0.423411,
-0.809039,0.800296,0.399143,-0.809039,0.791413,0.365994,-0.809039,0.800296,0.332844,-0.809039,0.824563,0.308577,
-0.767493,0.857713,0.299694,-0.767493,0.890862,0.308577,-0.767493,0.915130,0.332844,-0.767493,0.924012,0.365994,
-0.767493,0.915130,0.399143,-0.767493,0.890862,0.423411,-0.767493,0.857713,0.432293,-0.767493,0.824563,0.423411,
-0.767493,0.800296,0.399143,-0.767493,0.791413,0.365994,-0.767493,0.800296,0.332844,-0.767493,0.824563,0.308577,
-0.688453,0.857713,0.299694,-0.688453,0.890862,0.308577,-0.688453,0.915130,0.332844,-0.688453,0.924012,0.365994,
-0.688453,0.915130,0.399143,-0.688453,0.890862,0.423411,-0.688453,0.857713,0.432293,-0.688453,0.824563,0.423411,
-0.688453,0.800296,0.399143,-0.688453,0.791413,0.365994,-0.688453,0.800296,0.332844,-0.688453,0.824563,0.308577,
-0.646907,0.857713,0.299694,-0.646907,0.890862,0.308577,-0.646907,0.915130,0.332844,-0.646907,0.924012,0.365994,
-0.646907,0.915130,0.399143,-0.646907,0.890862,0.423411,-0.646907,0.857713,0.432293,-0.646907,0.824563,0.423411,
-0.646907,0.800296,0.399143,-0.646907,0.791413,0.365994,-0.646907,0.800296,0.332844,-0.646907,0.824563,0.308577,
-0.809039,0.857713,0.603166,-0.809039,0.890863,0.612049,-0.809039,0.915130,0.636316,-0.809039,0.924012,0.669466,
-0.809039,0.915130,0.702615,-0.809039,0.890863,0.726883,-0.809039,0.857713,0.735765,-0.809039,0.824563,0.726883,
-0.809039,0.800296,0.702615,-0.809039,0.791414,0.669466,-0.809039,0.800296,0.636316,-0.809039,0.824563,0.612049,
-0.767493,0.857713,0.603166,-0.767493,0.890863,0.612049,-0.767493,0.915130,0.636316,-0.767493,0.924012,0.669466,
-0.767493,0.915130,0.702615,-0.767493,0.890863,0.726883,-0.767493,0.857713,0.735765,-0.767493,0.824563,0.726883,
-0.767493,0.800296,0.702615,-0.767493,0.791414,0.669466,-0.767493,0.800296,0.636316,-0.767493,0.824563,0.612049,
-0.688453,0.857713,0.603166,-0.688453,0.890863,0.612049,-0.688453,0.915130,0.636316,-0.688453,0.924012,0.669466,
-0.688453,0.915130,0.702615,-0.688453,0.890863,0.726883,-0.688453,0.857713,0.735765,-0.688453,0.824563,0.726883,
-0.688453,0.800296,0.702615,-0.688453,0.791414,0.669466,-0.688453,0.800296,0.636316,-0.688453,0.824563,0.612049,
-0.646907,0.857713,0.603166,-0.646907,0.890863,0.612049,-0.646907,0.915130,0.636316,-0.646907,0.924012,0.669466,
-0.646907,0.915130,0.702615,-0.646907,0.890863,0.726883,-0.646907,0.857713,0.735765,-0.646907,0.824563,0.726883,
-0.646907,0.800296,0.702615,-0.646907,0.791414,0.669466,-0.646907,0.800296,0.636316,-0.646907,0.824563,0.612049,
-0.837324,0.538748,1.354606,-0.837324,0.569451,1.362833,-0.837324,0.591927,1.385309,-0.837324,0.600154,1.416012,
-0.837324,0.591927,1.446715,-0.837324,0.569451,1.469191,-0.837324,0.538748,1.477418,-0.837324,0.508045,1.469191,
-0.837324,0.485569,1.446715,-0.837324,0.477342,1.416012,-0.837324,0.485569,1.385309,-0.837324,0.508045,1.362833,
-0.817676,0.538748,1.334116,-0.817676,0.579696,1.345088,-0.817676,0.609672,1.375064,-0.817676,0.620644,1.416012,
-0.817676,0.609672,1.456960,-0.817676,0.579696,1.486936,-0.817676,0.538748,1.497908,-0.817676,0.497800,1.486936,
-0.817676,0.467824,1.456960,-0.817676,0.456851,1.416012,-0.817676,0.467824,1.375064,-0.817676,0.497800,1.345088,
-0.785997,0.538748,1.334116,-0.785997,0.579696,1.345088,-0.785997,0.609672,1.375064,-0.785997,0.620644,1.416012,
-0.785997,0.609672,1.456960,-0.785997,0.579696,1.486936,-0.785997,0.538748,1.497908,-0.785997,0.497800,1.486936,
-0.785997,0.467824,1.456960,-0.785997,0.456851,1.416012,-0.785997,0.467824,1.375064,-0.785997,0.497800,1.345088,
-0.785997,0.538748,1.131323,-0.785997,0.681092,1.169464,-0.785997,0.785296,1.273668,-0.785997,0.823437,1.416012,
-0.785997,0.785296,1.558357,-0.785997,0.681093,1.662560,-0.785997,0.538748,1.700701,-0.785997,0.396404,1.662560,
-0.785997,0.292200,1.558357,-0.785997,0.254059,1.416012,-0.785997,0.292200,1.273668,-0.785997,0.396403,1.169464,
-0.819262,0.538748,1.131323,-0.819262,0.681092,1.169464,-0.819262,0.785296,1.273668,-0.819262,0.823437,1.416012,
-0.819262,0.785296,1.558357,-0.819262,0.681093,1.662560,-0.819262,0.538748,1.700701,-0.819262,0.396404,1.662560,
-0.819262,0.292200,1.558357,-0.819262,0.254059,1.416012,-0.819262,0.292200,1.273668,-0.819262,0.396403,1.169464,
-0.819262,0.538748,1.074701,-0.819262,0.709404,1.120428,-0.819262,0.834332,1.245356,-0.819262,0.880059,1.416012,
-0.819262,0.834332,1.586668,-0.819262,0.709404,1.711596,-0.819262,0.538748,1.757324,-0.819262,0.368092,1.711596,
-0.819262,0.243164,1.586668,-0.819262,0.197437,1.416012,-0.819262,0.243163,1.245357,-0.819262,0.368092,1.120428,
-0.632794,0.538748,1.074701,-0.632794,0.709404,1.120428,-0.632794,0.834332,1.245356,-0.632794,0.880059,1.416012,
-0.632794,0.834332,1.586668,-0.632794,0.709404,1.711596,-0.632794,0.538748,1.757324,-0.632794,0.368092,1.711596,
-0.632794,0.243164,1.586668,-0.632794,0.197437,1.416012,-0.632794,0.243163,1.245357,-0.632794,0.368092,1.120428,
-0.691317,0.709404,1.711596,-0.760739,0.709404,1.711596,-0.760739,0.538748,1.757324,-0.691317,0.538748,1.757324,
-0.691317,0.834332,1.245356,-0.760739,0.834332,1.245356,-0.760739,0.880059,1.416012,-0.691317,0.880059,1.416012,
-0.691317,0.197437,1.416012,-0.760739,0.197437,1.416012,-0.760739,0.243163,1.245357,-0.691317,0.243163,1.245357,
-0.760739,0.368092,1.711596,-0.691317,0.368092,1.711596,-0.760739,0.834332,1.586668,-0.691317,0.834332,1.586668,
-0.760739,0.368092,1.120428,-0.691317,0.368092,1.120428,-0.691317,0.538748,1.074701,-0.760739,0.538748,1.074701,
-0.760739,0.709404,1.120428,-0.691317,0.709404,1.120428,-0.760739,0.243164,1.586668,-0.691317,0.243164,1.586668,
-0.755009,0.291955,1.558498,-0.697047,0.291955,1.558498,-0.697047,0.253776,1.416012,-0.755009,0.253776,1.416012,
-0.755009,0.681234,1.169219,-0.697047,0.681234,1.169219,-0.697047,0.785541,1.273526,-0.755009,0.785541,1.273526,
-0.755009,0.396262,1.169219,-0.697047,0.396262,1.169219,-0.697047,0.538748,1.131040,-0.755009,0.538748,1.131040,
-0.755009,0.785541,1.558498,-0.697047,0.785541,1.558498,-0.697047,0.681234,1.662805,-0.755009,0.681234,1.662805,
-0.755009,0.396262,1.662805,-0.697047,0.396262,1.662805,-0.755009,0.291955,1.273526,-0.697047,0.291955,1.273526,
-0.755009,0.823720,1.416012,-0.697047,0.823720,1.416012,-0.755009,0.538748,1.700984,-0.697047,0.538748,1.700984,
-0.840583,0.173031,-1.090333,-0.840583,0.234252,-1.073929,-0.840583,0.279069,-1.029112,-0.840583,0.295474,-0.967890,
-0.840583,0.279069,-0.906669,-0.840583,0.234252,-0.861851,-0.840583,0.173031,-0.845447,-0.840583,0.111809,-0.861851,
-0.840583,0.066992,-0.906669,-0.840583,0.050588,-0.967890,-0.840583,0.066992,-1.029112,-0.840583,0.111809,-1.073929,
-0.763855,0.173031,-1.090333,-0.763855,0.234252,-1.073929,-0.763855,0.279069,-1.029112,-0.763855,0.295474,-0.967890,
-0.763855,0.279069,-0.906669,-0.763855,0.234252,-0.861851,-0.763855,0.173031,-0.845447,-0.763855,0.111809,-0.861851,
-0.763855,0.066992,-0.906669,-0.763855,0.050588,-0.967890,-0.763855,0.066992,-1.029112,-0.763855,0.111809,-1.073929,
-0.671161,0.173031,-1.090333,-0.671161,0.234252,-1.073929,-0.671161,0.279069,-1.029112,-0.671161,0.295474,-0.967890,
-0.671161,0.279069,-0.906669,-0.671161,0.234252,-0.861851,-0.671161,0.173031,-0.845447,-0.671161,0.111809,-0.861851,
-0.671161,0.066992,-0.906669,-0.671161,0.050588,-0.967890,-0.671161,0.066992,-1.029112,-0.671161,0.111809,-1.073929,
-0.594433,0.173031,-1.090333,-0.594433,0.234252,-1.073929,-0.594433,0.279069,-1.029112,-0.594433,0.295474,-0.967890,
-0.594433,0.279069,-0.906669,-0.594433,0.234252,-0.861851,-0.594433,0.173031,-0.845447,-0.594433,0.111809,-0.861851,
-0.594433,0.066992,-0.906669,-0.594433,0.050588,-0.967890,-0.594433,0.066992,-1.029112,-0.594433,0.111809,-1.073929,
-0.840583,0.169856,-0.728147,-0.840583,0.231078,-0.711743,-0.840583,0.275895,-0.666926,-0.840583,0.292299,-0.605704,
-0.840583,0.275895,-0.544482,-0.840583,0.231078,-0.499665,-0.840583,0.169856,-0.483261,-0.840583,0.108635,-0.499665,
-0.840583,0.063818,-0.544482,-0.840583,0.047413,-0.605704,-0.840583,0.063818,-0.666925,-0.840583,0.108635,-0.711743,
-0.763855,0.169856,-0.728147,-0.763855,0.231078,-0.711743,-0.763855,0.275895,-0.666926,-0.763855,0.292299,-0.605704,
-0.763855,0.275895,-0.544482,-0.763855,0.231078,-0.499665,-0.763855,0.169856,-0.483261,-0.763855,0.108635,-0.499665,
-0.763855,0.063818,-0.544482,-0.763855,0.047413,-0.605704,-0.763855,0.063818,-0.666925,-0.763855,0.108635,-0.711743,
-0.671161,0.169856,-0.728147,-0.671161,0.231078,-0.711743,-0.671161,0.275895,-0.666926,-0.671161,0.292299,-0.605704,
-0.671161,0.275895,-0.544482,-0.671161,0.231078,-0.499665,-0.671161,0.169856,-0.483261,-0.671161,0.108635,-0.499665,
-0.671161,0.063818,-0.544482,-0.671161,0.047413,-0.605704,-0.671161,0.063818,-0.666925,-0.671161,0.108635,-0.711743,
-0.594433,0.169856,-0.728147,-0.594433,0.231078,-0.711743,-0.594433,0.275895,-0.666926,-0.594433,0.292299,-0.605704,
-0.594433,0.275895,-0.544482,-0.594433,0.231078,-0.499665,-0.594433,0.169856,-0.483261,-0.594433,0.108635,-0.499665,
-0.594433,0.063818,-0.544482,-0.594433,0.047413,-0.605704,-0.594433,0.063818,-0.666925,-0.594433,0.108635,-0.711743,
-0.840583,0.172502,-0.437665,-0.840583,0.233723,-0.421261,-0.840583,0.278541,-0.376444,-0.840583,0.294945,-0.315222,
-0.840583,0.278541,-0.254001,-0.840583,0.233724,-0.209184,-0.840583,0.172502,-0.192779,-0.840583,0.111280,-0.209184,
-0.840583,0.066463,-0.254001,-0.840583,0.050059,-0.315222,-0.840583,0.066463,-0.376444,-0.840583,0.111280,-0.421261,
-0.763855,0.172502,-0.437665,-0.763855,0.233723,-0.421261,-0.763855,0.278541,-0.376444,-0.763855,0.294945,-0.315222,
-0.763855,0.278541,-0.254001,-0.763855,0.233724,-0.209184,-0.763855,0.172502,-0.192779,-0.763855,0.111280,-0.209184,
-0.763855,0.066463,-0.254001,-0.763855,0.050059,-0.315222,-0.763855,0.066463,-0.376444,-0.763855,0.111280,-0.421261,
-0.671161,0.172502,-0.437665,-0.671161,0.233723,-0.421261,-0.671161,0.278541,-0.376444,-0.671161,0.294945,-0.315222,
-0.671161,0.278541,-0.254001,-0.671161,0.233723,-0.209184,-0.671161,0.172502,-0.192779,-0.671161,0.111280,-0.209184,
-0.671161,0.066463,-0.254001,-0.671161,0.050059,-0.315222,-0.671161,0.066463,-0.376444,-0.671161,0.111280,-0.421261,
-0.594433,0.172502,-0.437665,-0.594433,0.233723,-0.421261,-0.594433,0.278541,-0.376444,-0.594433,0.294945,-0.315222,
-0.594433,0.278541,-0.254001,-0.594433,0.233723,-0.209184,-0.594433,0.172502,-0.192779,-0.594433,0.111281,-0.209184,
-0.594433,0.066463,-0.254001,-0.594433,0.050059,-0.315222,-0.594433,0.066463,-0.376444,-0.594433,0.111280,-0.421261,
-0.840583,0.171444,-0.071775,-0.840583,0.232665,-0.055371,-0.840583,0.277483,-0.010554,-0.840583,0.293887,0.050668,
-0.840583,0.277483,0.111889,-0.840583,0.232666,0.156707,-0.840583,0.171444,0.173111,-0.840583,0.110223,0.156707,
-0.840583,0.065405,0.111889,-0.840583,0.049001,0.050668,-0.840583,0.065405,-0.010554,-0.840583,0.110222,-0.055371,
-0.763855,0.171444,-0.071775,-0.763855,0.232665,-0.055371,-0.763855,0.277483,-0.010554,-0.763855,0.293887,0.050668,
-0.763855,0.277483,0.111889,-0.763855,0.232666,0.156707,-0.763855,0.171444,0.173111,-0.763855,0.110223,0.156707,
-0.763855,0.065405,0.111889,-0.763855,0.049001,0.050668,-0.763855,0.065405,-0.010554,-0.763855,0.110222,-0.055371,
-0.671161,0.171444,-0.071775,-0.671161,0.232665,-0.055371,-0.671161,0.277483,-0.010554,-0.671161,0.293887,0.050668,
-0.671161,0.277483,0.111889,-0.671161,0.232665,0.156707,-0.671161,0.171444,0.173111,-0.671161,0.110222,0.156707,
-0.671161,0.065405,0.111889,-0.671161,0.049001,0.050668,-0.671161,0.065405,-0.010554,-0.671161,0.110222,-0.055371,
-0.594433,0.171444,-0.071775,-0.594433,0.232665,-0.055371,-0.594433,0.277483,-0.010554,-0.594433,0.293887,0.050668,
-0.594433,0.277483,0.111889,-0.594433,0.232665,0.156707,-0.594433,0.171444,0.173111,-0.594433,0.110222,0.156707,
-0.594433,0.065405,0.111889,-0.594433,0.049001,0.050668,-0.594433,0.065405,-0.010554,-0.594433,0.110222,-0.055371,
-0.840583,0.171973,0.218859,-0.840583,0.233195,0.235263,-0.840583,0.278012,0.280080,-0.840583,0.294416,0.341302,
-0.840583,0.278012,0.402523,-0.840583,0.233195,0.447340,-0.840583,0.171973,0.463745,-0.840583,0.110752,0.447340,
-0.840583,0.065934,0.402523,-0.840583,0.049530,0.341302,-0.840583,0.065934,0.280080,-0.840583,0.110751,0.235263,
-0.763855,0.171973,0.218859,-0.763855,0.233195,0.235263,-0.763855,0.278012,0.280080,-0.763855,0.294416,0.341302,
-0.763855,0.278012,0.402523,-0.763855,0.233195,0.447340,-0.763855,0.171973,0.463745,-0.763855,0.110752,0.447340,
-0.763855,0.065934,0.402523,-0.763855,0.049530,0.341302,-0.763855,0.065934,0.280080,-0.763855,0.110751,0.235263,
-0.671161,0.171973,0.218859,-0.671161,0.233195,0.235263,-0.671161,0.278012,0.280080,-0.671161,0.294416,0.341302,
-0.671161,0.278012,0.402523,-0.671161,0.233195,0.447340,-0.671161,0.171973,0.463745,-0.671161,0.110752,0.447340,
-0.671161,0.065934,0.402523,-0.671161,0.049530,0.341302,-0.671161,0.065934,0.280080,-0.671161,0.110751,0.235263,
-0.594433,0.171973,0.218859,-0.594433,0.233195,0.235263,-0.594433,0.278012,0.280080,-0.594433,0.294416,0.341302,
-0.594433,0.278012,0.402523,-0.594433,0.233195,0.447340,-0.594433,0.171973,0.463745,-0.594433,0.110752,0.447340,
-0.594433,0.065934,0.402523,-0.594433,0.049530,0.341302,-0.594433,0.065934,0.280080,-0.594433,0.110751,0.235263,
-0.840583,0.177793,0.576813,-0.840583,0.239014,0.593217,-0.840583,0.283832,0.638034,-0.840583,0.300236,0.699256,
-0.840583,0.283832,0.760477,-0.840583,0.239014,0.805294,-0.840583,0.177793,0.821699,-0.840583,0.116572,0.805295,
-0.840583,0.071754,0.760477,-0.840583,0.055350,0.699256,-0.840583,0.071754,0.638034,-0.840583,0.116571,0.593217,
-0.763855,0.177793,0.576813,-0.763855,0.239014,0.593217,-0.763855,0.283832,0.638034,-0.763855,0.300236,0.699256,
-0.763855,0.283832,0.760477,-0.763855,0.239014,0.805294,-0.763855,0.177793,0.821699,-0.763855,0.116572,0.805295,
-0.763855,0.071754,0.760477,-0.763855,0.055350,0.699256,-0.763855,0.071754,0.638034,-0.763855,0.116571,0.593217,
-0.671161,0.177793,0.576813,-0.671161,0.239014,0.593217,-0.671161,0.283832,0.638034,-0.671161,0.300236,0.699256,
-0.671161,0.283832,0.760477,-0.671161,0.239014,0.805294,-0.671161,0.177793,0.821699,-0.671161,0.116571,0.805295,
-0.671161,0.071754,0.760477,-0.671161,0.055350,0.699256,-0.671161,0.071754,0.638034,-0.671161,0.116571,0.593217,
-0.594433,0.177793,0.576813,-0.594433,0.239014,0.593217,-0.594433,0.283832,0.638034,-0.594433,0.300236,0.699256,
-0.594433,0.283832,0.760477,-0.594433,0.239014,0.805294,-0.594433,0.177793,0.821699,-0.594433,0.116571,0.805295,
-0.594433,0.071754,0.760477,-0.594433,0.055350,0.699256,-0.594433,0.071754,0.638034,-0.594433,0.116571,0.593217,
-0.671161,0.194382,0.869339,-0.671161,0.255604,0.885743,-0.671161,0.300421,0.930560,-0.671161,0.316825,0.991782,
-0.671161,0.300421,1.053003,-0.671161,0.255604,1.097821,-0.671161,0.194382,1.114225,-0.671161,0.133161,1.097821,
-0.671161,0.088343,1.053003,-0.671161,0.071939,0.991782,-0.671161,0.088343,0.930561,-0.671161,0.133161,0.885743,
-0.594433,0.194382,0.869339,-0.594433,0.255604,0.885743,-0.594433,0.300421,0.930560,-0.594433,0.316825,0.991782,
-0.594433,0.300421,1.053003,-0.594433,0.255604,1.097821,-0.594433,0.194382,1.114225,-0.594433,0.133161,1.097821,
-0.594433,0.088343,1.053003,-0.594433,0.071939,0.991782,-0.594433,0.088343,0.930561,-0.594433,0.133161,0.885743,
-0.840583,0.194382,0.869339,-0.840583,0.255604,0.885743,-0.840583,0.300421,0.930560,-0.840583,0.316825,0.991782,
-0.840583,0.300421,1.053003,-0.840583,0.255604,1.097821,-0.840583,0.194382,1.114225,-0.840583,0.133161,1.097821,
-0.840583,0.088343,1.053003,-0.840583,0.071939,0.991782,-0.840583,0.088343,0.930561,-0.840583,0.133161,0.885743,
-0.763855,0.194382,0.869339,-0.763855,0.255604,0.885743,-0.763855,0.300421,0.930560,-0.763855,0.316825,0.991782,
-0.763855,0.300421,1.053003,-0.763855,0.255604,1.097821,-0.763855,0.194382,1.114225,-0.763855,0.133161,1.097821,
-0.763855,0.088343,1.053003,-0.763855,0.071939,0.991782,-0.763855,0.088343,0.930561,-0.763855,0.133161,0.885743,
0.809039,0.857713,0.603166,0.809039,0.890862,0.612049,0.809039,0.915130,0.636316,0.809039,0.924012,0.669466,
0.809039,0.915130,0.702615,0.809039,0.890862,0.726883,0.809039,0.857713,0.735765,0.809039,0.824563,0.726883,
0.809039,0.800296,0.702615,0.809039,0.791413,0.669466,0.809039,0.800296,0.636316,0.809039,0.824563,0.612049,
0.767493,0.857713,0.603166,0.767493,0.890862,0.612049,0.767493,0.915130,0.636316,0.767493,0.924012,0.669466,
0.767493,0.915130,0.702615,0.767493,0.890862,0.726883,0.767493,0.857713,0.735765,0.767493,0.824563,0.726883,
0.767493,0.800296,0.702615,0.767493,0.791413,0.669466,0.767493,0.800296,0.636316,0.767493,0.824563,0.612049,
0.688453,0.857713,0.603166,0.688453,0.890862,0.612049,0.688453,0.915130,0.636316,0.688453,0.924012,0.669466,
0.688453,0.915130,0.702615,0.688453,0.890862,0.726883,0.688453,0.857713,0.735765,0.688453,0.824563,0.726883,
0.688453,0.800296,0.702615,0.688453,0.791413,0.669466,0.688453,0.800296,0.636316,0.688453,0.824563,0.612049,
0.646907,0.857713,0.603166,0.646907,0.890862,0.612049,0.646907,0.915130,0.636316,0.646907,0.924012,0.669466,
0.646907,0.915130,0.702615,0.646907,0.890862,0.726883,0.646907,0.857713,0.735765,0.646907,0.824563,0.726883,
0.646907,0.800296,0.702615,0.646907,0.791413,0.669466,0.646907,0.800296,0.636316,0.646907,0.824563,0.612049,
0.809039,0.857713,0.299694,0.809039,0.890862,0.308577,0.809039,0.915130,0.332844,0.809039,0.924012,0.365994,
0.809039,0.915130,0.399143,0.809039,0.890862,0.423411,0.809039,0.857713,0.432293,0.809039,0.824563,0.423411,
0.809039,0.800296,0.399143,0.809039,0.791413,0.365994,0.809039,0.800296,0.332844,0.809039,0.824563,0.308577,
0.767493,0.857713,0.299694,0.767493,0.890862,0.308577,0.767493,0.915130,0.332844,0.767493,0.924012,0.365994,
0.767493,0.915130,0.399143,0.767493,0.890862,0.423411,0.767493,0.857713,0.432293,0.767493,0.824563,0.423411,
0.767493,0.800296,0.399143,0.767493,0.791413,0.365994,0.767493,0.800296,0.332844,0.767493,0.824563,0.308577,
0.688453,0.857713,0.299694,0.688453,0.890862,0.308577,0.688453,0.915130,0.332844,0.688453,0.924012,0.365994,
0.688453,0.915130,0.399143,0.688453,0.890862,0.423411,0.688453,0.857713,0.432293,0.688453,0.824563,0.423411,
0.688453,0.800296,0.399143,0.688453,0.791413,0.365994,0.688453,0.800296,0.332844,0.688453,0.824563,0.308577,
0.646907,0.857713,0.299694,0.646907,0.890862,0.308577,0.646907,0.915130,0.332844,0.646907,0.924012,0.365994,
0.646907,0.915130,0.399143,0.646907,0.890862,0.423411,0.646907,0.857713,0.432293,0.646907,0.824563,0.423411,
0.646907,0.800296,0.399143,0.646907,0.791413,0.365994,0.646907,0.800296,0.332844,0.646907,0.824563,0.308577,
0.809039,0.857713,0.003798,0.809039,0.890862,0.012681,0.809039,0.915129,0.036948,0.809039,0.924012,0.070098,
0.809039,0.915129,0.103247,0.809039,0.890862,0.127515,0.809039,0.857713,0.136397,0.809039,0.824563,0.127515,
0.809039,0.800296,0.103247,0.809039,0.791413,0.070098,0.809039,0.800296,0.036948,0.809039,0.824563,0.012681,
0.767493,0.857713,0.003798,0.767493,0.890862,0.012681,0.767493,0.915129,0.036948,0.767493,0.924012,0.070098,
0.767493,0.915129,0.103247,0.767493,0.890862,0.127515,0.767493,0.857713,0.136397,0.767493,0.824563,0.127515,
0.767493,0.800296,0.103247,0.767493,0.791413,0.070098,0.767493,0.800296,0.036948,0.767493,0.824563,0.012681,
0.688453,0.857713,0.003798,0.688453,0.890862,0.012681,0.688453,0.915129,0.036948,0.688453,0.924012,0.070098,
0.688453,0.915129,0.103247,0.688453,0.890862,0.127515,0.688453,0.857713,0.136397,0.688453,0.824563,0.127515,
0.688453,0.800296,0.103247,0.688453,0.791413,0.070098,0.688453,0.800296,0.036948,0.688453,0.824563,0.012681,
0.646907,0.857713,0.003798,0.646907,0.890862,0.012681,0.646907,0.915129,0.036948,0.646907,0.924012,0.070098,
0.646907,0.915129,0.103247,0.646907,0.890862,0.127515,0.646907,0.857713,0.136397,0.646907,0.824563,0.127515,
0.646907,0.800296,0.103247,0.646907,0.791413,0.070098,0.646907,0.800296,0.036948,0.646907,0.824563,0.012681,
0.688453,0.753213,-0.968304,0.688453,0.786363,-0.959421,0.688453,0.810630,-0.935154,0.688453,0.819512,-0.902004,
0.688453,0.810630,-0.868855,0.688453,0.786363,-0.844587,0.688453,0.753213,-0.835705,0.688453,0.720063,-0.844587,
0.688453,0.695796,-0.868855,0.688453,0.686914,-0.902004,0.688453,0.695796,-0.935154,0.688453,0.720063,-0.959421,
0.646907,0.753213,-0.968304,0.646907,0.786363,-0.959421,0.646907,0.810630,-0.935154,0.646907,0.819512,-0.902004,
0.646907,0.810630,-0.868855,0.646907,0.786363,-0.844587,0.646907,0.753213,-0.835705,0.646907,0.720063,-0.844587,
0.646907,0.695796,-0.868855,0.646907,0.686914,-0.902004,0.646907,0.695796,-0.935154,0.646907,0.720063,-0.959421,
0.809039,0.753213,-0.968304,0.809039,0.786363,-0.959421,0.809039,0.810630,-0.935154,0.809039,0.819512,-0.902004,
0.809039,0.810630,-0.868855,0.809039,0.786363,-0.844587,0.809039,0.753213,-0.835705,0.809039,0.720063,-0.844587,
0.809039,0.695796,-0.868855,0.809039,0.686914,-0.902004,0.809039,0.695796,-0.935154,0.809039,0.720063,-0.959421,
0.767493,0.753213,-0.968304,0.767493,0.786363,-0.959421,0.767493,0.810630,-0.935154,0.767493,0.819512,-0.902004,
0.767493,0.810630,-0.868855,0.767493,0.786363,-0.844587,0.767493,0.753213,-0.835705,0.767493,0.720063,-0.844587,
0.767493,0.695796,-0.868855,0.767493,0.686914,-0.902004,0.767493,0.695796,-0.935154,0.767493,0.720063,-0.959421,
0.862167,0.419188,-1.359564,0.862167,0.437012,-1.354788,0.862167,0.450061,-1.341740,0.862167,0.454837,-1.323915,
0.862167,0.450061,-1.306091,0.862167,0.437012,-1.293042,0.862167,0.419188,-1.288266,0.862167,0.401363,-1.293042,
0.862167,0.388315,-1.306091,0.862167,0.383539,-1.323915,0.862167,0.388315,-1.341740,0.862167,0.401363,-1.354788,
0.841889,0.419188,-1.383448,0.841889,0.448954,-1.375472,0.841889,0.470744,-1.353682,0.841889,0.478720,-1.323915,
0.841889,0.470744,-1.294149,0.841889,0.448954,-1.272358,0.841889,0.419188,-1.264382,0.841889,0.389421,-1.272358,
0.841889,0.367631,-1.294149,0.841889,0.359655,-1.323915,0.841889,0.367631,-1.353682,0.841889,0.389421,-1.375472,
0.830660,0.419188,-1.383448,0.830660,0.448954,-1.375472,0.830660,0.470744,-1.353682,0.830660,0.478720,-1.323915,
0.830660,0.470744,-1.294149,0.830660,0.448954,-1.272358,0.830660,0.419188,-1.264382,0.830660,0.389421,-1.272358,
0.830660,0.367631,-1.294149,0.830660,0.359655,-1.323915,0.830660,0.367631,-1.353682,0.830660,0.389421,-1.375472,
0.795129,0.419188,-1.546787,0.795129,0.530623,-1.516927,0.795129,0.612200,-1.435351,0.795129,0.642059,-1.323915,
0.795129,0.612200,-1.212479,0.795129,0.530623,-1.130903,0.795129,0.419188,-1.101044,0.795129,0.307752,-1.130903,
0.795129,0.226175,-1.212479,0.795129,0.196316,-1.323915,0.795129,0.226175,-1.435351,0.795129,0.307752,-1.516927,
0.801625,0.419188,-1.605223,0.801625,0.559842,-1.567535,0.801625,0.662807,-1.464569,0.801625,0.700495,-1.323915,
0.801625,0.662807,-1.183261,0.801625,0.559842,-1.080296,0.801625,0.419188,-1.042607,0.801625,0.278534,-1.080295,
0.801625,0.175568,-1.183261,0.801625,0.137880,-1.323915,0.801625,0.175568,-1.464569,0.801625,0.278533,-1.567535,
0.629223,0.419188,-1.605223,0.629223,0.559842,-1.567535,0.629223,0.662807,-1.464569,0.629223,0.700495,-1.323915,
0.629223,0.662807,-1.183261,0.629223,0.559842,-1.080296,0.629223,0.419188,-1.042607,0.629223,0.278534,-1.080295,
0.629223,0.175568,-1.183261,0.629223,0.137880,-1.323915,0.629223,0.175568,-1.464569,0.629223,0.278534,-1.567535,
0.691197,0.610143,-1.434163,0.739651,0.610143,-1.434163,0.739651,0.529436,-1.514871,0.691198,0.529436,-1.514871,
0.691197,0.419188,-1.544412,0.739651,0.419188,-1.544412,0.739651,0.308939,-1.514871,0.691198,0.308939,-1.514871,
0.691197,0.529436,-1.132960,0.739651,0.529436,-1.132960,0.739651,0.610143,-1.213667,0.691198,0.610143,-1.213667,
0.684516,0.662807,-1.183261,0.746332,0.662807,-1.183261,0.746332,0.559842,-1.080296,0.684516,0.559842,-1.080296,
0.684516,0.278534,-1.567535,0.746332,0.278534,-1.567535,0.746332,0.419188,-1.605223,0.684516,0.419188,-1.605223,
0.684516,0.559842,-1.567535,0.746332,0.559842,-1.567535,0.746332,0.662807,-1.464569,0.684516,0.662807,-1.464569,
0.684516,0.175568,-1.183261,0.746332,0.175568,-1.183261,0.746332,0.137880,-1.323915,0.684516,0.137880,-1.323915,
0.746332,0.419188,-1.042607,0.684516,0.419188,-1.042607,0.746332,0.700495,-1.323915,0.684516,0.700495,-1.323915,
0.746332,0.175568,-1.464569,0.684516,0.175568,-1.464569,0.746332,0.278534,-1.080295,0.684516,0.278534,-1.080295,
0.691198,0.228232,-1.213667,0.739651,0.228232,-1.213667,0.739651,0.198691,-1.323915,0.691198,0.198691,-1.323915,
0.739651,0.419188,-1.103419,0.691197,0.419188,-1.103419,0.739651,0.639684,-1.323915,0.691197,0.639684,-1.323915,
0.739651,0.228232,-1.434163,0.691198,0.228232,-1.434163,0.739651,0.308939,-1.132959,0.691197,0.308939,-1.132959,
0.840583,0.173031,-1.090333,0.840583,0.234252,-1.073929,0.840583,0.279069,-1.029112,0.840583,0.295474,-0.967890,
0.840583,0.279069,-0.906669,0.840583,0.234252,-0.861851,0.840583,0.173031,-0.845447,0.840583,0.111809,-0.861851,
0.840583,0.066992,-0.906669,0.840583,0.050588,-0.967890,0.840583,0.066992,-1.029112,0.840583,0.111809,-1.073929,
0.763855,0.173031,-1.090333,0.763855,0.234252,-1.073929,0.763855,0.279069,-1.029112,0.763855,0.295474,-0.967890,
0.763855,0.279069,-0.906669,0.763855,0.234252,-0.861851,0.763855,0.173031,-0.845447,0.763855,0.111809,-0.861851,
0.763855,0.066992,-0.906669,0.763855,0.050588,-0.967890,0.763855,0.066992,-1.029112,0.763855,0.111809,-1.073929,
0.671161,0.173030,-1.090333,0.671161,0.234252,-1.073929,0.671161,0.279069,-1.029112,0.671161,0.295474,-0.967890,
0.671161,0.279069,-0.906669,0.671161,0.234252,-0.861851,0.671161,0.173031,-0.845447,0.671161,0.111809,-0.861851,
0.671161,0.066992,-0.906669,0.671161,0.050587,-0.967890,0.671161,0.066992,-1.029112,0.671161,0.111809,-1.073929,
0.594433,0.173030,-1.090333,0.594433,0.234252,-1.073929,0.594433,0.279069,-1.029112,0.594433,0.295473,-0.967890,
0.594433,0.279069,-0.906669,0.594433,0.234252,-0.861851,0.594433,0.173031,-0.845447,0.594433,0.111809,-0.861851,
0.594433,0.066992,-0.906669,0.594433,0.050587,-0.967890,0.594433,0.066992,-1.029112,0.594433,0.111809,-1.073929,
0.840583,0.169856,-0.728147,0.840583,0.231078,-0.711743,0.840583,0.275895,-0.666926,0.840583,0.292299,-0.605704,
0.840583,0.275895,-0.544482,0.840583,0.231078,-0.499665,0.840583,0.169856,-0.483261,0.840583,0.108635,-0.499665,
0.840583,0.063818,-0.544482,0.840583,0.047413,-0.605704,0.840583,0.063818,-0.666925,0.840583,0.108635,-0.711743,
0.763855,0.169856,-0.728147,0.763855,0.231078,-0.711743,0.763855,0.275895,-0.666926,0.763855,0.292299,-0.605704,
0.763855,0.275895,-0.544482,0.763855,0.231078,-0.499665,0.763855,0.169856,-0.483261,0.763855,0.108635,-0.499665,
0.763855,0.063818,-0.544482,0.763855,0.047413,-0.605704,0.763855,0.063818,-0.666925,0.763855,0.108635,-0.711743,
0.671161,0.169856,-0.728147,0.671161,0.231078,-0.711743,0.671161,0.275895,-0.666926,0.671161,0.292299,-0.605704,
0.671161,0.275895,-0.544482,0.671161,0.231078,-0.499665,0.671161,0.169856,-0.483261,0.671161,0.108635,-0.499665,
0.671161,0.063818,-0.544482,0.671161,0.047413,-0.605704,0.671161,0.063818,-0.666925,0.671161,0.108635,-0.711743,
0.594433,0.169856,-0.728147,0.594433,0.231078,-0.711743,0.594433,0.275895,-0.666926,0.594433,0.292299,-0.605704,
0.594433,0.275895,-0.544482,0.594433,0.231078,-0.499665,0.594433,0.169856,-0.483261,0.594433,0.108635,-0.499665,
0.594433,0.063818,-0.544482,0.594433,0.047413,-0.605704,0.594433,0.063817,-0.666925,0.594433,0.108635,-0.711743,
0.840583,0.172502,-0.437665,0.840583,0.233723,-0.421261,0.840583,0.278541,-0.376444,0.840583,0.294945,-0.315222,
0.840583,0.278541,-0.254001,0.840583,0.233723,-0.209184,0.840583,0.172502,-0.192779,0.840583,0.111280,-0.209184,
0.840583,0.066463,-0.254001,0.840583,0.050059,-0.315222,0.840583,0.066463,-0.376444,0.840583,0.111280,-0.421261,
0.763855,0.172502,-0.437665,0.763855,0.233723,-0.421261,0.763855,0.278541,-0.376444,0.763855,0.294945,-0.315222,
0.763855,0.278541,-0.254001,0.763855,0.233723,-0.209184,0.763855,0.172502,-0.192779,0.763855,0.111280,-0.209184,
0.763855,0.066463,-0.254001,0.763855,0.050059,-0.315222,0.763855,0.066463,-0.376444,0.763855,0.111280,-0.421261,
0.671161,0.172502,-0.437665,0.671161,0.233723,-0.421261,0.671161,0.278541,-0.376444,0.671161,0.294945,-0.315222,
0.671161,0.278541,-0.254001,0.671161,0.233723,-0.209184,0.671161,0.172502,-0.192779,0.671161,0.111280,-0.209184,
0.671161,0.066463,-0.254001,0.671161,0.050059,-0.315222,0.671161,0.066463,-0.376444,0.671161,0.111280,-0.421261,
0.594433,0.172502,-0.437665,0.594433,0.233723,-0.421261,0.594433,0.278541,-0.376444,0.594433,0.294945,-0.315222,
0.594433,0.278541,-0.254001,0.594433,0.233723,-0.209184,0.594433,0.172502,-0.192779,0.594433,0.111280,-0.209184,
0.594433,0.066463,-0.254001,0.594433,0.050059,-0.315222,0.594433,0.066463,-0.376444,0.594433,0.111280,-0.421261,
0.840583,0.171444,-0.071775,0.840583,0.232665,-0.055371,0.840583,0.277483,-0.010554,0.840583,0.293887,0.050668,
0.840583,0.277483,0.111889,0.840583,0.232665,0.156707,0.840583,0.171444,0.173111,0.840583,0.110222,0.156707,
0.840583,0.065405,0.111889,0.840583,0.049001,0.050668,0.840583,0.065405,-0.010554,0.840583,0.110222,-0.055371,
0.763855,0.171444,-0.071775,0.763855,0.232665,-0.055371,0.763855,0.277483,-0.010554,0.763855,0.293887,0.050668,
0.763855,0.277483,0.111889,0.763855,0.232665,0.156707,0.763855,0.171444,0.173111,0.763855,0.110222,0.156707,
0.763855,0.065405,0.111889,0.763855,0.049001,0.050668,0.763855,0.065405,-0.010554,0.763855,0.110222,-0.055371,
0.671161,0.171444,-0.071775,0.671161,0.232665,-0.055371,0.671161,0.277483,-0.010554,0.671161,0.293887,0.050668,
0.671161,0.277483,0.111889,0.671161,0.232665,0.156707,0.671161,0.171444,0.173111,0.671161,0.110222,0.156707,
0.671161,0.065405,0.111889,0.671161,0.049001,0.050668,0.671161,0.065405,-0.010554,0.671161,0.110222,-0.055371,
0.594433,0.171444,-0.071775,0.594433,0.232665,-0.055371,0.594433,0.277483,-0.010554,0.594433,0.293887,0.050668,
0.594433,0.277483,0.111889,0.594433,0.232665,0.156707,0.594433,0.171444,0.173111,0.594433,0.110222,0.156707,
0.594433,0.065405,0.111889,0.594433,0.049001,0.050668,0.594433,0.065405,-0.010554,0.594433,0.110222,-0.055371,
0.840583,0.171973,0.218859,0.840583,0.233194,0.235263,0.840583,0.278012,0.280080,0.840583,0.294416,0.341302,
0.840583,0.278012,0.402523,0.840583,0.233194,0.447340,0.840583,0.171973,0.463745,0.840583,0.110751,0.447340,
0.840583,0.065934,0.402523,0.840583,0.049530,0.341302,0.840583,0.065934,0.280080,0.840583,0.110751,0.235263,
0.763855,0.171973,0.218859,0.763855,0.233194,0.235263,0.763855,0.278012,0.280080,0.763855,0.294416,0.341302,
0.763855,0.278012,0.402523,0.763855,0.233194,0.447340,0.763855,0.171973,0.463745,0.763855,0.110751,0.447340,
0.763855,0.065934,0.402523,0.763855,0.049530,0.341302,0.763855,0.065934,0.280080,0.763855,0.110751,0.235263,
0.671161,0.171973,0.218859,0.671161,0.233194,0.235263,0.671161,0.278012,0.280080,0.671161,0.294416,0.341302,
0.671161,0.278012,0.402523,0.671161,0.233194,0.447340,0.671161,0.171973,0.463745,0.671161,0.110751,0.447340,
0.671161,0.065934,0.402523,0.671161,0.049530,0.341302,0.671161,0.065934,0.280080,0.671161,0.110751,0.235263,
0.594433,0.171973,0.218859,0.594433,0.233194,0.235263,0.594433,0.278012,0.280080,0.594433,0.294416,0.341302,
0.594433,0.278012,0.402523,0.594433,0.233194,0.447340,0.594433,0.171973,0.463745,0.594433,0.110751,0.447340,
0.594433,0.065934,0.402523,0.594433,0.049530,0.341302,0.594433,0.065934,0.280080,0.594433,0.110751,0.235263,
0.840583,0.177793,0.576813,0.840583,0.239014,0.593217,0.840583,0.283832,0.638034,0.840583,0.300236,0.699256,
0.840583,0.283832,0.760477,0.840583,0.239014,0.805294,0.840583,0.177793,0.821699,0.840583,0.116571,0.805295,
0.840583,0.071754,0.760477,0.840583,0.055350,0.699256,0.840583,0.071754,0.638034,0.840583,0.116571,0.593217,
0.763855,0.177793,0.576813,0.763855,0.239014,0.593217,0.763855,0.283832,0.638034,0.763855,0.300236,0.699256,
0.763855,0.283832,0.760477,0.763855,0.239014,0.805294,0.763855,0.177793,0.821699,0.763855,0.116571,0.805295,
0.763855,0.071754,0.760477,0.763855,0.055350,0.699256,0.763855,0.071754,0.638034,0.763855,0.116571,0.593217,
0.671161,0.177793,0.576813,0.671161,0.239014,0.593217,0.671161,0.283832,0.638034,0.671161,0.300236,0.699256,
0.671161,0.283832,0.760477,0.671161,0.239014,0.805294,0.671161,0.177793,0.821699,0.671161,0.116571,0.805295,
0.671161,0.071754,0.760477,0.671161,0.055350,0.699256,0.671161,0.071754,0.638034,0.671161,0.116571,0.593217,
0.594433,0.177793,0.576813,0.594433,0.239014,0.593217,0.594433,0.283832,0.638034,0.594433,0.300236,0.699256,
0.594433,0.283832,0.760477,0.594433,0.239014,0.805294,0.594433,0.177793,0.821699,0.594433,0.116571,0.805295,
0.594433,0.071754,0.760477,0.594433,0.055350,0.699256,0.594433,0.071754,0.638034,0.594433,0.116571,0.593217,
0.671161,0.194382,0.869339,0.671161,0.255604,0.885743,0.671161,0.300421,0.930560,0.671161,0.316825,0.991782,
0.671161,0.300421,1.053003,0.671161,0.255604,1.097821,0.671161,0.194382,1.114225,0.671161,0.133161,1.097821,
0.671161,0.088343,1.053003,0.671161,0.071939,0.991782,0.671161,0.088343,0.930561,0.671161,0.133160,0.885743,
0.594433,0.194382,0.869339,0.594433,0.255604,0.885743,0.594433,0.300421,0.930560,0.594433,0.316825,0.991782,
0.594433,0.300421,1.053003,0.594433,0.255604,1.097821,0.594433,0.194382,1.114225,0.594433,0.133161,1.097821,
0.594433,0.088343,1.053003,0.594433,0.071939,0.991782,0.594433,0.088343,0.930561,0.594433,0.133160,0.885743,
0.840583,0.194382,0.869339,0.840583,0.255604,0.885743,0.840583,0.300421,0.930560,0.840583,0.316825,0.991782,
0.840583,0.300421,1.053003,0.840583,0.255604,1.097821,0.840583,0.194382,1.114225,0.840583,0.133161,1.097821,
0.840583,0.088343,1.053003,0.840583,0.071939,0.991782,0.840583,0.088343,0.930561,0.840583,0.133160,0.885743,
0.763855,0.194382,0.869339,0.763855,0.255604,0.885743,0.763855,0.300421,0.930560,0.763855,0.316825,0.991782,
0.763855,0.300421,1.053003,0.763855,0.255604,1.097821,0.763855,0.194382,1.114225,0.763855,0.133161,1.097821,
0.763855,0.088343,1.053003,0.763855,0.071939,0.991782,0.763855,0.088343,0.930561,0.763855,0.133160,0.885743,
0.837324,0.538748,1.354606,0.837324,0.569451,1.362833,0.837324,0.591927,1.385309,0.837324,0.600154,1.416012,
0.837324,0.591927,1.446715,0.837324,0.569451,1.469191,0.837324,0.538748,1.477418,0.837324,0.508045,1.469191,
0.837324,0.485569,1.446715,0.837324,0.477342,1.416012,0.837324,0.485569,1.385309,0.837324,0.508045,1.362833,
0.817676,0.538748,1.334116,0.817676,0.579696,1.345088,0.817676,0.609672,1.375064,0.817676,0.620644,1.416012,
0.817676,0.609672,1.456960,0.817676,0.579696,1.486936,0.817676,0.538748,1.497908,0.817676,0.497800,1.486936,
0.817676,0.467823,1.456960,0.817676,0.456851,1.416012,0.817676,0.467823,1.375064,0.817676,0.497800,1.345088,
0.785997,0.538748,1.334116,0.785997,0.579696,1.345088,0.785997,0.609672,1.375064,0.785997,0.620644,1.416012,
0.785997,0.609672,1.456960,0.785997,0.579696,1.486936,0.785997,0.538748,1.497908,0.785997,0.497800,1.486936,
0.785997,0.467823,1.456960,0.785997,0.456851,1.416012,0.785997,0.467823,1.375064,0.785997,0.497800,1.345088,
0.785997,0.538748,1.131323,0.785997,0.681092,1.169464,0.785997,0.785296,1.273668,0.785997,0.823437,1.416012,
0.785997,0.785296,1.558357,0.785997,0.681092,1.662560,0.785997,0.538748,1.700701,0.785997,0.396403,1.662560,
0.785997,0.292200,1.558357,0.785997,0.254059,1.416012,0.785997,0.292200,1.273668,0.785997,0.396403,1.169464,
0.819262,0.538748,1.131323,0.819262,0.681092,1.169464,0.819262,0.785296,1.273668,0.819262,0.823437,1.416012,
0.819262,0.785296,1.558357,0.819262,0.681092,1.662560,0.819262,0.538748,1.700701,0.819262,0.396403,1.662560,
0.819262,0.292200,1.558357,0.819262,0.254059,1.416012,0.819262,0.292200,1.273668,0.819262,0.396403,1.169464,
0.819262,0.538748,1.074701,0.819262,0.709404,1.120428,0.819262,0.834332,1.245356,0.819262,0.880059,1.416012,
0.819262,0.834332,1.586668,0.819262,0.709404,1.711596,0.819262,0.538748,1.757324,0.819262,0.368092,1.711596,
0.819262,0.243164,1.586668,0.819262,0.197436,1.416012,0.819262,0.243163,1.245357,0.819262,0.368092,1.120428,
0.632794,0.538748,1.074701,0.632794,0.709404,1.120428,0.632794,0.834332,1.245356,0.632794,0.880059,1.416012,
0.632794,0.834332,1.586668,0.632794,0.709404,1.711596,0.632794,0.538748,1.757324,0.632794,0.368092,1.711596,
0.632794,0.243164,1.586668,0.632794,0.197436,1.416012,0.632794,0.243163,1.245357,0.632794,0.368092,1.120428,
0.691317,0.709404,1.711596,0.760739,0.709404,1.711596,0.760739,0.538748,1.757324,0.691317,0.538748,1.757324,
0.691317,0.834332,1.245356,0.760739,0.834332,1.245356,0.760739,0.880059,1.416012,0.691317,0.880059,1.416012,
0.691317,0.197436,1.416012,0.760739,0.197436,1.416012,0.760739,0.243163,1.245357,0.691317,0.243163,1.245357,
0.760739,0.368092,1.711596,0.691317,0.368092,1.711596,0.760739,0.834332,1.586668,0.691317,0.834332,1.586668,
0.760739,0.368092,1.120428,0.691317,0.368092,1.120428,0.691317,0.538748,1.074701,0.760739,0.538748,1.074701,
0.760739,0.709404,1.120428,0.691317,0.709404,1.120428,0.760739,0.243164,1.586668,0.691317,0.243164,1.586668,
0.755009,0.291955,1.558498,0.697047,0.291955,1.558498,0.697047,0.253776,1.416012,0.755009,0.253776,1.416012,
0.755009,0.681234,1.169219,0.697047,0.681234,1.169219,0.697047,0.785541,1.273526,0.755009,0.785541,1.273526,
0.755009,0.396262,1.169219,0.697047,0.396262,1.169219,0.697047,0.538748,1.131040,0.755009,0.538748,1.131040,
0.755009,0.785541,1.558498,0.697047,0.785541,1.558498,0.697047,0.681234,1.662805,0.755009,0.681234,1.662805,
0.755009,0.396262,1.662805,0.697047,0.396262,1.662805,0.755009,0.291955,1.273526,0.697047,0.291955,1.273526,
0.755009,0.823720,1.416012,0.697047,0.823720,1.416012,0.755009,0.538748,1.700984,0.697047,0.538748,1.700984,
0.349855,1.891906,-0.127202,0.301372,1.891906,0.053738,0.217739,1.887084,0.005453,0.253284,1.887084,-0.127202,
-0.012027,1.891906,0.234679,-0.192968,1.891906,0.186196,-0.144682,1.887084,0.102563,-0.012027,1.887084,0.138108,
-0.373909,1.891906,-0.127202,-0.325426,1.891906,-0.308143,-0.241793,1.887084,-0.259858,-0.277338,1.887084,-0.127202,
0.301372,1.891906,-0.308143,0.217739,1.887084,-0.259858,0.168914,1.891906,0.186196,0.120628,1.887084,0.102563,
-0.325426,1.891906,0.053738,-0.241793,1.887084,0.005453,0.168914,1.891906,-0.440601,0.120629,1.887084,-0.356968,
-0.192968,1.891906,-0.440602,-0.012027,1.891906,-0.489084,-0.012027,1.887084,-0.392513,-0.144682,1.887084,-0.356968,
-0.277338,1.764336,-0.127202,-0.241793,1.764336,0.005453,0.217739,1.764336,-0.259858,0.120629,1.764336,-0.356968,
-0.012027,1.764336,-0.392513,-0.144682,1.764336,-0.356968,0.120628,1.764336,0.102563,0.217739,1.764336,0.005453,
-0.144682,1.764336,0.102563,-0.241793,1.764336,-0.259858,0.253284,1.764336,-0.127202,-0.012027,1.764336,0.138108,
0.329865,1.983326,-0.127202,0.284060,1.983326,0.043743,-0.012027,1.983326,0.214689,-0.182973,1.983326,0.168884,
-0.353918,1.983326,-0.127202,-0.308114,1.983326,-0.298148,0.284060,1.983326,-0.298148,0.158919,1.983326,0.168884,
-0.308114,1.983326,0.043743,0.158919,1.983326,-0.423289,-0.182973,1.983326,-0.423289,-0.012027,1.983326,-0.469094,
0.141543,2.027529,0.138789,-0.012027,2.027529,0.179938,-0.278018,2.027529,0.026368,-0.319167,2.027529,-0.127202,
0.141544,2.027529,-0.393194,0.253965,2.027529,-0.280773,-0.165597,2.027529,-0.393194,-0.012027,2.027529,-0.434343,
0.253964,2.027529,0.026368,-0.165597,2.027529,0.138789,-0.278018,2.027529,-0.280773,0.295114,2.027529,-0.127202,
0.145662,2.061686,-0.218244,0.170056,2.061686,-0.127202,0.079015,2.061686,0.030486,-0.012027,2.061686,0.054881,
-0.169716,2.061686,-0.036161,-0.194110,2.061686,-0.127202,0.079015,2.061687,-0.284892,-0.103069,2.061687,-0.284892,
-0.012027,2.061687,-0.309286,0.145662,2.061686,-0.036161,-0.103069,2.061686,0.030486,-0.169716,2.061686,-0.218244,
-0.046667,2.080774,-0.127202,-0.042026,2.080774,-0.144523,0.017972,2.080774,-0.144523,0.022613,2.080774,-0.127202,
0.005293,2.080774,-0.097203,-0.012027,2.080774,-0.092562,-0.042026,2.080774,-0.109883,0.005293,2.080774,-0.157202,
-0.029347,2.080774,-0.157202,-0.012027,2.080774,-0.161843,0.017972,2.080774,-0.109883,-0.029347,2.080774,-0.097203,
0.461473,1.769543,0.230071,0.520397,1.342434,0.336529,0.520397,1.342434,-0.407562,0.497402,1.509111,-0.366761,
0.461473,1.769543,-0.881673,0.496932,1.509111,-0.878905,0.000028,1.342434,0.480739,0.000028,1.769543,0.331930,
-0.461416,1.769543,-0.881673,-0.461416,1.769543,0.230071,-0.496875,1.509111,-0.878905,0.000028,1.342434,-0.624560,
-0.520340,1.342434,0.336529,-0.520340,1.342434,-0.407562,0.000028,1.509111,-0.583759,-0.497345,1.509111,-0.366761,
0.299540,1.393821,0.530686,0.299540,1.532676,0.530687,0.285663,1.532676,0.530687,0.285663,1.403162,0.530686,
-0.299484,1.393821,0.530686,-0.285607,1.403162,0.530686,-0.285607,1.532676,0.530687,-0.299484,1.532676,0.530687,
0.299540,1.393821,0.505152,0.285663,1.403162,0.505152,0.285663,1.532676,0.505152,0.299540,1.532676,0.505152,
-0.299484,1.393821,0.505152,-0.285607,1.403162,0.505152,-0.299484,1.532676,0.505152,-0.285607,1.532676,0.505152,
-0.285607,1.403162,0.355762,0.285663,1.403162,0.355762,-0.299484,1.755018,0.530686,-0.285607,1.745677,0.530686,
0.285663,1.745677,0.530686,0.299540,1.755018,0.530686,0.285663,1.616163,0.530687,0.299540,1.616163,0.530687,
-0.299484,1.616163,0.530687,-0.285607,1.616163,0.530687,-0.285607,1.745677,0.555583,0.285663,1.745677,0.555583,
0.329285,1.532676,0.446377,0.285663,1.532676,0.446377,0.329285,1.532676,0.580262,0.285663,1.532676,0.580262,
0.238499,1.631505,0.651390,0.238499,1.709547,0.585901,0.238499,1.709547,0.562564,0.238499,1.631505,0.628053,
0.238499,1.517334,0.651390,0.238499,1.517334,0.628053,0.238499,1.439292,0.585901,0.238499,1.439292,0.562564,
-0.285607,1.745677,0.256290,-0.285607,1.745677,0.505152,0.285663,1.745677,0.505152,0.285663,1.745677,0.256290,
-0.238442,1.709547,0.585901,0.285663,1.631505,0.651390,0.285663,1.403162,0.555583,0.285663,1.517334,0.651390,
-0.238442,1.439292,0.585901,-0.285607,1.403162,0.555583,-0.285607,1.631505,0.651390,-0.238442,1.631505,0.651390,
-0.238442,1.517334,0.651390,-0.285607,1.517334,0.651390,-0.238442,1.709547,0.562564,-0.238442,1.631505,0.628053,
-0.238442,1.517334,0.628053,-0.238442,1.439292,0.562564,0.285663,1.616163,0.429890,0.285663,1.616163,0.505152,
0.285663,1.616163,0.575413,0.329285,1.616163,0.429890,0.329285,1.616163,0.575413,0.299540,1.616163,0.505152,
0.299540,1.755018,0.505152,-0.299484,1.755018,0.505152,-0.299484,1.616163,0.505152,-0.285607,1.616163,0.505152,
-0.329228,1.532676,0.446377,-0.285607,1.532676,0.446377,-0.329228,1.532676,0.580262,-0.285607,1.532676,0.580262,
-0.285607,1.616163,0.429890,-0.285607,1.616163,0.575413,-0.329228,1.616163,0.575413,-0.329228,1.616163,0.429890,
0.238499,1.714344,0.567289,0.238499,1.406938,0.492456,-0.238442,1.714344,0.567289,-0.238442,1.406938,0.492456,
0.238499,1.669111,0.607568,0.238499,1.585352,0.641499,0.238499,1.649708,0.621591,0.238499,1.628410,0.632892,
0.238499,1.605723,0.639262,0.238499,1.563487,0.641499,0.238499,1.472803,0.609231,0.238499,1.543800,0.638628,
0.238499,1.519731,0.634812,0.238499,1.497716,0.625230,-0.238442,1.585352,0.641499,-0.238442,1.669111,0.607568,
-0.238442,1.605723,0.639262,-0.238442,1.628410,0.632892,-0.238442,1.649708,0.621591,-0.238442,1.472802,0.609231,
-0.238442,1.563487,0.641499,-0.238442,1.497716,0.625230,-0.238442,1.519731,0.634812,-0.238442,1.543801,0.638628,
0.238499,1.429784,0.566213,-0.238442,1.429784,0.566213,0.238499,1.450528,0.590220,-0.238442,1.450528,0.590220,
-0.238442,1.413389,0.533801,0.238499,1.413389,0.533801,0.046426,1.601207,0.627613,0.000028,1.627995,0.627613,
0.000028,1.627994,0.793902,0.046426,1.601207,0.793902,-0.046369,1.601207,0.627613,-0.046369,1.601207,0.793902,
-0.046369,1.547632,0.627613,0.000028,1.520844,0.627613,0.000028,1.520844,0.793902,-0.046369,1.547632,0.793902,
0.046426,1.547632,0.627613,0.046426,1.547632,0.793902,0.054888,1.542746,0.609762,0.054888,1.606092,0.609762,
-0.054831,1.542746,0.609762,0.000028,1.511073,0.609762,0.000028,1.637765,0.609762,-0.054831,1.606092,0.609762,
-0.036703,1.553212,0.805537,0.000028,1.532005,0.805537,0.000028,1.532005,1.180388,-0.036703,1.553212,1.180388,
0.036760,1.553212,0.805537,0.036760,1.595627,0.805537,0.036760,1.595627,1.180388,0.036760,1.553212,1.180388,
0.000028,1.616834,0.805537,0.000028,1.616834,1.180388,-0.036703,1.595627,0.805537,-0.036703,1.595627,1.180388,
0.091802,1.553212,0.617507,0.128534,1.532005,0.617507,0.128534,1.532005,0.735767,0.091802,1.553212,0.735767,
0.165266,1.553212,0.617507,0.165266,1.595627,0.617507,0.165266,1.595627,0.735767,0.165266,1.553212,0.735767,
0.128534,1.616834,0.617507,0.128534,1.616834,0.735767,0.091802,1.595627,0.617507,0.091802,1.595627,0.735767,
-0.026458,1.465730,0.545342,-0.000056,1.450487,0.545342,-0.000056,1.450487,0.778152,-0.026458,1.465730,0.778152,
0.026345,1.465730,0.545342,0.026345,1.496216,0.545342,0.026345,1.496216,0.778152,0.026345,1.465730,0.778152,
-0.000056,1.511459,0.545342,-0.000056,1.511459,0.778152,-0.026458,1.496216,0.545342,-0.026458,1.496216,0.778152,
-0.183975,1.561618,0.545342,-0.171462,1.554393,0.545342,-0.171462,1.554393,0.919698,-0.183975,1.561618,0.919698,
-0.158949,1.561618,0.545342,-0.158949,1.576067,0.545342,-0.158949,1.576067,0.919698,-0.158949,1.561618,0.919698,
-0.171462,1.583291,0.545342,-0.171462,1.583291,0.919698,-0.183975,1.576067,0.545342,-0.183975,1.576067,0.919698,
-0.862167,0.419188,-1.359564,-0.862167,0.437012,-1.354788,-0.862167,0.450061,-1.341740,-0.862167,0.454837,-1.323915,
-0.862167,0.450061,-1.306091,-0.862167,0.437012,-1.293042,-0.862167,0.419188,-1.288266,-0.862167,0.401363,-1.293042,
-0.862167,0.388315,-1.306091,-0.862167,0.383539,-1.323915,-0.862167,0.388315,-1.341740,-0.862167,0.401363,-1.354788,
-0.841889,0.419188,-1.383448,-0.841889,0.448954,-1.375472,-0.841889,0.470745,-1.353682,-0.841889,0.478720,-1.323915,
-0.841889,0.470745,-1.294149,-0.841889,0.448954,-1.272358,-0.841889,0.419188,-1.264383,-0.841889,0.389421,-1.272358,
-0.841889,0.367631,-1.294149,-0.841889,0.359655,-1.323915,-0.841889,0.367631,-1.353682,-0.841889,0.389421,-1.375472,
-0.830660,0.419188,-1.383448,-0.830660,0.448954,-1.375472,-0.830660,0.470745,-1.353682,-0.830660,0.478720,-1.323915,
-0.830660,0.470745,-1.294149,-0.830660,0.448954,-1.272358,-0.830660,0.419188,-1.264383,-0.830660,0.389421,-1.272358,
-0.830660,0.367631,-1.294149,-0.830660,0.359655,-1.323915,-0.830660,0.367631,-1.353682,-0.830660,0.389421,-1.375472,
-0.795130,0.419188,-1.546787,-0.795130,0.530623,-1.516928,-0.795130,0.612200,-1.435351,-0.795130,0.642059,-1.323915,
-0.795130,0.612200,-1.212479,-0.795130,0.530623,-1.130903,-0.795130,0.419188,-1.101044,-0.795130,0.307752,-1.130903,
-0.795130,0.226175,-1.212479,-0.795130,0.196316,-1.323915,-0.795130,0.226175,-1.435351,-0.795130,0.307752,-1.516927,
-0.801625,0.419188,-1.605223,-0.801625,0.559842,-1.567535,-0.801625,0.662807,-1.464569,-0.801625,0.700495,-1.323915,
-0.801625,0.662807,-1.183261,-0.801625,0.559842,-1.080296,-0.801625,0.419188,-1.042607,-0.801625,0.278534,-1.080296,
-0.801625,0.175568,-1.183261,-0.801625,0.137880,-1.323915,-0.801625,0.175568,-1.464569,-0.801625,0.278534,-1.567535,
-0.629223,0.419188,-1.605223,-0.629223,0.559842,-1.567535,-0.629223,0.662807,-1.464569,-0.629223,0.700495,-1.323915,
-0.629223,0.662807,-1.183261,-0.629223,0.559842,-1.080296,-0.629223,0.419188,-1.042607,-0.629223,0.278534,-1.080296,
-0.629223,0.175568,-1.183261,-0.629223,0.137880,-1.323915,-0.629223,0.175568,-1.464569,-0.629223,0.278534,-1.567535,
-0.691198,0.610143,-1.434163,-0.739651,0.610143,-1.434163,-0.739651,0.529436,-1.514871,-0.691198,0.529436,-1.514871,
-0.691198,0.419188,-1.544412,-0.739651,0.419188,-1.544412,-0.739651,0.308939,-1.514871,-0.691198,0.308939,-1.514871,
-0.691198,0.529436,-1.132960,-0.739651,0.529436,-1.132960,-0.739651,0.610143,-1.213667,-0.691198,0.610143,-1.213667,
-0.684516,0.662807,-1.183261,-0.746332,0.662807,-1.183261,-0.746332,0.559842,-1.080296,-0.684516,0.559842,-1.080296,
-0.684516,0.278534,-1.567535,-0.746332,0.278534,-1.567535,-0.746332,0.419188,-1.605223,-0.684516,0.419188,-1.605223,
-0.684516,0.559842,-1.567535,-0.746332,0.559842,-1.567535,-0.746332,0.662807,-1.464569,-0.684516,0.662807,-1.464569,
-0.684516,0.175568,-1.183261,-0.746332,0.175568,-1.183261,-0.746332,0.137880,-1.323915,-0.684516,0.137880,-1.323915,
-0.746332,0.419188,-1.042607,-0.684516,0.419188,-1.042607,-0.746332,0.700495,-1.323915,-0.684516,0.700495,-1.323915,
-0.746332,0.175568,-1.464569,-0.684516,0.175568,-1.464569,-0.746332,0.278534,-1.080296,-0.684516,0.278534,-1.080296,
-0.691198,0.228232,-1.213667,-0.739651,0.228232,-1.213667,-0.739651,0.198691,-1.323915,-0.691198,0.198691,-1.323915,
-0.739651,0.419188,-1.103419,-0.691198,0.419188,-1.103419,-0.739651,0.639684,-1.323915,-0.691198,0.639684,-1.323915,
-0.739651,0.228232,-1.434163,-0.691198,0.228232,-1.434163,-0.739651,0.308940,-1.132960,-0.691198,0.308940,-1.132960
PolygonVertexIndex: 0,1,2,-4,4,5,6,-8,8,4,7,-10,10,8,9,-12,5,10,11,-7,0,12,6,-12,13,1,9,-8,1,0,11,-10,
12,13,7,-7,14,3,2,-16,12,0,3,-15,13,12,14,-16,1,13,15,-3,16,17,18,-20,20,21,22,-24,24,25,26,-28,
19,18,25,-25,23,22,17,-17,27,26,21,-21,25,28,29,-27,18,30,28,-26,22,31,32,-18,26,29,33,-22,17,32,30,-19,
21,33,31,-23,32,34,35,-31,33,36,37,-32,28,38,39,-30,30,35,38,-29,31,37,34,-33,29,39,36,-34,34,39,38,-36,
37,36,39,-35,16,19,24,-28,23,16,27,-21,40,41,42,43,-45,44,43,45,46,-48,47,46,48,49,-51,50,49,51,41,-41,
52,53,54,-56,52,56,40,-45,53,52,44,-48,57,53,47,-51,56,57,50,-41,53,57,58,-55,56,52,55,-60,57,56,59,-59,
51,49,-61,48,60,-50,48,46,-62,61,46,-46,45,43,-63,42,62,-44,42,41,-64,63,41,-52,64,65,66,-68,45,64,67,-62,
65,68,-67,67,66,69,-71,61,67,70,-49,66,68,-70,70,69,71,-73,48,70,72,-61,69,68,-72,72,71,73,-75,60,72,74,
-52,71,68,-74,74,73,75,-77,51,74,76,-64,73,68,-76,75,68,-78,76,75,77,-79,63,76,78,-43,42,78,79,-63,77,68,
-81,78,77,80,-80,62,79,64,-46,80,68,-66,79,80,65,-65,81,82,83,-85,85,86,87,-89,86,81,84,-88,82,85,88,-84,
89,90,91,92,-94,90,94,95,96,-92,94,97,98,99,-96,97,89,93,100,-99,101,102,103,-105,101,90,89,-106,104,94,90,-102,
106,97,94,-105,105,89,97,-107,104,103,107,-107,105,108,102,-102,106,107,108,-106,100,109,-99,99,98,-110,99,110,-96,110,96,-96,
96,111,-92,92,91,-112,92,112,-94,112,100,-94,113,114,115,-117,96,110,114,-114,116,115,-118,114,118,119,-116,110,99,118,-115,115,
119,-118,118,120,121,-120,99,109,120,-119,119,121,-118,120,122,123,-122,109,100,122,-121,121,123,-118,122,124,125,-124,100,112,124,-123,
123,125,-118,125,126,-118,124,127,126,-126,112,92,127,-125,92,111,128,-128,126,129,-118,127,128,129,-127,111,96,113,-129,129,116,-118,
128,113,116,-130,130,131,132,-134,134,135,136,-138,137,136,131,-131,133,132,135,-135,138,139,140,-142,142,143,144,-146,146,147,148,-150,
139,142,145,-141,143,146,149,-145,147,138,141,-149,150,151,152,-154,154,155,152,-152,154,156,157,-156,158,159,160,-162,162,161,160,-164,
162,163,164,-166,154,162,165,-157,155,163,160,-153,152,160,159,-154,157,164,163,-156,151,161,162,-155,153,159,158,-151,156,165,164,-158,
150,158,161,-152,141,140,145,-145,148,141,144,-150,143,142,139,-139,146,143,138,-148,166,167,168,-170,170,166,169,-172,171,172,173,-171,
174,175,176,-178,176,178,179,-178,174,180,181,-176,177,179,167,-167,174,177,166,-171,174,170,173,-181,169,168,178,-177,176,175,171,-170,
175,181,172,-172,181,180,173,-173,179,178,168,-168,182,183,184,-186,186,187,183,-183,187,186,188,-190,190,191,192,-194,192,191,194,-196,
190,193,196,-198,191,182,185,-195,190,186,182,-192,190,197,188,-187,183,192,195,-185,192,183,187,-194,193,187,189,-197,196,189,188,-198,
194,185,184,-196,198,199,-201,201,202,199,198,-204,204,198,-201,205,203,198,-207,207,208,-210,210,211,212,-214,214,211,210,-216,213,212,
216,-202,209,208,-218,198,204,-208,201,216,218,-203,200,199,-220,220,221,-223,216,223,220,222,-219,217,221,-221,224,225,220,-224,220,209,
-218,221,226,-223,219,199,-228,222,227,-200,222,226,-228,208,207,-205,228,229,230,-232,231,230,232,-234,218,229,228,-203,233,232,222,-200,
231,233,-229,199,202,228,-234,234,235,204,-201,236,234,200,-220,237,208,204,-236,238,221,217,-240,240,226,221,-239,237,239,217,-209,227,
241,236,-220,241,227,226,-241,234,236,-236,238,239,-241,241,240,239,-238,236,241,237,-236,242,243,244,-246,246,247,248,-250,250,251,252,
-254,254,255,256,-258,258,259,260,-262,247,258,261,-249,259,254,257,-261,255,250,253,-257,251,246,249,-253,262,263,247,-247,264,265,250,
-256,266,264,255,-255,265,267,251,-251,263,268,258,-248,267,262,246,-252,269,266,254,-260,268,269,259,-259,270,271,205,-207,271,272,203,
-206,273,270,206,-199,203,210,213,-202,274,275,215,-273,272,215,210,-204,276,277,278,-280,280,281,282,-284,284,283,282,-246,285,286,287,
-285,286,288,289,-288,278,280,283,-280,245,244,285,-285,273,276,-280,285,244,281,-281,290,278,-278,243,242,291,-293,275,293,214,-216,284,
287,266,-270,279,283,-264,273,289,-295,279,263,-263,263,283,-269,283,284,-269,268,284,-270,289,264,266,-288,289,265,-265,273,279,-263,289,
273,267,-266,267,273,-263,294,295,296,-275,288,295,294,-290,294,274,272,-274,281,292,291,-283,245,282,291,-243,296,293,275,-275,276,273,
198,-208,207,209,277,-277,272,271,270,-274,230,229,-233,222,232,229,-219,297,298,299,-301,301,302,303,-305,305,306,307,-309,309,310,311,
-313,300,299,310,-310,312,311,306,-306,308,307,302,-302,304,303,298,-298,313,297,300,-315,315,308,301,-317,317,305,308,-316,316,301,304,
-319,314,300,309,-320,318,304,297,-314,320,312,305,-318,319,309,312,-321,321,225,224,-323,322,224,223,-324,290,220,225,-322,223,216,212,
-212,296,323,214,-294,323,223,211,-215,285,320,317,-287,278,314,-281,290,295,-289,278,313,-315,314,319,-281,280,319,-286,319,320,-286,288,
286,317,-316,288,315,-317,290,313,-279,288,316,318,-291,318,313,-291,295,290,323,-297,244,243,292,-282,277,209,220,-291,323,290,321,-323,
253,252,249,-249,260,257,256,-254,261,260,253,-249,303,302,299,-299,302,307,306,-312,302,311,310,-300,324,325,326,-328,328,329,330,-332,
327,326,332,-334,331,330,325,-325,334,335,329,-329,333,332,335,-335,324,327,333,-335,331,324,334,-329,335,332,326,-326,329,335,325,-331,
336,337,338,-340,340,341,336,-340,342,338,337,-344,340,344,345,-342,344,346,347,-346,341,345,-348,336,343,-338,343,336,341,-348,340,346,