Sphere.fbx
268 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
; 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: 2014
Month: 12
Day: 27
Hour: 00
Minute: 17
Second: 54
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2014-12-27 00:17:54:000"
Creator: "Blender version 2.71 (sub 0)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 11
ObjectType: "Model" {
Count: 9
}
ObjectType: "Geometry" {
Count: 1
}
ObjectType: "Material" {
Count: 1
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::Camera Switcher", "CameraSwitcher" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Camera Index", "Integer", "A+",100
}
MultiLayer: 0
MultiTake: 1
Hidden: "True"
Shading: W
Culling: "CullingOff"
Version: 101
Name: "Model::Camera Switcher"
CameraId: 0
CameraName: 100
CameraIndexName:
}
Model: "Model::Sphere_001", "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+",-90.000009334538021,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.123790,0.019607,0.992115,-0.245628,0.038904,0.968583,-0.363592,0.057588,0.929776,-0.475823,0.075363,0.876307,
-0.580549,0.091950,0.809017,-0.676119,0.107087,0.728969,-0.761027,0.120535,0.637424,-0.833933,0.132082,0.535827,
-0.893687,0.141546,0.425779,-0.939348,0.148778,0.309017,-0.970194,0.153664,0.187381,-0.985739,0.156126,0.062790,
-0.985739,0.156126,-0.062791,-0.970194,0.153664,-0.187382,-0.939347,0.148778,-0.309017,-0.893687,0.141546,-0.425780,
-0.833933,0.132082,-0.535827,-0.761027,0.120535,-0.637424,-0.676119,0.107087,-0.728969,-0.580548,0.091950,-0.809017,
-0.475822,0.075363,-0.876307,-0.363592,0.057587,-0.929777,-0.245627,0.038904,-0.968583,-0.123789,0.019606,-0.992115,
-0.119199,0.038730,0.992115,-0.236518,0.076850,0.968583,-0.350107,0.113757,0.929776,-0.458175,0.148870,0.876307,
-0.559017,0.181636,0.809017,-0.651043,0.211537,0.728969,-0.732802,0.238102,0.637424,-0.803004,0.260912,0.535827,
-0.860542,0.279607,0.425779,-0.904509,0.293893,0.309017,-0.934211,0.303544,0.187381,-0.949180,0.308407,0.062790,
-0.949180,0.308407,-0.062791,-0.934211,0.303544,-0.187382,-0.904508,0.293893,-0.309017,-0.860541,0.279607,-0.425780,
-0.803003,0.260912,-0.535827,-0.732801,0.238102,-0.637424,-0.651043,0.211537,-0.728969,-0.559017,0.181636,-0.809017,
-0.458174,0.148870,-0.876307,-0.350107,0.113757,-0.929777,-0.236517,0.076849,-0.968583,-0.119198,0.038730,-0.992115,
-0.111673,0.056900,0.992115,-0.221584,0.112903,0.968583,-0.328001,0.167125,0.929776,-0.429246,0.218712,0.876307,
-0.523720,0.266849,0.809017,-0.609936,0.310778,0.728969,-0.686532,0.349806,0.637424,-0.752302,0.383317,0.535827,
-0.806207,0.410783,0.425779,-0.847398,0.431771,0.309017,-0.875224,0.445950,0.187381,-0.889248,0.453095,0.062790,
-0.889248,0.453095,-0.062791,-0.875224,0.445949,-0.187382,-0.847397,0.431771,-0.309017,-0.806207,0.410783,-0.425780,
-0.752302,0.383317,-0.535827,-0.686532,0.349806,-0.637424,-0.609936,0.310778,-0.728969,-0.523720,0.266849,-0.809017,
-0.429245,0.218712,-0.876307,-0.328001,0.167125,-0.929777,-0.221584,0.112903,-0.968583,-0.111672,0.056900,-0.992115,
-0.101397,0.073670,0.992115,-0.201194,0.146177,0.968583,-0.297819,0.216379,0.929776,-0.389747,0.283168,0.876307,
-0.475528,0.345492,0.809017,-0.553810,0.402367,0.728969,-0.623358,0.452897,0.637424,-0.683076,0.496284,0.535827,
-0.732020,0.531844,0.425779,-0.769421,0.559018,0.309017,-0.794687,0.577375,0.187381,-0.807421,0.586626,0.062790,
-0.807421,0.586626,-0.062791,-0.794687,0.577374,-0.187382,-0.769421,0.559017,-0.309017,-0.732020,0.531844,-0.425780,
-0.683075,0.496284,-0.535827,-0.623358,0.452897,-0.637424,-0.553810,0.402367,-0.728969,-0.475528,0.345492,-0.809017,
-0.389746,0.283168,-0.876307,-0.297818,0.216378,-0.929777,-0.201194,0.146176,-0.968583,-0.101396,0.073669,-0.992115,
-0.088624,0.088625,0.992115,-0.175850,0.175851,0.968583,-0.260303,0.260304,0.929776,-0.340651,0.340652,0.876307,
-0.415627,0.415628,0.809017,-0.484048,0.484049,0.728969,-0.544835,0.544836,0.637424,-0.597030,0.597031,0.535827,
-0.639809,0.639810,0.425779,-0.672498,0.672499,0.309017,-0.694582,0.694583,0.187381,-0.705711,0.705712,0.062790,
-0.705711,0.705712,-0.062791,-0.694582,0.694583,-0.187382,-0.672498,0.672499,-0.309017,-0.639809,0.639810,-0.425780,
-0.597030,0.597031,-0.535827,-0.544835,0.544836,-0.637424,-0.484048,0.484048,-0.728969,-0.415626,0.415627,-0.809017,
-0.340651,0.340652,-0.876307,-0.260303,0.260304,-0.929777,-0.175850,0.175850,-0.968583,-0.088623,0.088624,-0.992115,
-0.073669,0.101397,0.992115,-0.146176,0.201195,0.968583,-0.216378,0.297820,0.929776,-0.283167,0.389748,0.876307,
-0.345491,0.475529,0.809017,-0.402367,0.553811,0.728969,-0.452896,0.623359,0.637424,-0.496283,0.683076,0.535827,
-0.531844,0.732021,0.425779,-0.559017,0.769422,0.309017,-0.577374,0.794688,0.187381,-0.586625,0.807421,0.062790,
-0.586625,0.807421,-0.062791,-0.577374,0.794688,-0.187382,-0.559017,0.769422,-0.309017,-0.531844,0.732021,-0.425780,
-0.496283,0.683076,-0.535827,-0.452896,0.623359,-0.637424,-0.402366,0.553811,-0.728969,-0.345491,0.475529,-0.809017,
-0.283167,0.389747,-0.876307,-0.216378,0.297819,-0.929777,-0.146176,0.201194,-0.968583,-0.073668,0.101397,-0.992115,
-0.056900,0.111673,0.992115,-0.112902,0.221585,0.968583,-0.167125,0.328002,0.929776,-0.218711,0.429246,0.876307,
-0.266849,0.523721,0.809017,-0.310778,0.609937,0.728969,-0.349805,0.686533,0.637424,-0.383316,0.752303,0.535827,
-0.410783,0.806208,0.425779,-0.431770,0.847399,0.309017,-0.445949,0.875225,0.187381,-0.453094,0.889249,0.062790,
-0.453094,0.889249,-0.062791,-0.445949,0.875225,-0.187382,-0.431770,0.847398,-0.309017,-0.410782,0.806207,-0.425780,
-0.383316,0.752302,-0.535827,-0.349805,0.686533,-0.637424,-0.310777,0.609936,-0.728969,-0.266848,0.523721,-0.809017,
-0.218711,0.429246,-0.876307,-0.167124,0.328002,-0.929777,-0.112902,0.221584,-0.968583,-0.056899,0.111673,-0.992115,
-0.038730,0.119200,0.992115,-0.076849,0.236519,0.968583,-0.113756,0.350108,0.929776,-0.148870,0.458176,0.876307,
-0.181635,0.559018,0.809017,-0.211536,0.651044,0.728969,-0.238101,0.732803,0.637424,-0.260911,0.803004,0.535827,
-0.279607,0.860543,0.425779,-0.293892,0.904510,0.309017,-0.303543,0.934212,0.187381,-0.308407,0.949181,0.062790,
-0.308407,0.949181,-0.062791,-0.303543,0.934211,-0.187382,-0.293892,0.904509,-0.309017,-0.279606,0.860542,-0.425780,
-0.260911,0.803004,-0.535827,-0.238101,0.732802,-0.637424,-0.211536,0.651044,-0.728969,-0.181635,0.559017,-0.809017,
-0.148869,0.458175,-0.876307,-0.113756,0.350107,-0.929777,-0.076849,0.236518,-0.968583,-0.038729,0.119199,-0.992115,
-0.019606,0.123791,0.992115,-0.038903,0.245629,0.968583,-0.057587,0.363593,0.929776,-0.075362,0.475823,0.876307,
-0.091949,0.580550,0.809017,-0.107086,0.676120,0.728969,-0.120534,0.761028,0.637424,-0.132081,0.833934,0.535827,
-0.141546,0.893688,0.425779,-0.148777,0.939349,0.309017,-0.153663,0.970195,0.187381,-0.156125,0.985740,0.062790,
-0.156125,0.985740,-0.062791,-0.153663,0.970195,-0.187382,-0.148777,0.939348,-0.309017,-0.141546,0.893688,-0.425780,
-0.132081,0.833933,-0.535827,-0.120534,0.761028,-0.637424,-0.107086,0.676120,-0.728969,-0.091949,0.580549,-0.809017,
-0.075362,0.475823,-0.876307,-0.057587,0.363593,-0.929777,-0.038903,0.245628,-0.968583,-0.019606,0.123790,-0.992115,
0.000001,0.125334,0.992115,0.000001,0.248691,0.968583,0.000001,0.368125,0.929776,0.000001,0.481755,0.876307,
0.000001,0.587786,0.809017,0.000001,0.684548,0.728969,0.000001,0.770514,0.637424,0.000001,0.844329,0.535827,
0.000001,0.904828,0.425779,0.000001,0.951058,0.309017,0.000001,0.982288,0.187381,0.000001,0.998028,0.062790,
0.000001,0.998028,-0.062791,0.000001,0.982288,-0.187382,0.000001,0.951057,-0.309017,0.000001,0.904828,-0.425780,
0.000001,0.844329,-0.535827,0.000001,0.770514,-0.637424,0.000001,0.684548,-0.728969,0.000001,0.587786,-0.809017,
0.000001,0.481754,-0.876307,0.000001,0.368125,-0.929777,0.000001,0.248690,-0.968583,0.000001,0.125333,-0.992115,
0.019607,0.123791,0.992115,0.038905,0.245629,0.968583,0.057588,0.363593,0.929776,0.075364,0.475823,0.876307,
0.091951,0.580550,0.809017,0.107088,0.676120,0.728969,0.120536,0.761028,0.637424,0.132083,0.833934,0.535827,
0.141547,0.893688,0.425779,0.148779,0.939349,0.309017,0.153665,0.970195,0.187381,0.156127,0.985740,0.062790,
0.156127,0.985740,-0.062791,0.153664,0.970195,-0.187382,0.148779,0.939348,-0.309017,0.141547,0.893688,-0.425780,
0.132083,0.833934,-0.535827,0.120536,0.761028,-0.637424,0.107088,0.676120,-0.728969,0.091951,0.580549,-0.809017,
0.075364,0.475823,-0.876307,0.057588,0.363593,-0.929777,0.038905,0.245628,-0.968583,0.019607,0.123790,-0.992115,
0.038731,0.119200,0.992115,0.076850,0.236519,0.968583,0.113758,0.350108,0.929776,0.148871,0.458176,0.876307,
0.181637,0.559018,0.809017,0.211538,0.651044,0.728969,0.238103,0.732803,0.637424,0.260913,0.803005,0.535827,
0.279608,0.860543,0.425779,0.293894,0.904510,0.309017,0.303545,0.934212,0.187381,0.308408,0.949181,0.062790,
0.308408,0.949181,-0.062791,0.303545,0.934211,-0.187382,0.293894,0.904509,-0.309017,0.279608,0.860542,-0.425780,
0.260913,0.803004,-0.535827,0.238103,0.732802,-0.637424,0.211538,0.651044,-0.728969,0.181637,0.559018,-0.809017,
0.148871,0.458175,-0.876307,0.113758,0.350107,-0.929777,0.076850,0.236518,-0.968583,0.038731,0.119199,-0.992115,
0.056901,0.111673,0.992115,0.112904,0.221585,0.968583,0.167126,0.328002,0.929776,0.218713,0.429247,0.876307,
0.266850,0.523721,0.809017,0.310779,0.609937,0.728969,0.349807,0.686533,0.637424,0.383318,0.752303,0.535827,
0.410784,0.806208,0.425779,0.431772,0.847399,0.309017,0.445950,0.875225,0.187381,0.453096,0.889249,0.062790,
0.453096,0.889249,-0.062791,0.445950,0.875225,-0.187382,0.431772,0.847398,-0.309017,0.410784,0.806208,-0.425780,
0.383318,0.752302,-0.535827,0.349807,0.686533,-0.637424,0.310779,0.609937,-0.728969,0.266850,0.523721,-0.809017,
0.218713,0.429246,-0.876307,0.167126,0.328002,-0.929777,0.112904,0.221584,-0.968583,0.056901,0.111673,-0.992115,
0.073670,0.101397,0.992115,0.146178,0.201195,0.968583,0.216380,0.297820,0.929776,0.283169,0.389748,0.876307,
0.345493,0.475529,0.809017,0.402368,0.553811,0.728969,0.452898,0.623359,0.637424,0.496285,0.683076,0.535827,
0.531845,0.732021,0.425779,0.559018,0.769422,0.309017,0.577375,0.794688,0.187381,0.586627,0.807421,0.062790,
0.586627,0.807421,-0.062791,0.577375,0.794688,-0.187382,0.559018,0.769422,-0.309017,0.531845,0.732021,-0.425780,
0.496285,0.683076,-0.535827,0.452898,0.623359,-0.637424,0.402368,0.553811,-0.728969,0.345493,0.475529,-0.809017,
0.283169,0.389747,-0.876307,0.216379,0.297819,-0.929777,0.146177,0.201194,-0.968583,0.073670,0.101397,-0.992115,
0.088625,0.088625,0.992115,0.175852,0.175851,0.968583,0.260305,0.260304,0.929776,0.340653,0.340652,0.876307,
0.415628,0.415628,0.809017,0.484049,0.484049,0.728969,0.544837,0.544836,0.637424,0.597031,0.597031,0.535827,
0.639811,0.639810,0.425779,0.672500,0.672499,0.309017,0.694584,0.694583,0.187381,0.705713,0.705712,0.062790,
0.705713,0.705712,-0.062791,0.694583,0.694583,-0.187382,0.672500,0.672499,-0.309017,0.639811,0.639810,-0.425780,
0.597031,0.597030,-0.535827,0.544836,0.544836,-0.637424,0.484049,0.484049,-0.728969,0.415628,0.415627,-0.809017,
0.340652,0.340652,-0.876307,0.260304,0.260303,-0.929777,0.175851,0.175850,-0.968583,0.088625,0.088624,-0.992115,
0.101398,0.073670,0.992115,0.201196,0.146177,0.968583,0.297821,0.216379,0.929776,0.389749,0.283168,0.876307,
0.475530,0.345492,0.809017,0.553812,0.402367,0.728969,0.623360,0.452897,0.637424,0.683077,0.496284,0.535827,
0.732022,0.531845,0.425779,0.769423,0.559018,0.309017,0.794689,0.577375,0.187381,0.807422,0.586626,0.062790,
0.807422,0.586626,-0.062791,0.794689,0.577374,-0.187382,0.769423,0.559018,-0.309017,0.732022,0.531844,-0.425780,
0.683077,0.496284,-0.535827,0.623360,0.452897,-0.637424,0.553812,0.402367,-0.728969,0.475530,0.345492,-0.809017,
0.389748,0.283168,-0.876307,0.297820,0.216378,-0.929777,0.201195,0.146176,-0.968583,0.101398,0.073669,-0.992115,
0.111674,0.056900,0.992115,0.221586,0.112903,0.968583,0.328003,0.167125,0.929776,0.429247,0.218712,0.876307,
0.523722,0.266849,0.809017,0.609938,0.310778,0.728969,0.686534,0.349806,0.637424,0.752303,0.383317,0.535827,
0.806209,0.410783,0.425779,0.847399,0.431771,0.309017,0.875226,0.445950,0.187381,0.889250,0.453095,0.062790,
0.889250,0.453095,-0.062791,0.875226,0.445949,-0.187382,0.847399,0.431771,-0.309017,0.806208,0.410783,-0.425780,
0.752303,0.383317,-0.535827,0.686534,0.349806,-0.637424,0.609937,0.310778,-0.728969,0.523722,0.266849,-0.809017,
0.429247,0.218712,-0.876307,0.328002,0.167125,-0.929777,0.221585,0.112903,-0.968583,0.111674,0.056900,-0.992115,
0.119201,0.038730,0.992115,0.236520,0.076850,0.968583,0.350109,0.113757,0.929776,0.458177,0.148870,0.876307,
0.559019,0.181636,0.809017,0.651045,0.211537,0.728969,0.732803,0.238102,0.637424,0.803005,0.260912,0.535827,
0.860544,0.279607,0.425779,0.904510,0.293893,0.309017,0.934213,0.303544,0.187381,0.949182,0.308408,0.062790,
0.949182,0.308408,-0.062791,0.934212,0.303544,-0.187382,0.904510,0.293893,-0.309017,0.860543,0.279607,-0.425780,
0.803005,0.260912,-0.535827,0.732803,0.238102,-0.637424,0.651044,0.211537,-0.728969,0.559018,0.181636,-0.809017,
0.458176,0.148870,-0.876307,0.350108,0.113757,-0.929777,0.236519,0.076849,-0.968583,0.119200,0.038730,-0.992115,
0.123792,0.019607,0.992115,0.245630,0.038904,0.968583,0.363594,0.057587,0.929776,0.475824,0.075363,0.876307,
0.580550,0.091950,0.809017,0.676121,0.107087,0.728969,0.761029,0.120535,0.637424,0.833935,0.132082,0.535827,
0.893689,0.141546,0.425779,0.939349,0.148778,0.309017,0.970196,0.153664,0.187381,0.985741,0.156126,0.062790,
0.985741,0.156126,-0.062791,0.970195,0.153664,-0.187382,0.939349,0.148778,-0.309017,0.893689,0.141546,-0.425780,
0.833934,0.132082,-0.535827,0.761028,0.120535,-0.637424,0.676121,0.107087,-0.728969,0.580550,0.091950,-0.809017,
0.475824,0.075363,-0.876307,0.363593,0.057587,-0.929777,0.245629,0.038904,-0.968583,0.123791,0.019606,-0.992115,
0.125335,-0.000000,0.992115,0.248692,-0.000000,0.968583,0.368126,-0.000000,0.929776,0.481755,-0.000000,0.876307,
0.587787,-0.000000,0.809017,0.684549,0.000000,0.728969,0.770515,-0.000000,0.637424,0.844330,-0.000000,0.535827,
0.904829,-0.000000,0.425779,0.951058,-0.000000,0.309017,0.982289,-0.000000,0.187381,0.998029,0.000000,0.062790,
0.998029,0.000000,-0.062791,0.982289,-0.000000,-0.187382,0.951058,-0.000000,-0.309017,0.904829,-0.000000,-0.425780,
0.844329,-0.000000,-0.535827,0.770515,-0.000000,-0.637424,0.684549,0.000000,-0.728969,0.587787,-0.000000,-0.809017,
0.481755,-0.000000,-0.876307,0.368126,-0.000000,-0.929777,0.248691,-0.000000,-0.968583,0.125334,-0.000000,-0.992115,
0.123792,-0.019607,0.992115,0.245630,-0.038904,0.968583,0.363594,-0.057588,0.929776,0.475824,-0.075363,0.876307,
0.580550,-0.091950,0.809017,0.676121,-0.107087,0.728969,0.761029,-0.120535,0.637424,0.833935,-0.132082,0.535827,
0.893689,-0.141546,0.425779,0.939349,-0.148778,0.309017,0.970196,-0.153664,0.187381,0.985741,-0.156126,0.062790,
0.985741,-0.156126,-0.062791,0.970195,-0.153664,-0.187382,0.939349,-0.148778,-0.309017,0.893689,-0.141546,-0.425780,
0.833934,-0.132082,-0.535827,0.761028,-0.120535,-0.637424,0.676121,-0.107087,-0.728969,0.580550,-0.091950,-0.809017,
0.475824,-0.075363,-0.876307,0.363593,-0.057587,-0.929777,0.245629,-0.038904,-0.968583,0.123791,-0.019606,-0.992115,
0.119201,-0.038730,0.992115,0.236520,-0.076850,0.968583,0.350109,-0.113757,0.929776,0.458177,-0.148870,0.876307,
0.559019,-0.181636,0.809017,0.651045,-0.211537,0.728969,0.732803,-0.238102,0.637424,0.803005,-0.260912,0.535827,
0.860544,-0.279607,0.425779,0.904510,-0.293893,0.309017,0.934213,-0.303544,0.187381,0.949182,-0.308408,0.062790,
0.949182,-0.308408,-0.062791,0.934212,-0.303544,-0.187382,0.904510,-0.293893,-0.309017,0.860543,-0.279607,-0.425780,
0.803005,-0.260912,-0.535827,0.732803,-0.238102,-0.637424,0.651045,-0.211537,-0.728969,0.559018,-0.181636,-0.809017,
0.458176,-0.148870,-0.876307,0.350108,-0.113757,-0.929777,0.236519,-0.076850,-0.968583,0.119200,-0.038730,-0.992115,
0.111674,-0.056901,0.992115,0.221586,-0.112903,0.968583,0.328003,-0.167126,0.929776,0.429247,-0.218712,0.876307,
0.523722,-0.266850,0.809017,0.609938,-0.310778,0.728969,0.686534,-0.349806,0.637424,0.752303,-0.383317,0.535827,
0.806209,-0.410783,0.425779,0.847399,-0.431771,0.309017,0.875226,-0.445950,0.187381,0.889250,-0.453095,0.062790,
0.889250,-0.453095,-0.062791,0.875226,-0.445950,-0.187382,0.847399,-0.431771,-0.309017,0.806208,-0.410783,-0.425780,
0.752303,-0.383317,-0.535827,0.686534,-0.349806,-0.637424,0.609937,-0.310778,-0.728969,0.523722,-0.266849,-0.809017,
0.429247,-0.218712,-0.876307,0.328002,-0.167125,-0.929777,0.221585,-0.112903,-0.968583,0.111674,-0.056900,-0.992115,
0.101398,-0.073670,0.992115,0.201196,-0.146177,0.968583,0.297821,-0.216379,0.929776,0.389749,-0.283168,0.876307,
0.475530,-0.345492,0.809017,0.553812,-0.402367,0.728969,0.623360,-0.452897,0.637424,0.683077,-0.496284,0.535827,
0.732022,-0.531845,0.425779,0.769423,-0.559018,0.309017,0.794689,-0.577375,0.187381,0.807422,-0.586626,0.062790,
0.807422,-0.586626,-0.062791,0.794689,-0.577375,-0.187382,0.769422,-0.559018,-0.309017,0.732022,-0.531845,-0.425780,
0.683077,-0.496284,-0.535827,0.623360,-0.452897,-0.637424,0.553812,-0.402367,-0.728969,0.475530,-0.345492,-0.809017,
0.389748,-0.283168,-0.876307,0.297820,-0.216378,-0.929777,0.201195,-0.146176,-0.968583,0.101398,-0.073669,-0.992115,
0.088625,-0.088625,0.992115,0.175852,-0.175851,0.968583,0.260305,-0.260304,0.929776,0.340653,-0.340652,0.876307,
0.415628,-0.415628,0.809017,0.484049,-0.484049,0.728969,0.544837,-0.544836,0.637424,0.597031,-0.597031,0.535827,
0.639811,-0.639810,0.425779,0.672500,-0.672499,0.309017,0.694584,-0.694583,0.187381,0.705713,-0.705712,0.062790,
0.705713,-0.705712,-0.062791,0.694583,-0.694583,-0.187382,0.672500,-0.672499,-0.309017,0.639811,-0.639810,-0.425780,
0.597031,-0.597031,-0.535827,0.544836,-0.544836,-0.637424,0.484049,-0.484048,-0.728969,0.415628,-0.415628,-0.809017,
0.340652,-0.340652,-0.876307,0.260304,-0.260304,-0.929777,0.175851,-0.175851,-0.968583,0.088625,-0.088624,-0.992115,
0.073670,-0.101397,0.992115,0.146178,-0.201195,0.968583,0.216379,-0.297820,0.929776,0.283169,-0.389748,0.876307,
0.345493,-0.475529,0.809017,0.402368,-0.553811,0.728969,0.452898,-0.623359,0.637424,0.496285,-0.683077,0.535827,
0.531845,-0.732022,0.425779,0.559018,-0.769422,0.309017,0.577375,-0.794688,0.187381,0.586627,-0.807422,0.062790,
0.586627,-0.807422,-0.062791,0.577375,-0.794688,-0.187382,0.559018,-0.769422,-0.309017,0.531845,-0.732021,-0.425780,
0.496285,-0.683076,-0.535827,0.452898,-0.623359,-0.637424,0.402368,-0.553811,-0.728969,0.345493,-0.475529,-0.809017,
0.283169,-0.389747,-0.876307,0.216379,-0.297819,-0.929777,0.146177,-0.201195,-0.968583,0.073670,-0.101397,-0.992115,
0.056901,-0.111674,0.992115,0.112904,-0.221585,0.968583,0.167126,-0.328002,0.929776,0.218713,-0.429247,0.876307,
0.266850,-0.523722,0.809017,0.310779,-0.609937,0.728969,0.349807,-0.686533,0.637424,0.383318,-0.752303,0.535827,
0.410784,-0.806208,0.425779,0.431772,-0.847399,0.309017,0.445950,-0.875226,0.187381,0.453096,-0.889249,0.062790,
0.453096,-0.889249,-0.062791,0.445950,-0.875225,-0.187382,0.431772,-0.847399,-0.309017,0.410784,-0.806208,-0.425780,
0.383318,-0.752302,-0.535827,0.349807,-0.686533,-0.637424,0.310779,-0.609937,-0.728969,0.266850,-0.523721,-0.809017,
0.218712,-0.429246,-0.876307,0.167126,-0.328002,-0.929777,0.112904,-0.221585,-0.968583,0.056901,-0.111673,-0.992115,
0.038731,-0.119200,0.992115,0.076850,-0.236519,0.968583,0.113758,-0.350108,0.929776,0.148871,-0.458176,0.876307,
0.181637,-0.559018,0.809017,0.211538,-0.651044,0.728969,0.238103,-0.732803,0.637424,0.260913,-0.803005,0.535827,
0.279608,-0.860543,0.425779,0.293894,-0.904510,0.309017,0.303544,-0.934212,0.187381,0.308408,-0.949181,0.062790,
0.308408,-0.949181,-0.062791,0.303544,-0.934212,-0.187382,0.293894,-0.904510,-0.309017,0.279608,-0.860543,-0.425780,
0.260912,-0.803004,-0.535827,0.238103,-0.732802,-0.637424,0.211538,-0.651044,-0.728969,0.181636,-0.559018,-0.809017,
0.148871,-0.458175,-0.876307,0.113758,-0.350108,-0.929777,0.076850,-0.236518,-0.968583,0.038731,-0.119199,-0.992115,
0.019607,-0.123791,0.992115,0.038905,-0.245629,0.968583,0.057588,-0.363593,0.929776,0.075364,-0.475824,0.876307,
0.091951,-0.580550,0.809017,0.107088,-0.676120,0.728969,0.120536,-0.761028,0.637424,0.132083,-0.833934,0.535827,
0.141547,-0.893688,0.425779,0.148779,-0.939349,0.309017,0.153664,-0.970195,0.187381,0.156127,-0.985741,0.062790,
0.156127,-0.985741,-0.062791,0.153664,-0.970195,-0.187382,0.148779,-0.939349,-0.309017,0.141547,-0.893688,-0.425780,
0.132083,-0.833934,-0.535827,0.120536,-0.761028,-0.637424,0.107088,-0.676120,-0.728969,0.091951,-0.580549,-0.809017,
0.075364,-0.475823,-0.876307,0.057588,-0.363593,-0.929777,0.038904,-0.245628,-0.968583,0.019607,-0.123790,-0.992115,
0.000001,-0.125334,0.992115,0.000001,-0.248691,0.968583,0.000001,-0.368126,0.929776,0.000001,-0.481755,0.876307,
0.000001,-0.587787,0.809017,0.000001,-0.684548,0.728969,0.000001,-0.770514,0.637424,0.000001,-0.844329,0.535827,
0.000001,-0.904828,0.425779,0.000001,-0.951058,0.309017,0.000001,-0.982289,0.187381,0.000001,-0.998028,0.062790,
0.000001,-0.998028,-0.062791,0.000001,-0.982288,-0.187382,0.000001,-0.951058,-0.309017,0.000001,-0.904828,-0.425780,
0.000001,-0.844329,-0.535827,0.000001,-0.770514,-0.637424,0.000001,-0.684548,-0.728969,0.000001,-0.587786,-0.809017,
0.000001,-0.481754,-0.876307,0.000001,-0.368125,-0.929777,0.000001,-0.248690,-0.968583,0.000001,-0.125333,-0.992115,
-0.019606,-0.123791,0.992115,-0.038903,-0.245629,0.968583,-0.057587,-0.363593,0.929776,-0.075362,-0.475824,0.876307,
-0.091949,-0.580550,0.809017,-0.107086,-0.676120,0.728969,-0.120534,-0.761028,0.637424,-0.132082,-0.833934,0.535827,
-0.141546,-0.893688,0.425779,-0.148778,-0.939349,0.309017,-0.153663,-0.970195,0.187381,-0.156125,-0.985741,0.062790,
-0.156125,-0.985741,-0.062791,-0.153663,-0.970195,-0.187382,-0.148778,-0.939349,-0.309017,-0.141546,-0.893688,-0.425780,
-0.132082,-0.833934,-0.535827,-0.120534,-0.761028,-0.637424,-0.107086,-0.676120,-0.728969,-0.091949,-0.580549,-0.809017,
-0.075362,-0.475823,-0.876307,-0.057587,-0.363593,-0.929777,-0.038903,-0.245628,-0.968583,-0.019606,-0.123790,-0.992115,
-0.038730,-0.119200,0.992115,-0.076849,-0.236519,0.968583,-0.113756,-0.350108,0.929776,-0.148870,-0.458176,0.876307,
-0.181635,-0.559018,0.809017,-0.211536,-0.651044,0.728969,-0.238101,-0.732803,0.637424,-0.260912,-0.803005,0.535827,
-0.279607,-0.860543,0.425779,-0.293892,-0.904510,0.309017,-0.303543,-0.934212,0.187381,-0.308407,-0.949181,0.062790,
-0.308407,-0.949181,-0.062791,-0.303543,-0.934212,-0.187382,-0.293893,-0.904510,-0.309017,-0.279607,-0.860543,-0.425780,
-0.260911,-0.803004,-0.535827,-0.238101,-0.732803,-0.637424,-0.211536,-0.651044,-0.728969,-0.181635,-0.559018,-0.809017,
-0.148870,-0.458175,-0.876307,-0.113756,-0.350108,-0.929777,-0.076849,-0.236518,-0.968583,-0.038729,-0.119199,-0.992115,
0.000001,0.000000,-1.000000,-0.056900,-0.111674,0.992115,-0.112903,-0.221585,0.968583,-0.167125,-0.328002,0.929776,
-0.218711,-0.429247,0.876307,-0.266849,-0.523722,0.809017,-0.310778,-0.609937,0.728969,-0.349806,-0.686533,0.637424,
-0.383317,-0.752303,0.535827,-0.410783,-0.806208,0.425779,-0.431771,-0.847399,0.309017,-0.445949,-0.875225,0.187381,
-0.453095,-0.889249,0.062790,-0.453095,-0.889249,-0.062791,-0.445949,-0.875225,-0.187382,-0.431771,-0.847399,-0.309017,
-0.410783,-0.806208,-0.425780,-0.383317,-0.752302,-0.535827,-0.349805,-0.686533,-0.637424,-0.310778,-0.609937,-0.728969,
-0.266849,-0.523721,-0.809017,-0.218711,-0.429246,-0.876307,-0.167125,-0.328002,-0.929777,-0.112902,-0.221585,-0.968583,
-0.056899,-0.111673,-0.992115,-0.073669,-0.101397,0.992115,-0.146176,-0.201195,0.968583,-0.216378,-0.297820,0.929776,
-0.283168,-0.389748,0.876307,-0.345492,-0.475529,0.809017,-0.402367,-0.553811,0.728969,-0.452896,-0.623359,0.637424,
-0.496284,-0.683077,0.535827,-0.531844,-0.732022,0.425779,-0.559017,-0.769422,0.309017,-0.577374,-0.794688,0.187381,
-0.586626,-0.807422,0.062790,-0.586626,-0.807422,-0.062791,-0.577374,-0.794688,-0.187382,-0.559017,-0.769422,-0.309017,
-0.531844,-0.732021,-0.425780,-0.496283,-0.683076,-0.535827,-0.452896,-0.623359,-0.637424,-0.402367,-0.553811,-0.728969,
-0.345491,-0.475529,-0.809017,-0.283167,-0.389747,-0.876307,-0.216378,-0.297819,-0.929777,-0.146176,-0.201195,-0.968583,
-0.073668,-0.101397,-0.992115,0.000000,-0.000001,1.000000,-0.088624,-0.088625,0.992115,-0.175850,-0.175851,0.968583,
-0.260303,-0.260304,0.929776,-0.340651,-0.340652,0.876307,-0.415627,-0.415628,0.809017,-0.484048,-0.484049,0.728969,
-0.544835,-0.544836,0.637424,-0.597030,-0.597031,0.535827,-0.639810,-0.639810,0.425779,-0.672499,-0.672499,0.309017,
-0.694582,-0.694583,0.187381,-0.705712,-0.705712,0.062790,-0.705712,-0.705712,-0.062791,-0.694582,-0.694583,-0.187382,
-0.672499,-0.672499,-0.309017,-0.639810,-0.639810,-0.425780,-0.597030,-0.597030,-0.535827,-0.544835,-0.544836,-0.637424,
-0.484048,-0.484049,-0.728969,-0.415627,-0.415628,-0.809017,-0.340651,-0.340652,-0.876307,-0.260303,-0.260304,-0.929777,
-0.175850,-0.175850,-0.968583,-0.088623,-0.088624,-0.992115,-0.101397,-0.073670,0.992115,-0.201194,-0.146177,0.968583,
-0.297819,-0.216379,0.929776,-0.389747,-0.283168,0.876307,-0.475529,-0.345492,0.809017,-0.553811,-0.402367,0.728969,
-0.623359,-0.452897,0.637424,-0.683076,-0.496284,0.535827,-0.732021,-0.531845,0.425779,-0.769421,-0.559018,0.309017,
-0.794688,-0.577375,0.187381,-0.807421,-0.586626,0.062790,-0.807421,-0.586626,-0.062791,-0.794687,-0.577374,-0.187382,
-0.769421,-0.559018,-0.309017,-0.732021,-0.531845,-0.425780,-0.683076,-0.496284,-0.535827,-0.623358,-0.452897,-0.637424,
-0.553810,-0.402367,-0.728969,-0.475528,-0.345492,-0.809017,-0.389747,-0.283168,-0.876307,-0.297819,-0.216378,-0.929777,
-0.201194,-0.146176,-0.968583,-0.101396,-0.073669,-0.992115,-0.111673,-0.056900,0.992115,-0.221584,-0.112903,0.968583,
-0.328002,-0.167125,0.929776,-0.429246,-0.218712,0.876307,-0.523721,-0.266849,0.809017,-0.609936,-0.310778,0.728969,
-0.686533,-0.349806,0.637424,-0.752302,-0.383317,0.535827,-0.806207,-0.410783,0.425779,-0.847398,-0.431771,0.309017,
-0.875225,-0.445949,0.187381,-0.889249,-0.453095,0.062790,-0.889249,-0.453095,-0.062791,-0.875225,-0.445949,-0.187382,
-0.847398,-0.431771,-0.309017,-0.806207,-0.410783,-0.425780,-0.752302,-0.383317,-0.535827,-0.686533,-0.349806,-0.637424,
-0.609936,-0.310778,-0.728969,-0.523721,-0.266849,-0.809017,-0.429245,-0.218712,-0.876307,-0.328001,-0.167125,-0.929777,
-0.221584,-0.112903,-0.968583,-0.111672,-0.056900,-0.992115,-0.119199,-0.038730,0.992115,-0.236518,-0.076850,0.968583,
-0.350108,-0.113757,0.929776,-0.458175,-0.148870,0.876307,-0.559018,-0.181636,0.809017,-0.651044,-0.211537,0.728969,
-0.732802,-0.238102,0.637424,-0.803004,-0.260912,0.535827,-0.860542,-0.279607,0.425779,-0.904509,-0.293893,0.309017,
-0.934211,-0.303544,0.187381,-0.949181,-0.308407,0.062790,-0.949181,-0.308407,-0.062791,-0.934211,-0.303544,-0.187382,
-0.904509,-0.293893,-0.309017,-0.860542,-0.279607,-0.425780,-0.803004,-0.260912,-0.535827,-0.732802,-0.238102,-0.637424,
-0.651043,-0.211537,-0.728969,-0.559017,-0.181636,-0.809017,-0.458175,-0.148870,-0.876307,-0.350107,-0.113757,-0.929777,
-0.236518,-0.076849,-0.968583,-0.119198,-0.038730,-0.992115,-0.123790,-0.019607,0.992115,-0.245628,-0.038904,0.968583,
-0.363593,-0.057587,0.929776,-0.475823,-0.075363,0.876307,-0.580549,-0.091950,0.809017,-0.676120,-0.107087,0.728969,
-0.761028,-0.120535,0.637424,-0.833934,-0.132082,0.535827,-0.893688,-0.141546,0.425779,-0.939348,-0.148778,0.309017,
-0.970195,-0.153663,0.187381,-0.985740,-0.156126,0.062790,-0.985740,-0.156126,-0.062791,-0.970194,-0.153663,-0.187382,
-0.939348,-0.148778,-0.309017,-0.893688,-0.141546,-0.425780,-0.833933,-0.132082,-0.535827,-0.761027,-0.120535,-0.637424,
-0.676120,-0.107087,-0.728969,-0.580549,-0.091950,-0.809017,-0.475822,-0.075363,-0.876307,-0.363592,-0.057587,-0.929777,
-0.245628,-0.038904,-0.968583,-0.123790,-0.019606,-0.992115,-0.125333,0.000000,0.992115,-0.248690,0.000000,0.968583,
-0.368125,0.000000,0.929776,-0.481754,0.000000,0.876307,-0.587786,0.000000,0.809017,-0.684548,0.000000,0.728969,
-0.770514,0.000000,0.637424,-0.844329,0.000000,0.535827,-0.904828,0.000000,0.425779,-0.951057,0.000000,0.309017,
-0.982288,0.000000,0.187381,-0.998028,0.000000,0.062790,-0.998028,0.000000,-0.062791,-0.982288,0.000000,-0.187382,
-0.951057,0.000000,-0.309017,-0.904828,0.000000,-0.425780,-0.844328,0.000000,-0.535827,-0.770514,0.000000,-0.637424,
-0.684548,0.000000,-0.728969,-0.587786,0.000000,-0.809017,-0.481754,0.000000,-0.876307,-0.368124,0.000000,-0.929777,
-0.248689,0.000000,-0.968583,-0.125333,0.000000,-0.992115
PolygonVertexIndex: 18,17,41,-43,7,6,30,-32,16,15,39,-41,5,4,28,-30,3,2,26,-28,14,13,37,-39,23,22,46,-48,1,0,24,-26,
12,11,35,-37,21,20,44,-46,10,9,33,-35,19,18,42,-44,8,7,31,-33,17,16,40,-42,6,5,29,-31,4,3,27,-29,
15,14,38,-40,2,1,25,-27,13,12,36,-38,22,21,45,-47,11,10,34,-36,20,19,43,-45,9,8,32,-34,46,45,69,-71,
35,34,58,-60,44,43,67,-69,33,32,56,-58,42,41,65,-67,31,30,54,-56,40,39,63,-65,29,28,52,-54,27,26,50,-52,
38,37,61,-63,47,46,70,-72,25,24,48,-50,36,35,59,-61,45,44,68,-70,34,33,57,-59,43,42,66,-68,32,31,55,-57,
41,40,64,-66,30,29,53,-55,28,27,51,-53,39,38,62,-64,26,25,49,-51,37,36,60,-62,52,51,75,-77,63,62,86,-88,
50,49,73,-75,61,60,84,-86,70,69,93,-95,59,58,82,-84,68,67,91,-93,57,56,80,-82,66,65,89,-91,55,54,78,-80,
64,63,87,-89,53,52,76,-78,51,50,74,-76,62,61,85,-87,71,70,94,-96,49,48,72,-74,60,59,83,-85,69,68,92,-94,
58,57,81,-83,67,66,90,-92,56,55,79,-81,65,64,88,-90,54,53,77,-79,91,90,114,-116,80,79,103,-105,89,88,112,-114,
78,77,101,-103,76,75,99,-101,87,86,110,-112,74,73,97,-99,85,84,108,-110,94,93,117,-119,83,82,106,-108,92,91,115,-117,
81,80,104,-106,90,89,113,-115,79,78,102,-104,88,87,111,-113,77,76,100,-102,75,74,98,-100,86,85,109,-111,95,94,118,-120,
73,72,96,-98,84,83,107,-109,93,92,116,-118,82,81,105,-107,119,118,142,-144,97,96,120,-122,108,107,131,-133,117,116,140,-142,
106,105,129,-131,115,114,138,-140,104,103,127,-129,113,112,136,-138,102,101,125,-127,100,99,123,-125,111,110,134,-136,98,97,121,-123,
109,108,132,-134,118,117,141,-143,107,106,130,-132,116,115,139,-141,105,104,128,-130,114,113,137,-139,103,102,126,-128,112,111,135,-137,
101,100,124,-126,99,98,122,-124,110,109,133,-135,136,135,159,-161,125,124,148,-150,123,122,146,-148,134,133,157,-159,143,142,166,-168,
121,120,144,-146,132,131,155,-157,141,140,164,-166,130,129,153,-155,139,138,162,-164,128,127,151,-153,137,136,160,-162,126,125,149,-151,
124,123,147,-149,135,134,158,-160,122,121,145,-147,133,132,156,-158,142,141,165,-167,131,130,154,-156,140,139,163,-165,129,128,152,-154,
138,137,161,-163,127,126,150,-152,164,163,187,-189,153,152,176,-178,162,161,185,-187,151,150,174,-176,160,159,183,-185,149,148,172,-174,
147,146,170,-172,158,157,181,-183,167,166,190,-192,145,144,168,-170,156,155,179,-181,165,164,188,-190,154,153,177,-179,163,162,186,-188,
152,151,175,-177,161,160,184,-186,150,149,173,-175,148,147,171,-173,159,158,182,-184,146,145,169,-171,157,156,180,-182,166,165,189,-191,
155,154,178,-180,170,169,193,-195,181,180,204,-206,190,189,213,-215,179,178,202,-204,188,187,211,-213,177,176,200,-202,186,185,209,-211,
175,174,198,-200,184,183,207,-209,173,172,196,-198,171,170,194,-196,182,181,205,-207,191,190,214,-216,169,168,192,-194,180,179,203,-205,
189,188,212,-214,178,177,201,-203,187,186,210,-212,176,175,199,-201,185,184,208,-210,174,173,197,-199,172,171,195,-197,183,182,206,-208,
209,208,232,-234,198,197,221,-223,196,195,219,-221,207,206,230,-232,194,193,217,-219,205,204,228,-230,214,213,237,-239,203,202,226,-228,
212,211,235,-237,201,200,224,-226,210,209,233,-235,199,198,222,-224,208,207,231,-233,197,196,220,-222,195,194,218,-220,206,205,229,-231,
215,214,238,-240,193,192,216,-218,204,203,227,-229,213,212,236,-238,202,201,225,-227,211,210,234,-236,200,199,223,-225,237,236,260,-262,
226,225,249,-251,235,234,258,-260,224,223,247,-249,233,232,256,-258,222,221,245,-247,220,219,243,-245,231,230,254,-256,218,217,241,-243,
229,228,252,-254,238,237,261,-263,227,226,250,-252,236,235,259,-261,225,224,248,-250,234,233,257,-259,223,222,246,-248,232,231,255,-257,
221,220,244,-246,219,218,242,-244,230,229,253,-255,239,238,262,-264,217,216,240,-242,228,227,251,-253,243,242,266,-268,254,253,277,-279,
263,262,286,-288,241,240,264,-266,252,251,275,-277,261,260,284,-286,250,249,273,-275,259,258,282,-284,248,247,271,-273,257,256,280,-282,
246,245,269,-271,244,243,267,-269,255,254,278,-280,242,241,265,-267,253,252,276,-278,262,261,285,-287,251,250,274,-276,260,259,283,-285,
249,248,272,-274,258,257,281,-283,247,246,270,-272,256,255,279,-281,245,244,268,-270,282,281,305,-307,271,270,294,-296,280,279,303,-305,
269,268,292,-294,267,266,290,-292,278,277,301,-303,287,286,310,-312,265,264,288,-290,276,275,299,-301,285,284,308,-310,274,273,297,-299,
283,282,306,-308,272,271,295,-297,281,280,304,-306,270,269,293,-295,268,267,291,-293,279,278,302,-304,266,265,289,-291,277,276,300,-302,
286,285,309,-311,275,274,298,-300,284,283,307,-309,273,272,296,-298,310,309,333,-335,299,298,322,-324,308,307,331,-333,297,296,320,-322,
306,305,329,-331,295,294,318,-320,304,303,327,-329,293,292,316,-318,291,290,314,-316,302,301,325,-327,311,310,334,-336,289,288,312,-314,
300,299,323,-325,309,308,332,-334,298,297,321,-323,307,306,330,-332,296,295,319,-321,305,304,328,-330,294,293,317,-319,292,291,315,-317,
303,302,326,-328,290,289,313,-315,301,300,324,-326,316,315,339,-341,327,326,350,-352,314,313,337,-339,325,324,348,-350,334,333,357,-359,
323,322,346,-348,332,331,355,-357,321,320,344,-346,330,329,353,-355,319,318,342,-344,328,327,351,-353,317,316,340,-342,315,314,338,-340,
326,325,349,-351,335,334,358,-360,313,312,336,-338,324,323,347,-349,333,332,356,-358,322,321,345,-347,331,330,354,-356,320,319,343,-345,
329,328,352,-354,318,317,341,-343,355,354,378,-380,344,343,367,-369,353,352,376,-378,342,341,365,-367,340,339,363,-365,351,350,374,-376,
338,337,361,-363,349,348,372,-374,358,357,381,-383,347,346,370,-372,356,355,379,-381,345,344,368,-370,354,353,377,-379,343,342,366,-368,
352,351,375,-377,341,340,364,-366,339,338,362,-364,350,349,373,-375,359,358,382,-384,337,336,360,-362,348,347,371,-373,357,356,380,-382,
346,345,369,-371,383,382,406,-408,361,360,384,-386,372,371,395,-397,381,380,404,-406,370,369,393,-395,379,378,402,-404,368,367,391,-393,
377,376,400,-402,366,365,389,-391,364,363,387,-389,375,374,398,-400,362,361,385,-387,373,372,396,-398,382,381,405,-407,371,370,394,-396,
380,379,403,-405,369,368,392,-394,378,377,401,-403,367,366,390,-392,376,375,399,-401,365,364,388,-390,363,362,386,-388,374,373,397,-399,
400,399,423,-425,389,388,412,-414,387,386,410,-412,398,397,421,-423,407,406,430,-432,385,384,408,-410,396,395,419,-421,405,404,428,-430,
394,393,417,-419,403,402,426,-428,392,391,415,-417,401,400,424,-426,390,389,413,-415,388,387,411,-413,399,398,422,-424,386,385,409,-411,
397,396,420,-422,406,405,429,-431,395,394,418,-420,404,403,427,-429,393,392,416,-418,402,401,425,-427,391,390,414,-416,428,427,451,-453,
417,416,440,-442,426,425,449,-451,415,414,438,-440,424,423,447,-449,413,412,436,-438,411,410,434,-436,422,421,445,-447,431,430,454,-456,
409,408,432,-434,420,419,443,-445,429,428,452,-454,418,417,441,-443,427,426,450,-452,416,415,439,-441,425,424,448,-450,414,413,437,-439,
412,411,435,-437,423,422,446,-448,410,409,433,-435,421,420,444,-446,430,429,453,-455,419,418,442,-444,434,433,457,-459,445,444,468,-470,
454,453,477,-479,443,442,466,-468,452,451,475,-477,441,440,464,-466,450,449,473,-475,439,438,462,-464,448,447,471,-473,437,436,460,-462,
435,434,458,-460,446,445,469,-471,455,454,478,-480,433,432,456,-458,444,443,467,-469,453,452,476,-478,442,441,465,-467,451,450,474,-476,
440,439,463,-465,449,448,472,-474,438,437,461,-463,436,435,459,-461,447,446,470,-472,473,472,496,-498,462,461,485,-487,460,459,483,-485,
471,470,494,-496,458,457,481,-483,469,468,492,-494,478,477,501,-503,467,466,490,-492,476,475,499,-501,465,464,488,-490,474,473,497,-499,
463,462,486,-488,472,471,495,-497,461,460,484,-486,459,458,482,-484,470,469,493,-495,479,478,502,-504,457,456,480,-482,468,467,491,-493,
477,476,500,-502,466,465,489,-491,475,474,498,-500,464,463,487,-489,501,500,524,-526,490,489,513,-515,499,498,522,-524,488,487,511,-513,
497,496,520,-522,486,485,509,-511,484,483,507,-509,495,494,518,-520,482,481,505,-507,493,492,516,-518,502,501,525,-527,491,490,514,-516,
500,499,523,-525,489,488,512,-514,498,497,521,-523,487,486,510,-512,496,495,519,-521,485,484,508,-510,483,482,506,-508,494,493,517,-519,
503,502,526,-528,481,480,504,-506,492,491,515,-517,507,506,530,-532,518,517,541,-543,527,526,550,-552,505,504,528,-530,516,515,539,-541,
525,524,548,-550,514,513,537,-539,523,522,546,-548,512,511,535,-537,521,520,544,-546,510,509,533,-535,508,507,531,-533,519,518,542,-544,
506,505,529,-531,517,516,540,-542,526,525,549,-551,515,514,538,-540,524,523,547,-549,513,512,536,-538,522,521,545,-547,511,510,534,-536,
520,519,543,-545,509,508,532,-534,546,545,569,-571,535,534,558,-560,544,543,567,-569,533,532,556,-558,531,530,554,-556,542,541,565,-567,
551,550,574,-576,529,528,552,-554,540,539,563,-565,549,548,572,-574,538,537,561,-563,547,546,570,-572,536,535,559,-561,545,544,568,-570,
534,533,557,-559,532,531,555,-557,543,542,566,-568,530,529,553,-555,541,540,564,-566,550,549,573,-575,539,538,562,-564,548,547,571,-573,
537,536,560,-562,574,573,597,-599,563,562,586,-588,572,571,595,-597,561,560,584,-586,570,569,593,-595,559,558,582,-584,568,567,591,-593,
557,556,580,-582,555,554,578,-580,566,565,589,-591,575,574,598,-600,553,552,576,-578,564,563,587,-589,573,572,596,-598,562,561,585,-587,
571,570,594,-596,560,559,583,-585,569,568,592,-594,558,557,581,-583,556,555,579,-581,567,566,590,-592,554,553,577,-579,565,564,588,-590,
580,579,603,-605,591,590,614,-616,578,577,601,-603,589,588,612,-614,598,597,621,-623,587,586,610,-612,596,595,619,-621,585,584,608,-610,
594,593,617,-619,583,582,606,-608,592,591,615,-617,581,580,604,-606,579,578,602,-604,590,589,613,-615,599,598,622,-624,577,576,600,-602,
588,587,611,-613,597,596,620,-622,586,585,609,-611,595,594,618,-620,584,583,607,-609,593,592,616,-618,582,581,605,-607,619,618,642,-644,
608,607,631,-633,617,616,640,-642,606,605,629,-631,604,603,627,-629,615,614,638,-640,602,601,625,-627,613,612,636,-638,622,621,645,-647,
611,610,634,-636,620,619,643,-645,609,608,632,-634,618,617,641,-643,607,606,630,-632,616,615,639,-641,605,604,628,-630,603,602,626,-628,
614,613,637,-639,623,622,646,-648,601,600,624,-626,612,611,635,-637,621,620,644,-646,610,609,633,-635,647,646,670,-672,625,624,648,-650,
636,635,659,-661,645,644,668,-670,634,633,657,-659,643,642,666,-668,632,631,655,-657,641,640,664,-666,630,629,653,-655,628,627,651,-653,
639,638,662,-664,626,625,649,-651,637,636,660,-662,646,645,669,-671,635,634,658,-660,644,643,667,-669,633,632,656,-658,642,641,665,-667,
631,630,654,-656,640,639,663,-665,629,628,652,-654,627,626,650,-652,638,637,661,-663,664,663,687,-689,653,652,676,-678,651,650,674,-676,
662,661,685,-687,671,670,694,-696,649,648,672,-674,660,659,683,-685,669,668,692,-694,658,657,681,-683,667,666,690,-692,656,655,679,-681,
665,664,688,-690,654,653,677,-679,652,651,675,-677,663,662,686,-688,650,649,673,-675,661,660,684,-686,670,669,693,-695,659,658,682,-684,
668,667,691,-693,657,656,680,-682,666,665,689,-691,655,654,678,-680,692,691,715,-717,681,680,704,-706,690,689,713,-715,679,678,702,-704,
688,687,711,-713,677,676,700,-702,675,674,698,-700,686,685,709,-711,695,694,718,-720,673,672,696,-698,684,683,707,-709,693,692,716,-718,
682,681,705,-707,691,690,714,-716,680,679,703,-705,689,688,712,-714,678,677,701,-703,676,675,699,-701,687,686,710,-712,674,673,697,-699,
685,684,708,-710,694,693,717,-719,683,682,706,-708,698,697,721,-723,709,708,732,-734,718,717,741,-743,707,706,730,-732,716,715,739,-741,
705,704,728,-730,714,713,737,-739,703,702,726,-728,712,711,735,-737,701,700,724,-726,699,698,722,-724,710,709,733,-735,719,718,742,-744,
697,696,720,-722,708,707,731,-733,717,716,740,-742,706,705,729,-731,715,714,738,-740,704,703,727,-729,713,712,736,-738,702,701,725,-727,
700,699,723,-725,711,710,734,-736,737,736,760,-762,726,725,749,-751,724,723,747,-749,735,734,758,-760,722,721,745,-747,733,732,756,-758,
742,741,765,-767,731,730,754,-756,740,739,763,-765,729,728,752,-754,738,737,761,-763,727,726,750,-752,736,735,759,-761,725,724,748,-750,
723,722,746,-748,734,733,757,-759,743,742,766,-768,721,720,744,-746,732,731,755,-757,741,740,764,-766,730,729,753,-755,739,738,762,-764,
728,727,751,-753,765,764,789,-791,754,753,778,-780,763,762,787,-789,752,751,776,-778,761,760,785,-787,750,749,774,-776,748,747,772,-774,
759,758,783,-785,746,745,770,-772,757,756,781,-783,766,765,790,-792,755,754,779,-781,764,763,788,-790,753,752,777,-779,762,761,786,-788,
751,750,775,-777,760,759,784,-786,749,748,773,-775,747,746,771,-773,758,757,782,-784,767,766,791,-793,745,744,769,-771,756,755,780,-782,
787,786,810,-812,776,775,799,-801,785,784,808,-810,774,773,797,-799,772,771,795,-797,783,782,806,-808,792,791,815,-817,770,769,793,-795,
781,780,804,-806,790,789,813,-815,779,778,802,-804,788,787,811,-813,777,776,800,-802,786,785,809,-811,775,774,798,-800,773,772,796,-798,
784,783,807,-809,771,770,794,-796,782,781,805,-807,791,790,814,-816,780,779,803,-805,789,788,812,-814,778,777,801,-803,815,814,839,-841,
804,803,828,-830,813,812,837,-839,802,801,826,-828,811,810,835,-837,800,799,824,-826,809,808,833,-835,798,797,822,-824,796,795,820,-822,
807,806,831,-833,816,815,840,-842,794,793,818,-820,805,804,829,-831,814,813,838,-840,803,802,827,-829,812,811,836,-838,801,800,825,-827,
810,809,834,-836,799,798,823,-825,797,796,821,-823,808,807,832,-834,795,794,819,-821,806,805,830,-832,822,821,845,-847,833,832,856,-858,
820,819,843,-845,831,830,854,-856,840,839,863,-865,829,828,852,-854,838,837,861,-863,827,826,850,-852,836,835,859,-861,825,824,848,-850,
834,833,857,-859,823,822,846,-848,821,820,844,-846,832,831,855,-857,841,840,864,-866,819,818,842,-844,830,829,853,-855,839,838,862,-864,
828,827,851,-853,837,836,860,-862,826,825,849,-851,835,834,858,-860,824,823,847,-849,861,860,884,-886,850,849,873,-875,859,858,882,-884,
848,847,871,-873,846,845,869,-871,857,856,880,-882,844,843,867,-869,855,854,878,-880,864,863,887,-889,853,852,876,-878,862,861,885,-887,
851,850,874,-876,860,859,883,-885,849,848,872,-874,858,857,881,-883,847,846,870,-872,845,844,868,-870,856,855,879,-881,865,864,888,-890,
843,842,866,-868,854,853,877,-879,863,862,886,-888,852,851,875,-877,889,888,912,-914,867,866,890,-892,878,877,901,-903,887,886,910,-912,
876,875,899,-901,885,884,908,-910,874,873,897,-899,883,882,906,-908,872,871,895,-897,870,869,893,-895,881,880,904,-906,868,867,891,-893,
879,878,902,-904,888,887,911,-913,877,876,900,-902,886,885,909,-911,875,874,898,-900,884,883,907,-909,873,872,896,-898,882,881,905,-907,
871,870,894,-896,869,868,892,-894,880,879,903,-905,906,905,929,-931,895,894,918,-920,893,892,916,-918,904,903,927,-929,913,912,936,-938,
891,890,914,-916,902,901,925,-927,911,910,934,-936,900,899,923,-925,909,908,932,-934,898,897,921,-923,907,906,930,-932,896,895,919,-921,
894,893,917,-919,905,904,928,-930,892,891,915,-917,903,902,926,-928,912,911,935,-937,901,900,924,-926,910,909,933,-935,899,898,922,-924,
908,907,931,-933,897,896,920,-922,934,933,957,-959,923,922,946,-948,932,931,955,-957,921,920,944,-946,930,929,953,-955,919,918,942,-944,
917,916,940,-942,928,927,951,-953,937,936,960,-962,915,914,938,-940,926,925,949,-951,935,934,958,-960,924,923,947,-949,933,932,956,-958,
922,921,945,-947,931,930,954,-956,920,919,943,-945,918,917,941,-943,929,928,952,-954,916,915,939,-941,927,926,950,-952,936,935,959,-961,
925,924,948,-950,959,958,20,-22,948,947,9,-11,957,956,18,-20,946,945,7,-9,955,954,16,-18,944,943,5,-7,942,941,3,-5,
953,952,14,-16,768,961,-24,940,939,1,-3,951,950,12,-14,960,959,21,-23,938,817,-1,949,948,10,-12,958,957,19,-21,947,946,
8,-10,956,955,17,-19,945,944,6,-8,954,953,15,-17,943,942,4,-6,941,940,2,-4,952,951,13,-15,961,960,22,-24,939,938,
0,-2,950,949,11,-13,768,23,-48,0,817,-25,24,817,-49,768,47,-72,768,71,-96,48,817,-73,768,95,-120,72,817,-97,768,119,
-144,96,817,-121,768,143,-168,120,817,-145,768,167,-192,144,817,-169,768,191,-216,168,817,-193,768,215,-240,192,817,-217,768,239,-264,216,
817,-241,768,263,-288,240,817,-265,768,287,-312,264,817,-289,288,817,-313,768,311,-336,768,335,-360,312,817,-337,768,359,-384,336,817,-361,
768,383,-408,360,817,-385,768,407,-432,384,817,-409,768,431,-456,408,817,-433,768,455,-480,432,817,-457,768,479,-504,456,817,-481,768,503,
-528,480,817,-505,768,527,-552,504,817,-529,768,551,-576,528,817,-553,552,817,-577,768,575,-600,768,599,-624,576,817,-601,768,623,-648,600,
817,-625,768,647,-672,624,817,-649,768,671,-696,648,817,-673,768,695,-720,672,817,-697,768,719,-744,696,817,-721,768,743,-768,720,817,-745,
768,767,-793,744,817,-770,768,792,-817,769,817,-794,793,817,-819,768,816,-842,768,841,-866,818,817,-843,768,865,-890,842,817,-867,768,889,
-914,866,817,-891,768,913,-938,890,817,-915,768,937,-962,914,817,-939
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: -0.709851,0.170420,-0.683424,-0.709851,0.170420,-0.683424,-0.709851,0.170420,-0.683424,-0.709851,0.170420,-0.683424,
-0.787502,0.189062,0.586597,-0.787502,0.189062,0.586597,-0.787502,0.189062,0.586597,-0.787502,0.189062,0.586597,
-0.852704,0.204716,-0.480612,-0.852704,0.204716,-0.480612,-0.852704,0.204716,-0.480612,-0.852704,0.204716,-0.480612,
-0.620948,0.149076,0.769545,-0.620948,0.149076,0.769545,-0.620948,0.149076,0.769545,-0.620948,0.149076,0.769545,
-0.415063,0.099648,0.904319,-0.415063,0.099648,0.904319,-0.415063,0.099648,0.904319,-0.415063,0.099648,0.904319,
-0.942001,0.226154,-0.247971,-0.942001,0.226154,-0.247971,-0.942001,0.226154,-0.247971,-0.942001,0.226154,-0.247971,
-0.182746,0.043874,-0.982181,-0.182746,0.043874,-0.982181,-0.182746,0.043874,-0.982181,-0.182746,0.043874,-0.982181,
-0.182747,0.043874,0.982181,-0.182747,0.043874,0.982181,-0.182747,0.043874,0.982181,-0.182747,0.043874,0.982181,
-0.972370,0.233445,0.000000,-0.972370,0.233445,0.000000,-0.972370,0.233445,0.000000,-0.972370,0.233445,0.000000,
-0.415062,0.099647,-0.904320,-0.415062,0.099647,-0.904320,-0.415062,0.099647,-0.904320,-0.415062,0.099647,-0.904320,
-0.942001,0.226154,0.247970,-0.942001,0.226154,0.247970,-0.942001,0.226154,0.247970,-0.942001,0.226154,0.247970,
-0.620947,0.149076,-0.769546,-0.620947,0.149076,-0.769546,-0.620947,0.149076,-0.769546,-0.620947,0.149076,-0.769546,
-0.852704,0.204716,0.480612,-0.852704,0.204716,0.480612,-0.852704,0.204716,0.480612,-0.852704,0.204716,0.480612,
-0.787502,0.189062,-0.586597,-0.787502,0.189062,-0.586597,-0.787502,0.189062,-0.586597,-0.787502,0.189062,-0.586597,
-0.709852,0.170420,0.683423,-0.709852,0.170420,0.683423,-0.709852,0.170420,0.683423,-0.709852,0.170420,0.683423,
-0.522169,0.125362,0.843578,-0.522169,0.125362,0.843578,-0.522169,0.125362,0.843578,-0.522169,0.125362,0.843578,
-0.904464,0.217142,-0.367144,-0.904464,0.217142,-0.367144,-0.904464,0.217142,-0.367144,-0.904464,0.217142,-0.367144,
-0.301319,0.072340,0.950775,-0.301319,0.072340,0.950775,-0.301319,0.072340,0.950775,-0.301319,0.072340,0.950775,
-0.964749,0.231616,-0.124954,-0.964749,0.231616,-0.124954,-0.964749,0.231616,-0.124954,-0.964749,0.231616,-0.124954,
-0.301318,0.072340,-0.950776,-0.301318,0.072340,-0.950776,-0.301318,0.072340,-0.950776,-0.301318,0.072340,-0.950776,
-0.964749,0.231615,0.124953,-0.964749,0.231615,0.124953,-0.964749,0.231615,0.124953,-0.964749,0.231615,0.124953,
-0.522168,0.125362,-0.843579,-0.522168,0.125362,-0.843579,-0.522168,0.125362,-0.843579,-0.522168,0.125362,-0.843579,
-0.904464,0.217143,0.367143,-0.904464,0.217143,0.367143,-0.904464,0.217143,0.367143,-0.904464,0.217143,0.367143,
-0.286292,0.118586,-0.950776,-0.286292,0.118586,-0.950776,-0.286292,0.118586,-0.950776,-0.286292,0.118586,-0.950776,
-0.916639,0.379684,0.124953,-0.916639,0.379684,0.124953,-0.916639,0.379684,0.124953,-0.916639,0.379684,0.124953,
-0.496129,0.205503,-0.843578,-0.496129,0.205503,-0.843578,-0.496129,0.205503,-0.843578,-0.496129,0.205503,-0.843578,
-0.859360,0.355958,0.367143,-0.859360,0.355958,0.367143,-0.859360,0.355958,0.367143,-0.859360,0.355958,0.367143,
-0.674452,0.279367,-0.683424,-0.674452,0.279367,-0.683424,-0.674452,0.279367,-0.683424,-0.674452,0.279367,-0.683424,
-0.748230,0.309927,0.586597,-0.748230,0.309927,0.586597,-0.748230,0.309927,0.586597,-0.748230,0.309927,0.586597,
-0.810181,0.335588,-0.480612,-0.810181,0.335588,-0.480612,-0.810181,0.335588,-0.480612,-0.810181,0.335588,-0.480612,
-0.589982,0.244379,0.769546,-0.589982,0.244379,0.769546,-0.589982,0.244379,0.769546,-0.589982,0.244379,0.769546,
-0.394364,0.163351,0.904319,-0.394364,0.163351,0.904319,-0.394364,0.163351,0.904319,-0.394364,0.163351,0.904319,
-0.895024,0.370731,-0.247971,-0.895024,0.370731,-0.247971,-0.895024,0.370731,-0.247971,-0.895024,0.370731,-0.247971,
-0.173633,0.071921,-0.982181,-0.173633,0.071921,-0.982181,-0.173633,0.071921,-0.982181,-0.173633,0.071921,-0.982181,
-0.173634,0.071922,0.982180,-0.173634,0.071922,0.982180,-0.173634,0.071922,0.982180,-0.173634,0.071922,0.982180,
-0.923880,0.382683,0.000000,-0.923880,0.382683,0.000000,-0.923880,0.382683,0.000000,-0.923880,0.382683,0.000000,
-0.394363,0.163351,-0.904320,-0.394363,0.163351,-0.904320,-0.394363,0.163351,-0.904320,-0.394363,0.163351,-0.904320,
-0.895025,0.370731,0.247970,-0.895025,0.370731,0.247970,-0.895025,0.370731,0.247970,-0.895025,0.370731,0.247970,
-0.589982,0.244378,-0.769546,-0.589982,0.244378,-0.769546,-0.589982,0.244378,-0.769546,-0.589982,0.244378,-0.769546,
-0.810181,0.335588,0.480612,-0.810181,0.335588,0.480612,-0.810181,0.335588,0.480612,-0.810181,0.335588,0.480612,
-0.748230,0.309927,-0.586598,-0.748230,0.309927,-0.586598,-0.748230,0.309927,-0.586598,-0.748230,0.309927,-0.586598,
-0.674453,0.279367,0.683423,-0.674453,0.279367,0.683423,-0.674453,0.279367,0.683423,-0.674453,0.279367,0.683423,
-0.496129,0.205503,0.843578,-0.496129,0.205503,0.843578,-0.496129,0.205503,0.843578,-0.496129,0.205503,0.843578,
-0.859360,0.355959,-0.367144,-0.859360,0.355959,-0.367144,-0.859360,0.355959,-0.367144,-0.859360,0.355959,-0.367144,
-0.286292,0.118586,0.950775,-0.286292,0.118586,0.950775,-0.286292,0.118586,0.950775,-0.286292,0.118586,0.950775,
-0.916639,0.379684,-0.124954,-0.916639,0.379684,-0.124954,-0.916639,0.379684,-0.124954,-0.916639,0.379684,-0.124954,
-0.457873,0.280585,0.843578,-0.457873,0.280585,0.843578,-0.457873,0.280585,0.843578,-0.457873,0.280585,0.843578,
-0.793095,0.486009,-0.367144,-0.793095,0.486009,-0.367144,-0.793095,0.486009,-0.367144,-0.793095,0.486009,-0.367144,
-0.264218,0.161912,0.950775,-0.264218,0.161912,0.950775,-0.264218,0.161912,0.950775,-0.264218,0.161912,0.950775,
-0.845958,0.518404,-0.124954,-0.845958,0.518404,-0.124954,-0.845958,0.518404,-0.124954,-0.845958,0.518404,-0.124954,
-0.264217,0.161912,-0.950776,-0.264217,0.161912,-0.950776,-0.264217,0.161912,-0.950776,-0.264217,0.161912,-0.950776,
-0.845958,0.518403,0.124953,-0.845958,0.518403,0.124953,-0.845958,0.518403,0.124953,-0.845958,0.518403,0.124953,
-0.457872,0.280585,-0.843579,-0.457872,0.280585,-0.843579,-0.457872,0.280585,-0.843579,-0.457872,0.280585,-0.843579,
-0.793096,0.486009,0.367143,-0.793096,0.486009,0.367143,-0.793096,0.486009,0.367143,-0.793096,0.486009,0.367143,
-0.622446,0.381435,-0.683423,-0.622446,0.381435,-0.683423,-0.622446,0.381435,-0.683423,-0.622446,0.381435,-0.683423,
-0.690535,0.423160,0.586597,-0.690535,0.423160,0.586597,-0.690535,0.423160,0.586597,-0.690535,0.423160,0.586597,
-0.747709,0.458197,-0.480612,-0.747709,0.458197,-0.480612,-0.747709,0.458197,-0.480612,-0.747709,0.458197,-0.480612,
-0.544489,0.333663,0.769546,-0.544489,0.333663,0.769546,-0.544489,0.333663,0.769546,-0.544489,0.333663,0.769546,
-0.363955,0.223032,0.904320,-0.363955,0.223032,0.904320,-0.363955,0.223032,0.904320,-0.363955,0.223032,0.904320,
-0.826010,0.506179,-0.247971,-0.826010,0.506179,-0.247971,-0.826010,0.506179,-0.247971,-0.826010,0.506179,-0.247971,
-0.160244,0.098198,-0.982181,-0.160244,0.098198,-0.982181,-0.160244,0.098198,-0.982181,-0.160244,0.098198,-0.982181,
-0.160246,0.098199,0.982180,-0.160246,0.098199,0.982180,-0.160246,0.098199,0.982180,-0.160246,0.098199,0.982180,
-0.852640,0.522499,0.000000,-0.852640,0.522499,0.000000,-0.852640,0.522499,0.000000,-0.852640,0.522499,0.000000,
-0.363954,0.223031,-0.904320,-0.363954,0.223031,-0.904320,-0.363954,0.223031,-0.904320,-0.363954,0.223031,-0.904320,
-0.826010,0.506179,0.247970,-0.826010,0.506179,0.247970,-0.826010,0.506179,0.247970,-0.826010,0.506179,0.247970,
-0.544489,0.333663,-0.769546,-0.544489,0.333663,-0.769546,-0.544489,0.333663,-0.769546,-0.544489,0.333663,-0.769546,
-0.747709,0.458196,0.480612,-0.747709,0.458196,0.480612,-0.747709,0.458196,0.480612,-0.747709,0.458196,0.480612,
-0.690535,0.423160,-0.586598,-0.690535,0.423160,-0.586598,-0.690535,0.423160,-0.586598,-0.690535,0.423160,-0.586598,
-0.622446,0.381435,0.683424,-0.622446,0.381435,0.683424,-0.622446,0.381435,0.683424,-0.622446,0.381435,0.683424,
-0.485589,0.414732,-0.769546,-0.485589,0.414732,-0.769546,-0.485589,0.414732,-0.769546,-0.485589,0.414732,-0.769546,
-0.666825,0.569522,0.480612,-0.666825,0.569522,0.480612,-0.666825,0.569522,0.480612,-0.666825,0.569522,0.480612,
-0.615837,0.525974,-0.586598,-0.615837,0.525974,-0.586598,-0.615837,0.525974,-0.586598,-0.615837,0.525974,-0.586598,
-0.555113,0.474112,0.683423,-0.555113,0.474112,0.683423,-0.555113,0.474112,0.683423,-0.555113,0.474112,0.683423,
-0.408343,0.348757,0.843578,-0.408343,0.348757,0.843578,-0.408343,0.348757,0.843578,-0.408343,0.348757,0.843578,
-0.707302,0.604093,-0.367144,-0.707302,0.604093,-0.367144,-0.707302,0.604093,-0.367144,-0.707302,0.604093,-0.367144,
-0.235635,0.201251,0.950776,-0.235635,0.201251,0.950776,-0.235635,0.201251,0.950776,-0.235635,0.201251,0.950776,
-0.754446,0.644358,-0.124954,-0.754446,0.644358,-0.124954,-0.754446,0.644358,-0.124954,-0.754446,0.644358,-0.124954,
-0.235634,0.201251,-0.950776,-0.235634,0.201251,-0.950776,-0.235634,0.201251,-0.950776,-0.235634,0.201251,-0.950776,
-0.754446,0.644358,0.124952,-0.754446,0.644358,0.124952,-0.754446,0.644358,0.124952,-0.754446,0.644358,0.124952,
-0.408342,0.348757,-0.843579,-0.408342,0.348757,-0.843579,-0.408342,0.348757,-0.843579,-0.408342,0.348757,-0.843579,
-0.707303,0.604093,0.367144,-0.707303,0.604093,0.367144,-0.707303,0.604093,0.367144,-0.707303,0.604093,0.367144,
-0.555113,0.474111,-0.683423,-0.555113,0.474111,-0.683423,-0.555113,0.474111,-0.683423,-0.555113,0.474111,-0.683423,
-0.615837,0.525974,0.586597,-0.615837,0.525974,0.586597,-0.615837,0.525974,0.586597,-0.615837,0.525974,0.586597,
-0.666826,0.569522,-0.480612,-0.666826,0.569522,-0.480612,-0.666826,0.569522,-0.480612,-0.666826,0.569522,-0.480612,
-0.485589,0.414732,0.769546,-0.485589,0.414732,0.769546,-0.485589,0.414732,0.769546,-0.485589,0.414732,0.769546,
-0.324584,0.277221,0.904320,-0.324584,0.277221,0.904320,-0.324584,0.277221,0.904320,-0.324584,0.277221,0.904320,
-0.736657,0.629164,-0.247970,-0.736657,0.629164,-0.247970,-0.736657,0.629164,-0.247970,-0.736657,0.629164,-0.247970,
-0.142909,0.122057,-0.982181,-0.142909,0.122057,-0.982181,-0.142909,0.122057,-0.982181,-0.142909,0.122057,-0.982181,
-0.142910,0.122058,0.982180,-0.142910,0.122058,0.982180,-0.142910,0.122058,0.982180,-0.142910,0.122058,0.982180,
-0.760406,0.649448,0.000000,-0.760406,0.649448,0.000000,-0.760406,0.649448,0.000000,-0.760406,0.649448,0.000000,
-0.324584,0.277220,-0.904320,-0.324584,0.277220,-0.904320,-0.324584,0.277220,-0.904320,-0.324584,0.277220,-0.904320,
-0.736657,0.629164,0.247970,-0.736657,0.629164,0.247970,-0.736657,0.629164,0.247970,-0.736657,0.629164,0.247970,
-0.122057,0.142910,-0.982181,-0.122057,0.142910,-0.982181,-0.122057,0.142910,-0.982181,-0.122057,0.142910,-0.982181,
-0.122057,0.142911,0.982181,-0.122057,0.142911,0.982181,-0.122057,0.142911,0.982181,-0.122057,0.142911,0.982181,
-0.649448,0.760406,0.000000,-0.649448,0.760406,0.000000,-0.649448,0.760406,0.000000,-0.649448,0.760406,0.000000,
-0.277221,0.324584,-0.904320,-0.277221,0.324584,-0.904320,-0.277221,0.324584,-0.904320,-0.277221,0.324584,-0.904320,
-0.629164,0.736657,0.247970,-0.629164,0.736657,0.247970,-0.629164,0.736657,0.247970,-0.629164,0.736657,0.247970,
-0.414732,0.485589,-0.769546,-0.414732,0.485589,-0.769546,-0.414732,0.485589,-0.769546,-0.414732,0.485589,-0.769546,
-0.569522,0.666825,0.480612,-0.569522,0.666825,0.480612,-0.569522,0.666825,0.480612,-0.569522,0.666825,0.480612,
-0.525974,0.615836,-0.586598,-0.525974,0.615836,-0.586598,-0.525974,0.615836,-0.586598,-0.525974,0.615836,-0.586598,
-0.474112,0.555113,0.683423,-0.474112,0.555113,0.683423,-0.474112,0.555113,0.683423,-0.474112,0.555113,0.683423,
-0.348757,0.408343,0.843578,-0.348757,0.408343,0.843578,-0.348757,0.408343,0.843578,-0.348757,0.408343,0.843578,
-0.604093,0.707302,-0.367144,-0.604093,0.707302,-0.367144,-0.604093,0.707302,-0.367144,-0.604093,0.707302,-0.367144,
-0.201251,0.235635,0.950776,-0.201251,0.235635,0.950776,-0.201251,0.235635,0.950776,-0.201251,0.235635,0.950776,
-0.644358,0.754446,-0.124954,-0.644358,0.754446,-0.124954,-0.644358,0.754446,-0.124954,-0.644358,0.754446,-0.124954,
-0.201252,0.235635,-0.950775,-0.201252,0.235635,-0.950775,-0.201252,0.235635,-0.950775,-0.201252,0.235635,-0.950775,
-0.644358,0.754446,0.124953,-0.644358,0.754446,0.124953,-0.644358,0.754446,0.124953,-0.644358,0.754446,0.124953,
-0.348757,0.408342,-0.843579,-0.348757,0.408342,-0.843579,-0.348757,0.408342,-0.843579,-0.348757,0.408342,-0.843579,
-0.604094,0.707302,0.367144,-0.604094,0.707302,0.367144,-0.604094,0.707302,0.367144,-0.604094,0.707302,0.367144,
-0.474112,0.555113,-0.683423,-0.474112,0.555113,-0.683423,-0.474112,0.555113,-0.683423,-0.474112,0.555113,-0.683423,
-0.525974,0.615837,0.586597,-0.525974,0.615837,0.586597,-0.525974,0.615837,0.586597,-0.525974,0.615837,0.586597,
-0.569523,0.666825,-0.480612,-0.569523,0.666825,-0.480612,-0.569523,0.666825,-0.480612,-0.569523,0.666825,-0.480612,
-0.414732,0.485589,0.769545,-0.414732,0.485589,0.769545,-0.414732,0.485589,0.769545,-0.414732,0.485589,0.769545,
-0.277221,0.324584,0.904319,-0.277221,0.324584,0.904319,-0.277221,0.324584,0.904319,-0.277221,0.324584,0.904319,
-0.629165,0.736656,-0.247970,-0.629165,0.736656,-0.247970,-0.629165,0.736656,-0.247970,-0.629165,0.736656,-0.247970,
-0.458196,0.747709,-0.480612,-0.458196,0.747709,-0.480612,-0.458196,0.747709,-0.480612,-0.458196,0.747709,-0.480612,
-0.333663,0.544489,0.769546,-0.333663,0.544489,0.769546,-0.333663,0.544489,0.769546,-0.333663,0.544489,0.769546,
-0.223032,0.363955,0.904320,-0.223032,0.363955,0.904320,-0.223032,0.363955,0.904320,-0.223032,0.363955,0.904320,
-0.506180,0.826010,-0.247971,-0.506180,0.826010,-0.247971,-0.506180,0.826010,-0.247971,-0.506180,0.826010,-0.247971,
-0.098199,0.160245,-0.982181,-0.098199,0.160245,-0.982181,-0.098199,0.160245,-0.982181,-0.098199,0.160245,-0.982181,
-0.098196,0.160246,0.982181,-0.098196,0.160246,0.982181,-0.098196,0.160246,0.982181,-0.098196,0.160246,0.982181,
-0.522499,0.852640,0.000000,-0.522499,0.852640,0.000000,-0.522499,0.852640,0.000000,-0.522499,0.852640,0.000000,
-0.223033,0.363954,-0.904320,-0.223033,0.363954,-0.904320,-0.223033,0.363954,-0.904320,-0.223033,0.363954,-0.904320,
-0.506180,0.826010,0.247970,-0.506180,0.826010,0.247970,-0.506180,0.826010,0.247970,-0.506180,0.826010,0.247970,
-0.333663,0.544488,-0.769546,-0.333663,0.544488,-0.769546,-0.333663,0.544488,-0.769546,-0.333663,0.544488,-0.769546,
-0.458196,0.747708,0.480612,-0.458196,0.747708,0.480612,-0.458196,0.747708,0.480612,-0.458196,0.747708,0.480612,
-0.423160,0.690535,-0.586597,-0.423160,0.690535,-0.586597,-0.423160,0.690535,-0.586597,-0.423160,0.690535,-0.586597,
-0.381436,0.622446,0.683423,-0.381436,0.622446,0.683423,-0.381436,0.622446,0.683423,-0.381436,0.622446,0.683423,
-0.280585,0.457873,0.843578,-0.280585,0.457873,0.843578,-0.280585,0.457873,0.843578,-0.280585,0.457873,0.843578,
-0.486009,0.793096,-0.367144,-0.486009,0.793096,-0.367144,-0.486009,0.793096,-0.367144,-0.486009,0.793096,-0.367144,
-0.161912,0.264217,0.950776,-0.161912,0.264217,0.950776,-0.161912,0.264217,0.950776,-0.161912,0.264217,0.950776,
-0.518404,0.845958,-0.124954,-0.518404,0.845958,-0.124954,-0.518404,0.845958,-0.124954,-0.518404,0.845958,-0.124954,
-0.161911,0.264216,-0.950776,-0.161911,0.264216,-0.950776,-0.161911,0.264216,-0.950776,-0.161911,0.264216,-0.950776,
-0.518404,0.845958,0.124953,-0.518404,0.845958,0.124953,-0.518404,0.845958,0.124953,-0.518404,0.845958,0.124953,
-0.280585,0.457873,-0.843579,-0.280585,0.457873,-0.843579,-0.280585,0.457873,-0.843579,-0.280585,0.457873,-0.843579,
-0.486010,0.793095,0.367144,-0.486010,0.793095,0.367144,-0.486010,0.793095,0.367144,-0.486010,0.793095,0.367144,
-0.381436,0.622446,-0.683423,-0.381436,0.622446,-0.683423,-0.381436,0.622446,-0.683423,-0.381436,0.622446,-0.683423,
-0.423161,0.690535,0.586597,-0.423161,0.690535,0.586597,-0.423161,0.690535,0.586597,-0.423161,0.690535,0.586597,
-0.205503,0.496129,-0.843578,-0.205503,0.496129,-0.843578,-0.205503,0.496129,-0.843578,-0.205503,0.496129,-0.843578,
-0.355959,0.859360,0.367143,-0.355959,0.859360,0.367143,-0.355959,0.859360,0.367143,-0.355959,0.859360,0.367143,
-0.279368,0.674453,-0.683423,-0.279368,0.674453,-0.683423,-0.279368,0.674453,-0.683423,-0.279368,0.674453,-0.683423,
-0.309927,0.748231,0.586597,-0.309927,0.748231,0.586597,-0.309927,0.748231,0.586597,-0.309927,0.748231,0.586597,
-0.335588,0.810181,-0.480612,-0.335588,0.810181,-0.480612,-0.335588,0.810181,-0.480612,-0.335588,0.810181,-0.480612,
-0.244379,0.589981,0.769546,-0.244379,0.589981,0.769546,-0.244379,0.589981,0.769546,-0.244379,0.589981,0.769546,
-0.163350,0.394364,0.904320,-0.163350,0.394364,0.904320,-0.163350,0.394364,0.904320,-0.163350,0.394364,0.904320,
-0.370732,0.895025,-0.247970,-0.370732,0.895025,-0.247970,-0.370732,0.895025,-0.247970,-0.370732,0.895025,-0.247970,
-0.071921,0.173633,-0.982181,-0.071921,0.173633,-0.982181,-0.071921,0.173633,-0.982181,-0.071921,0.173633,-0.982181,
-0.071925,0.173634,0.982180,-0.071925,0.173634,0.982180,-0.071925,0.173634,0.982180,-0.071925,0.173634,0.982180,
-0.382684,0.923879,0.000000,-0.382684,0.923879,0.000000,-0.382684,0.923879,0.000000,-0.382684,0.923879,0.000000,
-0.163350,0.394363,-0.904320,-0.163350,0.394363,-0.904320,-0.163350,0.394363,-0.904320,-0.163350,0.394363,-0.904320,
-0.370732,0.895025,0.247970,-0.370732,0.895025,0.247970,-0.370732,0.895025,0.247970,-0.370732,0.895025,0.247970,
-0.244378,0.589981,-0.769547,-0.244378,0.589981,-0.769547,-0.244378,0.589981,-0.769547,-0.244378,0.589981,-0.769547,
-0.335588,0.810181,0.480612,-0.335588,0.810181,0.480612,-0.335588,0.810181,0.480612,-0.335588,0.810181,0.480612,
-0.309927,0.748230,-0.586597,-0.309927,0.748230,-0.586597,-0.309927,0.748230,-0.586597,-0.309927,0.748230,-0.586597,
-0.279367,0.674453,0.683423,-0.279367,0.674453,0.683423,-0.279367,0.674453,0.683423,-0.279367,0.674453,0.683423,
-0.205504,0.496129,0.843578,-0.205504,0.496129,0.843578,-0.205504,0.496129,0.843578,-0.205504,0.496129,0.843578,
-0.355958,0.859359,-0.367145,-0.355958,0.859359,-0.367145,-0.355958,0.859359,-0.367145,-0.355958,0.859359,-0.367145,
-0.118587,0.286292,0.950775,-0.118587,0.286292,0.950775,-0.118587,0.286292,0.950775,-0.118587,0.286292,0.950775,
-0.379684,0.916639,-0.124955,-0.379684,0.916639,-0.124955,-0.379684,0.916639,-0.124955,-0.379684,0.916639,-0.124955,
-0.118587,0.286292,-0.950776,-0.118587,0.286292,-0.950776,-0.118587,0.286292,-0.950776,-0.118587,0.286292,-0.950776,
-0.379684,0.916639,0.124952,-0.379684,0.916639,0.124952,-0.379684,0.916639,0.124952,-0.379684,0.916639,0.124952,
-0.072339,0.301319,0.950776,-0.072339,0.301319,0.950776,-0.072339,0.301319,0.950776,-0.072339,0.301319,0.950776,
-0.231616,0.964749,-0.124954,-0.231616,0.964749,-0.124954,-0.231616,0.964749,-0.124954,-0.231616,0.964749,-0.124954,
-0.072341,0.301318,-0.950776,-0.072341,0.301318,-0.950776,-0.072341,0.301318,-0.950776,-0.072341,0.301318,-0.950776,
-0.231616,0.964749,0.124953,-0.231616,0.964749,0.124953,-0.231616,0.964749,0.124953,-0.231616,0.964749,0.124953,
-0.125361,0.522168,-0.843579,-0.125361,0.522168,-0.843579,-0.125361,0.522168,-0.843579,-0.125361,0.522168,-0.843579,
-0.217143,0.904464,0.367143,-0.217143,0.904464,0.367143,-0.217143,0.904464,0.367143,-0.217143,0.904464,0.367143,
-0.170420,0.709852,-0.683423,-0.170420,0.709852,-0.683423,-0.170420,0.709852,-0.683423,-0.170420,0.709852,-0.683423,
-0.189062,0.787502,0.586597,-0.189062,0.787502,0.586597,-0.189062,0.787502,0.586597,-0.189062,0.787502,0.586597,
-0.204716,0.852703,-0.480613,-0.204716,0.852703,-0.480613,-0.204716,0.852703,-0.480613,-0.204716,0.852703,-0.480613,
-0.149076,0.620947,0.769546,-0.149076,0.620947,0.769546,-0.149076,0.620947,0.769546,-0.149076,0.620947,0.769546,
-0.099647,0.415062,0.904319,-0.099647,0.415062,0.904319,-0.099647,0.415062,0.904319,-0.099647,0.415062,0.904319,
-0.226154,0.942001,-0.247970,-0.226154,0.942001,-0.247970,-0.226154,0.942001,-0.247970,-0.226154,0.942001,-0.247970,
-0.043875,0.182747,-0.982181,-0.043875,0.182747,-0.982181,-0.043875,0.182747,-0.982181,-0.043875,0.182747,-0.982181,
-0.043873,0.182748,0.982180,-0.043873,0.182748,0.982180,-0.043873,0.182748,0.982180,-0.043873,0.182748,0.982180,
-0.233445,0.972370,0.000000,-0.233445,0.972370,0.000000,-0.233445,0.972370,0.000000,-0.233445,0.972370,0.000000,
-0.099647,0.415062,-0.904320,-0.099647,0.415062,-0.904320,-0.099647,0.415062,-0.904320,-0.099647,0.415062,-0.904320,
-0.226154,0.942000,0.247970,-0.226154,0.942000,0.247970,-0.226154,0.942000,0.247970,-0.226154,0.942000,0.247970,
-0.149077,0.620947,-0.769546,-0.149077,0.620947,-0.769546,-0.149077,0.620947,-0.769546,-0.149077,0.620947,-0.769546,
-0.204716,0.852703,0.480613,-0.204716,0.852703,0.480613,-0.204716,0.852703,0.480613,-0.204716,0.852703,0.480613,
-0.189062,0.787502,-0.586597,-0.189062,0.787502,-0.586597,-0.189062,0.787502,-0.586597,-0.189062,0.787502,-0.586597,
-0.170420,0.709852,0.683423,-0.170420,0.709852,0.683423,-0.170420,0.709852,0.683423,-0.170420,0.709852,0.683423,
-0.125362,0.522169,0.843578,-0.125362,0.522169,0.843578,-0.125362,0.522169,0.843578,-0.125362,0.522169,0.843578,
-0.217143,0.904463,-0.367144,-0.217143,0.904463,-0.367144,-0.217143,0.904463,-0.367144,-0.217143,0.904463,-0.367144,
-0.063542,0.807382,-0.586597,-0.063542,0.807382,-0.586597,-0.063542,0.807382,-0.586597,-0.063542,0.807382,-0.586597,
-0.057277,0.727772,0.683423,-0.057277,0.727772,0.683423,-0.057277,0.727772,0.683423,-0.057277,0.727772,0.683423,
-0.042133,0.535351,0.843578,-0.042133,0.535351,0.843578,-0.042133,0.535351,0.843578,-0.042133,0.535351,0.843578,
-0.072980,0.927297,-0.367143,-0.072980,0.927297,-0.367143,-0.072980,0.927297,-0.367143,-0.072980,0.927297,-0.367143,
-0.024312,0.308925,0.950776,-0.024312,0.308925,0.950776,-0.024312,0.308925,0.950776,-0.024312,0.308925,0.950776,
-0.077844,0.989104,-0.124954,-0.077844,0.989104,-0.124954,-0.077844,0.989104,-0.124954,-0.077844,0.989104,-0.124954,
-0.024312,0.308925,-0.950776,-0.024312,0.308925,-0.950776,-0.024312,0.308925,-0.950776,-0.024312,0.308925,-0.950776,
-0.077844,0.989104,0.124953,-0.077844,0.989104,0.124953,-0.077844,0.989104,0.124953,-0.077844,0.989104,0.124953,
-0.042133,0.535350,-0.843579,-0.042133,0.535350,-0.843579,-0.042133,0.535350,-0.843579,-0.042133,0.535350,-0.843579,
-0.072980,0.927297,0.367143,-0.072980,0.927297,0.367143,-0.072980,0.927297,0.367143,-0.072980,0.927297,0.367143,
-0.057277,0.727772,-0.683423,-0.057277,0.727772,-0.683423,-0.057277,0.727772,-0.683423,-0.057277,0.727772,-0.683423,
-0.063542,0.807382,0.586597,-0.063542,0.807382,0.586597,-0.063542,0.807382,0.586597,-0.063542,0.807382,0.586597,
-0.068803,0.874229,-0.480614,-0.068803,0.874229,-0.480614,-0.068803,0.874229,-0.480614,-0.068803,0.874229,-0.480614,
-0.050103,0.636623,0.769546,-0.050103,0.636623,0.769546,-0.050103,0.636623,0.769546,-0.050103,0.636623,0.769546,
-0.033491,0.425540,0.904319,-0.033491,0.425540,0.904319,-0.033491,0.425540,0.904319,-0.033491,0.425540,0.904319,
-0.076009,0.965781,-0.247970,-0.076009,0.965781,-0.247970,-0.076009,0.965781,-0.247970,-0.076009,0.965781,-0.247970,
-0.014746,0.187360,-0.982181,-0.014746,0.187360,-0.982181,-0.014746,0.187360,-0.982181,-0.014746,0.187360,-0.982181,
-0.014748,0.187361,0.982180,-0.014748,0.187361,0.982180,-0.014748,0.187361,0.982180,-0.014748,0.187361,0.982180,
-0.078459,0.996917,0.000000,-0.078459,0.996917,0.000000,-0.078459,0.996917,0.000000,-0.078459,0.996917,0.000000,
-0.033492,0.425540,-0.904320,-0.033492,0.425540,-0.904320,-0.033492,0.425540,-0.904320,-0.033492,0.425540,-0.904320,
-0.076009,0.965781,0.247970,-0.076009,0.965781,0.247970,-0.076009,0.965781,0.247970,-0.076009,0.965781,0.247970,
-0.050104,0.636622,-0.769546,-0.050104,0.636622,-0.769546,-0.050104,0.636622,-0.769546,-0.050104,0.636622,-0.769546,
-0.068803,0.874230,0.480613,-0.068803,0.874230,0.480613,-0.068803,0.874230,0.480613,-0.068803,0.874230,0.480613,
0.033491,0.425540,-0.904320,0.033491,0.425540,-0.904320,0.033491,0.425540,-0.904320,0.033491,0.425540,-0.904320,
0.076009,0.965781,0.247969,0.076009,0.965781,0.247969,0.076009,0.965781,0.247969,0.076009,0.965781,0.247969,
0.050103,0.636623,-0.769546,0.050103,0.636623,-0.769546,0.050103,0.636623,-0.769546,0.050103,0.636623,-0.769546,
0.068803,0.874230,0.480613,0.068803,0.874230,0.480613,0.068803,0.874230,0.480613,0.068803,0.874230,0.480613,
0.063542,0.807383,-0.586597,0.063542,0.807383,-0.586597,0.063542,0.807383,-0.586597,0.063542,0.807383,-0.586597,
0.057277,0.727772,0.683423,0.057277,0.727772,0.683423,0.057277,0.727772,0.683423,0.057277,0.727772,0.683423,
0.042133,0.535351,0.843578,0.042133,0.535351,0.843578,0.042133,0.535351,0.843578,0.042133,0.535351,0.843578,
0.072980,0.927297,-0.367144,0.072980,0.927297,-0.367144,0.072980,0.927297,-0.367144,0.072980,0.927297,-0.367144,
0.024312,0.308925,0.950776,0.024312,0.308925,0.950776,0.024312,0.308925,0.950776,0.024312,0.308925,0.950776,
0.077844,0.989104,-0.124953,0.077844,0.989104,-0.124953,0.077844,0.989104,-0.124953,0.077844,0.989104,-0.124953,
0.024312,0.308925,-0.950776,0.024312,0.308925,-0.950776,0.024312,0.308925,-0.950776,0.024312,0.308925,-0.950776,
0.077844,0.989104,0.124952,0.077844,0.989104,0.124952,0.077844,0.989104,0.124952,0.077844,0.989104,0.124952,
0.042133,0.535350,-0.843579,0.042133,0.535350,-0.843579,0.042133,0.535350,-0.843579,0.042133,0.535350,-0.843579,
0.072980,0.927297,0.367143,0.072980,0.927297,0.367143,0.072980,0.927297,0.367143,0.072980,0.927297,0.367143,
0.057277,0.727772,-0.683423,0.057277,0.727772,-0.683423,0.057277,0.727772,-0.683423,0.057277,0.727772,-0.683423,
0.063542,0.807383,0.586597,0.063542,0.807383,0.586597,0.063542,0.807383,0.586597,0.063542,0.807383,0.586597,
0.068803,0.874229,-0.480613,0.068803,0.874229,-0.480613,0.068803,0.874229,-0.480613,0.068803,0.874229,-0.480613,
0.050103,0.636623,0.769546,0.050103,0.636623,0.769546,0.050103,0.636623,0.769546,0.050103,0.636623,0.769546,
0.033491,0.425540,0.904319,0.033491,0.425540,0.904319,0.033491,0.425540,0.904319,0.033491,0.425540,0.904319,
0.076009,0.965781,-0.247970,0.076009,0.965781,-0.247970,0.076009,0.965781,-0.247970,0.076009,0.965781,-0.247970,
0.014746,0.187360,-0.982181,0.014746,0.187360,-0.982181,0.014746,0.187360,-0.982181,0.014746,0.187360,-0.982181,
0.014748,0.187361,0.982180,0.014748,0.187361,0.982180,0.014748,0.187361,0.982180,0.014748,0.187361,0.982180,
0.078459,0.996917,0.000000,0.078459,0.996917,0.000000,0.078459,0.996917,0.000000,0.078459,0.996917,0.000000,
0.099648,0.415062,0.904319,0.099648,0.415062,0.904319,0.099648,0.415062,0.904319,0.099648,0.415062,0.904319,
0.226154,0.942001,-0.247969,0.226154,0.942001,-0.247969,0.226154,0.942001,-0.247969,0.226154,0.942001,-0.247969,
0.043875,0.182747,-0.982181,0.043875,0.182747,-0.982181,0.043875,0.182747,-0.982181,0.043875,0.182747,-0.982181,
0.043873,0.182748,0.982181,0.043873,0.182748,0.982181,0.043873,0.182748,0.982181,0.043873,0.182748,0.982181,
0.233445,0.972370,0.000000,0.233445,0.972370,0.000000,0.233445,0.972370,0.000000,0.233445,0.972370,0.000000,
0.099647,0.415061,-0.904320,0.099647,0.415061,-0.904320,0.099647,0.415061,-0.904320,0.099647,0.415061,-0.904320,
0.226154,0.942001,0.247969,0.226154,0.942001,0.247969,0.226154,0.942001,0.247969,0.226154,0.942001,0.247969,
0.149077,0.620947,-0.769546,0.149077,0.620947,-0.769546,0.149077,0.620947,-0.769546,0.149077,0.620947,-0.769546,
0.204716,0.852704,0.480612,0.204716,0.852704,0.480612,0.204716,0.852704,0.480612,0.204716,0.852704,0.480612,
0.189062,0.787502,-0.586597,0.189062,0.787502,-0.586597,0.189062,0.787502,-0.586597,0.189062,0.787502,-0.586597,
0.170420,0.709852,0.683424,0.170420,0.709852,0.683424,0.170420,0.709852,0.683424,0.170420,0.709852,0.683424,
0.125362,0.522168,0.843578,0.125362,0.522168,0.843578,0.125362,0.522168,0.843578,0.125362,0.522168,0.843578,
0.217142,0.904463,-0.367145,0.217142,0.904463,-0.367145,0.217142,0.904463,-0.367145,0.217142,0.904463,-0.367145,
0.072339,0.301319,0.950776,0.072339,0.301319,0.950776,0.072339,0.301319,0.950776,0.072339,0.301319,0.950776,
0.231616,0.964749,-0.124952,0.231616,0.964749,-0.124952,0.231616,0.964749,-0.124952,0.231616,0.964749,-0.124952,
0.072341,0.301318,-0.950776,0.072341,0.301318,-0.950776,0.072341,0.301318,-0.950776,0.072341,0.301318,-0.950776,
0.231616,0.964749,0.124952,0.231616,0.964749,0.124952,0.231616,0.964749,0.124952,0.231616,0.964749,0.124952,
0.125362,0.522168,-0.843578,0.125362,0.522168,-0.843578,0.125362,0.522168,-0.843578,0.125362,0.522168,-0.843578,
0.217142,0.904464,0.367144,0.217142,0.904464,0.367144,0.217142,0.904464,0.367144,0.217142,0.904464,0.367144,
0.170420,0.709852,-0.683423,0.170420,0.709852,-0.683423,0.170420,0.709852,-0.683423,0.170420,0.709852,-0.683423,
0.189062,0.787502,0.586597,0.189062,0.787502,0.586597,0.189062,0.787502,0.586597,0.189062,0.787502,0.586597,
0.204716,0.852704,-0.480612,0.204716,0.852704,-0.480612,0.204716,0.852704,-0.480612,0.204716,0.852704,-0.480612,
0.149077,0.620948,0.769545,0.149077,0.620948,0.769545,0.149077,0.620948,0.769545,0.149077,0.620948,0.769545,
0.279368,0.674453,-0.683423,0.279368,0.674453,-0.683423,0.279368,0.674453,-0.683423,0.279368,0.674453,-0.683423,
0.309927,0.748231,0.586597,0.309927,0.748231,0.586597,0.309927,0.748231,0.586597,0.309927,0.748231,0.586597,
0.335588,0.810180,-0.480613,0.335588,0.810180,-0.480613,0.335588,0.810180,-0.480613,0.335588,0.810180,-0.480613,
0.244378,0.589982,0.769546,0.244378,0.589982,0.769546,0.244378,0.589982,0.769546,0.244378,0.589982,0.769546,
0.163350,0.394364,0.904320,0.163350,0.394364,0.904320,0.163350,0.394364,0.904320,0.163350,0.394364,0.904320,
0.370731,0.895025,-0.247969,0.370731,0.895025,-0.247969,0.370731,0.895025,-0.247969,0.370731,0.895025,-0.247969,
0.071921,0.173633,-0.982181,0.071921,0.173633,-0.982181,0.071921,0.173633,-0.982181,0.071921,0.173633,-0.982181,
0.071925,0.173634,0.982180,0.071925,0.173634,0.982180,0.071925,0.173634,0.982180,0.071925,0.173634,0.982180,
0.382683,0.923880,0.000000,0.382683,0.923880,0.000000,0.382683,0.923880,0.000000,0.382683,0.923880,0.000000,
0.163350,0.394363,-0.904320,0.163350,0.394363,-0.904320,0.163350,0.394363,-0.904320,0.163350,0.394363,-0.904320,
0.370731,0.895025,0.247970,0.370731,0.895025,0.247970,0.370731,0.895025,0.247970,0.370731,0.895025,0.247970,
0.244378,0.589981,-0.769546,0.244378,0.589981,-0.769546,0.244378,0.589981,-0.769546,0.244378,0.589981,-0.769546,
0.335588,0.810181,0.480612,0.335588,0.810181,0.480612,0.335588,0.810181,0.480612,0.335588,0.810181,0.480612,
0.309927,0.748231,-0.586597,0.309927,0.748231,-0.586597,0.309927,0.748231,-0.586597,0.309927,0.748231,-0.586597,
0.279367,0.674453,0.683423,0.279367,0.674453,0.683423,0.279367,0.674453,0.683423,0.279367,0.674453,0.683423,
0.205503,0.496129,0.843578,0.205503,0.496129,0.843578,0.205503,0.496129,0.843578,0.205503,0.496129,0.843578,
0.355958,0.859360,-0.367144,0.355958,0.859360,-0.367144,0.355958,0.859360,-0.367144,0.355958,0.859360,-0.367144,
0.118586,0.286292,0.950775,0.118586,0.286292,0.950775,0.118586,0.286292,0.950775,0.118586,0.286292,0.950775,
0.379684,0.916639,-0.124954,0.379684,0.916639,-0.124954,0.379684,0.916639,-0.124954,0.379684,0.916639,-0.124954,
0.118586,0.286292,-0.950776,0.118586,0.286292,-0.950776,0.118586,0.286292,-0.950776,0.118586,0.286292,-0.950776,
0.379684,0.916639,0.124952,0.379684,0.916639,0.124952,0.379684,0.916639,0.124952,0.379684,0.916639,0.124952,
0.205503,0.496129,-0.843579,0.205503,0.496129,-0.843579,0.205503,0.496129,-0.843579,0.205503,0.496129,-0.843579,
0.355958,0.859360,0.367143,0.355958,0.859360,0.367143,0.355958,0.859360,0.367143,0.355958,0.859360,0.367143,
0.161912,0.264216,-0.950776,0.161912,0.264216,-0.950776,0.161912,0.264216,-0.950776,0.161912,0.264216,-0.950776,
0.518404,0.845958,0.124951,0.518404,0.845958,0.124951,0.518404,0.845958,0.124951,0.518404,0.845958,0.124951,
0.280585,0.457873,-0.843579,0.280585,0.457873,-0.843579,0.280585,0.457873,-0.843579,0.280585,0.457873,-0.843579,
0.486009,0.793096,0.367143,0.486009,0.793096,0.367143,0.486009,0.793096,0.367143,0.486009,0.793096,0.367143,
0.381435,0.622446,-0.683423,0.381435,0.622446,-0.683423,0.381435,0.622446,-0.683423,0.381435,0.622446,-0.683423,
0.423161,0.690535,0.586597,0.423161,0.690535,0.586597,0.423161,0.690535,0.586597,0.423161,0.690535,0.586597,
0.458196,0.747708,-0.480613,0.458196,0.747708,-0.480613,0.458196,0.747708,-0.480613,0.458196,0.747708,-0.480613,
0.333663,0.544489,0.769545,0.333663,0.544489,0.769545,0.333663,0.544489,0.769545,0.333663,0.544489,0.769545,
0.223032,0.363955,0.904319,0.223032,0.363955,0.904319,0.223032,0.363955,0.904319,0.223032,0.363955,0.904319,
0.506179,0.826011,-0.247969,0.506179,0.826011,-0.247969,0.506179,0.826011,-0.247969,0.506179,0.826011,-0.247969,
0.098199,0.160245,-0.982181,0.098199,0.160245,-0.982181,0.098199,0.160245,-0.982181,0.098199,0.160245,-0.982181,
0.098196,0.160246,0.982181,0.098196,0.160246,0.982181,0.098196,0.160246,0.982181,0.098196,0.160246,0.982181,
0.522499,0.852640,0.000000,0.522499,0.852640,0.000000,0.522499,0.852640,0.000000,0.522499,0.852640,0.000000,
0.223032,0.363954,-0.904320,0.223032,0.363954,-0.904320,0.223032,0.363954,-0.904320,0.223032,0.363954,-0.904320,
0.506180,0.826010,0.247970,0.506180,0.826010,0.247970,0.506180,0.826010,0.247970,0.506180,0.826010,0.247970,
0.333663,0.544488,-0.769546,0.333663,0.544488,-0.769546,0.333663,0.544488,-0.769546,0.333663,0.544488,-0.769546,
0.458196,0.747708,0.480613,0.458196,0.747708,0.480613,0.458196,0.747708,0.480613,0.458196,0.747708,0.480613,
0.423160,0.690536,-0.586597,0.423160,0.690536,-0.586597,0.423160,0.690536,-0.586597,0.423160,0.690536,-0.586597,
0.381436,0.622446,0.683423,0.381436,0.622446,0.683423,0.381436,0.622446,0.683423,0.381436,0.622446,0.683423,
0.280585,0.457873,0.843578,0.280585,0.457873,0.843578,0.280585,0.457873,0.843578,0.280585,0.457873,0.843578,
0.486009,0.793095,-0.367144,0.486009,0.793095,-0.367144,0.486009,0.793095,-0.367144,0.486009,0.793095,-0.367144,
0.161912,0.264217,0.950776,0.161912,0.264217,0.950776,0.161912,0.264217,0.950776,0.161912,0.264217,0.950776,
0.518404,0.845958,-0.124953,0.518404,0.845958,-0.124953,0.518404,0.845958,-0.124953,0.518404,0.845958,-0.124953,
0.348757,0.408343,0.843579,0.348757,0.408343,0.843579,0.348757,0.408343,0.843579,0.348757,0.408343,0.843579,
0.604093,0.707302,-0.367145,0.604093,0.707302,-0.367145,0.604093,0.707302,-0.367145,0.604093,0.707302,-0.367145,
0.201251,0.235635,0.950776,0.201251,0.235635,0.950776,0.201251,0.235635,0.950776,0.201251,0.235635,0.950776,
0.644358,0.754447,-0.124953,0.644358,0.754447,-0.124953,0.644358,0.754447,-0.124953,0.644358,0.754447,-0.124953,
0.201250,0.235635,-0.950776,0.201250,0.235635,-0.950776,0.201250,0.235635,-0.950776,0.201250,0.235635,-0.950776,
0.644358,0.754447,0.124952,0.644358,0.754447,0.124952,0.644358,0.754447,0.124952,0.644358,0.754447,0.124952,
0.348758,0.408343,-0.843578,0.348758,0.408343,-0.843578,0.348758,0.408343,-0.843578,0.348758,0.408343,-0.843578,
0.604094,0.707302,0.367143,0.604094,0.707302,0.367143,0.604094,0.707302,0.367143,0.604094,0.707302,0.367143,
0.474111,0.555113,-0.683423,0.474111,0.555113,-0.683423,0.474111,0.555113,-0.683423,0.474111,0.555113,-0.683423,
0.525975,0.615837,0.586597,0.525975,0.615837,0.586597,0.525975,0.615837,0.586597,0.525975,0.615837,0.586597,
0.569522,0.666825,-0.480613,0.569522,0.666825,-0.480613,0.569522,0.666825,-0.480613,0.569522,0.666825,-0.480613,
0.414732,0.485589,0.769546,0.414732,0.485589,0.769546,0.414732,0.485589,0.769546,0.414732,0.485589,0.769546,
0.277221,0.324584,0.904319,0.277221,0.324584,0.904319,0.277221,0.324584,0.904319,0.277221,0.324584,0.904319,
0.629165,0.736657,-0.247970,0.629165,0.736657,-0.247970,0.629165,0.736657,-0.247970,0.629165,0.736657,-0.247970,
0.122057,0.142910,-0.982181,0.122057,0.142910,-0.982181,0.122057,0.142910,-0.982181,0.122057,0.142910,-0.982181,
0.122059,0.142911,0.982180,0.122059,0.142911,0.982180,0.122059,0.142911,0.982180,0.122059,0.142911,0.982180,
0.649448,0.760406,0.000000,0.649448,0.760406,0.000000,0.649448,0.760406,0.000000,0.649448,0.760406,0.000000,
0.277220,0.324583,-0.904320,0.277220,0.324583,-0.904320,0.277220,0.324583,-0.904320,0.277220,0.324583,-0.904320,
0.629164,0.736657,0.247970,0.629164,0.736657,0.247970,0.629164,0.736657,0.247970,0.629164,0.736657,0.247970,
0.414731,0.485589,-0.769546,0.414731,0.485589,-0.769546,0.414731,0.485589,-0.769546,0.414731,0.485589,-0.769546,
0.569522,0.666825,0.480613,0.569522,0.666825,0.480613,0.569522,0.666825,0.480613,0.569522,0.666825,0.480613,
0.525975,0.615837,-0.586597,0.525975,0.615837,-0.586597,0.525975,0.615837,-0.586597,0.525975,0.615837,-0.586597,
0.474112,0.555113,0.683423,0.474112,0.555113,0.683423,0.474112,0.555113,0.683423,0.474112,0.555113,0.683423,
0.485588,0.414732,-0.769546,0.485588,0.414732,-0.769546,0.485588,0.414732,-0.769546,0.485588,0.414732,-0.769546,
0.666825,0.569522,0.480613,0.666825,0.569522,0.480613,0.666825,0.569522,0.480613,0.666825,0.569522,0.480613,
0.615837,0.525974,-0.586597,0.615837,0.525974,-0.586597,0.615837,0.525974,-0.586597,0.615837,0.525974,-0.586597,
0.555113,0.474112,0.683423,0.555113,0.474112,0.683423,0.555113,0.474112,0.683423,0.555113,0.474112,0.683423,
0.408343,0.348758,0.843578,0.408343,0.348758,0.843578,0.408343,0.348758,0.843578,0.408343,0.348758,0.843578,
0.707302,0.604093,-0.367144,0.707302,0.604093,-0.367144,0.707302,0.604093,-0.367144,0.707302,0.604093,-0.367144,
0.235635,0.201251,0.950775,0.235635,0.201251,0.950775,0.235635,0.201251,0.950775,0.235635,0.201251,0.950775,
0.754447,0.644358,-0.124954,0.754447,0.644358,-0.124954,0.754447,0.644358,-0.124954,0.754447,0.644358,-0.124954,
0.235635,0.201251,-0.950776,0.235635,0.201251,-0.950776,0.235635,0.201251,-0.950776,0.235635,0.201251,-0.950776,
0.754446,0.644358,0.124951,0.754446,0.644358,0.124951,0.754446,0.644358,0.124951,0.754446,0.644358,0.124951,
0.408342,0.348757,-0.843579,0.408342,0.348757,-0.843579,0.408342,0.348757,-0.843579,0.408342,0.348757,-0.843579,
0.707303,0.604094,0.367143,0.707303,0.604094,0.367143,0.707303,0.604094,0.367143,0.707303,0.604094,0.367143,
0.555114,0.474112,-0.683423,0.555114,0.474112,-0.683423,0.555114,0.474112,-0.683423,0.555114,0.474112,-0.683423,
0.615837,0.525975,0.586596,0.615837,0.525975,0.586596,0.615837,0.525975,0.586596,0.615837,0.525975,0.586596,
0.666825,0.569522,-0.480613,0.666825,0.569522,-0.480613,0.666825,0.569522,-0.480613,0.666825,0.569522,-0.480613,
0.485589,0.414732,0.769546,0.485589,0.414732,0.769546,0.485589,0.414732,0.769546,0.485589,0.414732,0.769546,
0.324583,0.277221,0.904320,0.324583,0.277221,0.904320,0.324583,0.277221,0.904320,0.324583,0.277221,0.904320,
0.736657,0.629165,-0.247969,0.736657,0.629165,-0.247969,0.736657,0.629165,-0.247969,0.736657,0.629165,-0.247969,
0.142911,0.122057,-0.982181,0.142911,0.122057,-0.982181,0.142911,0.122057,-0.982181,0.142911,0.122057,-0.982181,
0.142910,0.122058,0.982181,0.142910,0.122058,0.982181,0.142910,0.122058,0.982181,0.142910,0.122058,0.982181,
0.760406,0.649448,0.000000,0.760406,0.649448,0.000000,0.760406,0.649448,0.000000,0.760406,0.649448,0.000000,
0.324584,0.277220,-0.904320,0.324584,0.277220,-0.904320,0.324584,0.277220,-0.904320,0.324584,0.277220,-0.904320,
0.736657,0.629164,0.247971,0.736657,0.629164,0.247971,0.736657,0.629164,0.247971,0.736657,0.629164,0.247971,
0.160245,0.098198,-0.982181,0.160245,0.098198,-0.982181,0.160245,0.098198,-0.982181,0.160245,0.098198,-0.982181,
0.160246,0.098199,0.982180,0.160246,0.098199,0.982180,0.160246,0.098199,0.982180,0.160246,0.098199,0.982180,
0.852640,0.522499,0.000000,0.852640,0.522499,0.000000,0.852640,0.522499,0.000000,0.852640,0.522499,0.000000,
0.363954,0.223032,-0.904320,0.363954,0.223032,-0.904320,0.363954,0.223032,-0.904320,0.363954,0.223032,-0.904320,
0.826011,0.506180,0.247970,0.826011,0.506180,0.247970,0.826011,0.506180,0.247970,0.826011,0.506180,0.247970,
0.544488,0.333663,-0.769546,0.544488,0.333663,-0.769546,0.544488,0.333663,-0.769546,0.544488,0.333663,-0.769546,
0.747708,0.458196,0.480613,0.747708,0.458196,0.480613,0.747708,0.458196,0.480613,0.747708,0.458196,0.480613,
0.690535,0.423161,-0.586597,0.690535,0.423161,-0.586597,0.690535,0.423161,-0.586597,0.690535,0.423161,-0.586597,
0.622446,0.381436,0.683423,0.622446,0.381436,0.683423,0.622446,0.381436,0.683423,0.622446,0.381436,0.683423,
0.457873,0.280585,0.843578,0.457873,0.280585,0.843578,0.457873,0.280585,0.843578,0.457873,0.280585,0.843578,
0.793095,0.486009,-0.367145,0.793095,0.486009,-0.367145,0.793095,0.486009,-0.367145,0.793095,0.486009,-0.367145,
0.264217,0.161912,0.950775,0.264217,0.161912,0.950775,0.264217,0.161912,0.950775,0.264217,0.161912,0.950775,
0.845958,0.518404,-0.124954,0.845958,0.518404,-0.124954,0.845958,0.518404,-0.124954,0.845958,0.518404,-0.124954,
0.264217,0.161912,-0.950776,0.264217,0.161912,-0.950776,0.264217,0.161912,-0.950776,0.264217,0.161912,-0.950776,
0.845958,0.518404,0.124952,0.845958,0.518404,0.124952,0.845958,0.518404,0.124952,0.845958,0.518404,0.124952,
0.457872,0.280585,-0.843579,0.457872,0.280585,-0.843579,0.457872,0.280585,-0.843579,0.457872,0.280585,-0.843579,
0.793096,0.486010,0.367143,0.793096,0.486010,0.367143,0.793096,0.486010,0.367143,0.793096,0.486010,0.367143,
0.622446,0.381436,-0.683423,0.622446,0.381436,-0.683423,0.622446,0.381436,-0.683423,0.622446,0.381436,-0.683423,
0.690535,0.423161,0.586597,0.690535,0.423161,0.586597,0.690535,0.423161,0.586597,0.690535,0.423161,0.586597,
0.747708,0.458196,-0.480613,0.747708,0.458196,-0.480613,0.747708,0.458196,-0.480613,0.747708,0.458196,-0.480613,
0.544489,0.333663,0.769546,0.544489,0.333663,0.769546,0.544489,0.333663,0.769546,0.544489,0.333663,0.769546,
0.363955,0.223032,0.904319,0.363955,0.223032,0.904319,0.363955,0.223032,0.904319,0.363955,0.223032,0.904319,
0.826011,0.506180,-0.247969,0.826011,0.506180,-0.247969,0.826011,0.506180,-0.247969,0.826011,0.506180,-0.247969,
0.810180,0.335587,-0.480614,0.810180,0.335587,-0.480614,0.810180,0.335587,-0.480614,0.810180,0.335587,-0.480614,
0.589982,0.244379,0.769546,0.589982,0.244379,0.769546,0.589982,0.244379,0.769546,0.589982,0.244379,0.769546,
0.394364,0.163351,0.904320,0.394364,0.163351,0.904320,0.394364,0.163351,0.904320,0.394364,0.163351,0.904320,
0.895025,0.370732,-0.247969,0.895025,0.370732,-0.247969,0.895025,0.370732,-0.247969,0.895025,0.370732,-0.247969,
0.173634,0.071921,-0.982180,0.173634,0.071921,-0.982180,0.173634,0.071921,-0.982180,0.173634,0.071921,-0.982180,
0.173636,0.071922,0.982180,0.173636,0.071922,0.982180,0.173636,0.071922,0.982180,0.173636,0.071922,0.982180,
0.923879,0.382684,0.000000,0.923879,0.382684,0.000000,0.923879,0.382684,0.000000,0.923879,0.382684,0.000000,
0.394363,0.163351,-0.904320,0.394363,0.163351,-0.904320,0.394363,0.163351,-0.904320,0.394363,0.163351,-0.904320,
0.895025,0.370732,0.247970,0.895025,0.370732,0.247970,0.895025,0.370732,0.247970,0.895025,0.370732,0.247970,
0.589981,0.244378,-0.769546,0.589981,0.244378,-0.769546,0.589981,0.244378,-0.769546,0.589981,0.244378,-0.769546,
0.810180,0.335588,0.480613,0.810180,0.335588,0.480613,0.810180,0.335588,0.480613,0.810180,0.335588,0.480613,
0.748231,0.309927,-0.586597,0.748231,0.309927,-0.586597,0.748231,0.309927,-0.586597,0.748231,0.309927,-0.586597,
0.674453,0.279367,0.683423,0.674453,0.279367,0.683423,0.674453,0.279367,0.683423,0.674453,0.279367,0.683423,
0.496129,0.205503,0.843578,0.496129,0.205503,0.843578,0.496129,0.205503,0.843578,0.496129,0.205503,0.843578,
0.859359,0.355958,-0.367144,0.859359,0.355958,-0.367144,0.859359,0.355958,-0.367144,0.859359,0.355958,-0.367144,
0.286293,0.118586,0.950775,0.286293,0.118586,0.950775,0.286293,0.118586,0.950775,0.286293,0.118586,0.950775,
0.916638,0.379685,-0.124954,0.916638,0.379685,-0.124954,0.916638,0.379685,-0.124954,0.916638,0.379685,-0.124954,
0.286291,0.118586,-0.950776,0.286291,0.118586,-0.950776,0.286291,0.118586,-0.950776,0.286291,0.118586,-0.950776,
0.916639,0.379685,0.124952,0.916639,0.379685,0.124952,0.916639,0.379685,0.124952,0.916639,0.379685,0.124952,
0.496128,0.205503,-0.843579,0.496128,0.205503,-0.843579,0.496128,0.205503,-0.843579,0.496128,0.205503,-0.843579,
0.859360,0.355959,0.367143,0.859360,0.355959,0.367143,0.859360,0.355959,0.367143,0.859360,0.355959,0.367143,
0.674453,0.279368,-0.683423,0.674453,0.279368,-0.683423,0.674453,0.279368,-0.683423,0.674453,0.279368,-0.683423,
0.748231,0.309927,0.586597,0.748231,0.309927,0.586597,0.748231,0.309927,0.586597,0.748231,0.309927,0.586597,
0.522167,0.125361,-0.843579,0.522167,0.125361,-0.843579,0.522167,0.125361,-0.843579,0.522167,0.125361,-0.843579,
0.904464,0.217142,0.367143,0.904464,0.217142,0.367143,0.904464,0.217142,0.367143,0.904464,0.217142,0.367143,
0.709852,0.170420,-0.683423,0.709852,0.170420,-0.683423,0.709852,0.170420,-0.683423,0.709852,0.170420,-0.683423,
0.787502,0.189063,0.586597,0.787502,0.189063,0.586597,0.787502,0.189063,0.586597,0.787502,0.189063,0.586597,
0.852703,0.204716,-0.480614,0.852703,0.204716,-0.480614,0.852703,0.204716,-0.480614,0.852703,0.204716,-0.480614,
0.620948,0.149076,0.769545,0.620948,0.149076,0.769545,0.620948,0.149076,0.769545,0.620948,0.149076,0.769545,
0.415062,0.099648,0.904320,0.415062,0.099648,0.904320,0.415062,0.099648,0.904320,0.415062,0.099648,0.904320,
0.942001,0.226154,-0.247969,0.942001,0.226154,-0.247969,0.942001,0.226154,-0.247969,0.942001,0.226154,-0.247969,
0.182747,0.043874,-0.982181,0.182747,0.043874,-0.982181,0.182747,0.043874,-0.982181,0.182747,0.043874,-0.982181,
0.182747,0.043874,0.982181,0.182747,0.043874,0.982181,0.182747,0.043874,0.982181,0.182747,0.043874,0.982181,
0.972370,0.233446,0.000000,0.972370,0.233446,0.000000,0.972370,0.233446,0.000000,0.972370,0.233446,0.000000,
0.415062,0.099647,-0.904320,0.415062,0.099647,-0.904320,0.415062,0.099647,-0.904320,0.415062,0.099647,-0.904320,
0.942000,0.226154,0.247970,0.942000,0.226154,0.247970,0.942000,0.226154,0.247970,0.942000,0.226154,0.247970,
0.620947,0.149076,-0.769546,0.620947,0.149076,-0.769546,0.620947,0.149076,-0.769546,0.620947,0.149076,-0.769546,
0.852703,0.204716,0.480613,0.852703,0.204716,0.480613,0.852703,0.204716,0.480613,0.852703,0.204716,0.480613,
0.787502,0.189063,-0.586597,0.787502,0.189063,-0.586597,0.787502,0.189063,-0.586597,0.787502,0.189063,-0.586597,
0.709852,0.170420,0.683424,0.709852,0.170420,0.683424,0.709852,0.170420,0.683424,0.709852,0.170420,0.683424,
0.522169,0.125362,0.843578,0.522169,0.125362,0.843578,0.522169,0.125362,0.843578,0.522169,0.125362,0.843578,
0.904464,0.217142,-0.367144,0.904464,0.217142,-0.367144,0.904464,0.217142,-0.367144,0.904464,0.217142,-0.367144,
0.301319,0.072340,0.950775,0.301319,0.072340,0.950775,0.301319,0.072340,0.950775,0.301319,0.072340,0.950775,
0.964749,0.231616,-0.124954,0.964749,0.231616,-0.124954,0.964749,0.231616,-0.124954,0.964749,0.231616,-0.124954,
0.301319,0.072340,-0.950775,0.301319,0.072340,-0.950775,0.301319,0.072340,-0.950775,0.301319,0.072340,-0.950775,
0.964749,0.231616,0.124952,0.964749,0.231616,0.124952,0.964749,0.231616,0.124952,0.964749,0.231616,0.124952,
0.308925,0.024313,0.950776,0.308925,0.024313,0.950776,0.308925,0.024313,0.950776,0.308925,0.024313,0.950776,
0.989104,0.077844,-0.124954,0.989104,0.077844,-0.124954,0.989104,0.077844,-0.124954,0.989104,0.077844,-0.124954,
0.308925,0.024313,-0.950775,0.308925,0.024313,-0.950775,0.308925,0.024313,-0.950775,0.308925,0.024313,-0.950775,
0.989104,0.077844,0.124952,0.989104,0.077844,0.124952,0.989104,0.077844,0.124952,0.989104,0.077844,0.124952,
0.535350,0.042133,-0.843579,0.535350,0.042133,-0.843579,0.535350,0.042133,-0.843579,0.535350,0.042133,-0.843579,
0.927297,0.072980,0.367143,0.927297,0.072980,0.367143,0.927297,0.072980,0.367143,0.927297,0.072980,0.367143,
0.727772,0.057277,-0.683423,0.727772,0.057277,-0.683423,0.727772,0.057277,-0.683423,0.727772,0.057277,-0.683423,
0.807383,0.063542,0.586597,0.807383,0.063542,0.586597,0.807383,0.063542,0.586597,0.807383,0.063542,0.586597,
0.874229,0.068803,-0.480614,0.874229,0.068803,-0.480614,0.874229,0.068803,-0.480614,0.874229,0.068803,-0.480614,
0.636624,0.050103,0.769545,0.636624,0.050103,0.769545,0.636624,0.050103,0.769545,0.636624,0.050103,0.769545,
0.425540,0.033491,0.904319,0.425540,0.033491,0.904319,0.425540,0.033491,0.904319,0.425540,0.033491,0.904319,
0.965782,0.076008,-0.247969,0.965782,0.076008,-0.247969,0.965782,0.076008,-0.247969,0.965782,0.076008,-0.247969,
0.187360,0.014746,-0.982181,0.187360,0.014746,-0.982181,0.187360,0.014746,-0.982181,0.187360,0.014746,-0.982181,
0.187362,0.014746,0.982180,0.187362,0.014746,0.982180,0.187362,0.014746,0.982180,0.187362,0.014746,0.982180,
0.996917,0.078459,0.000000,0.996917,0.078459,0.000000,0.996917,0.078459,0.000000,0.996917,0.078459,0.000000,
0.425540,0.033491,-0.904320,0.425540,0.033491,-0.904320,0.425540,0.033491,-0.904320,0.425540,0.033491,-0.904320,
0.965781,0.076009,0.247970,0.965781,0.076009,0.247970,0.965781,0.076009,0.247970,0.965781,0.076009,0.247970,
0.636623,0.050103,-0.769546,0.636623,0.050103,-0.769546,0.636623,0.050103,-0.769546,0.636623,0.050103,-0.769546,
0.874230,0.068803,0.480613,0.874230,0.068803,0.480613,0.874230,0.068803,0.480613,0.874230,0.068803,0.480613,
0.807383,0.063542,-0.586596,0.807383,0.063542,-0.586596,0.807383,0.063542,-0.586596,0.807383,0.063542,-0.586596,
0.727772,0.057277,0.683423,0.727772,0.057277,0.683423,0.727772,0.057277,0.683423,0.727772,0.057277,0.683423,
0.535351,0.042133,0.843578,0.535351,0.042133,0.843578,0.535351,0.042133,0.843578,0.535351,0.042133,0.843578,
0.927297,0.072980,-0.367144,0.927297,0.072980,-0.367144,0.927297,0.072980,-0.367144,0.927297,0.072980,-0.367144,
0.807383,-0.063542,-0.586596,0.807383,-0.063542,-0.586596,0.807383,-0.063542,-0.586596,0.807383,-0.063542,-0.586596,
0.727772,-0.057277,0.683424,0.727772,-0.057277,0.683424,0.727772,-0.057277,0.683424,0.727772,-0.057277,0.683424,
0.535351,-0.042133,0.843578,0.535351,-0.042133,0.843578,0.535351,-0.042133,0.843578,0.535351,-0.042133,0.843578,
0.927297,-0.072980,-0.367145,0.927297,-0.072980,-0.367145,0.927297,-0.072980,-0.367145,0.927297,-0.072980,-0.367145,
0.308926,-0.024313,0.950775,0.308926,-0.024313,0.950775,0.308926,-0.024313,0.950775,0.308926,-0.024313,0.950775,
0.989104,-0.077844,-0.124954,0.989104,-0.077844,-0.124954,0.989104,-0.077844,-0.124954,0.989104,-0.077844,-0.124954,
0.308925,-0.024313,-0.950775,0.308925,-0.024313,-0.950775,0.308925,-0.024313,-0.950775,0.308925,-0.024313,-0.950775,
0.989104,-0.077844,0.124952,0.989104,-0.077844,0.124952,0.989104,-0.077844,0.124952,0.989104,-0.077844,0.124952,
0.535350,-0.042133,-0.843579,0.535350,-0.042133,-0.843579,0.535350,-0.042133,-0.843579,0.535350,-0.042133,-0.843579,
0.927297,-0.072980,0.367143,0.927297,-0.072980,0.367143,0.927297,-0.072980,0.367143,0.927297,-0.072980,0.367143,
0.727772,-0.057277,-0.683423,0.727772,-0.057277,-0.683423,0.727772,-0.057277,-0.683423,0.727772,-0.057277,-0.683423,
0.807383,-0.063542,0.586596,0.807383,-0.063542,0.586596,0.807383,-0.063542,0.586596,0.807383,-0.063542,0.586596,
0.874229,-0.068803,-0.480614,0.874229,-0.068803,-0.480614,0.874229,-0.068803,-0.480614,0.874229,-0.068803,-0.480614,
0.636624,-0.050103,0.769545,0.636624,-0.050103,0.769545,0.636624,-0.050103,0.769545,0.636624,-0.050103,0.769545,
0.425541,-0.033491,0.904319,0.425541,-0.033491,0.904319,0.425541,-0.033491,0.904319,0.425541,-0.033491,0.904319,
0.965782,-0.076008,-0.247969,0.965782,-0.076008,-0.247969,0.965782,-0.076008,-0.247969,0.965782,-0.076008,-0.247969,
0.187359,-0.014746,-0.982181,0.187359,-0.014746,-0.982181,0.187359,-0.014746,-0.982181,0.187359,-0.014746,-0.982181,
0.187361,-0.014745,0.982181,0.187361,-0.014745,0.982181,0.187361,-0.014745,0.982181,0.187361,-0.014745,0.982181,
0.996917,-0.078459,0.000000,0.996917,-0.078459,0.000000,0.996917,-0.078459,0.000000,0.996917,-0.078459,0.000000,
0.425540,-0.033491,-0.904320,0.425540,-0.033491,-0.904320,0.425540,-0.033491,-0.904320,0.425540,-0.033491,-0.904320,
0.965781,-0.076009,0.247970,0.965781,-0.076009,0.247970,0.965781,-0.076009,0.247970,0.965781,-0.076009,0.247970,
0.636622,-0.050103,-0.769546,0.636622,-0.050103,-0.769546,0.636622,-0.050103,-0.769546,0.636622,-0.050103,-0.769546,
0.874230,-0.068803,0.480613,0.874230,-0.068803,0.480613,0.874230,-0.068803,0.480613,0.874230,-0.068803,0.480613,
0.415062,-0.099647,-0.904320,0.415062,-0.099647,-0.904320,0.415062,-0.099647,-0.904320,0.415062,-0.099647,-0.904320,
0.942001,-0.226154,0.247970,0.942001,-0.226154,0.247970,0.942001,-0.226154,0.247970,0.942001,-0.226154,0.247970,
0.620947,-0.149076,-0.769546,0.620947,-0.149076,-0.769546,0.620947,-0.149076,-0.769546,0.620947,-0.149076,-0.769546,
0.852703,-0.204716,0.480613,0.852703,-0.204716,0.480613,0.852703,-0.204716,0.480613,0.852703,-0.204716,0.480613,
0.787502,-0.189063,-0.586597,0.787502,-0.189063,-0.586597,0.787502,-0.189063,-0.586597,0.787502,-0.189063,-0.586597,
0.709851,-0.170420,0.683424,0.709851,-0.170420,0.683424,0.709851,-0.170420,0.683424,0.709851,-0.170420,0.683424,
0.522168,-0.125362,0.843578,0.522168,-0.125362,0.843578,0.522168,-0.125362,0.843578,0.522168,-0.125362,0.843578,
0.904463,-0.217142,-0.367145,0.904463,-0.217142,-0.367145,0.904463,-0.217142,-0.367145,0.904463,-0.217142,-0.367145,
0.301319,-0.072340,0.950775,0.301319,-0.072340,0.950775,0.301319,-0.072340,0.950775,0.301319,-0.072340,0.950775,
0.964749,-0.231616,-0.124954,0.964749,-0.231616,-0.124954,0.964749,-0.231616,-0.124954,0.964749,-0.231616,-0.124954,
0.301318,-0.072340,-0.950776,0.301318,-0.072340,-0.950776,0.301318,-0.072340,-0.950776,0.301318,-0.072340,-0.950776,
0.964749,-0.231616,0.124952,0.964749,-0.231616,0.124952,0.964749,-0.231616,0.124952,0.964749,-0.231616,0.124952,
0.522168,-0.125361,-0.843579,0.522168,-0.125361,-0.843579,0.522168,-0.125361,-0.843579,0.522168,-0.125361,-0.843579,
0.904464,-0.217142,0.367143,0.904464,-0.217142,0.367143,0.904464,-0.217142,0.367143,0.904464,-0.217142,0.367143,
0.709852,-0.170420,-0.683423,0.709852,-0.170420,-0.683423,0.709852,-0.170420,-0.683423,0.709852,-0.170420,-0.683423,
0.787502,-0.189062,0.586596,0.787502,-0.189062,0.586596,0.787502,-0.189062,0.586596,0.787502,-0.189062,0.586596,
0.852703,-0.204716,-0.480613,0.852703,-0.204716,-0.480613,0.852703,-0.204716,-0.480613,0.852703,-0.204716,-0.480613,
0.620948,-0.149076,0.769546,0.620948,-0.149076,0.769546,0.620948,-0.149076,0.769546,0.620948,-0.149076,0.769546,
0.415063,-0.099647,0.904319,0.415063,-0.099647,0.904319,0.415063,-0.099647,0.904319,0.415063,-0.099647,0.904319,
0.942001,-0.226154,-0.247969,0.942001,-0.226154,-0.247969,0.942001,-0.226154,-0.247969,0.942001,-0.226154,-0.247969,
0.182747,-0.043874,-0.982181,0.182747,-0.043874,-0.982181,0.182747,-0.043874,-0.982181,0.182747,-0.043874,-0.982181,
0.182748,-0.043874,0.982180,0.182748,-0.043874,0.982180,0.182748,-0.043874,0.982180,0.182748,-0.043874,0.982180,
0.972370,-0.233445,0.000000,0.972370,-0.233445,0.000000,0.972370,-0.233445,0.000000,0.972370,-0.233445,0.000000,
0.394364,-0.163351,0.904319,0.394364,-0.163351,0.904319,0.394364,-0.163351,0.904319,0.394364,-0.163351,0.904319,
0.895025,-0.370731,-0.247969,0.895025,-0.370731,-0.247969,0.895025,-0.370731,-0.247969,0.895025,-0.370731,-0.247969,
0.173633,-0.071921,-0.982181,0.173633,-0.071921,-0.982181,0.173633,-0.071921,-0.982181,0.173633,-0.071921,-0.982181,
0.173634,-0.071922,0.982181,0.173634,-0.071922,0.982181,0.173634,-0.071922,0.982181,0.173634,-0.071922,0.982181,
0.923880,-0.382683,0.000000,0.923880,-0.382683,0.000000,0.923880,-0.382683,0.000000,0.923880,-0.382683,0.000000,
0.394363,-0.163351,-0.904320,0.394363,-0.163351,-0.904320,0.394363,-0.163351,-0.904320,0.394363,-0.163351,-0.904320,
0.895025,-0.370732,0.247970,0.895025,-0.370732,0.247970,0.895025,-0.370732,0.247970,0.895025,-0.370732,0.247970,
0.589981,-0.244378,-0.769546,0.589981,-0.244378,-0.769546,0.589981,-0.244378,-0.769546,0.589981,-0.244378,-0.769546,
0.810180,-0.335588,0.480613,0.810180,-0.335588,0.480613,0.810180,-0.335588,0.480613,0.810180,-0.335588,0.480613,
0.748231,-0.309927,-0.586597,0.748231,-0.309927,-0.586597,0.748231,-0.309927,-0.586597,0.748231,-0.309927,-0.586597,
0.674452,-0.279367,0.683424,0.674452,-0.279367,0.683424,0.674452,-0.279367,0.683424,0.674452,-0.279367,0.683424,
0.496129,-0.205503,0.843578,0.496129,-0.205503,0.843578,0.496129,-0.205503,0.843578,0.496129,-0.205503,0.843578,
0.859359,-0.355959,-0.367144,0.859359,-0.355959,-0.367144,0.859359,-0.355959,-0.367144,0.859359,-0.355959,-0.367144,
0.286293,-0.118586,0.950775,0.286293,-0.118586,0.950775,0.286293,-0.118586,0.950775,0.286293,-0.118586,0.950775,
0.916639,-0.379684,-0.124954,0.916639,-0.379684,-0.124954,0.916639,-0.379684,-0.124954,0.916639,-0.379684,-0.124954,
0.286292,-0.118586,-0.950776,0.286292,-0.118586,-0.950776,0.286292,-0.118586,-0.950776,0.286292,-0.118586,-0.950776,
0.916639,-0.379684,0.124952,0.916639,-0.379684,0.124952,0.916639,-0.379684,0.124952,0.916639,-0.379684,0.124952,
0.496128,-0.205503,-0.843579,0.496128,-0.205503,-0.843579,0.496128,-0.205503,-0.843579,0.496128,-0.205503,-0.843579,
0.859360,-0.355959,0.367143,0.859360,-0.355959,0.367143,0.859360,-0.355959,0.367143,0.859360,-0.355959,0.367143,
0.674453,-0.279367,-0.683423,0.674453,-0.279367,-0.683423,0.674453,-0.279367,-0.683423,0.674453,-0.279367,-0.683423,
0.748231,-0.309927,0.586597,0.748231,-0.309927,0.586597,0.748231,-0.309927,0.586597,0.748231,-0.309927,0.586597,
0.810180,-0.335588,-0.480613,0.810180,-0.335588,-0.480613,0.810180,-0.335588,-0.480613,0.810180,-0.335588,-0.480613,
0.589982,-0.244379,0.769545,0.589982,-0.244379,0.769545,0.589982,-0.244379,0.769545,0.589982,-0.244379,0.769545,
0.622447,-0.381436,-0.683423,0.622447,-0.381436,-0.683423,0.622447,-0.381436,-0.683423,0.622447,-0.381436,-0.683423,
0.690535,-0.423161,0.586597,0.690535,-0.423161,0.586597,0.690535,-0.423161,0.586597,0.690535,-0.423161,0.586597,
0.747708,-0.458196,-0.480613,0.747708,-0.458196,-0.480613,0.747708,-0.458196,-0.480613,0.747708,-0.458196,-0.480613,
0.544489,-0.333664,0.769545,0.544489,-0.333664,0.769545,0.544489,-0.333664,0.769545,0.544489,-0.333664,0.769545,
0.363955,-0.223032,0.904319,0.363955,-0.223032,0.904319,0.363955,-0.223032,0.904319,0.363955,-0.223032,0.904319,
0.826010,-0.506180,-0.247969,0.826010,-0.506180,-0.247969,0.826010,-0.506180,-0.247969,0.826010,-0.506180,-0.247969,
0.160244,-0.098198,-0.982181,0.160244,-0.098198,-0.982181,0.160244,-0.098198,-0.982181,0.160244,-0.098198,-0.982181,
0.160245,-0.098199,0.982180,0.160245,-0.098199,0.982180,0.160245,-0.098199,0.982180,0.160245,-0.098199,0.982180,
0.852640,-0.522498,0.000000,0.852640,-0.522498,0.000000,0.852640,-0.522498,0.000000,0.852640,-0.522498,0.000000,
0.363954,-0.223032,-0.904320,0.363954,-0.223032,-0.904320,0.363954,-0.223032,-0.904320,0.363954,-0.223032,-0.904320,
0.826010,-0.506180,0.247970,0.826010,-0.506180,0.247970,0.826010,-0.506180,0.247970,0.826010,-0.506180,0.247970,
0.544488,-0.333663,-0.769546,0.544488,-0.333663,-0.769546,0.544488,-0.333663,-0.769546,0.544488,-0.333663,-0.769546,
0.747708,-0.458196,0.480612,0.747708,-0.458196,0.480612,0.747708,-0.458196,0.480612,0.747708,-0.458196,0.480612,
0.690535,-0.423161,-0.586597,0.690535,-0.423161,-0.586597,0.690535,-0.423161,-0.586597,0.690535,-0.423161,-0.586597,
0.622446,-0.381435,0.683424,0.622446,-0.381435,0.683424,0.622446,-0.381435,0.683424,0.622446,-0.381435,0.683424,
0.457873,-0.280585,0.843579,0.457873,-0.280585,0.843579,0.457873,-0.280585,0.843579,0.457873,-0.280585,0.843579,
0.793095,-0.486009,-0.367144,0.793095,-0.486009,-0.367144,0.793095,-0.486009,-0.367144,0.793095,-0.486009,-0.367144,
0.264217,-0.161912,0.950776,0.264217,-0.161912,0.950776,0.264217,-0.161912,0.950776,0.264217,-0.161912,0.950776,
0.845958,-0.518404,-0.124954,0.845958,-0.518404,-0.124954,0.845958,-0.518404,-0.124954,0.845958,-0.518404,-0.124954,
0.264217,-0.161912,-0.950775,0.264217,-0.161912,-0.950775,0.264217,-0.161912,-0.950775,0.264217,-0.161912,-0.950775,
0.845958,-0.518404,0.124952,0.845958,-0.518404,0.124952,0.845958,-0.518404,0.124952,0.845958,-0.518404,0.124952,
0.457872,-0.280584,-0.843579,0.457872,-0.280584,-0.843579,0.457872,-0.280584,-0.843579,0.457872,-0.280584,-0.843579,
0.793096,-0.486010,0.367143,0.793096,-0.486010,0.367143,0.793096,-0.486010,0.367143,0.793096,-0.486010,0.367143,
0.235635,-0.201251,-0.950776,0.235635,-0.201251,-0.950776,0.235635,-0.201251,-0.950776,0.235635,-0.201251,-0.950776,
0.754446,-0.644358,0.124952,0.754446,-0.644358,0.124952,0.754446,-0.644358,0.124952,0.754446,-0.644358,0.124952,
0.408342,-0.348757,-0.843579,0.408342,-0.348757,-0.843579,0.408342,-0.348757,-0.843579,0.408342,-0.348757,-0.843579,
0.707303,-0.604093,0.367143,0.707303,-0.604093,0.367143,0.707303,-0.604093,0.367143,0.707303,-0.604093,0.367143,
0.555113,-0.474112,-0.683424,0.555113,-0.474112,-0.683424,0.555113,-0.474112,-0.683424,0.555113,-0.474112,-0.683424,
0.615837,-0.525974,0.586597,0.615837,-0.525974,0.586597,0.615837,-0.525974,0.586597,0.615837,-0.525974,0.586597,
0.666825,-0.569522,-0.480613,0.666825,-0.569522,-0.480613,0.666825,-0.569522,-0.480613,0.666825,-0.569522,-0.480613,
0.485590,-0.414733,0.769545,0.485590,-0.414733,0.769545,0.485590,-0.414733,0.769545,0.485590,-0.414733,0.769545,
0.324583,-0.277221,0.904320,0.324583,-0.277221,0.904320,0.324583,-0.277221,0.904320,0.324583,-0.277221,0.904320,
0.736657,-0.629164,-0.247970,0.736657,-0.629164,-0.247970,0.736657,-0.629164,-0.247970,0.736657,-0.629164,-0.247970,
0.142909,-0.122057,-0.982181,0.142909,-0.122057,-0.982181,0.142909,-0.122057,-0.982181,0.142909,-0.122057,-0.982181,
0.142910,-0.122057,0.982181,0.142910,-0.122057,0.982181,0.142910,-0.122057,0.982181,0.142910,-0.122057,0.982181,
0.760406,-0.649448,0.000000,0.760406,-0.649448,0.000000,0.760406,-0.649448,0.000000,0.760406,-0.649448,0.000000,
0.324584,-0.277221,-0.904320,0.324584,-0.277221,-0.904320,0.324584,-0.277221,-0.904320,0.324584,-0.277221,-0.904320,
0.736657,-0.629164,0.247971,0.736657,-0.629164,0.247971,0.736657,-0.629164,0.247971,0.736657,-0.629164,0.247971,
0.485589,-0.414731,-0.769546,0.485589,-0.414731,-0.769546,0.485589,-0.414731,-0.769546,0.485589,-0.414731,-0.769546,
0.666825,-0.569523,0.480612,0.666825,-0.569523,0.480612,0.666825,-0.569523,0.480612,0.666825,-0.569523,0.480612,
0.615837,-0.525974,-0.586596,0.615837,-0.525974,-0.586596,0.615837,-0.525974,-0.586596,0.615837,-0.525974,-0.586596,
0.555113,-0.474111,0.683424,0.555113,-0.474111,0.683424,0.555113,-0.474111,0.683424,0.555113,-0.474111,0.683424,
0.408343,-0.348758,0.843578,0.408343,-0.348758,0.843578,0.408343,-0.348758,0.843578,0.408343,-0.348758,0.843578,
0.707302,-0.604093,-0.367144,0.707302,-0.604093,-0.367144,0.707302,-0.604093,-0.367144,0.707302,-0.604093,-0.367144,
0.235635,-0.201252,0.950775,0.235635,-0.201252,0.950775,0.235635,-0.201252,0.950775,0.235635,-0.201252,0.950775,
0.754446,-0.644358,-0.124954,0.754446,-0.644358,-0.124954,0.754446,-0.644358,-0.124954,0.754446,-0.644358,-0.124954,
0.348757,-0.408343,0.843579,0.348757,-0.408343,0.843579,0.348757,-0.408343,0.843579,0.348757,-0.408343,0.843579,
0.604093,-0.707302,-0.367144,0.604093,-0.707302,-0.367144,0.604093,-0.707302,-0.367144,0.604093,-0.707302,-0.367144,
0.201250,-0.235635,0.950776,0.201250,-0.235635,0.950776,0.201250,-0.235635,0.950776,0.201250,-0.235635,0.950776,
0.644358,-0.754446,-0.124954,0.644358,-0.754446,-0.124954,0.644358,-0.754446,-0.124954,0.644358,-0.754446,-0.124954,
0.201252,-0.235635,-0.950775,0.201252,-0.235635,-0.950775,0.201252,-0.235635,-0.950775,0.201252,-0.235635,-0.950775,
0.644358,-0.754446,0.124952,0.644358,-0.754446,0.124952,0.644358,-0.754446,0.124952,0.644358,-0.754446,0.124952,
0.348756,-0.408342,-0.843579,0.348756,-0.408342,-0.843579,0.348756,-0.408342,-0.843579,0.348756,-0.408342,-0.843579,
0.604094,-0.707302,0.367143,0.604094,-0.707302,0.367143,0.604094,-0.707302,0.367143,0.604094,-0.707302,0.367143,
0.474112,-0.555113,-0.683423,0.474112,-0.555113,-0.683423,0.474112,-0.555113,-0.683423,0.474112,-0.555113,-0.683423,
0.525974,-0.615837,0.586597,0.525974,-0.615837,0.586597,0.525974,-0.615837,0.586597,0.525974,-0.615837,0.586597,
0.569522,-0.666825,-0.480614,0.569522,-0.666825,-0.480614,0.569522,-0.666825,-0.480614,0.569522,-0.666825,-0.480614,
0.414733,-0.485589,0.769545,0.414733,-0.485589,0.769545,0.414733,-0.485589,0.769545,0.414733,-0.485589,0.769545,
0.277221,-0.324584,0.904319,0.277221,-0.324584,0.904319,0.277221,-0.324584,0.904319,0.277221,-0.324584,0.904319,
0.629165,-0.736657,-0.247969,0.629165,-0.736657,-0.247969,0.629165,-0.736657,-0.247969,0.629165,-0.736657,-0.247969,
0.122057,-0.142910,-0.982181,0.122057,-0.142910,-0.982181,0.122057,-0.142910,-0.982181,0.122057,-0.142910,-0.982181,
0.122059,-0.142911,0.982180,0.122059,-0.142911,0.982180,0.122059,-0.142911,0.982180,0.122059,-0.142911,0.982180,
0.649448,-0.760406,0.000000,0.649448,-0.760406,0.000000,0.649448,-0.760406,0.000000,0.649448,-0.760406,0.000000,
0.277221,-0.324584,-0.904320,0.277221,-0.324584,-0.904320,0.277221,-0.324584,-0.904320,0.277221,-0.324584,-0.904320,
0.629164,-0.736657,0.247971,0.629164,-0.736657,0.247971,0.629164,-0.736657,0.247971,0.629164,-0.736657,0.247971,
0.414732,-0.485589,-0.769546,0.414732,-0.485589,-0.769546,0.414732,-0.485589,-0.769546,0.414732,-0.485589,-0.769546,
0.569523,-0.666825,0.480613,0.569523,-0.666825,0.480613,0.569523,-0.666825,0.480613,0.569523,-0.666825,0.480613,
0.525974,-0.615837,-0.586596,0.525974,-0.615837,-0.586596,0.525974,-0.615837,-0.586596,0.525974,-0.615837,-0.586596,
0.474111,-0.555113,0.683424,0.474111,-0.555113,0.683424,0.474111,-0.555113,0.683424,0.474111,-0.555113,0.683424,
0.333663,-0.544488,-0.769546,0.333663,-0.544488,-0.769546,0.333663,-0.544488,-0.769546,0.333663,-0.544488,-0.769546,
0.458196,-0.747708,0.480613,0.458196,-0.747708,0.480613,0.458196,-0.747708,0.480613,0.458196,-0.747708,0.480613,
0.423161,-0.690536,-0.586597,0.423161,-0.690536,-0.586597,0.423161,-0.690536,-0.586597,0.423161,-0.690536,-0.586597,
0.381436,-0.622446,0.683424,0.381436,-0.622446,0.683424,0.381436,-0.622446,0.683424,0.381436,-0.622446,0.683424,
0.280585,-0.457873,0.843579,0.280585,-0.457873,0.843579,0.280585,-0.457873,0.843579,0.280585,-0.457873,0.843579,
0.486009,-0.793095,-0.367144,0.486009,-0.793095,-0.367144,0.486009,-0.793095,-0.367144,0.486009,-0.793095,-0.367144,
0.161913,-0.264217,0.950775,0.161913,-0.264217,0.950775,0.161913,-0.264217,0.950775,0.161913,-0.264217,0.950775,
0.518403,-0.845958,-0.124954,0.518403,-0.845958,-0.124954,0.518403,-0.845958,-0.124954,0.518403,-0.845958,-0.124954,
0.161912,-0.264216,-0.950776,0.161912,-0.264216,-0.950776,0.161912,-0.264216,-0.950776,0.161912,-0.264216,-0.950776,
0.518404,-0.845958,0.124952,0.518404,-0.845958,0.124952,0.518404,-0.845958,0.124952,0.518404,-0.845958,0.124952,
0.280585,-0.457872,-0.843579,0.280585,-0.457872,-0.843579,0.280585,-0.457872,-0.843579,0.280585,-0.457872,-0.843579,
0.486010,-0.793096,0.367143,0.486010,-0.793096,0.367143,0.486010,-0.793096,0.367143,0.486010,-0.793096,0.367143,
0.381436,-0.622446,-0.683423,0.381436,-0.622446,-0.683423,0.381436,-0.622446,-0.683423,0.381436,-0.622446,-0.683423,
0.423161,-0.690536,0.586597,0.423161,-0.690536,0.586597,0.423161,-0.690536,0.586597,0.423161,-0.690536,0.586597,
0.458196,-0.747708,-0.480614,0.458196,-0.747708,-0.480614,0.458196,-0.747708,-0.480614,0.458196,-0.747708,-0.480614,
0.333664,-0.544490,0.769545,0.333664,-0.544490,0.769545,0.333664,-0.544490,0.769545,0.333664,-0.544490,0.769545,
0.223031,-0.363955,0.904319,0.223031,-0.363955,0.904319,0.223031,-0.363955,0.904319,0.223031,-0.363955,0.904319,
0.506180,-0.826011,-0.247969,0.506180,-0.826011,-0.247969,0.506180,-0.826011,-0.247969,0.506180,-0.826011,-0.247969,
0.098199,-0.160245,-0.982181,0.098199,-0.160245,-0.982181,0.098199,-0.160245,-0.982181,0.098199,-0.160245,-0.982181,
0.098198,-0.160245,0.982180,0.098198,-0.160245,0.982180,0.098198,-0.160245,0.982180,0.098198,-0.160245,0.982180,
0.522499,-0.852640,0.000000,0.522499,-0.852640,0.000000,0.522499,-0.852640,0.000000,0.522499,-0.852640,0.000000,
0.223032,-0.363954,-0.904320,0.223032,-0.363954,-0.904320,0.223032,-0.363954,-0.904320,0.223032,-0.363954,-0.904320,
0.506180,-0.826010,0.247970,0.506180,-0.826010,0.247970,0.506180,-0.826010,0.247970,0.506180,-0.826010,0.247970,
0.071923,-0.173633,-0.982181,0.071923,-0.173633,-0.982181,0.071923,-0.173633,-0.982181,0.071923,-0.173633,-0.982181,
0.071922,-0.173634,0.982180,0.071922,-0.173634,0.982180,0.071922,-0.173634,0.982180,0.071922,-0.173634,0.982180,
0.382684,-0.923880,0.000000,0.382684,-0.923880,0.000000,0.382684,-0.923880,0.000000,0.382684,-0.923880,0.000000,
0.163351,-0.394363,-0.904320,0.163351,-0.394363,-0.904320,0.163351,-0.394363,-0.904320,0.163351,-0.394363,-0.904320,
0.370731,-0.895025,0.247970,0.370731,-0.895025,0.247970,0.370731,-0.895025,0.247970,0.370731,-0.895025,0.247970,
0.244378,-0.589981,-0.769546,0.244378,-0.589981,-0.769546,0.244378,-0.589981,-0.769546,0.244378,-0.589981,-0.769546,
0.335588,-0.810180,0.480613,0.335588,-0.810180,0.480613,0.335588,-0.810180,0.480613,0.335588,-0.810180,0.480613,
0.309927,-0.748231,-0.586596,0.309927,-0.748231,-0.586596,0.309927,-0.748231,-0.586596,0.309927,-0.748231,-0.586596,
0.279367,-0.674452,0.683424,0.279367,-0.674452,0.683424,0.279367,-0.674452,0.683424,0.279367,-0.674452,0.683424,
0.205503,-0.496129,0.843579,0.205503,-0.496129,0.843579,0.205503,-0.496129,0.843579,0.205503,-0.496129,0.843579,
0.355958,-0.859359,-0.367145,0.355958,-0.859359,-0.367145,0.355958,-0.859359,-0.367145,0.355958,-0.859359,-0.367145,
0.118587,-0.286293,0.950775,0.118587,-0.286293,0.950775,0.118587,-0.286293,0.950775,0.118587,-0.286293,0.950775,
0.379684,-0.916639,-0.124954,0.379684,-0.916639,-0.124954,0.379684,-0.916639,-0.124954,0.379684,-0.916639,-0.124954,
0.118586,-0.286292,-0.950776,0.118586,-0.286292,-0.950776,0.118586,-0.286292,-0.950776,0.118586,-0.286292,-0.950776,
0.379684,-0.916639,0.124952,0.379684,-0.916639,0.124952,0.379684,-0.916639,0.124952,0.379684,-0.916639,0.124952,
0.205502,-0.496128,-0.843579,0.205502,-0.496128,-0.843579,0.205502,-0.496128,-0.843579,0.205502,-0.496128,-0.843579,
0.355959,-0.859360,0.367143,0.355959,-0.859360,0.367143,0.355959,-0.859360,0.367143,0.355959,-0.859360,0.367143,
0.279368,-0.674453,-0.683423,0.279368,-0.674453,-0.683423,0.279368,-0.674453,-0.683423,0.279368,-0.674453,-0.683423,
0.309927,-0.748231,0.586597,0.309927,-0.748231,0.586597,0.309927,-0.748231,0.586597,0.309927,-0.748231,0.586597,
0.335588,-0.810180,-0.480614,0.335588,-0.810180,-0.480614,0.335588,-0.810180,-0.480614,0.335588,-0.810180,-0.480614,
0.244379,-0.589982,0.769545,0.244379,-0.589982,0.769545,0.244379,-0.589982,0.769545,0.244379,-0.589982,0.769545,
0.163350,-0.394364,0.904320,0.163350,-0.394364,0.904320,0.163350,-0.394364,0.904320,0.163350,-0.394364,0.904320,
0.370732,-0.895025,-0.247969,0.370732,-0.895025,-0.247969,0.370732,-0.895025,-0.247969,0.370732,-0.895025,-0.247969,
0.204716,-0.852702,-0.480614,0.204716,-0.852702,-0.480614,0.204716,-0.852702,-0.480614,0.204716,-0.852702,-0.480614,
0.149076,-0.620948,0.769545,0.149076,-0.620948,0.769545,0.149076,-0.620948,0.769545,0.149076,-0.620948,0.769545,
0.099648,-0.415062,0.904320,0.099648,-0.415062,0.904320,0.099648,-0.415062,0.904320,0.099648,-0.415062,0.904320,
0.226154,-0.942001,-0.247969,0.226154,-0.942001,-0.247969,0.226154,-0.942001,-0.247969,0.226154,-0.942001,-0.247969,
0.043875,-0.182747,-0.982181,0.043875,-0.182747,-0.982181,0.043875,-0.182747,-0.982181,0.043875,-0.182747,-0.982181,
0.043875,-0.182747,0.982180,0.043875,-0.182747,0.982180,0.043875,-0.182747,0.982180,0.043875,-0.182747,0.982180,
0.233445,-0.972370,0.000000,0.233445,-0.972370,0.000000,0.233445,-0.972370,0.000000,0.233445,-0.972370,0.000000,
0.099647,-0.415062,-0.904320,0.099647,-0.415062,-0.904320,0.099647,-0.415062,-0.904320,0.099647,-0.415062,-0.904320,
0.226154,-0.942001,0.247970,0.226154,-0.942001,0.247970,0.226154,-0.942001,0.247970,0.226154,-0.942001,0.247970,
0.149076,-0.620946,-0.769546,0.149076,-0.620946,-0.769546,0.149076,-0.620946,-0.769546,0.149076,-0.620946,-0.769546,
0.204716,-0.852703,0.480613,0.204716,-0.852703,0.480613,0.204716,-0.852703,0.480613,0.204716,-0.852703,0.480613,
0.189063,-0.787502,-0.586597,0.189063,-0.787502,-0.586597,0.189063,-0.787502,-0.586597,0.189063,-0.787502,-0.586597,
0.170420,-0.709852,0.683423,0.170420,-0.709852,0.683423,0.170420,-0.709852,0.683423,0.170420,-0.709852,0.683423,
0.125362,-0.522168,0.843578,0.125362,-0.522168,0.843578,0.125362,-0.522168,0.843578,0.125362,-0.522168,0.843578,
0.217143,-0.904464,-0.367144,0.217143,-0.904464,-0.367144,0.217143,-0.904464,-0.367144,0.217143,-0.904464,-0.367144,
0.072339,-0.301319,0.950775,0.072339,-0.301319,0.950775,0.072339,-0.301319,0.950775,0.072339,-0.301319,0.950775,
0.231616,-0.964749,-0.124954,0.231616,-0.964749,-0.124954,0.231616,-0.964749,-0.124954,0.231616,-0.964749,-0.124954,
0.072341,-0.301318,-0.950776,0.072341,-0.301318,-0.950776,0.072341,-0.301318,-0.950776,0.072341,-0.301318,-0.950776,
0.231616,-0.964749,0.124952,0.231616,-0.964749,0.124952,0.231616,-0.964749,0.124952,0.231616,-0.964749,0.124952,
0.125361,-0.522168,-0.843579,0.125361,-0.522168,-0.843579,0.125361,-0.522168,-0.843579,0.125361,-0.522168,-0.843579,
0.217143,-0.904464,0.367143,0.217143,-0.904464,0.367143,0.217143,-0.904464,0.367143,0.217143,-0.904464,0.367143,
0.170420,-0.709852,-0.683423,0.170420,-0.709852,-0.683423,0.170420,-0.709852,-0.683423,0.170420,-0.709852,-0.683423,
0.189062,-0.787502,0.586597,0.189062,-0.787502,0.586597,0.189062,-0.787502,0.586597,0.189062,-0.787502,0.586597,
0.042132,-0.535350,-0.843579,0.042132,-0.535350,-0.843579,0.042132,-0.535350,-0.843579,0.042132,-0.535350,-0.843579,
0.072980,-0.927297,0.367143,0.072980,-0.927297,0.367143,0.072980,-0.927297,0.367143,0.072980,-0.927297,0.367143,
0.057277,-0.727772,-0.683423,0.057277,-0.727772,-0.683423,0.057277,-0.727772,-0.683423,0.057277,-0.727772,-0.683423,
0.063542,-0.807383,0.586597,0.063542,-0.807383,0.586597,0.063542,-0.807383,0.586597,0.063542,-0.807383,0.586597,
0.068803,-0.874228,-0.480615,0.068803,-0.874228,-0.480615,0.068803,-0.874228,-0.480615,0.068803,-0.874228,-0.480615,
0.050104,-0.636624,0.769545,0.050104,-0.636624,0.769545,0.050104,-0.636624,0.769545,0.050104,-0.636624,0.769545,
0.033491,-0.425540,0.904320,0.033491,-0.425540,0.904320,0.033491,-0.425540,0.904320,0.033491,-0.425540,0.904320,
0.076008,-0.965782,-0.247969,0.076008,-0.965782,-0.247969,0.076008,-0.965782,-0.247969,0.076008,-0.965782,-0.247969,
0.014746,-0.187360,-0.982181,0.014746,-0.187360,-0.982181,0.014746,-0.187360,-0.982181,0.014746,-0.187360,-0.982181,
0.014746,-0.187361,0.982180,0.014746,-0.187361,0.982180,0.014746,-0.187361,0.982180,0.014746,-0.187361,0.982180,
0.078459,-0.996917,0.000000,0.078459,-0.996917,0.000000,0.078459,-0.996917,0.000000,0.078459,-0.996917,0.000000,
0.033492,-0.425540,-0.904320,0.033492,-0.425540,-0.904320,0.033492,-0.425540,-0.904320,0.033492,-0.425540,-0.904320,
0.076009,-0.965781,0.247971,0.076009,-0.965781,0.247971,0.076009,-0.965781,0.247971,0.076009,-0.965781,0.247971,
0.050104,-0.636622,-0.769546,0.050104,-0.636622,-0.769546,0.050104,-0.636622,-0.769546,0.050104,-0.636622,-0.769546,
0.068803,-0.874230,0.480612,0.068803,-0.874230,0.480612,0.068803,-0.874230,0.480612,0.068803,-0.874230,0.480612,
0.063543,-0.807383,-0.586596,0.063543,-0.807383,-0.586596,0.063543,-0.807383,-0.586596,0.063543,-0.807383,-0.586596,
0.057277,-0.727772,0.683424,0.057277,-0.727772,0.683424,0.057277,-0.727772,0.683424,0.057277,-0.727772,0.683424,
0.042133,-0.535350,0.843579,0.042133,-0.535350,0.843579,0.042133,-0.535350,0.843579,0.042133,-0.535350,0.843579,
0.072980,-0.927297,-0.367144,0.072980,-0.927297,-0.367144,0.072980,-0.927297,-0.367144,0.072980,-0.927297,-0.367144,
0.024313,-0.308925,0.950775,0.024313,-0.308925,0.950775,0.024313,-0.308925,0.950775,0.024313,-0.308925,0.950775,
0.077844,-0.989104,-0.124954,0.077844,-0.989104,-0.124954,0.077844,-0.989104,-0.124954,0.077844,-0.989104,-0.124954,
0.024312,-0.308925,-0.950776,0.024312,-0.308925,-0.950776,0.024312,-0.308925,-0.950776,0.024312,-0.308925,-0.950776,
0.077844,-0.989104,0.124952,0.077844,-0.989104,0.124952,0.077844,-0.989104,0.124952,0.077844,-0.989104,0.124952,
-0.024313,-0.308926,0.950775,-0.024313,-0.308926,0.950775,-0.024313,-0.308926,0.950775,-0.024313,-0.308926,0.950775,
-0.077844,-0.989104,-0.124955,-0.077844,-0.989104,-0.124955,-0.077844,-0.989104,-0.124955,-0.077844,-0.989104,-0.124955,
-0.024312,-0.308925,-0.950776,-0.024312,-0.308925,-0.950776,-0.024312,-0.308925,-0.950776,-0.024312,-0.308925,-0.950776,
-0.077844,-0.989104,0.124952,-0.077844,-0.989104,0.124952,-0.077844,-0.989104,0.124952,-0.077844,-0.989104,0.124952,
-0.042133,-0.535349,-0.843579,-0.042133,-0.535349,-0.843579,-0.042133,-0.535349,-0.843579,-0.042133,-0.535349,-0.843579,
-0.072980,-0.927297,0.367143,-0.072980,-0.927297,0.367143,-0.072980,-0.927297,0.367143,-0.072980,-0.927297,0.367143,
-0.057277,-0.727772,-0.683423,-0.057277,-0.727772,-0.683423,-0.057277,-0.727772,-0.683423,-0.057277,-0.727772,-0.683423,
-0.063542,-0.807382,0.586597,-0.063542,-0.807382,0.586597,-0.063542,-0.807382,0.586597,-0.063542,-0.807382,0.586597,
-0.068803,-0.874229,-0.480615,-0.068803,-0.874229,-0.480615,-0.068803,-0.874229,-0.480615,-0.068803,-0.874229,-0.480615,
-0.050103,-0.636624,0.769545,-0.050103,-0.636624,0.769545,-0.050103,-0.636624,0.769545,-0.050103,-0.636624,0.769545,
-0.033492,-0.425540,0.904320,-0.033492,-0.425540,0.904320,-0.033492,-0.425540,0.904320,-0.033492,-0.425540,0.904320,
-0.076009,-0.965782,-0.247969,-0.076009,-0.965782,-0.247969,-0.076009,-0.965782,-0.247969,-0.076009,-0.965782,-0.247969,
-0.014746,-0.187360,-0.982181,-0.014746,-0.187360,-0.982181,-0.014746,-0.187360,-0.982181,-0.014746,-0.187360,-0.982181,
-0.014746,-0.187361,0.982181,-0.014746,-0.187361,0.982181,-0.014746,-0.187361,0.982181,-0.014746,-0.187361,0.982181,
-0.078459,-0.996917,0.000000,-0.078459,-0.996917,0.000000,-0.078459,-0.996917,0.000000,-0.078459,-0.996917,0.000000,
-0.033492,-0.425540,-0.904320,-0.033492,-0.425540,-0.904320,-0.033492,-0.425540,-0.904320,-0.033492,-0.425540,-0.904320,
-0.076009,-0.965781,0.247970,-0.076009,-0.965781,0.247970,-0.076009,-0.965781,0.247970,-0.076009,-0.965781,0.247970,
-0.050103,-0.636623,-0.769546,-0.050103,-0.636623,-0.769546,-0.050103,-0.636623,-0.769546,-0.050103,-0.636623,-0.769546,
-0.068803,-0.874230,0.480612,-0.068803,-0.874230,0.480612,-0.068803,-0.874230,0.480612,-0.068803,-0.874230,0.480612,
-0.063542,-0.807382,-0.586597,-0.063542,-0.807382,-0.586597,-0.063542,-0.807382,-0.586597,-0.063542,-0.807382,-0.586597,
-0.057277,-0.727772,0.683424,-0.057277,-0.727772,0.683424,-0.057277,-0.727772,0.683424,-0.057277,-0.727772,0.683424,
-0.042133,-0.535350,0.843579,-0.042133,-0.535350,0.843579,-0.042133,-0.535350,0.843579,-0.042133,-0.535350,0.843579,
-0.072980,-0.927297,-0.367144,-0.072980,-0.927297,-0.367144,-0.072980,-0.927297,-0.367144,-0.072980,-0.927297,-0.367144,
-0.189063,-0.787502,-0.586597,-0.189063,-0.787502,-0.586597,-0.189063,-0.787502,-0.586597,-0.189063,-0.787502,-0.586597,
-0.170420,-0.709851,0.683424,-0.170420,-0.709851,0.683424,-0.170420,-0.709851,0.683424,-0.170420,-0.709851,0.683424,
-0.125362,-0.522168,0.843579,-0.125362,-0.522168,0.843579,-0.125362,-0.522168,0.843579,-0.125362,-0.522168,0.843579,
-0.217143,-0.904464,-0.367144,-0.217143,-0.904464,-0.367144,-0.217143,-0.904464,-0.367144,-0.217143,-0.904464,-0.367144,
-0.072342,-0.301319,0.950775,-0.072342,-0.301319,0.950775,-0.072342,-0.301319,0.950775,-0.072342,-0.301319,0.950775,
-0.231616,-0.964749,-0.124955,-0.231616,-0.964749,-0.124955,-0.231616,-0.964749,-0.124955,-0.231616,-0.964749,-0.124955,
-0.072339,-0.301318,-0.950776,-0.072339,-0.301318,-0.950776,-0.072339,-0.301318,-0.950776,-0.072339,-0.301318,-0.950776,
-0.231616,-0.964749,0.124953,-0.231616,-0.964749,0.124953,-0.231616,-0.964749,0.124953,-0.231616,-0.964749,0.124953,
-0.125361,-0.522167,-0.843580,-0.125361,-0.522167,-0.843580,-0.125361,-0.522167,-0.843580,-0.125361,-0.522167,-0.843580,
-0.217143,-0.904464,0.367143,-0.217143,-0.904464,0.367143,-0.217143,-0.904464,0.367143,-0.217143,-0.904464,0.367143,
-0.170420,-0.709852,-0.683423,-0.170420,-0.709852,-0.683423,-0.170420,-0.709852,-0.683423,-0.170420,-0.709852,-0.683423,
-0.189063,-0.787502,0.586597,-0.189063,-0.787502,0.586597,-0.189063,-0.787502,0.586597,-0.189063,-0.787502,0.586597,
-0.204716,-0.852702,-0.480614,-0.204716,-0.852702,-0.480614,-0.204716,-0.852702,-0.480614,-0.204716,-0.852702,-0.480614,
-0.149077,-0.620948,0.769545,-0.149077,-0.620948,0.769545,-0.149077,-0.620948,0.769545,-0.149077,-0.620948,0.769545,
-0.099646,-0.415062,0.904320,-0.099646,-0.415062,0.904320,-0.099646,-0.415062,0.904320,-0.099646,-0.415062,0.904320,
-0.226154,-0.942001,-0.247969,-0.226154,-0.942001,-0.247969,-0.226154,-0.942001,-0.247969,-0.226154,-0.942001,-0.247969,
-0.043875,-0.182746,-0.982181,-0.043875,-0.182746,-0.982181,-0.043875,-0.182746,-0.982181,-0.043875,-0.182746,-0.982181,
-0.043875,-0.182747,0.982180,-0.043875,-0.182747,0.982180,-0.043875,-0.182747,0.982180,-0.043875,-0.182747,0.982180,
-0.233445,-0.972370,0.000000,-0.233445,-0.972370,0.000000,-0.233445,-0.972370,0.000000,-0.233445,-0.972370,0.000000,
-0.099647,-0.415062,-0.904320,-0.099647,-0.415062,-0.904320,-0.099647,-0.415062,-0.904320,-0.099647,-0.415062,-0.904320,
-0.226155,-0.942001,0.247969,-0.226155,-0.942001,0.247969,-0.226155,-0.942001,0.247969,-0.226155,-0.942001,0.247969,
-0.149076,-0.620947,-0.769546,-0.149076,-0.620947,-0.769546,-0.149076,-0.620947,-0.769546,-0.149076,-0.620947,-0.769546,
-0.204716,-0.852703,0.480613,-0.204716,-0.852703,0.480613,-0.204716,-0.852703,0.480613,-0.204716,-0.852703,0.480613,
-0.163350,-0.394363,-0.904320,-0.163350,-0.394363,-0.904320,-0.163350,-0.394363,-0.904320,-0.163350,-0.394363,-0.904320,
-0.370731,-0.895025,0.247969,-0.370731,-0.895025,0.247969,-0.370731,-0.895025,0.247969,-0.370731,-0.895025,0.247969,
-0.244378,-0.589982,-0.769546,-0.244378,-0.589982,-0.769546,-0.244378,-0.589982,-0.769546,-0.244378,-0.589982,-0.769546,
-0.335588,-0.810181,0.480612,-0.335588,-0.810181,0.480612,-0.335588,-0.810181,0.480612,-0.335588,-0.810181,0.480612,
-0.309927,-0.748231,-0.586597,-0.309927,-0.748231,-0.586597,-0.309927,-0.748231,-0.586597,-0.309927,-0.748231,-0.586597,
-0.279367,-0.674452,0.683424,-0.279367,-0.674452,0.683424,-0.279367,-0.674452,0.683424,-0.279367,-0.674452,0.683424,
-0.205502,-0.496128,0.843579,-0.205502,-0.496128,0.843579,-0.205502,-0.496128,0.843579,-0.205502,-0.496128,0.843579,
-0.355958,-0.859360,-0.367144,-0.355958,-0.859360,-0.367144,-0.355958,-0.859360,-0.367144,-0.355958,-0.859360,-0.367144,
-0.118585,-0.286292,0.950776,-0.118585,-0.286292,0.950776,-0.118585,-0.286292,0.950776,-0.118585,-0.286292,0.950776,
-0.379684,-0.916639,-0.124955,-0.379684,-0.916639,-0.124955,-0.379684,-0.916639,-0.124955,-0.379684,-0.916639,-0.124955,
-0.118587,-0.286292,-0.950776,-0.118587,-0.286292,-0.950776,-0.118587,-0.286292,-0.950776,-0.118587,-0.286292,-0.950776,
-0.379684,-0.916639,0.124953,-0.379684,-0.916639,0.124953,-0.379684,-0.916639,0.124953,-0.379684,-0.916639,0.124953,
-0.205503,-0.496128,-0.843579,-0.205503,-0.496128,-0.843579,-0.205503,-0.496128,-0.843579,-0.205503,-0.496128,-0.843579,
-0.355958,-0.859360,0.367143,-0.355958,-0.859360,0.367143,-0.355958,-0.859360,0.367143,-0.355958,-0.859360,0.367143,
-0.279367,-0.674453,-0.683423,-0.279367,-0.674453,-0.683423,-0.279367,-0.674453,-0.683423,-0.279367,-0.674453,-0.683423,
-0.309927,-0.748230,0.586597,-0.309927,-0.748230,0.586597,-0.309927,-0.748230,0.586597,-0.309927,-0.748230,0.586597,
-0.335588,-0.810180,-0.480614,-0.335588,-0.810180,-0.480614,-0.335588,-0.810180,-0.480614,-0.335588,-0.810180,-0.480614,
-0.244379,-0.589983,0.769545,-0.244379,-0.589983,0.769545,-0.244379,-0.589983,0.769545,-0.244379,-0.589983,0.769545,
-0.163351,-0.394364,0.904319,-0.163351,-0.394364,0.904319,-0.163351,-0.394364,0.904319,-0.163351,-0.394364,0.904319,
-0.370732,-0.895025,-0.247968,-0.370732,-0.895025,-0.247968,-0.370732,-0.895025,-0.247968,-0.370732,-0.895025,-0.247968,
-0.071923,-0.173633,-0.982180,-0.071923,-0.173633,-0.982180,-0.071923,-0.173633,-0.982180,-0.071923,-0.173633,-0.982180,
-0.071922,-0.173634,0.982180,-0.071922,-0.173634,0.982180,-0.071922,-0.173634,0.982180,-0.071922,-0.173634,0.982180,
-0.382683,-0.923880,0.000000,-0.382683,-0.923880,0.000000,-0.382683,-0.923880,0.000000,-0.382683,-0.923880,0.000000,
-0.381436,-0.622447,-0.683423,-0.381436,-0.622447,-0.683423,-0.381436,-0.622447,-0.683423,-0.381436,-0.622447,-0.683423,
-0.423161,-0.690535,0.586597,-0.423161,-0.690535,0.586597,-0.423161,-0.690535,0.586597,-0.423161,-0.690535,0.586597,
-0.458196,-0.747708,-0.480614,-0.458196,-0.747708,-0.480614,-0.458196,-0.747708,-0.480614,-0.458196,-0.747708,-0.480614,
-0.333664,-0.544490,0.769545,-0.333664,-0.544490,0.769545,-0.333664,-0.544490,0.769545,-0.333664,-0.544490,0.769545,
-0.223032,-0.363954,0.904320,-0.223032,-0.363954,0.904320,-0.223032,-0.363954,0.904320,-0.223032,-0.363954,0.904320,
-0.506180,-0.826011,-0.247968,-0.506180,-0.826011,-0.247968,-0.506180,-0.826011,-0.247968,-0.506180,-0.826011,-0.247968,
-0.098196,-0.160244,-0.982181,-0.098196,-0.160244,-0.982181,-0.098196,-0.160244,-0.982181,-0.098196,-0.160244,-0.982181,
-0.098200,-0.160245,0.982180,-0.098200,-0.160245,0.982180,-0.098200,-0.160245,0.982180,-0.098200,-0.160245,0.982180,
-0.522499,-0.852640,0.000000,-0.522499,-0.852640,0.000000,-0.522499,-0.852640,0.000000,-0.522499,-0.852640,0.000000,
-0.223032,-0.363954,-0.904320,-0.223032,-0.363954,-0.904320,-0.223032,-0.363954,-0.904320,-0.223032,-0.363954,-0.904320,
-0.506180,-0.826011,0.247969,-0.506180,-0.826011,0.247969,-0.506180,-0.826011,0.247969,-0.506180,-0.826011,0.247969,
-0.333663,-0.544489,-0.769546,-0.333663,-0.544489,-0.769546,-0.333663,-0.544489,-0.769546,-0.333663,-0.544489,-0.769546,
-0.458196,-0.747708,0.480612,-0.458196,-0.747708,0.480612,-0.458196,-0.747708,0.480612,-0.458196,-0.747708,0.480612,
-0.423161,-0.690535,-0.586597,-0.423161,-0.690535,-0.586597,-0.423161,-0.690535,-0.586597,-0.423161,-0.690535,-0.586597,
-0.381435,-0.622446,0.683424,-0.381435,-0.622446,0.683424,-0.381435,-0.622446,0.683424,-0.381435,-0.622446,0.683424,
-0.280585,-0.457872,0.843579,-0.280585,-0.457872,0.843579,-0.280585,-0.457872,0.843579,-0.280585,-0.457872,0.843579,
-0.486009,-0.793095,-0.367144,-0.486009,-0.793095,-0.367144,-0.486009,-0.793095,-0.367144,-0.486009,-0.793095,-0.367144,
-0.161913,-0.264217,0.950775,-0.161913,-0.264217,0.950775,-0.161913,-0.264217,0.950775,-0.161913,-0.264217,0.950775,
-0.518404,-0.845957,-0.124955,-0.518404,-0.845957,-0.124955,-0.518404,-0.845957,-0.124955,-0.518404,-0.845957,-0.124955,
-0.161912,-0.264216,-0.950776,-0.161912,-0.264216,-0.950776,-0.161912,-0.264216,-0.950776,-0.161912,-0.264216,-0.950776,
-0.518404,-0.845958,0.124953,-0.518404,-0.845958,0.124953,-0.518404,-0.845958,0.124953,-0.518404,-0.845958,0.124953,
-0.280584,-0.457872,-0.843579,-0.280584,-0.457872,-0.843579,-0.280584,-0.457872,-0.843579,-0.280584,-0.457872,-0.843579,
-0.486010,-0.793096,0.367143,-0.486010,-0.793096,0.367143,-0.486010,-0.793096,0.367143,-0.486010,-0.793096,0.367143,
-0.201252,-0.235635,-0.950776,-0.201252,-0.235635,-0.950776,-0.201252,-0.235635,-0.950776,-0.201252,-0.235635,-0.950776,
-0.644358,-0.754446,0.124953,-0.644358,-0.754446,0.124953,-0.644358,-0.754446,0.124953,-0.644358,-0.754446,0.124953,
-0.348756,-0.408342,-0.843579,-0.348756,-0.408342,-0.843579,-0.348756,-0.408342,-0.843579,-0.348756,-0.408342,-0.843579,
-0.604093,-0.707303,0.367143,-0.604093,-0.707303,0.367143,-0.604093,-0.707303,0.367143,-0.604093,-0.707303,0.367143,
-0.474112,-0.555114,-0.683423,-0.474112,-0.555114,-0.683423,-0.474112,-0.555114,-0.683423,-0.474112,-0.555114,-0.683423,
-0.525974,-0.615837,0.586597,-0.525974,-0.615837,0.586597,-0.525974,-0.615837,0.586597,-0.525974,-0.615837,0.586597,
-0.569522,-0.666824,-0.480615,-0.569522,-0.666824,-0.480615,-0.569522,-0.666824,-0.480615,-0.569522,-0.666824,-0.480615,
-0.414733,-0.485590,0.769545,-0.414733,-0.485590,0.769545,-0.414733,-0.485590,0.769545,-0.414733,-0.485590,0.769545,
-0.277222,-0.324584,0.904319,-0.277222,-0.324584,0.904319,-0.277222,-0.324584,0.904319,-0.277222,-0.324584,0.904319,
-0.629165,-0.736657,-0.247968,-0.629165,-0.736657,-0.247968,-0.629165,-0.736657,-0.247968,-0.629165,-0.736657,-0.247968,
-0.122057,-0.142910,-0.982181,-0.122057,-0.142910,-0.982181,-0.122057,-0.142910,-0.982181,-0.122057,-0.142910,-0.982181,
-0.122055,-0.142911,0.982181,-0.122055,-0.142911,0.982181,-0.122055,-0.142911,0.982181,-0.122055,-0.142911,0.982181,
-0.649448,-0.760406,0.000000,-0.649448,-0.760406,0.000000,-0.649448,-0.760406,0.000000,-0.649448,-0.760406,0.000000,
-0.277220,-0.324584,-0.904320,-0.277220,-0.324584,-0.904320,-0.277220,-0.324584,-0.904320,-0.277220,-0.324584,-0.904320,
-0.629164,-0.736657,0.247969,-0.629164,-0.736657,0.247969,-0.629164,-0.736657,0.247969,-0.629164,-0.736657,0.247969,
-0.414732,-0.485589,-0.769546,-0.414732,-0.485589,-0.769546,-0.414732,-0.485589,-0.769546,-0.414732,-0.485589,-0.769546,
-0.569523,-0.666825,0.480613,-0.569523,-0.666825,0.480613,-0.569523,-0.666825,0.480613,-0.569523,-0.666825,0.480613,
-0.525974,-0.615837,-0.586596,-0.525974,-0.615837,-0.586596,-0.525974,-0.615837,-0.586596,-0.525974,-0.615837,-0.586596,
-0.474111,-0.555113,0.683424,-0.474111,-0.555113,0.683424,-0.474111,-0.555113,0.683424,-0.474111,-0.555113,0.683424,
-0.348757,-0.408342,0.843579,-0.348757,-0.408342,0.843579,-0.348757,-0.408342,0.843579,-0.348757,-0.408342,0.843579,
-0.604093,-0.707302,-0.367144,-0.604093,-0.707302,-0.367144,-0.604093,-0.707302,-0.367144,-0.604093,-0.707302,-0.367144,
-0.201251,-0.235635,0.950775,-0.201251,-0.235635,0.950775,-0.201251,-0.235635,0.950775,-0.201251,-0.235635,0.950775,
-0.644358,-0.754446,-0.124955,-0.644358,-0.754446,-0.124955,-0.644358,-0.754446,-0.124955,-0.644358,-0.754446,-0.124955,
-0.408342,-0.348757,0.843579,-0.408342,-0.348757,0.843579,-0.408342,-0.348757,0.843579,-0.408342,-0.348757,0.843579,
-0.707302,-0.604093,-0.367144,-0.707302,-0.604093,-0.367144,-0.707302,-0.604093,-0.367144,-0.707302,-0.604093,-0.367144,
-0.235635,-0.201251,0.950776,-0.235635,-0.201251,0.950776,-0.235635,-0.201251,0.950776,-0.235635,-0.201251,0.950776,
-0.754446,-0.644358,-0.124955,-0.754446,-0.644358,-0.124955,-0.754446,-0.644358,-0.124955,-0.754446,-0.644358,-0.124955,
-0.235633,-0.201251,-0.950776,-0.235633,-0.201251,-0.950776,-0.235633,-0.201251,-0.950776,-0.235633,-0.201251,-0.950776,
-0.754446,-0.644358,0.124953,-0.754446,-0.644358,0.124953,-0.754446,-0.644358,0.124953,-0.754446,-0.644358,0.124953,
-0.408341,-0.348756,-0.843579,-0.408341,-0.348756,-0.843579,-0.408341,-0.348756,-0.843579,-0.408341,-0.348756,-0.843579,
-0.707302,-0.604094,0.367143,-0.707302,-0.604094,0.367143,-0.707302,-0.604094,0.367143,-0.707302,-0.604094,0.367143,
-0.555114,-0.474112,-0.683423,-0.555114,-0.474112,-0.683423,-0.555114,-0.474112,-0.683423,-0.555114,-0.474112,-0.683423,
-0.615837,-0.525974,0.586598,-0.615837,-0.525974,0.586598,-0.615837,-0.525974,0.586598,-0.615837,-0.525974,0.586598,
-0.666824,-0.569521,-0.480615,-0.666824,-0.569521,-0.480615,-0.666824,-0.569521,-0.480615,-0.666824,-0.569521,-0.480615,
-0.485590,-0.414733,0.769545,-0.485590,-0.414733,0.769545,-0.485590,-0.414733,0.769545,-0.485590,-0.414733,0.769545,
-0.324583,-0.277221,0.904320,-0.324583,-0.277221,0.904320,-0.324583,-0.277221,0.904320,-0.324583,-0.277221,0.904320,
-0.736657,-0.629164,-0.247968,-0.736657,-0.629164,-0.247968,-0.736657,-0.629164,-0.247968,-0.736657,-0.629164,-0.247968,
-0.142911,-0.122057,-0.982181,-0.142911,-0.122057,-0.982181,-0.142911,-0.122057,-0.982181,-0.142911,-0.122057,-0.982181,
-0.142910,-0.122057,0.982181,-0.142910,-0.122057,0.982181,-0.142910,-0.122057,0.982181,-0.142910,-0.122057,0.982181,
-0.760406,-0.649448,0.000000,-0.760406,-0.649448,0.000000,-0.760406,-0.649448,0.000000,-0.760406,-0.649448,0.000000,
-0.324583,-0.277221,-0.904320,-0.324583,-0.277221,-0.904320,-0.324583,-0.277221,-0.904320,-0.324583,-0.277221,-0.904320,
-0.736657,-0.629164,0.247969,-0.736657,-0.629164,0.247969,-0.736657,-0.629164,0.247969,-0.736657,-0.629164,0.247969,
-0.485589,-0.414732,-0.769546,-0.485589,-0.414732,-0.769546,-0.485589,-0.414732,-0.769546,-0.485589,-0.414732,-0.769546,
-0.666825,-0.569522,0.480613,-0.666825,-0.569522,0.480613,-0.666825,-0.569522,0.480613,-0.666825,-0.569522,0.480613,
-0.615837,-0.525974,-0.586597,-0.615837,-0.525974,-0.586597,-0.615837,-0.525974,-0.586597,-0.615837,-0.525974,-0.586597,
-0.555113,-0.474112,0.683424,-0.555113,-0.474112,0.683424,-0.555113,-0.474112,0.683424,-0.555113,-0.474112,0.683424,
-0.544489,-0.333663,-0.769546,-0.544489,-0.333663,-0.769546,-0.544489,-0.333663,-0.769546,-0.544489,-0.333663,-0.769546,
-0.747708,-0.458196,0.480613,-0.747708,-0.458196,0.480613,-0.747708,-0.458196,0.480613,-0.747708,-0.458196,0.480613,
-0.690536,-0.423161,-0.586596,-0.690536,-0.423161,-0.586596,-0.690536,-0.423161,-0.586596,-0.690536,-0.423161,-0.586596,
-0.622446,-0.381435,0.683424,-0.622446,-0.381435,0.683424,-0.622446,-0.381435,0.683424,-0.622446,-0.381435,0.683424,
-0.457872,-0.280585,0.843579,-0.457872,-0.280585,0.843579,-0.457872,-0.280585,0.843579,-0.457872,-0.280585,0.843579,
-0.793095,-0.486009,-0.367144,-0.793095,-0.486009,-0.367144,-0.793095,-0.486009,-0.367144,-0.793095,-0.486009,-0.367144,
-0.264216,-0.161912,0.950776,-0.264216,-0.161912,0.950776,-0.264216,-0.161912,0.950776,-0.264216,-0.161912,0.950776,
-0.845957,-0.518403,-0.124955,-0.845957,-0.518403,-0.124955,-0.845957,-0.518403,-0.124955,-0.845957,-0.518403,-0.124955,
-0.264217,-0.161912,-0.950775,-0.264217,-0.161912,-0.950775,-0.264217,-0.161912,-0.950775,-0.264217,-0.161912,-0.950775,
-0.845958,-0.518404,0.124953,-0.845958,-0.518404,0.124953,-0.845958,-0.518404,0.124953,-0.845958,-0.518404,0.124953,
-0.457872,-0.280584,-0.843579,-0.457872,-0.280584,-0.843579,-0.457872,-0.280584,-0.843579,-0.457872,-0.280584,-0.843579,
-0.793096,-0.486010,0.367143,-0.793096,-0.486010,0.367143,-0.793096,-0.486010,0.367143,-0.793096,-0.486010,0.367143,
-0.622447,-0.381436,-0.683423,-0.622447,-0.381436,-0.683423,-0.622447,-0.381436,-0.683423,-0.622447,-0.381436,-0.683423,
-0.690535,-0.423160,0.586598,-0.690535,-0.423160,0.586598,-0.690535,-0.423160,0.586598,-0.690535,-0.423160,0.586598,
-0.747707,-0.458195,-0.480615,-0.747707,-0.458195,-0.480615,-0.747707,-0.458195,-0.480615,-0.747707,-0.458195,-0.480615,
-0.544490,-0.333664,0.769545,-0.544490,-0.333664,0.769545,-0.544490,-0.333664,0.769545,-0.544490,-0.333664,0.769545,
-0.363955,-0.223031,0.904320,-0.363955,-0.223031,0.904320,-0.363955,-0.223031,0.904320,-0.363955,-0.223031,0.904320,
-0.826011,-0.506180,-0.247968,-0.826011,-0.506180,-0.247968,-0.826011,-0.506180,-0.247968,-0.826011,-0.506180,-0.247968,
-0.160246,-0.098198,-0.982181,-0.160246,-0.098198,-0.982181,-0.160246,-0.098198,-0.982181,-0.160246,-0.098198,-0.982181,
-0.160246,-0.098198,0.982180,-0.160246,-0.098198,0.982180,-0.160246,-0.098198,0.982180,-0.160246,-0.098198,0.982180,
-0.852640,-0.522498,0.000000,-0.852640,-0.522498,0.000000,-0.852640,-0.522498,0.000000,-0.852640,-0.522498,0.000000,
-0.363954,-0.223031,-0.904320,-0.363954,-0.223031,-0.904320,-0.363954,-0.223031,-0.904320,-0.363954,-0.223031,-0.904320,
-0.826010,-0.506180,0.247970,-0.826010,-0.506180,0.247970,-0.826010,-0.506180,0.247970,-0.826010,-0.506180,0.247970,
-0.173634,-0.071921,-0.982181,-0.173634,-0.071921,-0.982181,-0.173634,-0.071921,-0.982181,-0.173634,-0.071921,-0.982181,
-0.173634,-0.071922,0.982181,-0.173634,-0.071922,0.982181,-0.173634,-0.071922,0.982181,-0.173634,-0.071922,0.982181,
-0.923880,-0.382683,0.000000,-0.923880,-0.382683,0.000000,-0.923880,-0.382683,0.000000,-0.923880,-0.382683,0.000000,
-0.394363,-0.163351,-0.904320,-0.394363,-0.163351,-0.904320,-0.394363,-0.163351,-0.904320,-0.394363,-0.163351,-0.904320,
-0.895025,-0.370731,0.247969,-0.895025,-0.370731,0.247969,-0.895025,-0.370731,0.247969,-0.895025,-0.370731,0.247969,
-0.589982,-0.244378,-0.769546,-0.589982,-0.244378,-0.769546,-0.589982,-0.244378,-0.769546,-0.589982,-0.244378,-0.769546,
-0.810180,-0.335588,0.480613,-0.810180,-0.335588,0.480613,-0.810180,-0.335588,0.480613,-0.810180,-0.335588,0.480613,
-0.748231,-0.309928,-0.586596,-0.748231,-0.309928,-0.586596,-0.748231,-0.309928,-0.586596,-0.748231,-0.309928,-0.586596,
-0.674452,-0.279368,0.683424,-0.674452,-0.279368,0.683424,-0.674452,-0.279368,0.683424,-0.674452,-0.279368,0.683424,
-0.496129,-0.205503,0.843579,-0.496129,-0.205503,0.843579,-0.496129,-0.205503,0.843579,-0.496129,-0.205503,0.843579,
-0.859360,-0.355958,-0.367144,-0.859360,-0.355958,-0.367144,-0.859360,-0.355958,-0.367144,-0.859360,-0.355958,-0.367144,
-0.286293,-0.118586,0.950775,-0.286293,-0.118586,0.950775,-0.286293,-0.118586,0.950775,-0.286293,-0.118586,0.950775,
-0.916638,-0.379684,-0.124956,-0.916638,-0.379684,-0.124956,-0.916638,-0.379684,-0.124956,-0.916638,-0.379684,-0.124956,
-0.286291,-0.118586,-0.950776,-0.286291,-0.118586,-0.950776,-0.286291,-0.118586,-0.950776,-0.286291,-0.118586,-0.950776,
-0.916639,-0.379684,0.124953,-0.916639,-0.379684,0.124953,-0.916639,-0.379684,0.124953,-0.916639,-0.379684,0.124953,
-0.496127,-0.205503,-0.843579,-0.496127,-0.205503,-0.843579,-0.496127,-0.205503,-0.843579,-0.496127,-0.205503,-0.843579,
-0.859360,-0.355959,0.367143,-0.859360,-0.355959,0.367143,-0.859360,-0.355959,0.367143,-0.859360,-0.355959,0.367143,
-0.674453,-0.279368,-0.683423,-0.674453,-0.279368,-0.683423,-0.674453,-0.279368,-0.683423,-0.674453,-0.279368,-0.683423,
-0.748230,-0.309928,0.586597,-0.748230,-0.309928,0.586597,-0.748230,-0.309928,0.586597,-0.748230,-0.309928,0.586597,
-0.810179,-0.335587,-0.480615,-0.810179,-0.335587,-0.480615,-0.810179,-0.335587,-0.480615,-0.810179,-0.335587,-0.480615,
-0.589983,-0.244379,0.769545,-0.589983,-0.244379,0.769545,-0.589983,-0.244379,0.769545,-0.589983,-0.244379,0.769545,
-0.394363,-0.163351,0.904320,-0.394363,-0.163351,0.904320,-0.394363,-0.163351,0.904320,-0.394363,-0.163351,0.904320,
-0.895025,-0.370732,-0.247968,-0.895025,-0.370732,-0.247968,-0.895025,-0.370732,-0.247968,-0.895025,-0.370732,-0.247968,
-0.852702,-0.204716,-0.480615,-0.852702,-0.204716,-0.480615,-0.852702,-0.204716,-0.480615,-0.852702,-0.204716,-0.480615,
-0.620948,-0.149077,0.769545,-0.620948,-0.149077,0.769545,-0.620948,-0.149077,0.769545,-0.620948,-0.149077,0.769545,
-0.415062,-0.099647,0.904320,-0.415062,-0.099647,0.904320,-0.415062,-0.099647,0.904320,-0.415062,-0.099647,0.904320,
-0.942001,-0.226154,-0.247968,-0.942001,-0.226154,-0.247968,-0.942001,-0.226154,-0.247968,-0.942001,-0.226154,-0.247968,
-0.182746,-0.043874,-0.982181,-0.182746,-0.043874,-0.982181,-0.182746,-0.043874,-0.982181,-0.182746,-0.043874,-0.982181,
-0.182748,-0.043874,0.982180,-0.182748,-0.043874,0.982180,-0.182748,-0.043874,0.982180,-0.182748,-0.043874,0.982180,
-0.972370,-0.233445,0.000000,-0.972370,-0.233445,0.000000,-0.972370,-0.233445,0.000000,-0.972370,-0.233445,0.000000,
-0.415061,-0.099648,-0.904320,-0.415061,-0.099648,-0.904320,-0.415061,-0.099648,-0.904320,-0.415061,-0.099648,-0.904320,
-0.942001,-0.226154,0.247970,-0.942001,-0.226154,0.247970,-0.942001,-0.226154,0.247970,-0.942001,-0.226154,0.247970,
-0.620947,-0.149076,-0.769546,-0.620947,-0.149076,-0.769546,-0.620947,-0.149076,-0.769546,-0.620947,-0.149076,-0.769546,
-0.852703,-0.204716,0.480613,-0.852703,-0.204716,0.480613,-0.852703,-0.204716,0.480613,-0.852703,-0.204716,0.480613,
-0.787502,-0.189063,-0.586596,-0.787502,-0.189063,-0.586596,-0.787502,-0.189063,-0.586596,-0.787502,-0.189063,-0.586596,
-0.709852,-0.170420,0.683424,-0.709852,-0.170420,0.683424,-0.709852,-0.170420,0.683424,-0.709852,-0.170420,0.683424,
-0.522168,-0.125361,0.843579,-0.522168,-0.125361,0.843579,-0.522168,-0.125361,0.843579,-0.522168,-0.125361,0.843579,
-0.904464,-0.217142,-0.367144,-0.904464,-0.217142,-0.367144,-0.904464,-0.217142,-0.367144,-0.904464,-0.217142,-0.367144,
-0.301318,-0.072340,0.950776,-0.301318,-0.072340,0.950776,-0.301318,-0.072340,0.950776,-0.301318,-0.072340,0.950776,
-0.964749,-0.231615,-0.124955,-0.964749,-0.231615,-0.124955,-0.964749,-0.231615,-0.124955,-0.964749,-0.231615,-0.124955,
-0.301318,-0.072340,-0.950776,-0.301318,-0.072340,-0.950776,-0.301318,-0.072340,-0.950776,-0.301318,-0.072340,-0.950776,
-0.964749,-0.231616,0.124953,-0.964749,-0.231616,0.124953,-0.964749,-0.231616,0.124953,-0.964749,-0.231616,0.124953,
-0.522167,-0.125361,-0.843579,-0.522167,-0.125361,-0.843579,-0.522167,-0.125361,-0.843579,-0.522167,-0.125361,-0.843579,
-0.904464,-0.217142,0.367143,-0.904464,-0.217142,0.367143,-0.904464,-0.217142,0.367143,-0.904464,-0.217142,0.367143,
-0.709852,-0.170420,-0.683423,-0.709852,-0.170420,-0.683423,-0.709852,-0.170420,-0.683423,-0.709852,-0.170420,-0.683423,
-0.787502,-0.189062,0.586597,-0.787502,-0.189062,0.586597,-0.787502,-0.189062,0.586597,-0.787502,-0.189062,0.586597,
-0.535349,-0.042133,-0.843579,-0.535349,-0.042133,-0.843579,-0.535349,-0.042133,-0.843579,-0.535349,-0.042133,-0.843579,
-0.927297,-0.072980,0.367143,-0.927297,-0.072980,0.367143,-0.927297,-0.072980,0.367143,-0.927297,-0.072980,0.367143,
-0.727772,-0.057277,-0.683423,-0.727772,-0.057277,-0.683423,-0.727772,-0.057277,-0.683423,-0.727772,-0.057277,-0.683423,
-0.807382,-0.063543,0.586597,-0.807382,-0.063543,0.586597,-0.807382,-0.063543,0.586597,-0.807382,-0.063543,0.586597,
-0.874228,-0.068803,-0.480615,-0.874228,-0.068803,-0.480615,-0.874228,-0.068803,-0.480615,-0.874228,-0.068803,-0.480615,
-0.636624,-0.050104,0.769545,-0.636624,-0.050104,0.769545,-0.636624,-0.050104,0.769545,-0.636624,-0.050104,0.769545,
-0.425540,-0.033491,0.904320,-0.425540,-0.033491,0.904320,-0.425540,-0.033491,0.904320,-0.425540,-0.033491,0.904320,
-0.965782,-0.076008,-0.247969,-0.965782,-0.076008,-0.247969,-0.965782,-0.076008,-0.247969,-0.965782,-0.076008,-0.247969,
-0.187360,-0.014745,-0.982181,-0.187360,-0.014745,-0.982181,-0.187360,-0.014745,-0.982181,-0.187360,-0.014745,-0.982181,
-0.187360,-0.014746,0.982181,-0.187360,-0.014746,0.982181,-0.187360,-0.014746,0.982181,-0.187360,-0.014746,0.982181,
-0.996917,-0.078459,0.000000,-0.996917,-0.078459,0.000000,-0.996917,-0.078459,0.000000,-0.996917,-0.078459,0.000000,
-0.425539,-0.033491,-0.904320,-0.425539,-0.033491,-0.904320,-0.425539,-0.033491,-0.904320,-0.425539,-0.033491,-0.904320,
-0.965781,-0.076009,0.247970,-0.965781,-0.076009,0.247970,-0.965781,-0.076009,0.247970,-0.965781,-0.076009,0.247970,
-0.636623,-0.050103,-0.769546,-0.636623,-0.050103,-0.769546,-0.636623,-0.050103,-0.769546,-0.636623,-0.050103,-0.769546,
-0.874230,-0.068803,0.480613,-0.874230,-0.068803,0.480613,-0.874230,-0.068803,0.480613,-0.874230,-0.068803,0.480613,
-0.807383,-0.063542,-0.586596,-0.807383,-0.063542,-0.586596,-0.807383,-0.063542,-0.586596,-0.807383,-0.063542,-0.586596,
-0.727772,-0.057277,0.683424,-0.727772,-0.057277,0.683424,-0.727772,-0.057277,0.683424,-0.727772,-0.057277,0.683424,
-0.535350,-0.042133,0.843579,-0.535350,-0.042133,0.843579,-0.535350,-0.042133,0.843579,-0.535350,-0.042133,0.843579,
-0.927297,-0.072980,-0.367144,-0.927297,-0.072980,-0.367144,-0.927297,-0.072980,-0.367144,-0.927297,-0.072980,-0.367144,
-0.308926,-0.024313,0.950776,-0.308926,-0.024313,0.950776,-0.308926,-0.024313,0.950776,-0.308926,-0.024313,0.950776,
-0.989104,-0.077844,-0.124955,-0.989104,-0.077844,-0.124955,-0.989104,-0.077844,-0.124955,-0.989104,-0.077844,-0.124955,
-0.308924,-0.024313,-0.950776,-0.308924,-0.024313,-0.950776,-0.308924,-0.024313,-0.950776,-0.308924,-0.024313,-0.950776,
-0.989104,-0.077844,0.124953,-0.989104,-0.077844,0.124953,-0.989104,-0.077844,0.124953,-0.989104,-0.077844,0.124953,
-0.425540,0.033493,-0.904320,-0.425540,0.033493,-0.904320,-0.425540,0.033493,-0.904320,-0.425540,0.033493,-0.904320,
-0.965781,0.076014,0.247970,-0.965781,0.076014,0.247970,-0.965781,0.076014,0.247970,-0.965781,0.076014,0.247970,
-0.636623,0.050108,-0.769546,-0.636623,0.050108,-0.769546,-0.636623,0.050108,-0.769546,-0.636623,0.050108,-0.769546,
-0.874229,0.068808,0.480612,-0.874229,0.068808,0.480612,-0.874229,0.068808,0.480612,-0.874229,0.068808,0.480612,
-0.807382,0.063546,-0.586597,-0.807382,0.063546,-0.586597,-0.807382,0.063546,-0.586597,-0.807382,0.063546,-0.586597,
-0.727771,0.057281,0.683424,-0.727771,0.057281,0.683424,-0.727771,0.057281,0.683424,-0.727771,0.057281,0.683424,
-0.535350,0.042137,0.843579,-0.535350,0.042137,0.843579,-0.535350,0.042137,0.843579,-0.535350,0.042137,0.843579,
-0.927296,0.072986,-0.367144,-0.927296,0.072986,-0.367144,-0.927296,0.072986,-0.367144,-0.927296,0.072986,-0.367144,
-0.062790,0.004942,-0.998015,-0.062790,0.004942,-0.998015,-0.062790,0.004942,-0.998015,-0.308925,0.024315,0.950776,
-0.308925,0.024315,0.950776,-0.308925,0.024315,0.950776,-0.308925,0.024315,0.950776,-0.989104,0.077849,-0.124954,
-0.989104,0.077849,-0.124954,-0.989104,0.077849,-0.124954,-0.989104,0.077849,-0.124954,-0.308925,0.024315,-0.950776,
-0.308925,0.024315,-0.950776,-0.308925,0.024315,-0.950776,-0.308925,0.024315,-0.950776,-0.062790,0.004942,0.998015,
-0.062790,0.004942,0.998015,-0.062790,0.004942,0.998015,-0.989104,0.077849,0.124953,-0.989104,0.077849,0.124953,
-0.989104,0.077849,0.124953,-0.989104,0.077849,0.124953,-0.535349,0.042136,-0.843579,-0.535349,0.042136,-0.843579,
-0.535349,0.042136,-0.843579,-0.535349,0.042136,-0.843579,-0.927297,0.072985,0.367143,-0.927297,0.072985,0.367143,
-0.927297,0.072985,0.367143,-0.927297,0.072985,0.367143,-0.727772,0.057282,-0.683423,-0.727772,0.057282,-0.683423,
-0.727772,0.057282,-0.683423,-0.727772,0.057282,-0.683423,-0.807382,0.063547,0.586597,-0.807382,0.063547,0.586597,
-0.807382,0.063547,0.586597,-0.807382,0.063547,0.586597,-0.874229,0.068808,-0.480614,-0.874229,0.068808,-0.480614,
-0.874229,0.068808,-0.480614,-0.874229,0.068808,-0.480614,-0.636623,0.050108,0.769545,-0.636623,0.050108,0.769545,
-0.636623,0.050108,0.769545,-0.636623,0.050108,0.769545,-0.425540,0.033493,0.904319,-0.425540,0.033493,0.904319,
-0.425540,0.033493,0.904319,-0.425540,0.033493,0.904319,-0.965781,0.076014,-0.247970,-0.965781,0.076014,-0.247970,
-0.965781,0.076014,-0.247970,-0.965781,0.076014,-0.247970,-0.187361,0.014747,-0.982181,-0.187361,0.014747,-0.982181,
-0.187361,0.014747,-0.982181,-0.187361,0.014747,-0.982181,-0.187362,0.014747,0.982180,-0.187362,0.014747,0.982180,
-0.187362,0.014747,0.982180,-0.187362,0.014747,0.982180,-0.996917,0.078464,0.000000,-0.996917,0.078464,0.000000,
-0.996917,0.078464,0.000000,-0.996917,0.078464,0.000000,-0.061244,0.014703,-0.998015,-0.061244,0.014703,-0.998015,
-0.061244,0.014703,-0.998015,-0.061245,0.014703,0.998015,-0.061245,0.014703,0.998015,-0.061245,0.014703,0.998015,
-0.058188,0.024103,0.998015,-0.058188,0.024103,0.998015,-0.058188,0.024103,0.998015,-0.058189,0.024103,-0.998015,
-0.058189,0.024103,-0.998015,-0.058189,0.024103,-0.998015,-0.053703,0.032909,-0.998015,-0.053703,0.032909,-0.998015,
-0.053703,0.032909,-0.998015,-0.053698,0.032909,0.998015,-0.053698,0.032909,0.998015,-0.053698,0.032909,0.998015,
-0.047891,0.040904,-0.998015,-0.047891,0.040904,-0.998015,-0.047891,0.040904,-0.998015,-0.047894,0.040904,0.998015,
-0.047894,0.040904,0.998015,-0.047894,0.040904,0.998015,-0.040904,0.047893,-0.998015,-0.040904,0.047893,-0.998015,
-0.040904,0.047893,-0.998015,-0.040904,0.047893,0.998015,-0.040904,0.047893,0.998015,-0.040904,0.047893,0.998015,
-0.032907,0.053702,-0.998015,-0.032907,0.053702,-0.998015,-0.032907,0.053702,-0.998015,-0.032916,0.053702,0.998014,
-0.032916,0.053702,0.998014,-0.032916,0.053702,0.998014,-0.024107,0.058189,-0.998015,-0.024107,0.058189,-0.998015,
-0.024107,0.058189,-0.998015,-0.024098,0.058189,0.998015,-0.024098,0.058189,0.998015,-0.024098,0.058189,0.998015,
-0.014700,0.061243,-0.998015,-0.014700,0.061243,-0.998015,-0.014700,0.061243,-0.998015,-0.014700,0.061243,0.998015,
-0.014700,0.061243,0.998015,-0.014700,0.061243,0.998015,-0.004945,0.062789,-0.998015,-0.004945,0.062789,-0.998015,
-0.004945,0.062789,-0.998015,-0.004944,0.062789,0.998015,-0.004944,0.062789,0.998015,-0.004944,0.062789,0.998015,
0.004945,0.062789,-0.998015,0.004945,0.062789,-0.998015,0.004945,0.062789,-0.998015,0.004944,0.062789,0.998015,
0.004944,0.062789,0.998015,0.004944,0.062789,0.998015,0.014700,0.061243,-0.998015,0.014700,0.061243,-0.998015,
0.014700,0.061243,-0.998015,0.014700,0.061243,0.998015,0.014700,0.061243,0.998015,0.014700,0.061243,0.998015,
0.024107,0.058189,-0.998015,0.024107,0.058189,-0.998015,0.024107,0.058189,-0.998015,0.024098,0.058189,0.998015,
0.024098,0.058189,0.998015,0.024098,0.058189,0.998015,0.032916,0.053702,0.998014,0.032916,0.053702,0.998014,
0.032916,0.053702,0.998014,0.032907,0.053702,-0.998015,0.032907,0.053702,-0.998015,0.032907,0.053702,-0.998015,
0.040904,0.047893,-0.998015,0.040904,0.047893,-0.998015,0.040904,0.047893,-0.998015,0.040904,0.047893,0.998015,
0.040904,0.047893,0.998015,0.040904,0.047893,0.998015,0.047891,0.040904,-0.998015,0.047891,0.040904,-0.998015,
0.047891,0.040904,-0.998015,0.047894,0.040904,0.998015,0.047894,0.040904,0.998015,0.047894,0.040904,0.998015,
0.053703,0.032909,-0.998015,0.053703,0.032909,-0.998015,0.053703,0.032909,-0.998015,0.053701,0.032908,0.998015,
0.053701,0.032908,0.998015,0.053701,0.032908,0.998015,0.058189,0.024103,-0.998015,0.058189,0.024103,-0.998015,
0.058189,0.024103,-0.998015,0.058188,0.024103,0.998015,0.058188,0.024103,0.998015,0.058188,0.024103,0.998015,
0.061244,0.014703,-0.998015,0.061244,0.014703,-0.998015,0.061244,0.014703,-0.998015,0.061243,0.014703,0.998015,
0.061243,0.014703,0.998015,0.061243,0.014703,0.998015,0.062790,0.004942,-0.998015,0.062790,0.004942,-0.998015,
0.062790,0.004942,-0.998015,0.062789,0.004942,0.998015,0.062789,0.004942,0.998015,0.062789,0.004942,0.998015,
0.062790,-0.004942,-0.998015,0.062790,-0.004942,-0.998015,0.062790,-0.004942,-0.998015,0.062789,-0.004942,0.998015,
0.062789,-0.004942,0.998015,0.062789,-0.004942,0.998015,0.061241,-0.014703,-0.998015,0.061241,-0.014703,-0.998015,
0.061241,-0.014703,-0.998015,0.061247,-0.014703,0.998014,0.061247,-0.014703,0.998014,0.061247,-0.014703,0.998014,
0.058189,-0.024103,-0.998015,0.058189,-0.024103,-0.998015,0.058189,-0.024103,-0.998015,0.058191,-0.024103,0.998014,
0.058191,-0.024103,0.998014,0.058191,-0.024103,0.998014,0.053706,-0.032909,-0.998014,0.053706,-0.032909,-0.998014,
0.053706,-0.032909,-0.998014,0.053704,-0.032909,0.998014,0.053704,-0.032909,0.998014,0.053704,-0.032909,0.998014,
0.047894,-0.040904,0.998015,0.047894,-0.040904,0.998015,0.047894,-0.040904,0.998015,0.047891,-0.040904,-0.998015,
0.047891,-0.040904,-0.998015,0.047891,-0.040904,-0.998015,0.040904,-0.047893,-0.998015,0.040904,-0.047893,-0.998015,
0.040904,-0.047893,-0.998015,0.040904,-0.047893,0.998015,0.040904,-0.047893,0.998015,0.040904,-0.047893,0.998015,
0.032907,-0.053702,-0.998015,0.032907,-0.053702,-0.998015,0.032907,-0.053702,-0.998015,0.032910,-0.053702,0.998015,
0.032910,-0.053702,0.998015,0.032910,-0.053702,0.998015,0.024107,-0.058189,-0.998015,0.024107,-0.058189,-0.998015,
0.024107,-0.058189,-0.998015,0.024104,-0.058189,0.998015,0.024104,-0.058189,0.998015,0.024104,-0.058189,0.998015,
0.014700,-0.061243,-0.998015,0.014700,-0.061243,-0.998015,0.014700,-0.061243,-0.998015,0.014700,-0.061243,0.998015,
0.014700,-0.061243,0.998015,0.014700,-0.061243,0.998015,0.004945,-0.062789,-0.998015,0.004945,-0.062789,-0.998015,
0.004945,-0.062789,-0.998015,0.004938,-0.062789,0.998015,0.004938,-0.062789,0.998015,0.004938,-0.062789,0.998015,
-0.004945,-0.062789,-0.998015,-0.004945,-0.062789,-0.998015,-0.004945,-0.062789,-0.998015,-0.004938,-0.062789,0.998015,
-0.004938,-0.062789,0.998015,-0.004938,-0.062789,0.998015,-0.014700,-0.061243,-0.998015,-0.014700,-0.061243,-0.998015,
-0.014700,-0.061243,-0.998015,-0.014700,-0.061243,0.998015,-0.014700,-0.061243,0.998015,-0.014700,-0.061243,0.998015,
-0.024107,-0.058189,-0.998014,-0.024107,-0.058189,-0.998014,-0.024107,-0.058189,-0.998014,-0.024105,-0.058189,0.998015,
-0.024105,-0.058189,0.998015,-0.024105,-0.058189,0.998015,-0.032907,-0.053702,-0.998015,-0.032907,-0.053702,-0.998015,
-0.032907,-0.053702,-0.998015,-0.032910,-0.053702,0.998015,-0.032910,-0.053702,0.998015,-0.032910,-0.053702,0.998015,
-0.040904,-0.047893,0.998015,-0.040904,-0.047893,0.998015,-0.040904,-0.047893,0.998015,-0.040904,-0.047893,-0.998015,
-0.040904,-0.047893,-0.998015,-0.040904,-0.047893,-0.998015,-0.047891,-0.040904,-0.998015,-0.047891,-0.040904,-0.998015,
-0.047891,-0.040904,-0.998015,-0.047894,-0.040905,0.998014,-0.047894,-0.040905,0.998014,-0.047894,-0.040905,0.998014,
-0.053703,-0.032909,-0.998015,-0.053703,-0.032909,-0.998015,-0.053703,-0.032909,-0.998015,-0.053704,-0.032909,0.998014,
-0.053704,-0.032909,0.998014,-0.053704,-0.032909,0.998014,-0.058189,-0.024103,-0.998015,-0.058189,-0.024103,-0.998015,
-0.058189,-0.024103,-0.998015,-0.058192,-0.024103,0.998014,-0.058192,-0.024103,0.998014,-0.058192,-0.024103,0.998014,
-0.061244,-0.014703,-0.998015,-0.061244,-0.014703,-0.998015,-0.061244,-0.014703,-0.998015,-0.061245,-0.014703,0.998015,
-0.061245,-0.014703,0.998015,-0.061245,-0.014703,0.998015,-0.062790,-0.004942,-0.998015,-0.062790,-0.004942,-0.998015,
-0.062790,-0.004942,-0.998015,-0.062791,-0.004942,0.998015,-0.062791,-0.004942,0.998015,-0.062791,-0.004942,0.998015
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.524388,0.403136,0.508321,0.417342,0.499514,0.403159,0.477966,0.479672,0.366954,0.213525,0.228017,0.318138,
0.187762,0.319100,0.283272,0.129165,0.777592,0.341289,0.707192,0.378222,0.597543,0.281948,0.594934,0.431910,
0.544790,0.423511,0.588633,0.082828,0.353343,0.504132,0.922890,0.360456,0.548592,0.447332,0.225809,0.123527,
0.471782,0.552829,0.531761,0.147108,0.604537,0.221214,0.573040,0.348974,0.778894,0.312163,0.299978,0.545980,
0.779136,0.446186,0.782624,0.504498,0.555225,0.160742,0.301715,0.154064,0.379185,0.427555,0.615232,0.341462,
0.999921,0.305111,0.341620,0.348753,0.862395,0.267685,0.629955,0.288858,0.312323,0.515376,0.526903,0.460809,
0.505440,0.195922,0.536064,0.378684,0.415195,0.403182,0.514612,0.301521,0.502847,0.283707,0.465475,0.371816,
0.449868,0.260860,0.465695,0.429108,0.402742,0.213904,0.443955,0.377074,0.380908,0.533305,0.645616,0.360904,
0.522311,0.191538,0.691318,0.519015,0.437186,0.392753,0.516321,0.389489,0.503973,0.310958,0.507248,0.389577,
0.391828,0.314479,0.379305,0.273201,0.447383,0.282757,0.537933,0.318493,0.525698,0.300873,0.516792,0.193608,
0.520116,0.457661,0.506315,0.366935,0.502453,0.274045,0.491928,0.264081,0.155341,0.403784,0.581690,0.065082,
0.745365,0.203145,0.688554,0.178858,0.636063,0.163649,0.592999,0.227913,0.555825,0.267604,0.649276,0.621346,
0.573965,0.484857,0.666341,0.224547,0.586825,0.338997,0.527000,0.337183,0.525383,0.225012,0.512987,0.456124,
0.530121,0.419250,0.424324,0.268556,0.475524,0.445065,0.511239,0.252437,0.463519,0.361203,0.465925,0.146217,
0.448171,0.485476,0.549672,0.337306,0.585436,0.153501,0.669500,0.331588,0.608704,0.266496,0.600681,0.305065,
0.008875,0.254866,0.465438,0.141396,0.193662,0.156271,0.082184,0.268132,0.532196,0.142590,0.614129,0.401178,
0.560795,0.118203,0.556382,0.192706,0.549555,0.318101,0.535764,0.468593,0.647200,0.285788,0.632507,0.315822,
0.684355,0.371072,0.516577,0.456693,0.524301,0.282296,0.491954,0.253160,0.510188,0.240688,0.467160,0.224827,
0.526183,0.377925,0.436827,0.344370,0.446678,0.313031,0.429084,0.368901,0.496219,0.367560,0.550401,0.245267,
0.656418,0.427148,0.563505,0.397121,0.162603,0.031248,0.583951,0.404845,0.447897,0.080127,0.620581,0.386254,
0.441306,0.246608,0.321145,0.209716,0.396560,0.096813,0.166965,0.595330,0.592215,0.099645,0.560492,0.145758,
0.682264,0.259423,0.556456,0.381689,0.497432,0.435904,0.485689,0.212773,0.485145,0.171777,0.454751,0.236287,
0.451937,0.249000,0.440960,0.215595,0.434886,0.230016,0.422836,0.205243,0.486190,0.465751,0.475705,0.165168,
0.620205,0.136146,0.607164,0.164401,0.195650,0.083979,0.498730,0.457807,0.421430,0.324625,0.407658,0.290575,
0.396205,0.351894,0.389591,0.382518,0.501117,0.417835,0.471335,0.330688,0.453379,0.470408,0.470697,0.273884,
0.459132,0.322120,0.338384,0.298902,0.537614,0.440749,0.401204,0.466988,0.361299,0.009794,0.745502,0.103515,
0.482376,0.194180,0.416109,0.033989,0.558777,0.456653,0.537447,0.421065,0.560610,0.242079,0.234782,0.259220,
0.228667,0.182625,0.617239,0.424159,0.507766,0.402604,0.504341,0.319818,0.528278,0.238019,0.527028,0.346652,
0.460731,0.341219,0.445513,0.444199,0.408689,0.337281,0.486808,0.420520,0.460761,0.262320,0.439217,0.450982,
0.433096,0.136421,0.531953,0.438391,0.763993,0.570063,0.189448,0.283776,0.627209,0.275435,0.606826,0.381421,
0.509974,0.173135,0.392662,0.442068,0.593150,0.115210,0.558511,0.212027,0.561136,0.307927,0.591651,0.185397,
0.525088,0.162287,0.812842,0.542832,0.427847,0.467700,0.601282,0.316616,0.707674,0.434416,0.594498,0.464200,
0.609713,0.500345,0.696120,0.231675,0.430297,0.243548,0.470367,0.312266,0.475659,0.226547,0.494776,0.347666,
0.516356,0.356467,0.513546,0.283132,0.532451,0.260902,0.416699,0.445824,0.340387,0.281973,0.344065,0.264912,
0.743334,0.288545,0.342146,0.155216,0.010077,0.392763,0.667570,0.348426,0.318954,0.278207,0.594934,0.270233,
0.387757,0.244199,0.394284,0.229221,0.391261,0.206057,0.143624,0.362930,0.354619,0.043758,0.546632,0.233056,
0.572731,0.296831,0.866947,0.309591,0.529281,0.155352,0.478660,0.167779,0.527745,0.189008,0.362370,0.484425,
0.504713,0.328726,0.422554,0.280297,0.536938,0.300097,0.481323,0.293579,0.470949,0.395080,0.492124,0.174153,
0.484067,0.227673,0.482961,0.240877,0.472107,0.340043,0.462258,0.250802,0.489169,0.391274,0.470759,0.321461,
0.472669,0.425593,0.434596,0.323683,0.422477,0.335491,0.613460,0.354432,0.549636,0.197671,0.027460,0.189520,
0.281702,0.497727,0.667855,0.005643,0.725137,0.005437,0.615561,0.189210,0.710314,0.585185,0.368930,0.140080,
0.716080,0.335189,0.649161,0.234140,0.423086,0.477833,0.585734,0.350355,0.513336,0.171680,0.446566,0.303137,
0.573240,0.526643,0.549146,0.308656,0.546487,0.087758,0.772141,0.370304,0.544755,0.269659,0.413181,0.423678,
0.446792,0.293079,0.483606,0.468697,0.420900,0.302803,0.384593,0.368972,0.526583,0.318911,0.360725,0.345012,
0.381053,0.222218,0.476991,0.483961,0.288046,0.412242,0.345667,0.527538,0.576556,0.504189,0.290720,0.316697,
0.403300,0.143661,0.420693,0.175220,0.373012,0.238113,0.285744,0.218285,0.199912,0.387677,0.537389,0.078505,
0.695731,0.116755,0.614137,0.151303,0.716777,0.313767,0.159122,0.511607,0.354750,0.171788,0.702055,0.548717,
0.776210,0.283389,0.448027,0.513141,0.698668,0.399468,0.575196,0.200843,0.420905,0.313756,0.536185,0.290742,
0.457900,0.385641,0.341489,0.406635,0.446897,0.494081,0.432458,0.126329,0.446772,0.503338,0.427421,0.566628,
0.662705,0.104623,0.707068,0.475458,0.666183,0.282053,0.631713,0.302304,0.604611,0.253854,0.435903,0.103946,
0.356383,0.099324,0.471046,0.120685,0.095936,0.215625,0.479356,0.111320,0.405199,0.056308,0.152936,0.121226,
0.457959,0.068737,0.614556,0.021425,0.891386,0.073151,0.361811,0.121348,0.315827,0.316154,0.763019,0.399126,
0.687313,0.277463,0.625878,0.177507,0.580646,0.163566,0.730290,0.452359,0.542758,0.201863,0.338323,0.588218,
0.388238,0.495458,0.813853,0.471744,0.573605,0.307112,0.544100,0.392300,0.671387,0.194881,0.502043,0.263875,
0.480093,0.392899,0.413219,0.360654,0.362509,0.269522,0.392493,0.326962,0.372153,0.467873,0.322666,0.418573,
0.262606,0.292284,0.261963,0.317374,0.479413,0.502855,0.438664,0.584634,0.581941,0.273338,0.575852,0.494089,
0.298599,0.000079,0.592028,0.129381,0.353557,0.073573,0.474706,0.115772,0.528743,0.208157,0.213570,0.419587,
0.855319,0.394246,0.548633,0.357549,0.901556,0.551959,0.612751,0.533520,0.358612,0.330186,0.738264,0.264561,
0.231962,0.449022,0.514673,0.434728,0.511148,0.195031,0.505092,0.337778,0.506766,0.377786,0.438637,0.354949,
0.403637,0.409898,0.532796,0.404251,0.471078,0.209691,0.483234,0.339090,0.515997,0.337394,0.468351,0.125859,
0.542936,0.484489,0.505482,0.347081,0.494392,0.519149,0.909945,0.412434,0.711114,0.271754,0.658597,0.382511,
0.481913,0.507540,0.408387,0.155692,0.725824,0.134433,0.595073,0.207464,0.601239,0.328259,0.600568,0.340069,
0.610702,0.367720,0.543451,0.489310,0.557984,0.108051,0.781593,0.620467,0.568539,0.538610,0.488591,0.173166,
0.426249,0.357539,0.526225,0.436615,0.497124,0.378373,0.438595,0.258893,0.467908,0.383047,0.445350,0.168130,
0.458199,0.414649,0.352902,0.453120,0.394259,0.480187,0.586749,0.306158,0.557738,0.278052,0.591536,0.258310,
0.588005,0.455185,0.465614,0.453195,0.394756,0.276135,0.424868,0.437433,0.458816,0.433338,0.375749,0.301156,
0.456991,0.463966,0.452071,0.438345,0.460061,0.183339,0.382842,0.258850,0.514548,0.212035,0.990711,0.240236,
0.565503,0.225477,0.640075,0.489881,0.274586,0.242437,0.549713,0.327603,0.571709,0.360118,0.516578,0.169911,
0.615596,0.303796,0.481726,0.311857,0.410591,0.348910,0.434430,0.292502,0.456390,0.204027,0.261752,0.428348,
0.383582,0.513081,0.600453,0.474627,0.519646,0.167753,0.499800,0.145421,0.599442,0.293534,0.529684,0.519488,
0.668241,0.077349,0.434059,0.303033,0.555993,0.229636,0.246092,0.057344,0.300349,0.044013,0.670548,0.044615,
0.839151,0.038020,0.493914,0.196120,0.339894,0.221277,0.141361,0.277214,0.138964,0.320339,0.587234,0.246100,
0.543295,0.494374,0.404306,0.190351,0.316401,0.297245,0.566818,0.435212,0.474785,0.408186,0.581861,0.233519,
0.473717,0.239913,0.444951,0.233519,0.450504,0.352805,0.526849,0.327970,0.509376,0.455954,0.492897,0.311423,
0.505776,0.456178,0.423233,0.416559,0.402975,0.432103,0.525463,0.389906,0.587282,0.316989,0.599437,0.241010,
0.575549,0.250334,0.633268,0.242003,0.733110,0.387334,0.639256,0.256536,0.449929,0.173953,0.470612,0.158730,
0.059536,0.128000,0.114583,0.559710,0.559226,0.288189,0.704796,0.251402,0.612272,0.515936,0.561574,0.317727,
0.847136,0.120909,0.300623,0.195247,0.552148,0.426639,0.656461,0.249896,0.571133,0.476515,0.415552,0.516353,
0.583998,0.362075,0.558623,0.411225,0.515416,0.319351,0.406861,0.234998,0.459798,0.331610,0.378071,0.341936,
0.395040,0.180761,0.336194,0.189965,0.268965,0.366310,0.227696,0.505309,0.946364,0.498867,0.589330,0.142132,
0.563391,0.462447,0.266942,0.267228,0.782663,0.015371,0.546303,0.279804,0.261983,0.528973,0.818719,0.311051,
0.242486,0.568193,0.649319,0.300532,0.311451,0.399507,0.655111,0.178369,0.668698,0.161695,0.481822,0.169982,
0.764925,0.064655,0.558500,0.369814,0.479436,0.475677,0.628873,0.357304,0.300643,0.251788,0.715108,0.292583,
0.533965,0.271279,0.449007,0.342649,0.449823,0.219417,0.516438,0.366705,0.516434,0.377633,0.530587,0.249886,
0.379439,0.196753,0.244686,0.230391,0.254792,0.475307,0.845620,0.593612,0.540625,0.504876,0.553815,0.451630,
0.547468,0.172834,0.564302,0.253842,0.416594,0.531994,0.427499,0.183021,0.508926,0.227719,0.919593,0.255817,
0.744924,0.530794,0.730254,0.241319,0.585039,0.214528,0.542946,0.177838,0.566858,0.206903,0.677600,0.390035,
0.792995,0.211863,0.575793,0.515088,0.484973,0.107564,0.461705,0.397865,0.426389,0.397445,0.391958,0.301892,
0.424069,0.346434,0.395873,0.396150,0.526918,0.356497,0.414265,0.166159,0.319077,0.452889,0.809932,0.380537,
0.689188,0.455799,0.631138,0.343268,0.616289,0.316231,0.655538,0.586612,0.514621,0.111924,0.259071,0.202732,
0.499689,0.196285,0.499320,0.174930,0.463738,0.207204,0.401552,0.249137,0.502920,0.174724,0.492401,0.228234,
0.488136,0.195422,0.478397,0.211535,0.424520,0.225675,0.506482,0.174126,0.441229,0.161495,0.385908,0.169403,
0.352030,0.202943,0.278070,0.176978,0.151353,0.234655,0.774867,0.182727,0.526990,0.123578,0.562942,0.186898,
0.533025,0.185898,0.541879,0.219857,0.523570,0.459032,0.534316,0.515009,0.509043,0.485480,0.569584,0.275917,
0.501613,0.253022,0.495711,0.174740,0.434119,0.313397,0.491789,0.437359,0.458654,0.293438,0.503230,0.293003,
0.459711,0.273160,0.458720,0.312656,0.492104,0.461003,0.432680,0.380613,0.302067,0.433390,0.593440,0.596994,
0.817024,0.345911,0.612247,0.234896,0.560938,0.347949,0.936487,0.119783,0.340213,0.555322,0.524079,0.523274,
0.599155,0.352150,0.519216,0.239616,0.437699,0.154014,0.247614,0.402761,0.191238,0.353957,0.197996,0.475951,
0.522498,0.165210,0.808389,0.088587,0.679321,0.494855,0.648465,0.345545,0.579121,0.262012,0.691338,0.333157,
0.454861,0.374170,0.520457,0.435399,0.495443,0.357355,0.399438,0.364394,0.435493,0.333979,0.421436,0.291680,
0.458553,0.222469,0.459027,0.283488,0.522244,0.262300,0.391629,0.417943,0.292364,0.338074,0.587300,0.327907,
0.769661,0.255367,0.691857,0.314380,0.687127,0.420185,0.569773,0.371755,0.223955,0.618907,0.529454,0.128262,
0.584112,0.284412,0.454861,0.179009,0.168773,0.193883,0.806491,0.243420,0.575190,0.172421,0.541833,0.479971,
0.653918,0.458234,0.662101,0.265879,0.538110,0.182184,0.452431,0.363272,0.487467,0.379496,0.449862,0.418976,
0.537545,0.309304,0.515734,0.328297,0.492128,0.284032,0.482210,0.252848,0.470130,0.293601,0.475864,0.369951,
0.471006,0.189986,0.434922,0.145658,0.629116,0.433454,0.571080,0.238198,0.581510,0.374263,0.672304,0.439968,
0.618473,0.248486,0.616209,0.328786,0.530076,0.462995,0.725732,0.499936,0.413816,0.220362,0.500681,0.228247,
0.465460,0.186986,0.449053,0.200100,0.431962,0.210910,0.476579,0.488497,0.465624,0.136336,0.419234,0.489275,
0.377107,0.155963,0.655238,0.207951,0.585701,0.295323,0.198329,0.544154,0.382299,0.403581,0.289642,0.583872,
0.925961,0.307717,0.643866,0.271129,0.666642,0.474703,0.537955,0.510070,0.635318,0.392251,0.663986,0.365411,
0.632331,0.329463,0.411358,0.266017,0.479713,0.422744,0.406931,0.302431,0.448385,0.272061,0.523369,0.272542,
0.481465,0.302794,0.474333,0.359551,0.471354,0.263321,0.481336,0.472011,0.409105,0.278466,0.903930,0.206207,
0.718490,0.049786,0.647340,0.508446,0.349571,0.247756,0.329711,0.135076,0.971797,0.176545,0.533605,0.222714,
0.755176,0.475157,0.394775,0.610594,0.485253,0.511937,0.622838,0.460740,0.542816,0.259057,0.392913,0.289134,
0.492584,0.302475,0.323601,0.259117,0.291447,0.295096,0.230658,0.347235,0.279536,0.451878,0.450913,0.523316,
0.264469,0.097687,0.455689,0.533598,0.879503,0.160585,0.551262,0.562076,0.581148,0.447436,0.596948,0.364577,
0.472330,0.252071,0.576513,0.419596,0.553414,0.256723,0.837886,0.434295,0.641365,0.444670,0.507381,0.213060,
0.433287,0.115455,0.627753,0.075771,0.714118,0.629941,0.688877,0.352078,0.549890,0.408245,0.605632,0.486624,
0.604276,0.439925,0.332431,0.389328,0.740421,0.362683,0.538030,0.346812,0.480803,0.441922,0.493268,0.320320,
0.433161,0.430255,0.483038,0.405928,0.508895,0.434591,0.461103,0.458236,0.481720,0.263900,0.470302,0.283931,
0.538190,0.337150,0.277013,0.389783,0.567554,0.469054,0.623414,0.261990,0.561690,0.327598,0.458558,0.303127,
0.547515,0.289621,0.503141,0.434983,0.491276,0.404262,0.461958,0.351047,0.436625,0.270545,0.407458,0.325707,
0.397587,0.262826,0.435266,0.281708,0.442809,0.405506,0.473096,0.349626,0.473004,0.162150,0.434552,0.189692,
0.521680,0.210439,0.357111,0.230583,0.996085,0.371946,0.722249,0.411391,0.712930,0.356727,0.640054,0.218683,
0.558239,0.153614,0.358733,0.396989,0.560336,0.298111,0.466507,0.411075,0.447118,0.322855,0.535194,0.281182,
0.374721,0.389056,0.450390,0.477577,0.336443,0.436553,0.339363,0.469860,0.416594,0.502102,0.477725,0.498038,
0.325666,0.490408,0.567497,0.414979,0.537650,0.356852,0.551594,0.167144,0.559956,0.358628,0.173657,0.441794,
0.779262,0.127028,0.561985,0.127974,0.302704,0.379613,0.628940,0.203643,0.535785,0.205342,0.366201,0.439267,
0.748903,0.426614,0.543174,0.443719,0.797443,0.414268,0.574096,0.317361,0.541294,0.405980,0.325416,0.371529,
0.613616,0.449450,0.567089,0.384029,0.578098,0.387032,0.534712,0.390839,0.495347,0.459210,0.376980,0.287288,
0.351386,0.381127,0.317150,0.334877,0.196841,0.248699,0.069412,0.513000,0.385194,0.582178,0.850122,0.227648,
0.719311,0.219078,0.549305,0.347238,0.585665,0.425191,0.229577,0.004178,0.396895,0.114324,0.317939,0.110531,
0.399033,0.077408,0.307669,0.080559,0.440654,0.092044,0.078386,0.321892,0.101114,0.425771,0.105016,0.073910,
0.570604,0.047049,0.623892,0.049960,0.468589,0.154921,0.330508,0.240085,0.382326,0.453902,0.309379,0.230460,
0.253215,0.153664,0.682364,0.141456,0.589554,0.390786,0.550181,0.216317,0.489429,0.515872,0.519548,0.115224,
0.320341,0.353355,0.745431,0.313040,0.538176,0.471999,0.352736,0.423274,0.538150,0.327741,0.494199,0.338341,
0.484953,0.358274,0.441508,0.424143,0.503603,0.302052,0.408758,0.389954,0.512889,0.273458,0.526650,0.366862,
0.447676,0.388851,0.300863,0.472819,0.854315,0.505830,0.604349,0.574377,0.616510,0.213212,0.631754,0.474101,
0.611845,0.278993,0.263926,0.342085,0.493699,0.329260,0.641481,0.416710,0.675305,0.241752,0.319410,0.173953,
0.119513,0.165974,0.523687,0.119173,0.706737,0.159070,0.668383,0.408809,0.599595,0.175689,0.583483,0.193723,
0.476802,0.493217,0.759350,0.228474,0.408759,0.455606,0.484009,0.348507,0.380843,0.355409,0.505888,0.356752,
0.403539,0.377087,0.502217,0.456796,0.493945,0.418890,0.489038,0.463184,0.514116,0.292446,0.492951,0.213431,
0.440984,0.365814,0.553295,0.097778,0.605756,0.416453,0.815174,0.276664,0.571390,0.286469,0.574170,0.327694,
0.531107,0.133074,0.492096,0.241317,0.464327,0.238398,0.367236,0.185460,0.624933,0.118665,0.527368,0.158996,
0.605264,0.199101,0.209878,0.214678,0.433283,0.458783,0.522824,0.418039,0.517155,0.226646,0.516206,0.346744,
0.498211,0.390167,0.447889,0.332697,0.426853,0.256348,0.537017,0.367411,0.357704,0.315250,0.367893,0.412572,
0.614124,0.291405,0.627717,0.098610,0.641298,0.376476,0.864668,0.352095,0.399327,0.129915,0.752357,0.156679,
0.654948,0.127732,0.727791,0.179838,0.542380,0.499598,0.978237,0.437695,0.705420,0.198137,0.625412,0.371622,
0.084787,0.375224,0.594662,0.410080,0.512128,0.263284,0.481431,0.274262,0.470156,0.303012,0.414542,0.253135,
0.420948,0.384901,0.359585,0.284943,0.366921,0.253907,0.467002,0.150740,0.337955,0.315679,0.420317,0.548868,
0.601518,0.395405,0.610413,0.553060,0.685017,0.212755,0.668769,0.298399,0.553695,0.394397,0.537396,0.235815,
0.547596,0.368359,0.033854,0.456705,0.652990,0.530585,0.625754,0.227546,0.476656,0.192375,0.418841,0.239721,
0.569245,0.180166,0.808519,0.156168,0.341884,0.626708,0.126284,0.471722,0.358012,0.300179,0.540404,0.247841,
0.656159,0.556464,0.540221,0.475798,0.237219,0.375581,0.381063,0.556323,0.744490,0.337825,0.593815,0.377437,
0.229212,0.288641,0.533046,0.465590,0.375540,0.314853,0.500182,0.213524,0.501160,0.241253,0.526201,0.309909,
0.525071,0.291698,0.491991,0.274313,0.492327,0.293379,0.470444,0.448814,0.406872,0.314116,0.364067,0.359751,
0.559501,0.430515,0.368691,0.374443,0.294722,0.273405,0.486236,0.439360,0.000079,0.323515,0.832396,0.190049,
0.641822,0.192170,0.296354,0.359086,0.574055,0.440817,0.466567,0.131122,0.573855,0.338201,0.886899,0.461602,
0.441759,0.195351,0.651188,0.399655,0.345715,0.365033,0.567251,0.265078,0.462590,0.543607,0.482604,0.329910,
0.482104,0.320864,0.516051,0.402594,0.393946,0.339409,0.477748,0.381012,0.376314,0.328431,0.486095,0.368519,
0.481307,0.284108,0.515044,0.310456,0.520881,0.251398,0.339040,0.332298,0.690506,0.295799,0.669880,0.314911,
0.283384,0.629942,0.708220,0.086361,0.573577,0.400569,0.530767,0.151378,0.649982,0.330381,0.650250,0.315386,
0.645876,0.147221,0.561808,0.137193,0.532001,0.137884,0.561325,0.550606,0.627414,0.408176,0.561513,0.337644,
0.416632,0.372625,0.413602,0.198449,0.548444,0.299195,0.575182,0.220482,0.515557,0.417407,0.546144,0.379954,
0.452333,0.401315,0.433116,0.410540
UVIndex: 503,200,602,962,758,873,821,530,498,749,104,665,37,777,447,108,355,78,867,0,287,224,58,930,180,59,350,549,379,60,103,595,624,57,262,929,738,76,868,400,814,720,75,441,166,503,962,583,711,758,530,167,200,498,665,602,873,37,108,821,777,355,0,447,
749,287,930,104,78,379,595,867,224,624,929,58,59,738,400,350,57,814,441,262,76,166,583,868,720,711,167,75,350,400,701,36,262,441,625,470,868,583,106,514,75,167,869,358,962,602,890,81,530,821,501,198,665,104,199,820,108,447,51,502,0,867,982,955,
930,58,39,850,549,350,36,544,595,103,77,349,929,262,470,961,400,868,514,701,441,75,358,625,583,962,81,106,167,530,198,869,602,665,820,890,821,108,502,501,447,0,955,51,104,930,850,199,867,595,349,982,58,929,961,39,51,955,164,53,199,850,569,40,
982,349,716,1,39,961,52,818,36,701,927,540,470,625,222,165,514,106,928,641,358,869,361,351,81,890,323,564,198,501,61,845,820,199,40,62,502,51,53,352,955,982,1,164,850,39,818,569,544,36,540,541,349,77,442,716,961,470,165,52,701,514,641,927,
625,358,351,222,106,81,564,928,869,198,845,361,890,820,62,323,501,502,352,61,928,564,105,859,361,845,596,197,323,62,931,63,61,352,380,112,53,164,2,870,40,569,932,626,1,716,727,146,818,52,443,684,540,927,851,427,165,222,830,713,641,928,859,545,
351,361,197,815,564,323,63,105,845,61,112,596,62,40,626,931,352,53,870,380,164,1,146,2,569,818,684,932,541,540,427,565,716,442,444,727,52,165,713,443,927,641,545,851,222,351,815,830,565,427,546,227,727,444,847,128,443,713,954,409,851,545,228,129,
830,815,357,953,859,105,627,229,197,596,816,843,63,931,891,718,112,380,622,959,870,2,728,232,626,932,225,960,146,727,128,848,684,443,409,666,427,851,129,546,713,830,953,954,545,859,229,228,815,197,843,357,105,63,718,627,596,112,959,816,931,626,960,891,
380,870,232,622,2,146,848,728,932,684,666,225,891,960,719,149,622,232,324,957,728,848,171,715,225,666,892,628,227,546,156,377,128,847,141,567,409,954,233,195,129,228,196,547,953,357,230,147,229,627,696,438,843,816,667,735,718,891,149,668,959,622,957,629,
232,728,715,324,960,225,628,719,848,128,567,171,666,409,195,892,546,129,547,156,954,953,147,233,228,229,438,196,357,843,735,230,627,718,668,696,816,959,629,667,196,438,860,107,230,735,729,168,696,668,172,231,667,629,41,82,149,719,601,570,957,324,226,382,
715,171,662,436,628,892,725,568,377,156,910,130,567,141,778,939,195,233,150,571,547,196,107,356,147,230,168,472,438,696,231,860,735,667,82,729,668,149,570,172,629,957,382,41,324,715,436,226,719,628,568,601,171,567,939,662,892,195,571,725,156,547,356,910,
233,147,472,150,662,939,712,234,725,571,110,251,910,356,542,630,150,472,871,748,107,860,131,600,168,729,440,499,231,172,42,132,82,41,594,621,570,601,56,664,382,226,525,288,436,662,234,747,568,725,251,258,130,910,630,491,939,778,572,712,571,150,748,110,
356,107,600,542,472,168,499,871,860,231,132,131,729,82,621,440,172,570,664,42,41,382,288,594,226,436,747,525,601,568,258,56,42,664,730,381,594,288,822,45,525,747,384,984,56,258,411,733,234,712,80,43,251,110,566,421,630,542,412,642,748,871,598,235,
600,131,439,500,499,440,353,109,132,42,381,120,621,594,45,852,664,56,733,730,288,525,984,822,747,234,43,384,258,251,421,411,491,630,642,219,712,572,849,80,110,748,235,566,542,600,500,412,871,499,109,598,131,132,120,439,440,621,852,353,412,500,133,643,
598,109,528,236,439,120,194,134,353,852,111,378,381,730,79,872,45,822,50,573,984,384,623,734,733,411,599,223,43,80,933,394,421,566,286,260,642,412,643,398,235,598,236,142,500,439,134,133,109,353,378,528,120,381,872,194,852,45,573,111,730,733,223,79,
822,984,734,50,384,43,394,623,411,421,260,599,219,642,398,137,80,849,136,933,566,235,142,286,623,394,397,817,599,260,663,143,137,398,613,736,933,136,259,391,286,142,731,934,643,133,644,948,236,528,410,170,134,194,911,548,378,111,978,325,872,79,661,893,
573,50,526,894,734,623,817,985,223,599,143,670,394,933,391,397,260,286,934,663,398,643,948,613,142,236,170,731,133,134,548,644,528,378,325,410,194,872,893,911,111,573,894,978,79,223,670,661,50,734,985,526,911,893,543,471,978,894,819,846,661,670,392,732,
526,985,445,38,817,397,169,714,143,663,527,683,736,613,454,455,391,259,669,717,934,731,327,54,948,644,135,737,170,410,144,956,548,911,471,640,325,978,846,597,893,661,732,543,894,526,38,819,985,817,714,445,670,143,683,392,397,391,717,169,663,934,54,527,
613,948,737,454,731,170,956,327,644,548,640,135,410,325,597,144,454,737,513,383,327,956,473,958,135,640,44,979,144,597,261,844,471,543,210,211,846,819,529,145,732,392,55,399,38,445,257,354,714,169,173,393,683,527,395,779,455,454,383,800,717,669,494,396,
54,327,958,926,737,135,979,513,956,144,844,473,640,471,211,44,597,846,145,261,543,732,399,210,819,38,354,529,445,714,393,257,392,683,779,55,169,717,396,173,527,54,926,395,257,393,201,446,55,779,895,326,173,396,148,866,395,926,874,916,383,513,271,550,
958,473,263,346,979,44,212,433,844,261,937,935,211,210,272,264,145,529,652,750,399,55,326,896,354,257,446,603,393,173,866,201,779,395,916,895,800,383,550,897,396,494,3,148,926,958,346,874,513,979,433,271,473,844,935,263,44,211,264,212,261,145,750,937,
210,399,896,272,529,354,603,652,212,264,4,504,937,750,745,780,272,896,674,739,652,603,28,875,446,201,842,181,326,895,202,203,866,148,751,188,916,874,898,151,550,271,531,584,346,263,31,963,433,212,504,474,935,937,780,950,264,272,739,4,750,652,875,745,
896,326,203,674,603,446,181,28,201,866,188,842,895,916,151,202,897,550,584,83,148,3,265,751,874,346,963,898,271,433,474,531,263,935,950,31,83,584,631,91,751,265,645,84,898,963,781,310,531,474,551,367,31,950,773,810,504,4,552,861,780,745,289,709,
739,674,801,428,875,28,767,813,181,842,153,802,203,202,208,685,188,751,84,248,151,898,310,434,584,531,367,631,963,31,810,781,474,504,861,551,950,780,709,773,4,739,428,552,745,875,813,289,674,203,685,801,28,181,802,767,842,188,248,153,202,151,434,208,
801,685,496,803,767,802,328,385,153,248,647,386,208,434,686,938,91,631,174,646,84,645,840,290,310,781,604,269,367,551,648,270,810,773,764,943,861,552,475,280,709,289,329,488,428,801,803,121,813,767,385,752,802,153,386,328,685,208,938,496,248,84,290,647,
434,310,269,686,631,367,270,174,781,810,943,604,551,861,280,648,773,709,488,764,552,428,121,475,289,813,752,329,648,280,205,245,764,488,266,721,475,121,463,833,329,752,532,574,803,496,404,273,385,328,221,753,386,647,754,318,938,686,330,481,646,174,291,945,
290,840,755,292,269,604,829,331,270,648,245,880,943,764,721,476,280,475,833,205,488,329,574,266,121,803,273,463,752,385,753,532,328,386,318,221,496,938,481,404,647,290,292,754,686,269,331,330,174,270,880,291,604,943,476,829,754,292,283,467,330,331,5,924,
291,880,790,702,829,476,920,687,245,205,675,309,721,266,413,585,833,463,553,27,574,532,823,688,273,404,505,539,753,221,14,756,318,754,467,414,481,330,924,161,945,291,702,359,292,755,332,283,331,829,687,5,880,245,309,790,476,721,585,920,205,833,27,675,
266,574,688,413,463,273,539,553,532,753,756,823,221,318,414,14,404,481,161,505,553,539,162,804,823,756,34,240,14,414,46,267,505,161,782,865,467,283,689,512,924,5,6,177,702,790,122,299,687,920,274,586,309,675,791,300,585,413,348,341,27,553,804,7,
688,823,240,506,539,505,865,162,756,14,267,34,414,467,512,46,161,924,177,782,359,702,299,301,283,332,366,689,5,687,586,6,790,309,300,122,920,585,341,274,675,27,7,791,413,688,506,348,122,300,338,792,274,341,761,64,791,7,690,793,348,506,477,587,
804,162,92,17,240,34,23,484,267,46,921,580,865,782,554,614,512,689,691,899,177,6,430,429,299,122,792,794,586,274,64,213,300,791,793,338,341,348,587,761,7,804,17,690,506,240,484,477,162,865,614,92,34,267,580,23,46,512,899,921,782,177,429,554,
301,299,794,339,689,366,680,691,6,586,213,430,921,899,293,784,554,429,93,302,339,794,118,303,691,680,808,952,430,213,888,795,792,338,214,304,64,761,915,796,793,690,423,424,587,477,651,279,17,92,305,140,484,23,653,486,580,921,784,317,614,554,302,834,
899,691,952,293,429,430,795,93,794,792,304,118,213,64,796,888,338,793,424,214,761,587,279,915,690,17,140,423,477,484,486,651,92,614,834,305,23,580,317,653,423,140,116,789,651,486,610,123,305,834,456,797,653,317,914,966,784,293,333,679,302,93,90,239,
303,118,306,524,952,808,362,18,795,888,206,940,304,214,154,157,796,915,783,907,424,423,789,336,279,651,123,457,140,305,797,116,486,653,966,610,317,784,679,914,834,302,239,456,293,952,18,333,93,795,940,90,118,304,157,306,888,796,907,206,214,424,336,154,
915,279,457,783,275,798,65,254,30,740,15,654,307,241,425,799,885,478,947,363,242,482,492,672,344,507,187,824,426,308,462,589,375,704,244,176,71,575,825,537,579,676,671,692,538,275,254,809,693,581,419,975,401,30,654,515,798,307,799,65,740,885,363,15,
241,242,672,425,478,344,824,947,482,426,589,492,507,375,176,187,704,71,537,244,308,579,692,462,575,693,975,825,676,401,515,671,244,537,918,281,462,692,941,913,825,975,376,901,671,515,32,785,254,65,13,853,654,15,879,217,799,425,420,703,363,947,699,342,
672,492,155,967,824,187,25,319,589,462,913,762,176,244,281,516,537,825,901,918,692,671,785,941,809,254,853,835,975,419,561,376,515,654,217,32,65,799,703,13,15,363,342,879,425,672,967,420,947,824,319,699,492,589,762,155,187,176,516,25,420,967,276,294,
699,319,24,770,155,762,881,368,25,516,639,678,281,918,908,49,913,941,522,555,901,376,252,345,785,32,855,615,853,13,124,374,217,879,576,485,703,420,294,877,342,699,770,533,967,155,368,276,319,25,678,24,762,913,555,881,516,281,49,639,918,901,345,908,
941,785,615,522,835,853,374,556,376,561,657,252,32,217,485,855,13,703,877,124,879,342,533,576,556,374,96,611,252,657,508,523,855,485,22,282,124,877,862,182,576,533,255,8,294,276,805,882,770,24,768,311,368,881,883,836,678,639,295,315,49,908,673,590,
555,522,841,66,345,252,523,460,615,855,282,606,374,124,182,96,485,576,8,22,877,294,882,862,533,770,311,255,276,368,836,805,24,678,315,768,881,555,66,883,639,49,590,295,908,345,460,673,522,615,606,841,883,66,786,886,295,590,656,534,673,460,192,403,
841,606,347,517,611,96,763,858,523,508,884,268,282,22,811,204,182,862,138,337,8,255,710,922,882,805,490,972,311,768,741,452,836,883,886,67,315,295,534,190,590,673,403,656,66,841,517,786,460,523,268,192,606,282,204,347,96,182,337,763,22,8,922,811,
862,882,972,138,255,311,452,710,805,836,67,490,768,315,190,741,138,972,68,277,710,452,9,742,490,67,322,489,741,190,608,284,886,786,193,902,534,656,618,635,403,192,707,827,517,347,364,459,858,763,973,974,268,884,432,335,204,811,278,497,337,138,277,479,
922,710,742,246,972,490,489,68,452,741,284,9,67,886,902,322,190,534,635,608,656,403,827,618,786,517,459,193,192,268,335,707,347,204,497,364,763,337,479,973,811,922,246,278,707,335,72,415,364,497,964,312,973,479,86,125,278,246,593,607,277,68,313,139,
742,9,102,705,489,322,649,942,284,608,837,521,902,193,832,73,635,618,700,114,827,707,415,681,459,364,312,126,974,973,125,94,335,432,373,72,497,278,607,964,479,277,139,86,246,742,705,593,68,489,942,313,9,284,521,102,322,902,73,649,608,635,114,837,
618,827,681,700,193,459,126,832,649,73,247,743,837,114,831,949,700,681,774,632,832,126,619,465,415,72,466,191,312,964,903,296,125,86,314,744,607,593,87,965,139,313,243,838,705,102,659,207,942,649,743,765,521,837,949,365,73,832,465,247,114,700,632,831,
681,415,191,774,126,312,296,619,94,125,744,19,72,373,360,466,964,607,965,903,86,139,838,314,593,705,207,87,313,942,765,243,102,521,365,659,314,838,185,616,87,207,591,970,243,765,826,864,659,365,878,47,743,247,451,909,949,831,976,658,632,774,708,163,
465,619,655,453,191,466,722,390,296,903,487,100,744,314,616,26,965,87,970,971,838,243,864,185,207,659,47,591,765,743,909,826,365,949,658,878,247,465,453,451,831,632,163,976,774,191,390,708,619,296,100,655,19,744,26,969,466,360,617,722,903,965,971,487,
826,909,577,20,878,658,119,887,451,453,723,636,976,163,854,95,708,390,694,11,655,100,33,178,969,26,759,218,722,617,919,480,487,971,101,297,616,185,839,912,970,591,535,660,864,826,20,369,47,878,887,495,909,451,636,577,658,976,95,119,163,708,11,854,
453,655,178,723,390,722,480,694,100,487,297,33,26,616,912,759,971,970,660,101,185,864,369,839,591,47,495,535,759,912,557,510,101,660,637,536,839,369,518,285,535,495,237,29,20,577,449,69,887,119,179,372,636,723,88,298,95,854,889,900,11,694,944,788,
178,33,876,828,218,759,510,863,480,919,812,158,297,101,536,408,912,839,285,557,660,535,29,637,369,20,69,518,495,887,372,237,577,636,298,449,119,95,900,179,854,11,788,889,723,178,828,88,694,480,158,944,33,297,408,876,889,788,697,117,88,828,10,209,
944,158,509,435,876,408,89,418,510,557,97,519,536,637,370,189,285,518,981,520,29,237,582,371,69,449,431,437,372,179,923,695,298,88,209,389,900,889,117,806,788,944,435,697,828,876,418,10,863,510,519,186,158,812,99,509,408,536,189,89,557,285,520,97,
637,29,371,370,518,69,437,981,237,372,695,582,449,298,389,431,179,900,806,923,981,437,633,402,582,695,468,249,431,389,592,450,923,806,776,634,117,697,757,968,209,10,612,334,435,509,16,936,418,89,387,650,519,97,238,620,189,370,605,448,520,981,402,183,
371,582,249,74,437,431,450,633,695,923,634,468,389,209,334,592,806,117,968,776,697,435,936,757,10,418,650,612,186,519,620,588,509,99,925,16,89,189,448,387,97,520,183,238,370,371,74,605,588,620,558,416,16,925,638,769,387,448,771,320,238,183,807,316,
605,74,946,857,402,633,160,422,249,468,406,21,450,592,951,511,634,776,775,609,968,757,469,115,334,612,856,563,936,16,769,464,650,387,320,216,620,238,316,558,448,605,857,771,183,402,422,807,74,249,21,946,633,450,511,160,468,634,609,406,592,334,563,951,
776,968,115,775,757,936,464,469,612,650,216,856,951,563,388,70,775,115,904,127,469,464,12,706,856,216,746,458,416,558,220,407,769,638,35,152,320,771,461,184,316,807,559,766,857,946,977,724,422,160,113,215,21,406,760,578,511,951,70,698,609,775,127,493,
115,469,706,904,563,856,458,388,464,769,152,12,216,320,184,746,558,316,766,220,771,857,724,461,807,422,215,559,946,21,578,977,160,511,698,113,406,609,493,760,559,215,905,677,977,578,787,85,113,698,682,917,760,493,906,343,70,388,483,256,127,904,321,983,
706,12,159,772,458,746,980,726,407,220,48,250,152,35,560,175,184,461,98,253,766,559,677,340,724,977,85,405,215,113,917,905,578,760,343,787,698,70,256,682,493,127,983,906,904,706,772,321,388,458,726,483,12,152,175,159,746,184,253,980,220,766,340,48,
461,724,405,98,340,677,76,738,405,85,720,814,905,917,503,166,787,343,758,711,682,256,498,200,906,983,37,873,321,772,355,777,483,726,287,749,417,250,180,159,175,379,78,980,253,624,224,48,340,738,59,560,562,60,98,405,814,57,677,905,166,76,85,787,
711,720,917,682,200,503,343,906,873,758,256,483,749,498,983,321,777,37,772,159,78,355,726,980,224,287,250,48,59,180,175,560,60,379,253,98,57,624,417,180,549,60,562,103,103,562,77,417,549,544,417,544,541,77,562,442,417,541,565,442,562,444,417,565,
227,444,562,847,417,227,377,847,562,141,417,377,130,141,562,778,417,130,491,778,562,572,417,491,219,572,562,849,417,219,137,849,562,136,417,137,736,136,562,259,417,736,455,259,562,669,669,562,494,417,455,800,417,800,897,494,562,3,417,897,83,3,562,265,
417,83,91,265,562,645,417,91,646,645,562,840,417,646,945,840,562,755,417,945,359,755,562,332,417,359,301,332,562,366,417,301,339,366,562,680,417,339,303,680,562,808,417,303,524,808,562,362,581,562,419,417,538,809,417,809,835,419,562,561,417,835,556,561,
562,657,417,556,611,657,562,508,417,611,858,508,562,884,417,858,974,884,562,432,417,974,94,432,562,373,417,94,19,373,562,360,417,19,969,360,562,617,417,969,218,617,562,919,919,562,812,417,218,863,417,863,186,812,562,99,417,186,588,99,562,925,417,588,
416,925,562,638,417,416,407,638,562,35,417,407,250,35,562,560
}
LayerElementTexture: 0 {
Version: 101
Name: ""
MappingInformationType: "NoMappingInformation"
ReferenceInformationType: "IndexToDirect"
BlendMode: "Translucent"
TextureAlpha: 1
TextureId:
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::Producer Perspective", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000
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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",10.000000
Property: "FarPlane", "double", "",4000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",0
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 0.000000,71.300000,287.500000
Up: 0,1,0
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Top", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 0.000000,4000.000000,0.000000
Up: 0,0,-1
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Bottom", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 0.000000,-4000.000000,0.000000
Up: 0,0,-1
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Front", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 0.000000,0.000000,4000.000000
Up: 0,1,0
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Back", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 0.000000,0.000000,-4000.000000
Up: 0,1,0
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Right", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: 4000.000000,0.000000,0.000000
Up: 0,1,0
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Model: "Model::Producer Left", "Camera" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-4000.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: "Roll", "Roll", "A+",0
Property: "FieldOfView", "FieldOfView", "A+",40
Property: "FieldOfViewX", "FieldOfView", "A+",1
Property: "FieldOfViewY", "FieldOfView", "A+",1
Property: "OpticalCenterX", "Real", "A+",0
Property: "OpticalCenterY", "Real", "A+",0
Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63
Property: "TurnTable", "Real", "A+",0
Property: "DisplayTurnTableIcon", "bool", "",1
Property: "Motion Blur Intensity", "Real", "A+",1
Property: "UseMotionBlur", "bool", "",0
Property: "UseRealTimeMotionBlur", "bool", "",1
Property: "ResolutionMode", "enum", "",0
Property: "ApertureMode", "enum", "",2
Property: "GateFit", "enum", "",0
Property: "FocalLength", "Real", "A+",21.3544940948486
Property: "CameraFormat", "enum", "",0
Property: "AspectW", "double", "",320
Property: "AspectH", "double", "",200
Property: "PixelAspectRatio", "double", "",1
Property: "UseFrameColor", "bool", "",0
Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3
Property: "ShowName", "bool", "",1
Property: "ShowGrid", "bool", "",1
Property: "ShowOpticalCenter", "bool", "",0
Property: "ShowAzimut", "bool", "",1
Property: "ShowTimeCode", "bool", "",0
Property: "NearPlane", "double", "",1.000000
Property: "FarPlane", "double", "",30000.000000
Property: "FilmWidth", "double", "",0.816
Property: "FilmHeight", "double", "",0.612
Property: "FilmAspectRatio", "double", "",1.33333333333333
Property: "FilmSqueezeRatio", "double", "",1
Property: "FilmFormatIndex", "enum", "",4
Property: "ViewFrustum", "bool", "",1
Property: "ViewFrustumNearFarPlane", "bool", "",0
Property: "ViewFrustumBackPlaneMode", "enum", "",2
Property: "BackPlaneDistance", "double", "",100
Property: "BackPlaneDistanceMode", "enum", "",0
Property: "ViewCameraToLookAt", "bool", "",1
Property: "LockMode", "bool", "",0
Property: "LockInterestNavigation", "bool", "",0
Property: "FitImage", "bool", "",0
Property: "Crop", "bool", "",0
Property: "Center", "bool", "",1
Property: "KeepRatio", "bool", "",1
Property: "BackgroundMode", "enum", "",0
Property: "BackgroundAlphaTreshold", "double", "",0.5
Property: "ForegroundTransparent", "bool", "",1
Property: "DisplaySafeArea", "bool", "",0
Property: "SafeAreaDisplayStyle", "enum", "",1
Property: "SafeAreaAspectRatio", "double", "",1.33333333333333
Property: "Use2DMagnifierZoom", "bool", "",0
Property: "2D Magnifier Zoom", "Real", "A+",100
Property: "2D Magnifier X", "Real", "A+",50
Property: "2D Magnifier Y", "Real", "A+",50
Property: "CameraProjectionType", "enum", "",1
Property: "UseRealTimeDOFAndAA", "bool", "",0
Property: "UseDepthOfField", "bool", "",0
Property: "FocusSource", "enum", "",0
Property: "FocusAngle", "double", "",3.5
Property: "FocusDistance", "double", "",200
Property: "UseAntialiasing", "bool", "",0
Property: "AntialiasingIntensity", "double", "",0.77777
Property: "UseAccumulationBuffer", "bool", "",0
Property: "FrameSamplingCount", "int", "",7
}
MultiLayer: 0
MultiTake: 0
Hidden: "True"
Shading: Y
Culling: "CullingOff"
TypeFlags: "Camera"
GeometryVersion: 124
Position: -4000.000000,0.000000,0.000000
Up: 0,1,0
LookAt: 0,0,0
ShowInfoOnMoving: 1
ShowAudio: 0
AudioColor: 0,1,0
CameraOrthoZoom: 1
}
Material: "Material::unnamed", "" {
Version: 102
ShadingModel: "phong"
MultiLayer: 0
Properties60: {
Property: "ShadingModel", "KString", "", "Phong"
Property: "MultiLayer", "bool", "",0
Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "EmissiveFactor", "double", "",0.0000
Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000
Property: "AmbientFactor", "double", "",1.0000
Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "DiffuseFactor", "double", "",0.8000
Property: "Bump", "Vector3D", "",0,0,0
Property: "TransparentColor", "ColorRGB", "",1,1,1
Property: "TransparencyFactor", "double", "",0.0000
Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000
Property: "SpecularFactor", "double", "",0.5000
Property: "ShininessExponent", "double", "",12.3
Property: "ReflectionColor", "ColorRGB", "",0,0,0
Property: "ReflectionFactor", "double", "",1
Property: "Emissive", "ColorRGB", "",0,0,0
Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0
Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
Property: "Specular", "ColorRGB", "",1.0,1.0,1.0
Property: "Shininess", "double", "",12.3
Property: "Opacity", "double", "",1.0
Property: "Reflectivity", "double", "",0
}
}
Pose: "Pose::BIND_POSES", "BindPose" {
Type: "BindPose"
Version: 100
Properties60: {
}
NbPoseNodes: 1
PoseNode: {
Node: "Model::Sphere_001"
Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
}
}
GlobalSettings: {
Version: 1000
Properties60: {
Property: "UpAxis", "int", "",1
Property: "UpAxisSign", "int", "",1
Property: "FrontAxis", "int", "",2
Property: "FrontAxisSign", "int", "",1
Property: "CoordAxis", "int", "",0
Property: "CoordAxisSign", "int", "",1
Property: "UnitScaleFactor", "double", "",1
}
}
}
; Object relations
;------------------------------------------------------------------
Relations: {
Model: "Model::Sphere_001", "Mesh" {
}
Model: "Model::Producer Perspective", "Camera" {
}
Model: "Model::Producer Top", "Camera" {
}
Model: "Model::Producer Bottom", "Camera" {
}
Model: "Model::Producer Front", "Camera" {
}
Model: "Model::Producer Back", "Camera" {
}
Model: "Model::Producer Right", "Camera" {
}
Model: "Model::Producer Left", "Camera" {
}
Model: "Model::Camera Switcher", "CameraSwitcher" {
}
Material: "Material::unnamed", "" {
}
}
; Object connections
;------------------------------------------------------------------
Connections: {
Connect: "OO", "Model::Sphere_001", "Model::Scene"
Connect: "OO", "Material::unnamed", "Model::Sphere_001"
}
;Takes and animation section
;----------------------------------------------------
Takes: {
Current: "Default Take"
Take: "Default Take" {
FileName: "Default_Take.tak"
LocalTime: 0,479181389250
ReferenceTime: 0,479181389250
;Models animation
;----------------------------------------------------
Model: "Model::Sphere_001" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 1
}
Channel: "R" {
Channel: "X" {
Default: -90.000002504348856
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-90.000002504348856,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 2
}
Channel: "S" {
Channel: "X" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,0,1
}
LayerType: 3
}
}
}
}
}
;Version 5 settings
;------------------------------------------------------------------
Version5: {
AmbientRenderSettings: {
Version: 101
AmbientLightColor: 0.0,0.0,0.0,0
}
FogOptions: {
FogEnable: 0
FogMode: 0
FogDensity: 0.000
FogStart: 5.000
FogEnd: 25.000
FogColor: 0.1,0.1,0.1,1
}
Settings: {
FrameRate: "24"
TimeFormat: 1
SnapOnFrames: 0
ReferenceTimeIndex: -1
TimeLineStartTime: 0
TimeLineStopTime: 479181389250
}
RendererSetting: {
DefaultCamera: "Producer Perspective"
DefaultViewingMode: 0
}
}