gas.fbx
258 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
; 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: 2016
Month: 12
Day: 07
Hour: 11
Minute: 44
Second: 06
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2016-12-07 11:44:06:000"
Creator: "Blender version 2.78 (sub 0)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 6
ObjectType: "Model" {
Count: 4
}
ObjectType: "Geometry" {
Count: 4
}
ObjectType: "Material" {
Count: 1
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::gas_pin", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-0.961012840270996,5.898973464965820,1.452221870422363
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: 1.971451,-0.063079,0.035708,1.967272,-0.050724,0.053152,1.912564,-0.047336,0.046047,1.913190,-0.059463,0.028125,
2.627929,-0.047800,0.003650,2.642049,-0.058451,0.025995,2.410895,-0.094330,0.101282,2.399363,-0.083301,0.078147,
0.176381,0.057955,-0.024963,0.297825,0.052272,-0.013037,0.299697,0.063997,-0.037642,0.184505,0.069349,-0.048870,
0.046675,-0.035522,0.127815,0.046675,-0.076904,0.108094,0.121185,-0.063538,0.080052,0.121185,-0.022157,0.099773,
2.415531,-0.040536,0.138329,2.302793,-0.051191,0.160692,2.302793,-0.092574,0.140972,2.415531,-0.081918,0.118609,
0.187770,0.057084,-0.066507,0.187770,0.015701,-0.086228,0.120511,0.024317,-0.104305,0.120511,0.065700,-0.084585,
-0.079148,-0.001295,-0.093930,-0.089266,0.018662,-0.092433,-0.017356,0.034541,-0.125759,-0.013698,0.013157,-0.124254,
-0.089414,-0.019061,0.093277,-0.079292,0.000894,0.094774,-0.112017,0.024195,0.045881,-0.125148,0.006315,0.040029,
2.300602,-0.104780,0.123213,-0.017451,-0.034945,0.126605,-0.017451,-0.076326,0.106885,0.300449,0.051868,-0.055559,
0.300449,0.010485,-0.075280,0.250194,-0.048163,0.004412,0.254973,-0.059787,0.028804,0.184352,-0.065289,0.040349,
0.174293,-0.054085,0.016843,0.297825,-0.022797,-0.048812,0.299697,-0.011071,-0.073417,0.396311,-0.012096,-0.071271,
0.395732,-0.023835,-0.046632,2.234282,-0.106476,0.126772,2.232630,-0.094263,0.144519,2.160310,-0.087754,0.130860,
2.166142,-0.100342,0.113905,-0.111956,-0.024596,-0.045036,-0.053976,-0.009040,-0.077680,-0.079303,-0.027190,-0.039590,
0.396544,0.050852,-0.053429,0.396544,0.009471,-0.073150,2.295147,-0.093241,0.099001,2.238393,-0.094951,0.102591,
0.114587,0.003236,-0.103438,0.184505,-0.005721,-0.084646,0.176381,-0.017113,-0.060738,0.099850,-0.007310,-0.081312,
0.398547,-0.057369,0.023730,0.324373,-0.057619,0.024254,0.322876,-0.045885,-0.000365,0.399108,-0.045628,-0.000909,
1.981846,-0.051914,0.012283,2.180650,-0.089758,0.091695,0.398547,0.017701,0.059506,0.324373,0.017452,0.060029,
0.324974,-0.004109,0.061898,0.398322,-0.003864,0.061383,0.324974,-0.045492,0.042176,0.398322,-0.045247,0.041662,
-0.017356,0.075925,-0.106039,0.046403,0.076789,-0.107854,0.046403,0.035407,-0.127575,0.114314,-0.001254,0.099283,
0.044463,-0.014174,0.126389,-0.111956,0.050472,-0.009260,-0.125082,0.034672,-0.019476,-0.125148,-0.035067,0.020309,
-0.125082,-0.006711,-0.039197,1.967272,-0.009341,0.072873,1.971451,0.011993,0.071484,1.913190,0.015605,0.063900,
1.912564,-0.005953,0.065767,-0.089266,0.060043,-0.072713,0.044574,0.014005,-0.126034,0.040021,0.002659,-0.102230,
-0.004706,-0.002255,0.101381,-0.054114,0.008636,0.078531,-0.013797,-0.013557,0.125098,0.184352,0.009782,0.076124,
0.188395,-0.011565,0.077544,0.040021,0.077730,-0.066455,0.099850,0.067760,-0.045535,0.114587,0.078304,-0.067663,
0.044574,0.089073,-0.090259,0.044463,-0.089243,0.090614,0.114314,-0.076324,0.063506,-0.004596,0.001854,-0.100540,
-0.079354,0.026773,0.040471,0.038963,-0.078035,0.067098,-0.013797,-0.088627,0.089323,-0.004706,-0.077325,0.065606,
0.097218,0.008843,0.078094,0.038963,-0.002966,0.102875,0.322876,0.029185,0.035409,0.250194,0.026909,0.040187,
0.254973,0.015285,0.064578,0.399108,0.029444,0.034865,1.914746,0.027337,0.039284,2.614480,0.045437,-0.042066,
0.396311,0.062976,-0.035497,2.614424,0.057559,-0.024133,-0.079292,-0.074177,0.058999,-0.054114,-0.066434,0.042755,
0.395732,0.051233,-0.010857,2.614282,0.045814,0.000509,-0.013698,0.088226,-0.088479,-0.079148,0.073773,-0.058154,
-0.079354,-0.048297,0.004697,-0.112019,-0.050877,0.010107,-0.089414,-0.060443,0.073555,0.097216,-0.066226,0.042319,
0.188395,-0.052947,0.057824,0.174293,0.020984,0.052617,0.256894,-0.047615,0.046634,0.256894,-0.006233,0.066356,
1.914746,-0.047733,0.003508,2.160310,-0.046371,0.150581,2.238393,-0.019884,0.138365,2.180650,-0.014692,0.127471,
2.166142,-0.025274,0.149679,2.234282,-0.031408,0.162547,2.232630,-0.052883,0.164241,2.300602,-0.029710,0.158987,
2.295147,-0.018173,0.134775,2.647724,-0.045885,0.043003,2.647724,-0.004504,0.062724,-0.004596,0.076924,-0.064764,
1.981846,0.023153,0.048058,2.399363,-0.008233,0.113922,2.410895,-0.019258,0.137057,-0.079303,0.047876,-0.003815,
2.642049,0.016620,0.061769,2.627929,0.027269,0.039425,2.614480,0.004054,-0.061788,2.614424,-0.017511,-0.059908,
-0.053976,0.066028,-0.041906,2.614282,-0.029254,-0.035265
PolygonVertexIndex: 0,1,2,-4,4,5,6,-8,8,9,10,-12,12,13,14,-16,16,17,18,-20,20,21,22,-24,24,25,26,-28,28,29,30,-32,
6,19,18,-33,13,12,33,-35,20,35,36,-22,37,38,39,-41,41,42,43,-45,45,46,47,-49,49,24,50,-52,36,35,52,-54,
54,32,45,-56,56,57,58,-60,60,61,62,-64,48,0,64,-66,66,67,68,-70,69,68,70,-72,26,72,73,-75,23,22,74,-74,
61,38,37,-63,42,36,53,-44,75,76,12,-16,31,30,77,-79,79,31,78,-81,81,82,83,-85,25,85,72,-27,27,26,74,-87,
36,42,57,-22,56,59,87,-87,88,89,29,-91,91,75,15,-93,93,94,95,-97,14,13,97,-99,99,27,86,-88,29,89,100,-31,
101,97,102,-104,104,105,76,-76,106,107,108,-68,106,67,66,-110,110,109,66,-84,22,21,57,-57,111,52,112,-114,114,115,103,-103,
116,117,113,-113,72,118,96,-74,27,99,50,-25,80,78,85,-26,78,77,119,-86,49,51,120,-122,114,121,120,-116,122,28,31,-80,
34,33,28,-123,33,90,29,-29,12,76,90,-34,97,13,34,-103,98,97,101,-124,124,14,98,-40,125,104,75,-92,126,127,92,-125,
127,108,91,-93,61,70,126,-39,70,68,127,-127,128,3,60,-64,71,2,84,-70,64,0,3,-129,84,2,1,-82,1,0,48,-48,
129,81,1,-48,130,131,132,-134,134,133,132,-130,135,136,130,-134,18,17,134,-47,19,137,138,-17,5,137,19,-7,118,139,93,-97,
17,135,133,-135,140,110,83,-83,141,136,135,-143,48,65,55,-46,76,105,88,-91,57,42,41,-59,30,100,143,-78,138,144,142,-17,
144,145,141,-143,131,140,82,-133,108,107,125,-92,39,98,123,-41,43,53,146,-148,11,10,35,-21,74,22,56,-87,129,47,46,-135,
119,118,72,-86,68,67,108,-128,16,142,135,-18,3,2,71,-61,114,122,79,-122,71,70,61,-61,7,6,32,-55,32,18,46,-46,
132,82,81,-130,69,84,83,-67,38,126,124,-40,92,15,14,-125,121,79,80,-50,102,34,122,-115,49,80,25,-25,143,148,119,-78,
139,118,119,-149,94,8,11,-96,95,11,20,-24,10,112,52,-36,112,10,9,-117,44,43,147,-150,53,52,111,-147,96,95,23,-74,
87,59,94,-94,117,116,44,-150,58,8,94,-60,65,64,140,-132,101,105,104,-124,141,7,54,-137,4,7,141,-146,41,44,116,-10,
58,41,9,-9,123,104,125,-41,37,40,125,-108,120,51,143,-101,103,115,89,-89,64,128,110,-141,115,120,100,-90,55,130,136,-55,
51,50,148,-144,50,99,139,-149,55,65,131,-131,63,62,106,-110,62,37,107,-107,110,128,63,-110,101,103,88,-106,99,87,93,-140,
145,138,137,-5,144,138,-146,5,4,-138,147,146,-150,113,117,-112,149,146,111,-118
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: -0.128830,-0.991564,0.014277,-0.264669,-0.644902,0.716974,-0.070577,-0.653531,0.753602,-0.034876,-0.997925,0.054116,
-0.000031,-0.902697,-0.430276,0.180795,-0.979545,0.088349,0.139584,-0.987689,0.070621,-0.000022,-0.902703,-0.430264,
0.000004,0.902734,0.430198,-0.000000,0.902736,0.430195,0.032097,0.997536,-0.062381,0.094386,0.994791,-0.038497,
0.180815,-0.178925,0.967105,0.180815,-0.638476,0.748100,0.351630,-0.626213,0.695855,0.351631,-0.146059,0.924674,
0.268994,-0.160304,0.949708,0.132145,-0.178137,0.975092,0.132137,-0.645168,0.752527,0.268995,-0.636683,0.722687,
0.188431,0.649071,-0.737021,0.188430,0.163640,-0.968357,0.296157,0.155506,-0.942395,0.296161,0.634030,-0.714349,
-0.356550,-0.589784,-0.724588,-0.660521,0.053671,-0.748887,-0.244196,0.171049,-0.954521,-0.132765,-0.531282,-0.836728,
-0.660815,-0.053522,0.748638,-0.356745,0.589773,0.724500,-0.496334,0.710944,0.498207,-0.922670,0.152880,0.353987,
0.139584,-0.987689,0.070621,0.268995,-0.636683,0.722687,0.132137,-0.645168,0.752527,0.069519,-0.993283,0.092500,
0.180815,-0.638476,0.748100,0.180815,-0.178925,0.967105,-0.239403,-0.172253,0.955518,-0.239408,-0.633665,0.735630,
0.188431,0.649071,-0.737021,0.063522,0.652723,-0.754929,0.063525,0.175256,-0.982471,0.188430,0.163640,-0.968357,
-0.000005,-0.902718,-0.430233,0.060969,-0.996584,0.055709,0.125001,-0.991645,0.031873,-0.000012,-0.902720,-0.430228,
-0.000003,-0.902743,-0.430180,0.032099,-0.579848,-0.814092,0.007482,-0.572186,-0.820090,-0.000003,-0.902753,-0.430160,
-0.037422,-0.993243,0.109858,-0.073621,-0.646034,0.759750,-0.300045,-0.631145,0.715283,-0.155345,-0.984766,0.078129,
-0.496074,-0.710619,-0.498931,-0.356550,-0.589784,-0.724588,-0.000013,-0.902726,-0.430216,0.000006,-0.902728,-0.430211,
0.063525,0.175256,-0.982471,0.063522,0.652723,-0.754929,0.014575,0.652518,-0.757633,0.014575,0.177479,-0.984017,
-0.000010,-0.902715,-0.430240,0.069519,-0.993283,0.092500,-0.037422,-0.993243,0.109858,-0.000007,-0.902723,-0.430223,
0.152021,-0.587425,-0.794872,0.094387,-0.596659,-0.796925,-0.000000,-0.902734,-0.430199,0.000009,-0.902717,-0.430234,
0.001113,-0.997305,0.073360,0.019670,-0.997663,0.065431,-0.000005,-0.902719,-0.430231,-0.000006,-0.902733,-0.430201,
-0.155345,-0.984766,0.078129,-0.128830,-0.991564,0.014277,0.000001,-0.902726,-0.430216,0.000002,-0.902725,-0.430218,
0.001118,0.571131,0.820858,0.019679,0.577539,0.816126,0.038598,-0.176146,0.983607,0.002225,-0.177822,0.984060,
0.002225,-0.177822,0.984060,0.038598,-0.176146,0.983607,0.038597,-0.653053,0.756328,0.002225,-0.652360,0.757906,
-0.244196,0.171049,-0.954521,-0.244194,0.633653,-0.734066,0.146910,0.641395,-0.753013,0.146906,0.180886,-0.972471,
0.296161,0.634030,-0.714349,0.296157,0.155506,-0.942395,0.146906,0.180886,-0.972471,0.146910,0.641395,-0.753013,
0.019670,-0.997663,0.065431,0.060969,-0.996584,0.055709,-0.000005,-0.902718,-0.430233,-0.000005,-0.902719,-0.430231,
0.032099,-0.579848,-0.814092,0.063525,0.175256,-0.982471,0.014575,0.177479,-0.984017,0.007482,-0.572186,-0.820090,
0.180153,0.592577,0.785110,0.101031,0.527330,0.843633,0.180815,-0.178925,0.967105,0.351631,-0.146059,0.924674,
-0.922670,0.152880,0.353987,-0.496334,0.710944,0.498207,-0.496050,0.835116,0.237728,-0.922278,0.371844,-0.105518,
-0.922678,-0.371216,0.104232,-0.922670,0.152880,0.353987,-0.922278,0.371844,-0.105518,-0.922282,-0.152241,-0.355272,
-0.264669,-0.150727,0.952487,-0.128826,0.613433,0.779168,-0.034871,0.586477,0.809215,-0.070575,-0.173735,0.982260,
-0.660521,0.053671,-0.748887,-0.660517,0.547884,-0.513362,-0.244194,0.633653,-0.734066,-0.244196,0.171049,-0.954521,
-0.132765,-0.531282,-0.836728,-0.244196,0.171049,-0.954521,0.146906,0.180886,-0.972471,0.081370,-0.531119,-0.843381,
0.063525,0.175256,-0.982471,0.032099,-0.579848,-0.814092,0.094387,-0.596659,-0.796925,0.188430,0.163640,-0.968357,
0.152021,-0.587425,-0.794872,0.000009,-0.902717,-0.430234,0.000007,-0.902704,-0.430262,0.081370,-0.531119,-0.843381,
0.000010,0.902720,0.430228,0.000002,0.902730,0.430208,-0.356745,0.589773,0.724500,-0.130053,0.529557,0.838246,
0.125009,0.599825,0.790306,0.180153,0.592577,0.785110,0.351631,-0.146059,0.924674,0.250950,-0.156094,0.955332,
0.000015,0.902742,0.430182,0.000018,0.902743,0.430179,0.152028,0.987380,-0.044376,0.081380,0.989596,-0.118646,
0.351630,-0.626213,0.695855,0.180815,-0.638476,0.748100,0.101028,-0.987407,0.121740,0.180148,-0.983045,0.034206,
-0.000008,-0.902708,-0.430253,-0.132765,-0.531282,-0.836728,0.081370,-0.531119,-0.843381,0.000007,-0.902704,-0.430262,
-0.356745,0.589773,0.724500,0.000002,0.902730,0.430208,0.000011,0.902736,0.430196,-0.496334,0.710944,0.498207,
-0.000003,-0.902729,-0.430211,0.101028,-0.987407,0.121740,-0.130067,-0.984619,0.116655,0.000003,-0.902730,-0.430208,
0.000001,0.902722,0.430225,0.000008,0.902714,0.430241,0.101031,0.527330,0.843633,0.180153,0.592577,0.785110,
0.000008,0.902728,0.430212,0.000001,0.902730,0.430208,0.060970,0.584428,0.809152,0.019679,0.577539,0.816126,
0.000008,0.902728,0.430212,0.019679,0.577539,0.816126,0.001118,0.571131,0.820858,0.000004,0.902722,0.430225,
0.000002,0.902727,0.430213,0.000004,0.902722,0.430225,0.001118,0.571131,0.820858,-0.034871,0.586477,0.809215,
0.296157,0.155506,-0.942395,0.188430,0.163640,-0.968357,0.094387,-0.596659,-0.796925,0.152021,-0.587425,-0.794872,
0.005476,0.652259,-0.757977,0.014575,0.652518,-0.757633,0.007481,0.997367,-0.072132,0.002818,0.997207,-0.074628,
-0.356752,-0.934198,-0.001738,0.000019,-0.902725,-0.430218,0.000003,-0.902730,-0.430208,-0.130067,-0.984619,0.116655,
-0.000002,0.902731,0.430205,0.000001,0.902723,0.430223,0.002818,0.997207,-0.074628,0.007481,0.997367,-0.072132,
-0.244194,0.633653,-0.734066,-0.132762,0.984535,-0.114308,0.081380,0.989596,-0.118646,0.146910,0.641395,-0.753013,
-0.132765,-0.531282,-0.836728,-0.000008,-0.902708,-0.430253,-0.000013,-0.902726,-0.430216,-0.356550,-0.589784,-0.724588,
-0.922282,-0.152241,-0.355272,-0.922278,0.371844,-0.105518,-0.660517,0.547884,-0.513362,-0.660521,0.053671,-0.748887,
-0.922278,0.371844,-0.105518,-0.496050,0.835116,0.237728,-0.356532,0.934281,0.001763,-0.660517,0.547884,-0.513362,
-0.496074,-0.710619,-0.498931,0.000006,-0.902728,-0.430211,0.000026,-0.902720,-0.430228,-0.496359,-0.834743,-0.238396,
-0.356752,-0.934198,-0.001738,-0.496359,-0.834743,-0.238396,0.000026,-0.902720,-0.430228,0.000019,-0.902725,-0.430218,
-0.660823,-0.547748,0.513112,-0.660815,-0.053522,0.748638,-0.922670,0.152880,0.353987,-0.922678,-0.371216,0.104232,
-0.239408,-0.633665,0.735630,-0.239403,-0.172253,0.955518,-0.660815,-0.053522,0.748638,-0.660823,-0.547748,0.513112,
-0.239403,-0.172253,0.955518,-0.130053,0.529557,0.838246,-0.356745,0.589773,0.724500,-0.660815,-0.053522,0.748638,
0.180815,-0.178925,0.967105,0.101031,0.527330,0.843633,-0.130053,0.529557,0.838246,-0.239403,-0.172253,0.955518,
0.101028,-0.987407,0.121740,0.180815,-0.638476,0.748100,-0.239408,-0.633665,0.735630,-0.130067,-0.984619,0.116655,
0.180148,-0.983045,0.034206,0.101028,-0.987407,0.121740,-0.000003,-0.902729,-0.430211,-0.000008,-0.902722,-0.430223,
0.250945,-0.643705,0.722960,0.351630,-0.626213,0.695855,0.180148,-0.983045,0.034206,0.125001,-0.991645,0.031873,
-0.000004,0.902732,0.430203,0.000001,0.902722,0.430225,0.180153,0.592577,0.785110,0.125009,0.599825,0.790306,
0.120502,-0.651404,0.749101,0.120503,-0.171548,0.977778,0.250950,-0.156094,0.955332,0.250945,-0.643705,0.722960,
0.120503,-0.171548,0.977778,0.060970,0.584428,0.809152,0.125009,0.599825,0.790306,0.250950,-0.156094,0.955332,
0.019670,-0.997663,0.065431,0.038597,-0.653053,0.756328,0.120502,-0.651404,0.749101,0.060969,-0.996584,0.055709,
0.038597,-0.653053,0.756328,0.038598,-0.176146,0.983607,0.120503,-0.171548,0.977778,0.120502,-0.651404,0.749101,
-0.000006,-0.902735,-0.430198,-0.034876,-0.997925,0.054116,0.001113,-0.997305,0.073360,-0.000006,-0.902733,-0.430201,
0.002225,-0.652360,0.757906,-0.070577,-0.653531,0.753602,-0.070575,-0.173735,0.982260,0.002225,-0.177822,0.984060,
0.000001,-0.902726,-0.430216,-0.128830,-0.991564,0.014277,-0.034876,-0.997925,0.054116,-0.000006,-0.902735,-0.430198,
-0.070575,-0.173735,0.982260,-0.070577,-0.653531,0.753602,-0.264669,-0.644902,0.716974,-0.264669,-0.150727,0.952487,
-0.264669,-0.644902,0.716974,-0.128830,-0.991564,0.014277,-0.155345,-0.984766,0.078129,-0.300045,-0.631145,0.715283,
-0.299755,-0.157971,0.940846,-0.264669,-0.150727,0.952487,-0.264669,-0.644902,0.716974,-0.300045,-0.631145,0.715283,
-0.000002,0.902744,0.430178,0.000025,0.902746,0.430174,-0.155336,0.559582,0.814088,-0.037412,0.540278,0.840655,
-0.073616,-0.183200,0.980315,-0.037412,0.540278,0.840655,-0.155336,0.559582,0.814088,-0.299755,-0.157971,0.940846,
0.069524,0.553779,0.829756,-0.000018,0.902747,0.430171,-0.000002,0.902744,0.430178,-0.037412,0.540278,0.840655,
0.132137,-0.645168,0.752527,0.132145,-0.178137,0.975092,-0.073616,-0.183200,0.980315,-0.073621,-0.646034,0.759750,
0.268995,-0.636683,0.722687,0.327609,-0.625871,0.707784,0.327604,-0.155525,0.931927,0.268994,-0.160304,0.949708,
0.180795,-0.979545,0.088349,0.327609,-0.625871,0.707784,0.268995,-0.636683,0.722687,0.139584,-0.987689,0.070621,
-0.132762,0.984535,-0.114308,-0.000003,0.902725,0.430219,0.000015,0.902742,0.430182,0.081380,0.989596,-0.118646,
0.132145,-0.178137,0.975092,0.069524,0.553779,0.829756,-0.037412,0.540278,0.840655,-0.073616,-0.183200,0.980315,
0.000018,0.902748,0.430171,0.000002,0.902727,0.430213,-0.034871,0.586477,0.809215,-0.128826,0.613433,0.779168,
-0.000009,0.902740,0.430187,-0.000018,0.902747,0.430171,0.069524,0.553779,0.829756,0.139591,0.567222,0.811648,
-0.155345,-0.984766,0.078129,0.000002,-0.902725,-0.430218,-0.000007,-0.902723,-0.430223,-0.037422,-0.993243,0.109858,
0.101031,0.527330,0.843633,0.000008,0.902714,0.430241,0.000010,0.902720,0.430228,-0.130053,0.529557,0.838246,
0.094387,-0.596659,-0.796925,0.032099,-0.579848,-0.814092,-0.000003,-0.902743,-0.430180,-0.000000,-0.902734,-0.430199,
-0.496334,0.710944,0.498207,0.000011,0.902736,0.430196,0.000037,0.902731,0.430206,-0.496050,0.835116,0.237728,
0.327604,-0.155525,0.931927,0.180797,0.548328,0.816486,0.139591,0.567222,0.811648,0.268994,-0.160304,0.949708,
0.180797,0.548328,0.816486,-0.000002,0.902733,0.430201,-0.000009,0.902740,0.430187,0.139591,0.567222,0.811648,
0.000025,0.902746,0.430174,0.000018,0.902748,0.430171,-0.128826,0.613433,0.779168,-0.155336,0.559582,0.814088,
0.060970,0.584428,0.809152,0.000001,0.902730,0.430208,-0.000004,0.902732,0.430203,0.125009,0.599825,0.790306,
0.125001,-0.991645,0.031873,0.180148,-0.983045,0.034206,-0.000008,-0.902722,-0.430223,-0.000012,-0.902720,-0.430228,
0.007482,-0.572186,-0.820090,0.014575,0.177479,-0.984017,0.005476,0.177903,-0.984033,0.002816,-0.570149,-0.821536,
0.094386,0.994791,-0.038497,0.032097,0.997536,-0.062381,0.063522,0.652723,-0.754929,0.188431,0.649071,-0.737021,
0.146906,0.180886,-0.972471,0.296157,0.155506,-0.942395,0.152021,-0.587425,-0.794872,0.081370,-0.531119,-0.843381,
-0.299755,-0.157971,0.940846,-0.300045,-0.631145,0.715283,-0.073621,-0.646034,0.759750,-0.073616,-0.183200,0.980315,
-0.356532,0.934281,0.001763,-0.132762,0.984535,-0.114308,-0.244194,0.633653,-0.734066,-0.660517,0.547884,-0.513362,
0.038598,-0.176146,0.983607,0.019679,0.577539,0.816126,0.060970,0.584428,0.809152,0.120503,-0.171548,0.977778,
0.268994,-0.160304,0.949708,0.139591,0.567222,0.811648,0.069524,0.553779,0.829756,0.132145,-0.178137,0.975092,
-0.034876,-0.997925,0.054116,-0.070577,-0.653531,0.753602,0.002225,-0.652360,0.757906,0.001113,-0.997305,0.073360,
-0.356752,-0.934198,-0.001738,-0.660823,-0.547748,0.513112,-0.922678,-0.371216,0.104232,-0.496359,-0.834743,-0.238396,
0.002225,-0.652360,0.757906,0.038597,-0.653053,0.756328,0.019670,-0.997663,0.065431,0.001113,-0.997305,0.073360,
-0.000022,-0.902703,-0.430264,0.139584,-0.987689,0.070621,0.069519,-0.993283,0.092500,-0.000010,-0.902715,-0.430240,
0.069519,-0.993283,0.092500,0.132137,-0.645168,0.752527,-0.073621,-0.646034,0.759750,-0.037422,-0.993243,0.109858,
-0.155336,0.559582,0.814088,-0.128826,0.613433,0.779168,-0.264669,-0.150727,0.952487,-0.299755,-0.157971,0.940846,
0.002225,-0.177822,0.984060,-0.070575,-0.173735,0.982260,-0.034871,0.586477,0.809215,0.001118,0.571131,0.820858,
0.060969,-0.996584,0.055709,0.120502,-0.651404,0.749101,0.250945,-0.643705,0.722960,0.125001,-0.991645,0.031873,
0.250950,-0.156094,0.955332,0.351631,-0.146059,0.924674,0.351630,-0.626213,0.695855,0.250945,-0.643705,0.722960,
-0.496359,-0.834743,-0.238396,-0.922678,-0.371216,0.104232,-0.922282,-0.152241,-0.355272,-0.496074,-0.710619,-0.498931,
-0.130067,-0.984619,0.116655,-0.239408,-0.633665,0.735630,-0.660823,-0.547748,0.513112,-0.356752,-0.934198,-0.001738,
-0.496074,-0.710619,-0.498931,-0.922282,-0.152241,-0.355272,-0.660521,0.053671,-0.748887,-0.356550,-0.589784,-0.724588,
0.000037,0.902731,0.430206,0.000014,0.902718,0.430233,-0.356532,0.934281,0.001763,-0.496050,0.835116,0.237728,
-0.000003,0.902725,0.430219,-0.132762,0.984535,-0.114308,-0.356532,0.934281,0.001763,0.000014,0.902718,0.430233,
0.000018,0.902743,0.430179,0.000004,0.902734,0.430198,0.094386,0.994791,-0.038497,0.152028,0.987380,-0.044376,
0.152028,0.987380,-0.044376,0.094386,0.994791,-0.038497,0.188431,0.649071,-0.737021,0.296161,0.634030,-0.714349,
0.032097,0.997536,-0.062381,0.007481,0.997367,-0.072132,0.014575,0.652518,-0.757633,0.063522,0.652723,-0.754929,
0.007481,0.997367,-0.072132,0.032097,0.997536,-0.062381,-0.000000,0.902736,0.430195,-0.000002,0.902731,0.430205,
-0.000003,-0.902753,-0.430160,0.007482,-0.572186,-0.820090,0.002816,-0.570149,-0.821536,-0.000001,-0.902756,-0.430153,
0.014575,0.177479,-0.984017,0.014575,0.652518,-0.757633,0.005476,0.652259,-0.757977,0.005476,0.177903,-0.984033,
0.081380,0.989596,-0.118646,0.152028,0.987380,-0.044376,0.296161,0.634030,-0.714349,0.146910,0.641395,-0.753013,
-0.163062,-0.424449,0.890648,-0.323543,-0.407072,0.854173,-0.323543,-0.407072,0.854173,-0.163062,-0.424449,0.890648,
-0.005676,-0.430199,0.902716,-0.015165,-0.430156,0.902627,-0.015165,-0.430156,0.902627,-0.005676,-0.430199,0.902716,
-0.197579,-0.421731,0.884933,-0.197579,-0.421731,0.884933,-0.323543,-0.407072,0.854173,-0.323543,-0.407072,0.854173,
0.306315,0.409543,-0.859328,0.276576,0.413437,-0.867511,0.276575,0.413437,-0.867511,0.306315,0.409544,-0.859328,
-0.199890,0.421531,-0.884509,-0.199891,0.421531,-0.884509,-0.385424,0.396971,-0.832984,-0.385425,0.396971,-0.832983,
-0.278577,0.413177,-0.866995,-0.278577,0.413177,-0.866995,-0.143550,0.425754,-0.893380,-0.143550,0.425754,-0.893380,
-0.339593,0.404640,-0.849084,-0.278577,0.413177,-0.866995,-0.278577,0.413177,-0.866995,-0.339593,0.404640,-0.849084,
-0.066459,-0.429255,0.900735,-0.015165,-0.430156,0.902627,-0.015165,-0.430156,0.902627,-0.066459,-0.429255,0.900735,
-0.197579,-0.421731,0.884933,-0.066459,-0.429255,0.900735,-0.066459,-0.429255,0.900735,-0.197579,-0.421731,0.884933,
-0.385425,0.396971,-0.832983,-0.385424,0.396971,-0.832984,-0.262129,0.415158,-0.871167,-0.262129,0.415158,-0.871167,
-0.125743,0.426783,-0.895570,-0.262129,0.415158,-0.871167,-0.262129,0.415158,-0.871167,-0.125742,0.426783,-0.895570,
0.963981,0.114422,-0.240099,0.963552,-0.115091,0.241499,0.963554,-0.115088,0.241492,0.963982,0.114422,-0.240098,
0.252878,0.416228,-0.873388,0.683395,0.314074,-0.659036,0.683393,0.314075,-0.659038,0.252879,0.416228,-0.873388,
0.276576,0.413437,-0.867511,0.073482,0.429047,-0.900288,0.073482,0.429047,-0.900288,0.276575,0.413437,-0.867511,
0.683395,0.314074,-0.659036,0.963981,0.114422,-0.240099,0.963982,0.114422,-0.240098,0.683393,0.314075,-0.659038,
0.067993,0.429222,-0.900636,0.067993,0.429222,-0.900636,-0.143550,0.425754,-0.893380,-0.143550,0.425754,-0.893380,
0.963552,-0.115091,0.241499,0.683109,-0.314191,0.659277,0.683109,-0.314191,0.659277,0.963554,-0.115088,0.241492,
0.683109,-0.314191,0.659277,0.255038,-0.415982,0.872877,0.255036,-0.415983,0.872877,0.683109,-0.314191,0.659277,
0.067993,0.429222,-0.900636,0.306315,0.409543,-0.859328,0.306315,0.409544,-0.859328,0.067993,0.429222,-0.900636,
-0.002010,0.430125,-0.902767,-0.040283,0.429846,-0.902003,-0.040283,0.429846,-0.902003,-0.002010,0.430125,-0.902767,
-0.040283,0.429846,-0.902003,-0.125743,0.426783,-0.895570,-0.125742,0.426783,-0.895570,-0.040283,0.429846,-0.902003,
0.073482,0.429047,-0.900288,0.073482,0.429047,-0.900288,-0.002010,0.430125,-0.902767,-0.002010,0.430125,-0.902767,
-0.199890,0.421531,-0.884509,0.252878,0.416228,-0.873388,0.252879,0.416228,-0.873388,-0.199891,0.421531,-0.884509,
0.255038,-0.415982,0.872877,-0.163062,-0.424449,0.890648,-0.163062,-0.424449,0.890648,0.255036,-0.415983,0.872877,
0.868611,0.213176,-0.447293,0.868611,0.213174,-0.447294,0.868614,0.213144,-0.447301,0.868615,0.213139,-0.447302,
0.868613,0.213198,-0.447279,0.868611,0.213174,-0.447294,0.868611,0.213176,-0.447293,0.868629,0.213067,-0.447311,
0.868615,0.213139,-0.447302,0.868614,0.213144,-0.447301,0.999987,-0.002165,0.004704,0.999987,-0.002211,0.004671,
0.999987,-0.002207,0.004674,0.999987,-0.002282,0.004662,0.999987,-0.002241,0.004662,0.999987,-0.002237,0.004662,
0.999987,-0.002207,0.004674,0.999987,-0.002211,0.004671,0.999987,-0.002237,0.004662,0.999987,-0.002241,0.004662
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.868600,0.240700,0.459800,0.967800,0.830399,0.245700,0.596099,0.852800,0.384700,0.552399,0.006899,0.577600,
0.006899,0.575999,0.847999,0.245700,0.856700,0.699599,0.884400,0.240700,0.596099,0.854499,0.580999,0.861299,
0.381099,0.552399,0.846000,0.296299,0.851800,0.296299,0.846000,0.301899,0.426600,0.552399,0.851800,0.301899,
0.805999,0.293399,0.463299,0.972800,0.607500,0.852800,0.794300,0.902599,0.456400,0.967800,0.604099,0.859700,
0.856700,0.700900,0.853900,0.245700,0.862699,0.240700,0.850600,0.245700,0.846000,0.294999,0.616400,0.852800,
0.596099,0.859700,0.596099,0.858399,0.397500,0.545499,0.381099,0.545499,0.381099,0.546700,0.384700,0.545499,
0.426600,0.545499,0.384700,0.546700,0.426600,0.543900,0.412000,0.545499,0.412000,0.543900,0.572300,0.861299,
0.902499,0.695599,0.412000,0.550800,0.435699,0.972800,0.877099,0.240700,0.865899,0.240700,0.512000,0.580900,
0.844200,0.240700,0.421999,0.585799,0.405299,0.549399,0.576699,0.855799,0.576699,0.858399,0.588599,0.854499,
0.584399,0.855799,0.599900,0.858399,0.599900,0.859700,0.572300,0.852800,0.902499,0.696900,0.616400,0.859700,
0.788500,0.897700,0.480300,0.967800,0.624899,0.861299,0.042800,0.935100,0.794300,0.897700,0.435699,0.967800,
0.616400,0.861299,0.834699,0.240700,0.565299,0.859700,0.620800,0.855799,0.851800,0.300300,0.856700,0.702499,
0.856800,0.245700,0.580999,0.852800,0.381099,0.543900,0.584399,0.859700,0.620800,0.858399,0.604099,0.854499,
0.788500,0.902599,0.450100,0.967800,0.397500,0.549499,0.397500,0.550800,0.401499,0.550800,0.426600,0.549399,
0.476200,0.972800,0.459800,0.972800,0.620800,0.861299,0.405299,0.550800,0.596099,0.861299,0.040100,0.935100,
0.902499,0.694000,0.851800,0.298999,0.616400,0.858399,0.003100,0.578299,0.450100,0.972800,0.896700,0.700900,
0.576699,0.852800,0.902499,0.702499,0.611899,0.859700,0.902499,0.700900,0.588599,0.852800,0.846000,0.293399,
0.401499,0.545499,0.401499,0.546700,0.397500,0.546700,0.620800,0.852800,0.620800,0.854499,0.616400,0.854499,
0.588599,0.855799,0.584399,0.854499,0.384700,0.550800,0.588599,0.858399,0.604099,0.861299,0.584399,0.852800,
0.607500,0.861299,0.512000,0.585799,0.005799,0.578299,0.624899,0.859700,0.588599,0.861299,0.925999,0.902599,
0.611899,0.855799,0.611899,0.858399,0.412000,0.549399,0.412000,0.546700,0.572300,0.858399,0.572300,0.855799,
0.405299,0.546700,0.896700,0.702499,0.896700,0.699599,0.384700,0.549600,0.607500,0.854499,0.805999,0.300300,
0.872399,0.240700,0.480300,0.972800,0.576699,0.859700,0.624899,0.855799,0.805999,0.301899,0.401499,0.549399,
0.426600,0.550800,0.405299,0.552399,0.805999,0.296299,0.463299,0.967800,0.844200,0.245700,0.456400,0.972800,
0.853900,0.240700,0.862699,0.245700,0.872399,0.245700,0.884400,0.245700,0.599900,0.855799,0.043900,0.932699,
0.039000,0.932799,0.043900,0.934400,0.039000,0.934400,0.850600,0.240700,0.805999,0.298999,0.856700,0.694000,
0.516600,0.580900,0.604099,0.855799,0.565299,0.858399,0.856700,0.695599,0.611899,0.861299,0.846000,0.300300,
0.580999,0.859700,0.604099,0.858399,0.565299,0.855799,0.620800,0.859700,0.592400,0.852800,0.405299,0.543900,
0.580999,0.855799,0.596099,0.855799,0.592400,0.854499,0.381099,0.550800,0.381099,0.549499,0.565299,0.854499,
0.599900,0.861299,0.576699,0.861299,0.565299,0.852800,0.580999,0.854499,0.805999,0.294999,0.830399,0.240700,
0.847999,0.240700,0.604099,0.852800,0.925999,0.897700,0.896600,0.694000,0.588599,0.859700,0.412000,0.552399,
0.868600,0.245700,0.421999,0.580900,0.856800,0.240700,0.599900,0.852800,0.516600,0.585799,0.839299,0.240700,
0.859700,0.240700,0.834699,0.245700,0.401499,0.552399,0.397500,0.552399,0.426600,0.546700,0.592400,0.861299,
0.476200,0.967800,0.592400,0.858399,0.896700,0.696900,0.584399,0.858399,0.572300,0.854499,0.902499,0.699599,
0.592400,0.855799,0.607500,0.859700,0.572300,0.859700,0.607500,0.858399,0.607500,0.855799,0.624899,0.852800,
0.611899,0.854499,0.599900,0.854499,0.565299,0.861299,0.846000,0.298999,0.401499,0.543900,0.384700,0.543900,
0.397500,0.543900,0.576699,0.854499,0.896700,0.695599,0.580999,0.858399,0.851800,0.293399,0.851800,0.294999,
0.839299,0.245700,0.859700,0.245700,0.002000,0.577700,0.624899,0.858399,0.877099,0.245700,0.865899,0.245700,
0.624899,0.854499,0.611899,0.852800,0.616400,0.855799,0.856700,0.696900,0.001900,0.575999,0.584399,0.861299,
0.592400,0.859700,0.405299,0.545499
UVIndex: 35,37,34,33,38,36,39,40,41,212,68,206,207,208,120,121,122,50,126,123,124,125,51,52,53,108,54,109,55,56,30,31,39,123,126,235,208,207,163,157,124,158,164,125,105,106,107,29,220,221,28,101,102,103,104,32,170,53,100,166,14,91,213,13,
167,235,102,214,217,202,57,96,95,99,97,127,32,35,215,216,218,42,58,200,200,58,203,128,54,201,219,168,52,51,168,219,228,106,105,209,221,14,13,28,98,205,207,121,31,30,234,199,169,31,199,204,129,110,171,172,108,111,201,54,109,54,168,177,
164,173,202,125,217,96,73,177,112,174,56,23,59,98,121,92,11,175,134,162,120,208,130,210,113,109,177,73,56,174,88,30,20,130,77,181,160,114,205,98,62,86,165,117,90,42,218,183,155,183,218,159,51,125,202,217,154,213,161,131,211,189,181,77,
15,136,131,161,201,75,162,219,109,113,100,53,204,199,111,108,199,234,184,111,170,166,3,10,211,10,3,189,148,55,31,169,157,163,55,148,163,23,56,55,207,205,23,163,130,208,157,77,210,130,20,229,230,120,210,107,66,160,98,59,69,76,92,230,
76,165,59,92,228,135,69,106,135,225,76,69,71,24,95,127,128,8,231,200,215,35,33,74,172,34,37,129,37,35,32,104,80,129,37,104,194,195,81,82,137,82,81,80,87,139,194,82,126,50,137,103,123,196,83,122,36,196,123,39,75,233,11,162,
50,87,82,137,4,12,171,110,185,139,87,43,32,216,214,102,205,114,112,23,202,173,176,57,30,88,197,234,83,138,43,122,138,16,185,43,195,4,110,81,165,86,66,59,107,210,229,29,28,13,140,178,206,68,158,124,168,51,217,177,80,104,103,137,
184,75,201,111,225,117,165,76,122,43,87,50,24,8,128,95,211,148,169,10,128,203,99,95,40,39,235,167,235,126,103,102,81,110,129,80,200,231,159,218,106,69,230,107,92,121,120,230,10,169,204,170,77,157,148,211,170,204,108,53,197,118,184,234,
233,75,184,118,175,41,206,134,134,206,124,52,70,161,213,91,161,70,17,15,101,28,178,18,13,213,154,140,162,134,52,219,0,132,146,186,119,21,64,182,45,226,146,132,141,198,84,19,180,7,142,48,94,79,22,143,65,79,94,44,60,64,21,78,
45,9,147,226,48,142,222,191,67,191,222,193,188,192,223,72,153,144,25,27,198,61,133,84,144,188,72,25,1,85,143,22,192,26,145,223,26,46,227,145,1,141,19,85,47,156,190,115,179,67,193,2,49,187,47,115,180,153,27,7,46,0,186,227,
149,63,89,150,151,63,149,152,150,89,5,116,6,224,232,93,6,116,93,232
}
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: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::gas_ring", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-0.961012899875641,5.898973941802979,1.452221632003784
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: -1.321158,0.377665,-3.445201,-1.379483,0.358868,-3.447401,-1.535199,0.992573,-3.289032,-1.474906,1.003731,-3.288878,
-1.588234,1.559059,-2.932393,-1.527223,1.563423,-2.936684,-1.531046,1.990417,-2.420955,-1.470656,1.989650,-2.431544,
-1.369388,2.235035,-1.816852,-1.310880,2.231416,-1.834840,-1.280185,0.386738,-3.400492,-1.429178,0.994365,-3.249115,
-1.479761,1.537652,-2.907643,-1.424691,1.951491,-2.417716,-1.269465,2.186379,-1.838874,-1.280565,0.380775,-3.339465,
-1.424803,0.969961,-3.193033,-1.473655,1.496847,-2.862284,-1.420082,1.898296,-2.387567,-1.269402,2.126305,-1.826590,
-1.322076,0.363266,-3.297870,-1.464345,0.944816,-3.153485,-1.512479,1.464905,-2.827178,-1.459525,1.861223,-2.358761,
-1.310730,2.086384,-1.805184,-1.380401,0.344471,-3.300070,-1.524638,0.933658,-3.153638,-1.573490,1.460543,-2.822889,
-1.519917,1.861992,-2.348172,-1.369238,2.090002,-1.787195,-1.193089,-0.263695,-3.287351,-1.159318,-0.236369,-3.244076,
-1.421374,0.335397,-3.344779,-1.570366,0.943024,-3.193401,-1.620950,1.486312,-2.851930,-1.565880,1.900150,-2.362001,
-1.410653,2.135038,-1.783161,-1.420992,0.341361,-3.405805,-1.574740,0.967427,-3.249483,-1.627058,1.527119,-2.897287,
-1.570490,1.953346,-2.392149,-1.410716,2.195114,-1.795445,-1.085670,-0.239682,-3.386340,-0.866785,-0.660113,-3.199162,
-0.919375,-0.691640,-3.198558,-1.141011,-0.266038,-3.387946,-0.633112,-1.001918,-2.902053,-0.682758,-1.037664,-2.897879,
-0.401720,-1.240920,-2.515991,-0.448442,-1.279633,-2.507144,-0.189516,-1.360264,-2.068290,-0.233543,-1.400478,-2.053995,
-0.012044,-1.351610,-1.590653,-0.053794,-1.391755,-1.570524,0.117628,-1.215733,-1.116914,0.077572,-1.254244,-1.090982,
0.189834,-0.962463,-0.680626,0.150772,-0.997891,-0.649334,0.198999,-0.609990,-0.312671,0.160157,-0.641105,-0.276852,
0.144036,-0.183566,-0.039087,0.104626,-0.209442,0.000119,0.028423,0.286297,0.120828,-0.012305,0.266206,0.162031,
-0.140044,0.765984,0.155861,-0.182741,0.751818,0.197528,-0.349803,1.221190,0.063688,-0.394986,1.212666,0.104256,
-0.586358,1.619352,-0.148958,-0.634363,1.615781,-0.110975,-0.833302,1.931961,-0.466766,-0.884265,1.932308,-0.432671,
-1.073489,2.136607,-0.866941,-1.127335,2.139556,-0.837756,-1.290254,2.218562,-1.320818,-1.346704,2.222608,-1.297220,
-1.468597,2.171832,-1.795916,-1.527187,2.175397,-1.778183,-1.596259,1.999589,-2.258241,-1.656371,2.001125,-2.246231,
-1.664585,1.713935,-2.674703,-1.725492,1.712042,-2.667872,-1.669145,1.335048,-3.015486,-1.730066,1.328567,-3.012916,
-1.610047,0.889748,-3.256156,-1.670198,0.877848,-3.256627,-1.491936,0.409572,-3.379407,-1.550588,0.391812,-3.381484,
-1.323652,-0.071447,-3.376293,-1.380185,-0.095099,-3.378427,-1.117612,-0.519225,-3.246865,-1.171554,-0.548376,-3.247501,
-0.888919,-0.902039,-3.000166,-0.939982,-0.935906,-2.997855,-0.654287,-1.192796,-2.653588,-0.702392,-1.230261,-2.647094,
-0.430856,-1.370953,-2.231632,-0.476131,-1.410640,-2.220013,-0.234967,-1.423984,-1.764168,-0.277743,-1.464361,-1.746851,
-0.080999,-1.348275,-1.284302,-0.121785,-1.387759,-1.261116,0.019650,-1.149371,-0.826032,-0.019794,-1.186442,-0.797223,
-0.839660,-0.620303,-3.161223,-0.613092,-0.951923,-2.872733,-0.388757,-1.183766,-2.497958,-0.183063,-1.299483,-2.063408,
-0.011087,-1.290993,-1.599852,0.114494,-1.159062,-1.140117,0.184303,-0.913235,-0.716763,0.192937,-0.571178,-0.359753,
0.139346,-0.157394,-0.094341,0.026910,0.298496,0.060756,-0.136798,0.763883,0.094665,-0.340557,1.205471,0.005144,
-0.570301,1.591667,-0.201262,-0.810104,1.894820,-0.509688,-1.043328,2.093188,-0.898005,-1.253805,2.172491,-1.338395,
-1.426986,2.126925,-1.799334,-1.550976,1.959578,-2.247837,-1.617379,1.682203,-2.651801,-1.621906,1.314390,-2.982296,
-1.564667,0.882168,-3.215621,-1.450171,0.416150,-3.334994,-1.287006,-0.050648,-3.331747,-1.087222,-0.485149,-3.205937,
-0.865475,-0.856578,-2.966350,-0.637988,-1.138650,-2.629870,-0.421388,-1.311442,-2.220284,-0.231533,-1.362812,-1.766578,
-0.082372,-1.289256,-1.300880,0.015040,-1.096176,-0.856179,-0.853889,-0.595531,-3.106968,-0.634424,-0.916967,-2.827096,
-0.417146,-1.141648,-2.463607,-0.217962,-1.253738,-2.042209,-0.051480,-1.245415,-1.592732,0.070006,-1.117428,-1.147003,
0.137420,-0.879048,-0.736584,0.145521,-0.547405,-0.390518,0.093303,-0.146260,-0.133275,-0.015954,0.295663,0.017002,
-0.174903,0.746741,0.049788,-0.372666,1.174712,-0.037081,-0.595597,1.548947,-0.237247,-0.828258,1.842642,-0.536291,
-1.054520,2.034731,-0.912750,-1.258712,2.111382,-1.339652,-1.426728,2.066980,-1.786434,-1.547044,1.904528,-2.221117,
-1.611526,1.635434,-2.612581,-1.616019,1.278695,-2.932788,-1.560638,0.859553,-3.158769,-1.449761,0.407689,-3.274265,
-1.291713,-0.044887,-3.270882,-1.098184,-0.466111,-3.148689,-0.883384,-0.826156,-2.916213,-0.663041,-1.099542,-2.589836,
-0.453273,-1.266969,-2.192619,-0.269454,-1.316674,-1.752671,-0.125099,-1.245276,-1.301142,-0.030923,-1.058016,-0.870006,
-1.103977,-0.210013,-3.242469,-0.901136,-0.600307,-3.068175,-1.059483,-0.200065,-3.283472,-0.684614,-0.917524,-2.791872,
-0.470260,-1.139241,-2.433059,-0.273770,-1.249828,-2.017109,-0.109567,-1.241573,-1.573464,0.010227,-1.115219,-1.133536,
0.076645,-0.879923,-0.728473,0.084527,-0.552590,-0.386941,0.032877,-0.156684,-0.133085,-0.075062,0.279451,0.015197,
-0.232042,0.724607,0.047518,-0.427319,1.146937,-0.038253,-0.647427,1.516215,-0.235835,-0.877130,1.805991,-0.530991,
-1.100510,1.995480,-0.902541,-1.302097,2.071033,-1.323855,-1.467974,2.027113,-1.764773,-1.586767,1.866689,-2.193730,
-1.650455,1.601024,-2.580016,-1.654935,1.248872,-2.895963,-1.600324,0.835149,-3.118901,-1.490944,0.389146,-3.232791,
-1.335017,-0.057538,-3.229353,-1.144079,-0.473264,-3.108657,-0.932155,-0.828590,-2.879129,-0.714771,-1.098381,-2.556934,
-0.507835,-1.263586,-2.164841,-0.326513,-1.312601,-1.730593,-0.184150,-1.242096,-1.284933,-0.091315,-1.057247,-0.859414,
-0.953724,-0.631833,-3.067571,-0.734260,-0.953270,-2.787698,-0.516983,-1.177952,-2.424210,-0.317796,-1.290042,-2.002814,
-0.151317,-1.281719,-1.553338,-0.029829,-1.153731,-1.107606,0.037583,-0.915350,-0.697187,0.045685,-0.583709,-0.351122,
-0.006534,-0.182562,-0.093880,-0.115789,0.259359,0.056397,-0.274740,0.710441,0.089183,-0.472502,1.138411,0.002315,
-0.695432,1.512644,-0.197852,-0.928093,1.806338,-0.496896,-1.154357,1.998428,-0.873355,-1.358547,2.075079,-1.300257,
-1.526563,2.030676,-1.747038,-1.646879,1.868224,-2.181720,-1.711361,1.599130,-2.573185,-1.715854,1.242391,-2.893392,
-1.660474,0.823249,-3.119372,-1.549596,0.371385,-3.234869,-1.391550,-0.081191,-3.231486,-1.198021,-0.502415,-3.109292,
-0.983221,-0.862458,-2.876818,-0.762876,-1.135847,-2.550440,-0.553110,-1.303273,-2.153224,-0.369289,-1.352978,-1.713276,
-0.224934,-1.281579,-1.261747,-0.130758,-1.094320,-0.830610,-0.980849,-0.671644,-3.105510,-0.754280,-1.003263,-2.817018,
-0.529946,-1.235106,-2.442243,-0.324252,-1.350824,-2.007695,-0.152275,-1.342334,-1.544137,-0.026695,-1.210403,-1.084403,
0.043114,-0.964578,-0.661046,0.051749,-0.622517,-0.304040,-0.001843,-0.208736,-0.038626,-0.114278,0.247157,0.116471,
-0.277986,0.712542,0.150380,-0.481748,1.154130,0.060859,-0.711489,1.540327,-0.145549,-0.951293,1.843479,-0.453973,
-1.184517,2.041847,-0.842290,-1.394994,2.121150,-1.282680,-1.568175,2.075584,-1.743621,-1.692164,1.908237,-2.192124,
-1.758567,1.630862,-2.596088,-1.763095,1.263049,-2.926583,-1.705855,0.830827,-3.159907,-1.591359,0.364809,-3.279281,
-1.428194,-0.101990,-3.276033,-1.228410,-0.536490,-3.150222,-1.006664,-0.907918,-2.910635,-0.779177,-1.189991,-2.574159,
-0.562576,-1.362783,-2.164572,-0.372722,-1.414150,-1.710863,-0.223561,-1.340597,-1.245167,-0.126149,-1.147515,-0.800464,
-0.966620,-0.696416,-3.159766,-0.732947,-1.038221,-2.862656,-0.501555,-1.277224,-2.476597,-0.289353,-1.396568,-2.028894,
-0.111879,-1.387914,-1.551259,0.017793,-1.252037,-1.077519,0.089999,-0.998765,-0.641225,0.099163,-0.646292,-0.273276,
0.044200,-0.219868,0.000310,-0.071412,0.249991,0.160226,-0.239879,0.729680,0.195257,-0.449639,1.184886,0.103083,
-0.686195,1.583048,-0.109563,-0.933137,1.895659,-0.427371,-1.173325,2.100303,-0.827544,-1.390089,2.182258,-1.281423,
-1.568434,2.135530,-1.756521,-1.696096,1.963287,-2.218844,-1.764421,1.677631,-2.635308,-1.768980,1.298746,-2.976091,
-1.709882,0.853444,-3.216759,-1.591771,0.373270,-3.340012,-1.423488,-0.107751,-3.336898,-1.217449,-0.555528,-3.207470,
-0.988753,-0.938343,-2.960771,-0.754122,-1.229099,-2.614192,-0.530691,-1.407256,-2.192235,-0.334803,-1.460288,-1.724772,
-0.180836,-1.384577,-1.244905,-0.080186,-1.185673,-0.786631,-1.185506,-0.275984,-3.346945,-1.051900,-0.212355,-3.343064
PolygonVertexIndex: 0,1,2,-4,3,2,4,-6,5,4,6,-8,7,6,8,-10,10,0,3,-12,11,3,5,-13,12,5,7,-14,13,7,9,-15,
15,10,11,-17,16,11,12,-18,17,12,13,-19,18,13,14,-20,20,15,16,-22,21,16,17,-23,22,17,18,-24,23,18,19,-25,
25,20,21,-27,26,21,22,-28,27,22,23,-29,28,23,24,-30,30,31,25,-33,32,25,26,-34,33,26,27,-35,34,27,28,-36,
35,28,29,-37,37,32,33,-39,38,33,34,-40,39,34,35,-41,40,35,36,-42,1,37,38,-3,2,38,39,-5,4,39,40,-7,
6,40,41,-9,42,43,44,-46,43,46,47,-45,46,48,49,-48,48,50,51,-50,50,52,53,-52,52,54,55,-54,54,56,57,-56,
56,58,59,-58,58,60,61,-60,60,62,63,-62,62,64,65,-64,64,66,67,-66,66,68,69,-68,68,70,71,-70,70,72,73,-72,
72,74,75,-74,74,76,77,-76,76,78,79,-78,78,80,81,-80,80,82,83,-82,82,84,85,-84,84,86,87,-86,86,88,89,-88,
88,90,91,-90,90,92,93,-92,92,94,95,-94,94,96,97,-96,96,98,99,-98,98,100,101,-100,100,102,103,-102,104,105,46,-44,
105,106,48,-47,106,107,50,-49,107,108,52,-51,108,109,54,-53,109,110,56,-55,110,111,58,-57,111,112,60,-59,112,113,62,-61,
113,114,64,-63,114,115,66,-65,115,116,68,-67,116,117,70,-69,117,118,72,-71,118,119,74,-73,119,120,76,-75,120,121,78,-77,
121,122,80,-79,122,123,82,-81,123,124,84,-83,124,125,86,-85,125,126,88,-87,126,127,90,-89,127,128,92,-91,128,129,94,-93,
129,130,96,-95,130,131,98,-97,131,132,100,-99,132,133,102,-101,134,135,105,-105,135,136,106,-106,136,137,107,-107,137,138,108,-108,
138,139,109,-109,139,140,110,-110,140,141,111,-111,141,142,112,-112,142,143,113,-113,143,144,114,-114,144,145,115,-115,145,146,116,-116,
146,147,117,-117,147,148,118,-118,148,149,119,-119,149,150,120,-120,150,151,121,-121,151,152,122,-122,152,153,123,-123,153,154,124,-124,
154,155,125,-125,155,156,126,-126,156,157,127,-127,157,158,128,-128,158,159,129,-129,159,160,130,-130,160,161,131,-131,161,162,132,-132,
162,163,133,-133,164,165,134,-167,165,167,135,-135,167,168,136,-136,168,169,137,-137,169,170,138,-138,170,171,139,-139,171,172,140,-140,
172,173,141,-141,173,174,142,-142,174,175,143,-143,175,176,144,-144,176,177,145,-145,177,178,146,-146,178,179,147,-147,179,180,148,-148,
180,181,149,-149,181,182,150,-150,182,183,151,-151,183,184,152,-152,184,185,153,-153,185,186,154,-154,186,187,155,-155,187,188,156,-156,
188,189,157,-157,189,190,158,-158,190,191,159,-159,191,192,160,-160,192,193,161,-161,193,194,162,-162,194,195,163,-163,196,197,167,-166,
197,198,168,-168,198,199,169,-169,199,200,170,-170,200,201,171,-171,201,202,172,-172,202,203,173,-173,203,204,174,-174,204,205,175,-175,
205,206,176,-176,206,207,177,-177,207,208,178,-178,208,209,179,-179,209,210,180,-180,210,211,181,-181,211,212,182,-182,212,213,183,-183,
213,214,184,-184,214,215,185,-185,215,216,186,-186,216,217,187,-187,217,218,188,-188,218,219,189,-189,219,220,190,-190,220,221,191,-191,
221,222,192,-192,222,223,193,-193,223,224,194,-194,224,225,195,-195,226,227,197,-197,227,228,198,-198,228,229,199,-199,229,230,200,-200,
230,231,201,-201,231,232,202,-202,232,233,203,-203,233,234,204,-204,234,235,205,-205,235,236,206,-206,236,237,207,-207,237,238,208,-208,
238,239,209,-209,239,240,210,-210,240,241,211,-211,241,242,212,-212,242,243,213,-213,243,244,214,-214,244,245,215,-215,245,246,216,-216,
246,247,217,-217,247,248,218,-218,248,249,219,-219,249,250,220,-220,250,251,221,-221,251,252,222,-222,252,253,223,-223,253,254,224,-224,
254,255,225,-225,256,257,227,-227,257,258,228,-228,258,259,229,-229,259,260,230,-230,260,261,231,-231,261,262,232,-232,262,263,233,-233,
263,264,234,-234,264,265,235,-235,265,266,236,-236,266,267,237,-237,267,268,238,-238,268,269,239,-239,269,270,240,-240,270,271,241,-241,
271,272,242,-242,272,273,243,-243,273,274,244,-244,274,275,245,-245,275,276,246,-246,276,277,247,-247,277,278,248,-248,278,279,249,-249,
279,280,250,-250,280,281,251,-251,281,282,252,-252,282,283,253,-253,283,284,254,-254,284,285,255,-255,45,44,256,-287,44,47,257,-257,
47,49,258,-258,49,51,259,-259,51,53,260,-260,53,55,261,-261,55,57,262,-262,57,59,263,-263,59,61,264,-264,61,63,265,-265,
63,65,266,-266,65,67,267,-267,67,69,268,-268,69,71,269,-269,71,73,270,-270,73,75,271,-271,75,77,272,-272,77,79,273,-273,
79,81,274,-274,81,83,275,-275,83,85,276,-276,85,87,277,-277,87,89,278,-278,89,91,279,-279,91,93,280,-280,93,95,281,-281,
95,97,282,-282,97,99,283,-283,99,101,284,-284,101,103,285,-285,42,45,1,-1,287,42,0,-11,166,287,10,-16,164,166,15,-21,
31,164,20,-26,286,30,32,-38,45,286,37,-2,287,104,43,-43,166,134,104,-288,31,196,165,-165,30,226,196,-32,286,256,226,-31,
14,9,8,-42,19,14,41,-37,24,19,36,-30,195,225,255,-286,163,195,285,-104,133,163,103,-103
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: 0.350012,0.182607,-0.918774,-0.355051,-0.037353,-0.934100,-0.440450,0.288637,-0.850114,0.286404,0.420125,-0.861085,
0.286404,0.420125,-0.861085,-0.440450,0.288637,-0.850114,-0.472727,0.579808,-0.663590,0.261199,0.633499,-0.728323,
0.261199,0.633499,-0.728323,-0.472727,0.579808,-0.663590,-0.447983,0.801048,-0.397030,0.277447,0.796991,-0.536497,
0.277447,0.796991,-0.536497,-0.447983,0.801048,-0.397030,-0.411457,0.877771,-0.245401,0.294191,0.855756,-0.425598,
0.870380,0.302496,-0.388502,0.350012,0.182607,-0.918774,0.286404,0.420125,-0.861085,0.864372,0.317132,-0.390243,
0.864372,0.317132,-0.390243,0.286404,0.420125,-0.861085,0.261199,0.633499,-0.728323,0.860278,0.332121,-0.386803,
0.860278,0.332121,-0.386803,0.261199,0.633499,-0.728323,0.277447,0.796991,-0.536497,0.858589,0.345661,-0.378607,
0.858589,0.345661,-0.378607,0.277447,0.796991,-0.536497,0.294191,0.855756,-0.425598,0.857133,0.354574,-0.373631,
0.889082,0.247624,0.384987,0.870380,0.302496,-0.388502,0.864372,0.317132,-0.390243,0.945836,0.025019,0.323679,
0.945836,0.025019,0.323679,0.864372,0.317132,-0.390243,0.860278,0.332121,-0.386803,0.965976,-0.172436,0.192758,
0.965976,-0.172436,0.192758,0.860278,0.332121,-0.386803,0.858589,0.345661,-0.378607,0.947073,-0.320918,0.008021,
0.947073,-0.320918,0.008021,0.858589,0.345661,-0.378607,0.857133,0.354574,-0.373631,0.922810,-0.373076,-0.096101,
0.354482,0.039056,0.934247,0.889082,0.247624,0.384987,0.945836,0.025019,0.323679,0.440135,-0.287013,0.850826,
0.440135,-0.287013,0.850826,0.945836,0.025019,0.323679,0.965976,-0.172436,0.192758,0.472704,-0.578459,0.664783,
0.472704,-0.578459,0.664783,0.965976,-0.172436,0.192758,0.947073,-0.320918,0.008021,0.448262,-0.800135,0.398554,
0.448262,-0.800135,0.398554,0.947073,-0.320918,0.008021,0.922810,-0.373076,-0.096101,0.418736,-0.874929,0.243228,
-0.403410,-0.194846,0.894033,0.354482,0.039056,0.934247,0.440135,-0.287013,0.850826,-0.343004,-0.418637,0.840887,
-0.343004,-0.418637,0.840887,0.440135,-0.287013,0.850826,0.472704,-0.578459,0.664783,-0.318685,-0.620101,0.716878,
-0.318685,-0.620101,0.716878,0.472704,-0.578459,0.664783,0.448262,-0.800135,0.398554,-0.333377,-0.774934,0.536971,
-0.333377,-0.774934,0.536971,0.448262,-0.800135,0.398554,0.418736,-0.874929,0.243228,-0.347192,-0.832610,0.431531,
-0.895564,-0.319098,0.310068,-0.483401,0.012738,0.875306,-0.403410,-0.194846,0.894033,-0.900268,-0.306529,0.309124,
-0.900268,-0.306529,0.309124,-0.403410,-0.194846,0.894033,-0.343004,-0.418637,0.840887,-0.901636,-0.293447,0.317714,
-0.901636,-0.293447,0.317714,-0.343004,-0.418637,0.840887,-0.318685,-0.620101,0.716878,-0.900425,-0.283579,0.329876,
-0.900425,-0.283579,0.329876,-0.318685,-0.620101,0.716878,-0.333377,-0.774934,0.536971,-0.896782,-0.278113,0.344143,
-0.896782,-0.278113,0.344143,-0.333377,-0.774934,0.536971,-0.347192,-0.832610,0.431531,-0.895218,-0.274108,0.351354,
-0.866161,-0.237687,-0.439625,-0.900268,-0.306529,0.309124,-0.901636,-0.293447,0.317714,-0.926853,-0.001123,-0.375423,
-0.926853,-0.001123,-0.375423,-0.901636,-0.293447,0.317714,-0.900425,-0.283579,0.329876,-0.948714,0.209047,-0.237152,
-0.948714,0.209047,-0.237152,-0.900425,-0.283579,0.329876,-0.896782,-0.278113,0.344143,-0.929109,0.367470,-0.041487,
-0.929109,0.367470,-0.041487,-0.896782,-0.278113,0.344143,-0.895218,-0.274108,0.351354,-0.899633,0.431612,0.066114,
-0.355051,-0.037353,-0.934100,-0.866161,-0.237687,-0.439625,-0.926853,-0.001123,-0.375423,-0.440450,0.288637,-0.850114,
-0.440450,0.288637,-0.850114,-0.926853,-0.001123,-0.375423,-0.948714,0.209047,-0.237152,-0.472727,0.579808,-0.663590,
-0.472727,0.579808,-0.663590,-0.948714,0.209047,-0.237152,-0.929109,0.367470,-0.041487,-0.447983,0.801048,-0.397030,
-0.447983,0.801048,-0.397030,-0.929109,0.367470,-0.041487,-0.899633,0.431612,0.066114,-0.411457,0.877771,-0.245401,
0.440119,-0.035419,-0.897241,0.534452,-0.203201,-0.820409,-0.108996,-0.577975,-0.808743,-0.235200,-0.341697,-0.909903,
0.534452,-0.203201,-0.820409,0.625305,-0.330099,-0.707127,0.016554,-0.755863,-0.654520,-0.108996,-0.577975,-0.808743,
0.625305,-0.330099,-0.707127,0.714994,-0.417731,-0.560611,0.140930,-0.879942,-0.453697,0.016554,-0.755863,-0.654520,
0.714994,-0.417731,-0.560611,0.797127,-0.459868,-0.391292,0.255261,-0.941376,-0.220574,0.140930,-0.879942,-0.453697,
0.797127,-0.459868,-0.391292,0.865862,-0.453505,-0.211225,0.351414,-0.935794,0.028256,0.255261,-0.941376,-0.220574,
0.865862,-0.453505,-0.211225,0.916312,-0.399084,-0.033229,0.422551,-0.863589,0.275074,0.351414,-0.935794,0.028256,
0.916312,-0.399084,-0.033229,0.944883,-0.300483,0.130023,0.463607,-0.729903,0.502305,0.422551,-0.863589,0.275074,
0.944883,-0.300483,0.130023,0.949535,-0.164729,0.266921,0.471655,-0.544257,0.693777,0.463607,-0.729903,0.502305,
0.949535,-0.164729,0.266921,0.929944,-0.001483,0.367699,0.446127,-0.319857,0.835860,0.471655,-0.544257,0.693777,
0.929944,-0.001483,0.367699,0.887501,0.177638,0.425191,0.388837,-0.072688,0.918435,0.446127,-0.319857,0.835860,
0.887501,0.177638,0.425191,0.825225,0.359869,0.435314,0.303855,0.179650,0.935627,0.388837,-0.072688,0.918435,
0.825225,0.359869,0.435314,0.747553,0.532247,0.397338,0.197242,0.419201,0.886209,0.303855,0.179650,0.935627,
0.747553,0.532247,0.397338,0.660012,0.682504,0.313962,0.076591,0.628906,0.773700,0.197242,0.419201,0.886209,
0.660012,0.682504,0.313962,0.568841,0.799931,0.191128,-0.049513,0.793840,0.606107,0.076591,0.628906,0.773700,
0.568841,0.799931,0.191128,0.480527,0.876175,0.037577,-0.172096,0.902258,0.395366,-0.049513,0.793840,0.606107,
0.480527,0.876175,0.037577,0.401352,0.905807,-0.135756,-0.282429,0.946440,0.156479,-0.172096,0.902258,0.395366,
0.401352,0.905807,-0.135756,0.336963,0.886715,-0.316530,-0.372652,0.923244,-0.093549,-0.282429,0.946440,0.156479,
0.336963,0.886715,-0.316530,0.291936,0.820261,-0.491879,-0.436349,0.834318,-0.336915,-0.372652,0.923244,-0.093549,
0.291936,0.820261,-0.491879,0.269475,0.711178,-0.649315,-0.468988,0.685993,-0.556295,-0.436349,0.834318,-0.336915,
0.269475,0.711178,-0.649315,0.271183,0.567227,-0.777633,-0.468239,0.488830,-0.736069,-0.468988,0.685993,-0.556295,
0.271183,0.567227,-0.777633,0.296937,0.398659,-0.867698,-0.434152,0.256867,-0.863441,-0.468239,0.488830,-0.736069,
0.296937,0.398659,-0.867698,0.344904,0.217471,-0.913098,-0.369155,0.006620,-0.929344,-0.434152,0.256867,-0.863441,
0.344904,0.217471,-0.913098,0.411676,0.036568,-0.910596,-0.277878,-0.244101,-0.929085,-0.369155,0.006620,-0.929344,
0.411676,0.036568,-0.910596,0.492494,-0.131175,-0.860374,-0.166820,-0.477445,-0.862680,-0.277878,-0.244101,-0.929085,
0.492494,-0.131175,-0.860374,0.581600,-0.273811,-0.766008,-0.043889,-0.676800,-0.734857,-0.166820,-0.477445,-0.862680,
0.581600,-0.273811,-0.766008,0.672652,-0.381192,-0.634218,0.082159,-0.827973,-0.554717,-0.043889,-0.676800,-0.734857,
0.672652,-0.381192,-0.634218,0.759170,-0.445670,-0.474383,0.202362,-0.920200,-0.335086,0.082159,-0.827973,-0.554717,
0.759170,-0.445670,-0.474383,0.834995,-0.462656,-0.297881,0.308158,-0.946915,-0.091599,0.202362,-0.920200,-0.335086,
0.834995,-0.462656,-0.297881,0.894726,-0.430940,-0.117282,0.392009,-0.906220,0.158411,0.308158,-0.946915,-0.091599,
0.894726,-0.430940,-0.117282,0.915595,-0.401202,-0.026873,0.420879,-0.862257,0.281735,0.392009,-0.906220,0.158411,
0.883557,0.290675,-0.367198,0.887838,0.287403,-0.359365,0.625305,-0.330099,-0.707127,0.534452,-0.203201,-0.820409,
0.887838,0.287403,-0.359365,0.891604,0.286466,-0.350684,0.714994,-0.417731,-0.560611,0.625305,-0.330099,-0.707127,
0.891604,0.286466,-0.350684,0.894585,0.287938,-0.341775,0.797127,-0.459868,-0.391292,0.714994,-0.417731,-0.560611,
0.894585,0.287938,-0.341775,0.896568,0.291709,-0.333273,0.865862,-0.453505,-0.211225,0.797127,-0.459868,-0.391292,
0.896568,0.291709,-0.333273,0.897416,0.297506,-0.325784,0.916312,-0.399084,-0.033229,0.865862,-0.453505,-0.211225,
0.897416,0.297506,-0.325784,0.897065,0.304920,-0.319841,0.944883,-0.300483,0.130023,0.916312,-0.399084,-0.033229,
0.897065,0.304920,-0.319841,0.895543,0.313419,-0.315865,0.949535,-0.164729,0.266921,0.944883,-0.300483,0.130023,
0.895543,0.313419,-0.315865,0.892955,0.322406,-0.314143,0.929944,-0.001483,0.367699,0.949535,-0.164729,0.266921,
0.892955,0.322406,-0.314143,0.889490,0.331234,-0.314790,0.887501,0.177638,0.425191,0.929944,-0.001483,0.367699,
0.889490,0.331234,-0.314790,0.885391,0.339277,-0.317765,0.825225,0.359869,0.435314,0.887501,0.177638,0.425191,
0.885391,0.339277,-0.317765,0.880949,0.345966,-0.322858,0.747553,0.532247,0.397338,0.825225,0.359869,0.435314,
0.880949,0.345966,-0.322858,0.876480,0.350820,-0.329709,0.660012,0.682504,0.313962,0.747553,0.532247,0.397338,
0.876480,0.350820,-0.329709,0.872306,0.353495,-0.337821,0.568841,0.799931,0.191128,0.660012,0.682504,0.313962,
0.872306,0.353495,-0.337821,0.868722,0.353802,-0.346621,0.480527,0.876175,0.037577,0.568841,0.799931,0.191128,
0.868722,0.353802,-0.346621,0.865983,0.351715,-0.355485,0.401352,0.905807,-0.135756,0.480527,0.876175,0.037577,
0.865983,0.351715,-0.355485,0.864285,0.347386,-0.363778,0.336963,0.886715,-0.316530,0.401352,0.905807,-0.135756,
0.864285,0.347386,-0.363778,0.863748,0.341123,-0.370911,0.291936,0.820261,-0.491879,0.336963,0.886715,-0.316530,
0.863748,0.341123,-0.370911,0.864410,0.333371,-0.376377,0.269475,0.711178,-0.649315,0.291936,0.820261,-0.491879,
0.864410,0.333371,-0.376377,0.866221,0.324686,-0.379789,0.271183,0.567227,-0.777633,0.269475,0.711178,-0.649315,
0.866221,0.324686,-0.379789,0.869059,0.315679,-0.380899,0.296937,0.398659,-0.867698,0.271183,0.567227,-0.777633,
0.869059,0.315679,-0.380899,0.872717,0.306995,-0.379630,0.344904,0.217471,-0.913098,0.296937,0.398659,-0.867698,
0.872717,0.306995,-0.379630,0.876935,0.299250,-0.376077,0.411676,0.036568,-0.910596,0.344904,0.217471,-0.913098,
0.876935,0.299250,-0.376077,0.881414,0.292997,-0.370488,0.492494,-0.131175,-0.860374,0.411676,0.036568,-0.910596,
0.881414,0.292997,-0.370488,0.885837,0.288685,-0.363255,0.581600,-0.273811,-0.766008,0.492494,-0.131175,-0.860374,
0.885837,0.288685,-0.363255,0.889884,0.286620,-0.354901,0.672652,-0.381192,-0.634218,0.581600,-0.273811,-0.766008,
0.889884,0.286620,-0.354901,0.893270,0.286945,-0.346022,0.759170,-0.445670,-0.474383,0.672652,-0.381192,-0.634218,
0.893270,0.286945,-0.346022,0.895754,0.289634,-0.337248,0.834995,-0.462656,-0.297881,0.759170,-0.445670,-0.474383,
0.895754,0.289634,-0.337248,0.897158,0.294503,-0.329204,0.894726,-0.430940,-0.117282,0.834995,-0.462656,-0.297881,
0.897158,0.294503,-0.329204,0.896343,0.299819,-0.326614,0.915595,-0.401202,-0.026873,0.894726,-0.430940,-0.117282,
0.717488,0.623231,0.311118,0.630986,0.747763,0.206657,0.887838,0.287403,-0.359365,0.883557,0.290675,-0.367198,
0.630986,0.747763,0.206657,0.544963,0.835569,0.069573,0.891604,0.286466,-0.350684,0.887838,0.287403,-0.359365,
0.544963,0.835569,0.069573,0.465539,0.880401,-0.090379,0.894585,0.287938,-0.341775,0.891604,0.286466,-0.350684,
0.465539,0.880401,-0.090379,0.398374,0.879063,-0.261815,0.896568,0.291709,-0.333273,0.894585,0.287938,-0.341775,
0.398374,0.879063,-0.261815,0.348249,0.831651,-0.432527,0.897416,0.297506,-0.325784,0.896568,0.291709,-0.333273,
0.348249,0.831651,-0.432527,0.318735,0.741542,-0.590359,0.897065,0.304920,-0.319841,0.897416,0.297506,-0.325784,
0.318735,0.741542,-0.590359,0.311932,0.615148,-0.724079,0.895543,0.313419,-0.315865,0.897065,0.304920,-0.319841,
0.311932,0.615148,-0.724079,0.328322,0.461468,-0.824167,0.892955,0.322406,-0.314143,0.895543,0.313419,-0.315865,
0.328322,0.461468,-0.824167,0.366735,0.291445,-0.883496,0.889490,0.331234,-0.314790,0.892955,0.322406,-0.314143,
0.366735,0.291445,-0.883496,0.424435,0.117184,-0.897844,0.885391,0.339277,-0.317765,0.889490,0.331234,-0.314790,
0.424435,0.117184,-0.897844,0.497323,-0.048911,-0.866185,0.880949,0.345966,-0.322858,0.885391,0.339277,-0.317765,
0.497323,-0.048911,-0.866185,0.580214,-0.195012,-0.790773,0.876480,0.350820,-0.329709,0.880949,0.345966,-0.322858,
0.580214,-0.195012,-0.790773,0.667197,-0.310721,-0.676979,0.872306,0.353495,-0.337821,0.876480,0.350820,-0.329709,
0.667197,-0.310721,-0.676979,0.752075,-0.387803,-0.532909,0.868722,0.353802,-0.346621,0.872306,0.353495,-0.337821,
0.752075,-0.387803,-0.532909,0.828812,-0.420769,-0.368814,0.865983,0.351715,-0.355485,0.868722,0.353802,-0.346621,
0.828812,-0.420769,-0.368814,0.891947,-0.407267,-0.196377,0.864285,0.347386,-0.363778,0.865983,0.351715,-0.355485,
0.891947,-0.407267,-0.196377,0.936984,-0.348258,-0.027875,0.863748,0.341123,-0.370911,0.864285,0.347386,-0.363778,
0.936984,-0.348258,-0.027875,0.960714,-0.247951,0.124697,0.864410,0.333371,-0.376377,0.863748,0.341123,-0.370911,
0.960714,-0.247951,0.124697,0.961449,-0.113481,0.250474,0.866221,0.324686,-0.379789,0.864410,0.333371,-0.376377,
0.961449,-0.113481,0.250474,0.939137,0.045580,0.340505,0.869059,0.315679,-0.380899,0.866221,0.324686,-0.379789,
0.939137,0.045580,0.340505,0.895366,0.217899,0.388382,0.872717,0.306995,-0.379630,0.869059,0.315679,-0.380899,
0.895366,0.217899,0.388382,0.833253,0.391217,0.390690,0.876935,0.299250,-0.376077,0.872717,0.306995,-0.379630,
0.833253,0.391217,0.390690,0.757222,0.553193,0.347264,0.881414,0.292997,-0.370488,0.876935,0.299250,-0.376077,
0.757222,0.553193,0.347264,0.672681,0.692296,0.261203,0.885837,0.288685,-0.363255,0.881414,0.292997,-0.370488,
0.672681,0.692296,0.261203,0.585649,0.798621,0.138636,0.889884,0.286620,-0.354901,0.885837,0.288685,-0.363255,
0.585649,0.798621,0.138636,0.502324,0.864600,-0.011718,0.893270,0.286945,-0.346022,0.889884,0.286620,-0.354901,
0.502324,0.864600,-0.011718,0.428638,0.885535,-0.179155,0.895754,0.289634,-0.337248,0.893270,0.286945,-0.346022,
0.428638,0.885535,-0.179155,0.369842,0.859934,-0.351754,0.897158,0.294503,-0.329204,0.895754,0.289634,-0.337248,
0.369842,0.859934,-0.351754,0.339137,0.833493,-0.436205,0.896343,0.299819,-0.326614,0.897158,0.294503,-0.329204,
0.234547,0.341647,0.910091,0.108269,0.579159,0.807993,0.717488,0.623231,0.311118,0.806117,0.457186,0.375707,
0.108269,0.579159,0.807993,-0.017294,0.756766,0.653457,0.630986,0.747763,0.206657,0.717488,0.623231,0.311118,
-0.017294,0.756766,0.653457,-0.141630,0.880498,0.452399,0.544963,0.835569,0.069573,0.630986,0.747763,0.206657,
-0.141630,0.880498,0.452399,-0.255882,0.941543,0.219135,0.465539,0.880401,-0.090379,0.544963,0.835569,0.069573,
-0.255882,0.941543,0.219135,-0.351912,0.935561,-0.029733,0.398374,0.879063,-0.261815,0.465539,0.880401,-0.090379,
-0.351912,0.935561,-0.029733,-0.422882,0.862975,-0.276485,0.348249,0.831651,-0.432527,0.398374,0.879063,-0.261815,
-0.422882,0.862975,-0.276485,-0.463749,0.728952,-0.503553,0.318735,0.741542,-0.590359,0.348249,0.831651,-0.432527,
-0.463749,0.728952,-0.503553,-0.471594,0.543032,-0.694777,0.311932,0.615148,-0.724079,0.318735,0.741542,-0.590359,
-0.471594,0.543032,-0.694777,-0.445866,0.318456,-0.836534,0.328322,0.461468,-0.824167,0.311932,0.615148,-0.724079,
-0.445866,0.318456,-0.836534,-0.388399,0.071207,-0.918736,0.366735,0.291445,-0.883496,0.328322,0.461468,-0.824167,
-0.388399,0.071207,-0.918736,-0.303281,-0.181115,-0.935531,0.424435,0.117184,-0.897844,0.366735,0.291445,-0.883496,
-0.303281,-0.181115,-0.935531,-0.196566,-0.420537,-0.885726,0.497323,-0.048911,-0.866185,0.424435,0.117184,-0.897844,
-0.196566,-0.420537,-0.885726,-0.075850,-0.630019,-0.772867,0.580214,-0.195012,-0.790773,0.497323,-0.048911,-0.866185,
-0.075850,-0.630019,-0.772867,0.050263,-0.794650,-0.604984,0.667197,-0.310721,-0.676979,0.580214,-0.195012,-0.790773,
0.050263,-0.794650,-0.604984,0.172796,-0.902709,-0.394029,0.752075,-0.387803,-0.532909,0.667197,-0.310721,-0.676979,
0.172796,-0.902709,-0.394029,0.283033,-0.946498,-0.155026,0.828812,-0.420769,-0.368814,0.752075,-0.387803,-0.532909,
0.283033,-0.946498,-0.155026,0.373128,-0.922902,0.095013,0.891947,-0.407267,-0.196377,0.828812,-0.420769,-0.368814,
0.373128,-0.922902,0.095013,0.436655,-0.833604,0.338285,0.936984,-0.348258,-0.027875,0.891947,-0.407267,-0.196377,
0.436655,-0.833604,0.338285,0.469091,-0.684961,0.557479,0.960714,-0.247951,0.124697,0.936984,-0.348258,-0.027875,
0.469091,-0.684961,0.557479,0.468136,-0.487550,0.736983,0.961449,-0.113481,0.250474,0.960714,-0.247951,0.124697,
0.468136,-0.487550,0.736983,0.433858,-0.255430,0.864015,0.939137,0.045580,0.340505,0.961449,-0.113481,0.250474,
0.433858,-0.255430,0.864015,0.368694,-0.005123,0.929537,0.895366,0.217899,0.388382,0.939137,0.045580,0.340505,
0.368694,-0.005123,0.929537,0.277285,0.245548,0.928881,0.833253,0.391217,0.390690,0.895366,0.217899,0.388382,
0.277285,0.245548,0.928881,0.166138,0.478739,0.862094,0.757222,0.553193,0.347264,0.833253,0.391217,0.390690,
0.166138,0.478739,0.862094,0.043163,0.677848,0.733934,0.672681,0.692296,0.261203,0.757222,0.553193,0.347264,
0.043163,0.677848,0.733934,-0.082892,0.828698,0.553524,0.585649,0.798621,0.138636,0.672681,0.692296,0.261203,
-0.082892,0.828698,0.553524,-0.203039,0.920552,0.333704,0.502324,0.864600,-0.011718,0.585649,0.798621,0.138636,
-0.203039,0.920552,0.333704,-0.308724,0.946872,0.090127,0.428638,0.885535,-0.179155,0.502324,0.864600,-0.011718,
-0.308724,0.946872,0.090127,-0.392432,0.905782,-0.159865,0.369842,0.859934,-0.351754,0.428638,0.885535,-0.179155,
-0.392432,0.905782,-0.159865,-0.427067,0.859709,-0.280205,0.339137,0.833493,-0.436205,0.369842,0.859934,-0.351754,
-0.567707,0.175632,0.804277,-0.654490,0.296329,0.695580,-0.017294,0.756766,0.653457,0.108269,0.579159,0.807993,
-0.654490,0.296329,0.695580,-0.740069,0.379428,0.555277,-0.141630,0.880498,0.452399,-0.017294,0.756766,0.653457,
-0.740069,0.379428,0.555277,-0.818356,0.419006,0.393353,-0.255882,0.941543,0.219135,-0.141630,0.880498,0.452399,
-0.818356,0.419006,0.393353,-0.883778,0.412244,0.221340,-0.351912,0.935561,-0.029733,-0.255882,0.941543,0.219135,
-0.883778,0.412244,0.221340,-0.931675,0.359626,0.051478,-0.422882,0.862975,-0.276485,-0.351912,0.935561,-0.029733,
-0.931675,0.359626,0.051478,-0.958637,0.264901,-0.104130,-0.463749,0.728952,-0.503553,-0.422882,0.862975,-0.276485,
-0.958637,0.264901,-0.104130,-0.962746,0.134809,-0.234408,-0.471594,0.543032,-0.694777,-0.463749,0.728952,-0.503553,
-0.962746,0.134809,-0.234408,-0.943702,-0.021382,-0.330104,-0.445866,0.318456,-0.836534,-0.471594,0.543032,-0.694777,
-0.943702,-0.021382,-0.330104,-0.902868,-0.192555,-0.384385,-0.388399,0.071207,-0.918736,-0.445866,0.318456,-0.836534,
-0.902868,-0.192555,-0.384385,-0.843152,-0.366535,-0.393378,-0.303281,-0.181115,-0.935531,-0.388399,0.071207,-0.918736,
-0.843152,-0.366535,-0.393378,-0.768806,-0.530924,-0.356451,-0.196566,-0.420537,-0.885726,-0.303281,-0.181115,-0.935531,
-0.768806,-0.530924,-0.356451,-0.685118,-0.674022,-0.276238,-0.075850,-0.630019,-0.772867,-0.196566,-0.420537,-0.885726,
-0.685118,-0.674022,-0.276238,-0.598048,-0.785643,-0.158444,0.050263,-0.794650,-0.604984,-0.075850,-0.630019,-0.772867,
-0.598048,-0.785643,-0.158444,-0.513800,-0.857833,-0.011455,0.172796,-0.902709,-0.394029,0.050263,-0.794650,-0.604984,
-0.513800,-0.857833,-0.011455,-0.438363,-0.885462,0.154257,0.283033,-0.946498,-0.155026,0.172796,-0.902709,-0.394029,
-0.438363,-0.885462,0.154257,-0.377105,-0.866563,0.326896,0.373128,-0.922902,0.095013,0.283033,-0.946498,-0.155026,
-0.377105,-0.866563,0.326896,-0.334398,-0.802474,0.494180,0.436655,-0.833604,0.338285,0.373128,-0.922902,0.095013,
-0.334398,-0.802474,0.494180,-0.313281,-0.697760,0.644194,0.469091,-0.684961,0.557479,0.436655,-0.833604,0.338285,
-0.313281,-0.697760,0.644194,-0.315251,-0.559878,0.766259,0.468136,-0.487550,0.736983,0.469091,-0.684961,0.557479,
-0.315251,-0.559878,0.766259,-0.340174,-0.398646,0.851682,0.433858,-0.255430,0.864015,0.468136,-0.487550,0.736983,
-0.340174,-0.398646,0.851682,-0.386275,-0.225541,0.894384,0.368694,-0.005123,0.929537,0.433858,-0.255430,0.864015,
-0.386275,-0.225541,0.894384,-0.450267,-0.052883,0.891327,0.277285,0.245548,0.928881,0.368694,-0.005123,0.929537,
-0.450267,-0.052883,0.891327,-0.527590,0.107035,0.842729,0.166138,0.478739,0.862094,0.277285,0.245548,0.928881,
-0.527590,0.107035,0.842729,-0.612750,0.242822,0.752047,0.043163,0.677848,0.733934,0.166138,0.478739,0.862094,
-0.612750,0.242822,0.752047,-0.699689,0.344811,0.625733,-0.082892,0.828698,0.553524,0.043163,0.677848,0.733934,
-0.699689,0.344811,0.625733,-0.782202,0.405748,0.472788,-0.203039,0.920552,0.333704,-0.082892,0.828698,0.553524,
-0.782202,0.405748,0.472788,-0.854418,0.421300,0.304097,-0.308724,0.946872,0.090127,-0.203039,0.920552,0.333704,
-0.854418,0.421300,0.304097,-0.911204,0.390348,0.131668,-0.392432,0.905782,-0.159865,-0.308724,0.946872,0.090127,
-0.911204,0.390348,0.131668,-0.931226,0.361459,0.046532,-0.427067,0.859709,-0.280205,-0.392432,0.905782,-0.159865,
-0.890372,-0.328815,0.314830,-0.886467,-0.337018,0.317167,-0.654490,0.296329,0.695580,-0.567707,0.175632,0.804277,
-0.886467,-0.337018,0.317167,-0.882144,-0.344023,0.321666,-0.740069,0.379428,0.555277,-0.654490,0.296329,0.695580,
-0.882144,-0.344023,0.321666,-0.877714,-0.349331,0.328003,-0.818356,0.419006,0.393353,-0.740069,0.379428,0.555277,
-0.877714,-0.349331,0.328003,-0.873487,-0.352573,0.335727,-0.883778,0.412244,0.221340,-0.818356,0.419006,0.393353,
-0.873487,-0.352573,0.335727,-0.869764,-0.353517,0.344290,-0.931675,0.359626,0.051478,-0.883778,0.412244,0.221340,
-0.869764,-0.353517,0.344290,-0.866817,-0.352083,0.353081,-0.958637,0.264901,-0.104130,-0.931675,0.359626,0.051478,
-0.866817,-0.352083,0.353081,-0.864853,-0.348377,0.361472,-0.962746,0.134809,-0.234408,-0.958637,0.264901,-0.104130,
-0.864853,-0.348377,0.361472,-0.864012,-0.342667,0.368867,-0.943702,-0.021382,-0.330104,-0.962746,0.134809,-0.234408,
-0.864012,-0.342667,0.368867,-0.864352,-0.335359,0.374740,-0.902868,-0.192555,-0.384385,-0.943702,-0.021382,-0.330104,
-0.864352,-0.335359,0.374740,-0.865846,-0.326978,0.378676,-0.843152,-0.366535,-0.393378,-0.902868,-0.192555,-0.384385,
-0.865846,-0.326978,0.378676,-0.868393,-0.318116,0.380388,-0.768806,-0.530924,-0.356451,-0.843152,-0.366535,-0.393378,
-0.868393,-0.318116,0.380388,-0.871809,-0.309404,0.379761,-0.685118,-0.674022,-0.276238,-0.768806,-0.530924,-0.356451,
-0.871809,-0.309404,0.379761,-0.875850,-0.301459,0.376841,-0.598048,-0.785643,-0.158444,-0.685118,-0.674022,-0.276238,
-0.875850,-0.301459,0.376841,-0.880232,-0.294849,0.371828,-0.513800,-0.857833,-0.011455,-0.598048,-0.785643,-0.158444,
-0.880232,-0.294849,0.371828,-0.884640,-0.290047,0.365083,-0.438363,-0.885462,0.154257,-0.513800,-0.857833,-0.011455,
-0.884640,-0.290047,0.365083,-0.888760,-0.287394,0.357087,-0.377105,-0.866563,0.326896,-0.438363,-0.885462,0.154257,
-0.888760,-0.287394,0.357087,-0.892300,-0.287078,0.348405,-0.334398,-0.802474,0.494180,-0.377105,-0.866563,0.326896,
-0.892300,-0.287078,0.348405,-0.895009,-0.289119,0.339659,-0.313281,-0.697760,0.644194,-0.334398,-0.802474,0.494180,
-0.895009,-0.289119,0.339659,-0.896696,-0.293372,0.331467,-0.315251,-0.559878,0.766259,-0.313281,-0.697760,0.644194,
-0.896696,-0.293372,0.331467,-0.897234,-0.299541,0.324418,-0.340174,-0.398646,0.851682,-0.315251,-0.559878,0.766259,
-0.897234,-0.299541,0.324418,-0.896586,-0.307183,0.319017,-0.386275,-0.225541,0.894384,-0.340174,-0.398646,0.851682,
-0.896586,-0.307183,0.319017,-0.894803,-0.315748,0.315643,-0.450267,-0.052883,0.891327,-0.386275,-0.225541,0.894384,
-0.894803,-0.315748,0.315643,-0.892010,-0.324635,0.314533,-0.527590,0.107035,0.842729,-0.450267,-0.052883,0.891327,
-0.892010,-0.324635,0.314533,-0.888404,-0.333210,0.315767,-0.612750,0.242822,0.752047,-0.527590,0.107035,0.842729,
-0.888404,-0.333210,0.315767,-0.884243,-0.340862,0.319260,-0.699689,0.344811,0.625733,-0.612750,0.242822,0.752047,
-0.884243,-0.340862,0.319260,-0.879826,-0.347035,0.324766,-0.782202,0.405748,0.472788,-0.699689,0.344811,0.625733,
-0.879826,-0.347035,0.324766,-0.875465,-0.351295,0.331892,-0.854418,0.421300,0.304097,-0.782202,0.405748,0.472788,
-0.875465,-0.351295,0.331892,-0.871471,-0.353346,0.340123,-0.911204,0.390348,0.131668,-0.854418,0.421300,0.304097,
-0.871471,-0.353346,0.340123,-0.870878,-0.351655,0.343381,-0.931226,0.361459,0.046532,-0.911204,0.390348,0.131668,
-0.691765,-0.632643,-0.348171,-0.601153,-0.762738,-0.238422,-0.886467,-0.337018,0.317167,-0.890372,-0.328815,0.314830,
-0.601153,-0.762738,-0.238422,-0.511102,-0.854299,-0.094595,-0.882144,-0.344023,0.321666,-0.886467,-0.337018,0.317167,
-0.511102,-0.854299,-0.094595,-0.428020,-0.900809,0.073081,-0.877714,-0.349331,0.328003,-0.882144,-0.344023,0.321666,
-0.428020,-0.900809,0.073081,-0.357826,-0.898957,0.252661,-0.873487,-0.352573,0.335727,-0.877714,-0.349331,0.328003,
-0.357826,-0.898957,0.252661,-0.305521,-0.848871,0.431365,-0.869764,-0.353517,0.344290,-0.873487,-0.352573,0.335727,
-0.305521,-0.848871,0.431365,-0.274829,-0.754114,0.596474,-0.866817,-0.352083,0.353081,-0.869764,-0.353517,0.344290,
-0.274829,-0.754114,0.596474,-0.267933,-0.621440,0.736223,-0.864853,-0.348377,0.361472,-0.866817,-0.352083,0.353081,
-0.267933,-0.621440,0.736223,-0.285311,-0.460293,0.840671,-0.864012,-0.342667,0.368867,-0.864853,-0.348377,0.361472,
-0.285311,-0.460293,0.840671,-0.325738,-0.282143,0.902380,-0.864352,-0.335359,0.374740,-0.864012,-0.342667,0.368867,
-0.325738,-0.282143,0.902380,-0.386344,-0.099675,0.916953,-0.865846,-0.326978,0.378676,-0.864352,-0.335359,0.374740,
-0.386344,-0.099675,0.916953,-0.462803,0.074120,0.883357,-0.868393,-0.318116,0.380388,-0.865846,-0.326978,0.378676,
-0.462803,0.074120,0.883357,-0.549668,0.226880,0.803984,-0.871809,-0.309404,0.379761,-0.868393,-0.318116,0.380388,
-0.549668,0.226880,0.803984,-0.640757,0.347720,0.684486,-0.875850,-0.301459,0.376841,-0.871809,-0.309404,0.379761,
-0.640757,0.347720,0.684486,-0.729599,0.428028,0.533363,-0.880232,-0.294849,0.371828,-0.875850,-0.301459,0.376841,
-0.729599,0.428028,0.533363,-0.809857,0.462099,0.361380,-0.884640,-0.290047,0.365083,-0.880232,-0.294849,0.371828,
-0.809857,0.462099,0.361380,-0.875815,0.447511,0.180781,-0.888760,-0.287394,0.357087,-0.884640,-0.290047,0.365083,
-0.875815,0.447511,0.180781,-0.922784,0.385293,0.004421,-0.892300,-0.287078,0.348405,-0.888760,-0.287394,0.357087,
-0.922784,0.385293,0.004421,-0.947417,0.279876,-0.155145,-0.895009,-0.289119,0.339659,-0.892300,-0.287078,0.348405,
-0.947417,0.279876,-0.155145,-0.947960,0.138772,-0.286557,-0.896696,-0.293372,0.331467,-0.895009,-0.289119,0.339659,
-0.947960,0.138772,-0.286557,-0.924376,-0.027981,-0.380456,-0.897234,-0.299541,0.324418,-0.896696,-0.293372,0.331467,
-0.924376,-0.027981,-0.380456,-0.878344,-0.208510,-0.430157,-0.896586,-0.307183,0.319017,-0.897234,-0.299541,0.324418,
-0.878344,-0.208510,-0.430157,-0.813142,-0.389962,-0.432123,-0.894803,-0.315748,0.315643,-0.896586,-0.307183,0.319017,
-0.813142,-0.389962,-0.432123,-0.733406,-0.559420,-0.386219,-0.892010,-0.324635,0.314533,-0.894803,-0.315748,0.315643,
-0.733406,-0.559420,-0.386219,-0.644814,-0.704818,-0.295713,-0.888404,-0.333210,0.315767,-0.892010,-0.324635,0.314533,
-0.644814,-0.704818,-0.295713,-0.553683,-0.815802,-0.167038,-0.884243,-0.340862,0.319260,-0.888404,-0.333210,0.315767,
-0.553683,-0.815802,-0.167038,-0.466496,-0.884474,-0.009359,-0.879826,-0.347035,0.324766,-0.884243,-0.340862,0.319260,
-0.466496,-0.884474,-0.009359,-0.389458,-0.905945,0.166091,-0.875465,-0.351295,0.331892,-0.879826,-0.347035,0.324766,
-0.389458,-0.905945,0.166091,-0.328054,-0.878686,0.346829,-0.871471,-0.353346,0.340123,-0.875465,-0.351295,0.331892,
-0.328054,-0.878686,0.346829,-0.304592,-0.847524,0.434657,-0.870878,-0.351655,0.343381,-0.871471,-0.353346,0.340123,
-0.235200,-0.341697,-0.909903,-0.108996,-0.577975,-0.808743,-0.691765,-0.632643,-0.348171,-0.781435,-0.459529,-0.422129,
-0.108996,-0.577975,-0.808743,0.016554,-0.755863,-0.654520,-0.601153,-0.762738,-0.238422,-0.691765,-0.632643,-0.348171,
0.016554,-0.755863,-0.654520,0.140930,-0.879942,-0.453697,-0.511102,-0.854299,-0.094595,-0.601153,-0.762738,-0.238422,
0.140930,-0.879942,-0.453697,0.255261,-0.941376,-0.220574,-0.428020,-0.900809,0.073081,-0.511102,-0.854299,-0.094595,
0.255261,-0.941376,-0.220574,0.351414,-0.935794,0.028256,-0.357826,-0.898957,0.252661,-0.428020,-0.900809,0.073081,
0.351414,-0.935794,0.028256,0.422551,-0.863589,0.275074,-0.305521,-0.848871,0.431365,-0.357826,-0.898957,0.252661,
0.422551,-0.863589,0.275074,0.463607,-0.729903,0.502305,-0.274829,-0.754114,0.596474,-0.305521,-0.848871,0.431365,
0.463607,-0.729903,0.502305,0.471655,-0.544257,0.693777,-0.267933,-0.621440,0.736223,-0.274829,-0.754114,0.596474,
0.471655,-0.544257,0.693777,0.446127,-0.319857,0.835860,-0.285311,-0.460293,0.840671,-0.267933,-0.621440,0.736223,
0.446127,-0.319857,0.835860,0.388837,-0.072688,0.918435,-0.325738,-0.282143,0.902380,-0.285311,-0.460293,0.840671,
0.388837,-0.072688,0.918435,0.303855,0.179650,0.935627,-0.386344,-0.099675,0.916953,-0.325738,-0.282143,0.902380,
0.303855,0.179650,0.935627,0.197242,0.419201,0.886209,-0.462803,0.074120,0.883357,-0.386344,-0.099675,0.916953,
0.197242,0.419201,0.886209,0.076591,0.628906,0.773700,-0.549668,0.226880,0.803984,-0.462803,0.074120,0.883357,
0.076591,0.628906,0.773700,-0.049513,0.793840,0.606107,-0.640757,0.347720,0.684486,-0.549668,0.226880,0.803984,
-0.049513,0.793840,0.606107,-0.172096,0.902258,0.395366,-0.729599,0.428028,0.533363,-0.640757,0.347720,0.684486,
-0.172096,0.902258,0.395366,-0.282429,0.946440,0.156479,-0.809857,0.462099,0.361380,-0.729599,0.428028,0.533363,
-0.282429,0.946440,0.156479,-0.372652,0.923244,-0.093549,-0.875815,0.447511,0.180781,-0.809857,0.462099,0.361380,
-0.372652,0.923244,-0.093549,-0.436349,0.834318,-0.336915,-0.922784,0.385293,0.004421,-0.875815,0.447511,0.180781,
-0.436349,0.834318,-0.336915,-0.468988,0.685993,-0.556295,-0.947417,0.279876,-0.155145,-0.922784,0.385293,0.004421,
-0.468988,0.685993,-0.556295,-0.468239,0.488830,-0.736069,-0.947960,0.138772,-0.286557,-0.947417,0.279876,-0.155145,
-0.468239,0.488830,-0.736069,-0.434152,0.256867,-0.863441,-0.924376,-0.027981,-0.380456,-0.947960,0.138772,-0.286557,
-0.434152,0.256867,-0.863441,-0.369155,0.006620,-0.929344,-0.878344,-0.208510,-0.430157,-0.924376,-0.027981,-0.380456,
-0.369155,0.006620,-0.929344,-0.277878,-0.244101,-0.929085,-0.813142,-0.389962,-0.432123,-0.878344,-0.208510,-0.430157,
-0.277878,-0.244101,-0.929085,-0.166820,-0.477445,-0.862680,-0.733406,-0.559420,-0.386219,-0.813142,-0.389962,-0.432123,
-0.166820,-0.477445,-0.862680,-0.043889,-0.676800,-0.734857,-0.644814,-0.704818,-0.295713,-0.733406,-0.559420,-0.386219,
-0.043889,-0.676800,-0.734857,0.082159,-0.827973,-0.554717,-0.553683,-0.815802,-0.167038,-0.644814,-0.704818,-0.295713,
0.082159,-0.827973,-0.554717,0.202362,-0.920200,-0.335086,-0.466496,-0.884474,-0.009359,-0.553683,-0.815802,-0.167038,
0.202362,-0.920200,-0.335086,0.308158,-0.946915,-0.091599,-0.389458,-0.905945,0.166091,-0.466496,-0.884474,-0.009359,
0.308158,-0.946915,-0.091599,0.392009,-0.906220,0.158411,-0.328054,-0.878686,0.346829,-0.389458,-0.905945,0.166091,
0.392009,-0.906220,0.158411,0.420879,-0.862257,0.281735,-0.304592,-0.847524,0.434657,-0.328054,-0.878686,0.346829,
0.440119,-0.035419,-0.897241,-0.235200,-0.341697,-0.909903,-0.355051,-0.037353,-0.934100,0.350012,0.182607,-0.918774,
0.877580,0.294195,-0.378554,0.440119,-0.035419,-0.897241,0.350012,0.182607,-0.918774,0.870380,0.302496,-0.388502,
0.806117,0.457186,0.375707,0.877580,0.294195,-0.378554,0.870380,0.302496,-0.388502,0.889082,0.247624,0.384987,
0.234547,0.341647,0.910091,0.806117,0.457186,0.375707,0.889082,0.247624,0.384987,0.354482,0.039056,0.934247,
-0.483401,0.012738,0.875306,0.234547,0.341647,0.910091,0.354482,0.039056,0.934247,-0.403410,-0.194846,0.894033,
-0.781435,-0.459529,-0.422129,-0.895564,-0.319098,0.310068,-0.900268,-0.306529,0.309124,-0.866161,-0.237687,-0.439625,
-0.235200,-0.341697,-0.909903,-0.781435,-0.459529,-0.422129,-0.866161,-0.237687,-0.439625,-0.355051,-0.037353,-0.934100,
0.877580,0.294195,-0.378554,0.883557,0.290675,-0.367198,0.534452,-0.203201,-0.820409,0.440119,-0.035419,-0.897241,
0.806117,0.457186,0.375707,0.717488,0.623231,0.311118,0.883557,0.290675,-0.367198,0.877580,0.294195,-0.378554,
-0.483401,0.012738,0.875306,-0.567707,0.175632,0.804277,0.108269,0.579159,0.807993,0.234547,0.341647,0.910091,
-0.895564,-0.319098,0.310068,-0.890372,-0.328815,0.314830,-0.567707,0.175632,0.804277,-0.483401,0.012738,0.875306,
-0.781435,-0.459529,-0.422129,-0.691765,-0.632643,-0.348171,-0.890372,-0.328815,0.314830,-0.895564,-0.319098,0.310068,
0.299243,0.191454,0.934772,0.299244,0.191456,0.934771,0.299244,0.191456,0.934771,0.299243,0.191454,0.934772,
0.299241,0.191453,0.934773,0.299243,0.191454,0.934772,0.299243,0.191454,0.934772,0.299241,0.191453,0.934773,
0.299239,0.191453,0.934774,0.299241,0.191453,0.934773,0.299241,0.191453,0.934773,0.299239,0.191453,0.934774,
0.155987,0.497213,0.853491,0.155942,0.497212,0.853500,0.155942,0.497212,0.853500,0.155987,0.497213,0.853491,
0.156026,0.497214,0.853484,0.155987,0.497213,0.853491,0.155987,0.497213,0.853491,0.156026,0.497214,0.853484,
0.156057,0.497213,0.853478,0.156026,0.497214,0.853484,0.156026,0.497214,0.853484,0.156057,0.497213,0.853478
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.809861,0.589781,0.837219,0.936149,0.897791,0.586138,0.749607,0.932482,0.749607,0.936149,0.348406,0.547497,
0.203769,0.543860,0.262306,0.543860,0.145143,0.571995,0.145143,0.564868,0.145143,0.561460,0.348406,0.558114,
0.780630,0.575815,0.376284,0.558114,0.348406,0.554707,0.058082,0.554707,0.837219,0.928850,0.868314,0.593406,
0.291382,0.564868,0.954151,0.943159,0.807913,0.957036,0.780630,0.589781,0.778681,0.957036,0.925076,0.946518,
0.780630,0.568885,0.868314,0.572408,0.145143,0.547497,0.262306,0.551160,0.203769,0.568400,0.058082,0.568400,
0.839167,0.582589,0.982910,0.953458,0.807913,0.949930,0.866539,0.939728,0.722665,0.579172,0.722665,0.582589,
0.807913,0.928850,0.866539,0.943159,0.666667,0.568885,0.866539,0.949930,0.927023,0.575815,0.925076,0.936149,
0.868314,0.565302,0.664718,0.946518,0.780630,0.586138,0.749607,0.953458,0.927023,0.582589,0.291382,0.554707,
0.666667,0.579172,0.320140,0.561460,0.778681,0.928850,0.954151,0.953458,0.897791,0.565302,0.262306,0.558114,
0.203769,0.554707,0.046247,0.940248,0.047627,0.946834,0.039662,0.941627,0.041040,0.948212,0.174450,0.568400,
0.965515,0.873791,0.029821,0.554707,0.954151,0.932482,0.897791,0.572408,0.895842,0.936149,0.809861,0.586138,
0.666667,0.589781,0.866539,0.953458,0.291382,0.568400,0.982910,0.939728,0.982910,0.932482,0.692592,0.946518,
0.839167,0.589781,0.839167,0.565302,0.868314,0.568885,0.780630,0.572408,0.968428,0.865497,0.262306,0.561460,
0.203769,0.564868,0.145143,0.543860,0.837219,0.953458,0.954151,0.957036,0.839167,0.572408,0.925076,0.939728,
0.001949,0.564868,0.001949,0.561460,0.868314,0.575815,0.895842,0.939728,0.320140,0.564868,0.956100,0.579172,
0.897791,0.575815,0.897791,0.568885,0.058082,0.564868,0.086837,0.571995,0.115910,0.561460,0.029821,0.561460,
0.925076,0.957036,0.984858,0.582589,0.895842,0.928850,0.780630,0.565302,0.895842,0.949930,0.868314,0.586138,
0.897791,0.579172,0.807913,0.946518,0.720852,0.943159,0.984858,0.575815,0.376284,0.568400,0.807913,0.939728,
0.866539,0.936149,0.965146,0.867072,0.956100,0.572408,0.778681,0.932482,0.751554,0.593406,0.749607,0.957036,
0.722665,0.586138,0.866539,0.928850,0.956100,0.593406,0.666667,0.575815,0.291382,0.571995,0.751554,0.572408,
0.666667,0.582589,0.145143,0.558114,0.348406,0.564868,0.233072,0.558114,0.809861,0.568885,0.722665,0.575815,
0.720852,0.932482,0.320140,0.571995,0.376284,0.564868,0.664718,0.949930,0.720852,0.939728,0.809861,0.593406,
0.666667,0.565302,0.868314,0.579172,0.664718,0.928850,0.692592,0.957036,0.262306,0.554707,0.291382,0.551160,
0.722665,0.565302,0.320140,0.558114,0.174450,0.558114,0.866539,0.957036,0.666667,0.593406,0.895842,0.957036,
0.809861,0.565302,0.809861,0.582589,0.778681,0.949930,0.837219,0.957036,0.203769,0.547497,0.145143,0.568400,
0.984858,0.589781,0.044618,0.948887,0.038987,0.945204,0.233072,0.564868,0.664718,0.936149,0.086837,0.554707,
0.839167,0.593406,0.694507,0.593406,0.982910,0.957036,0.984858,0.565302,0.694507,0.572408,0.720852,0.946518,
0.807913,0.943159,0.778681,0.943159,0.780630,0.582589,0.927023,0.586138,0.664718,0.932482,0.927023,0.579172,
0.262306,0.571995,0.348406,0.568400,0.291382,0.561460,0.376284,0.543860,0.174450,0.547497,0.058082,0.571995,
0.115910,0.571995,0.086837,0.561460,0.954151,0.939728,0.749607,0.946518,0.839167,0.579172,0.664718,0.953458,
0.722665,0.593406,0.320140,0.568400,0.925076,0.932482,0.694507,0.579172,0.956100,0.586138,0.751554,0.586138,
0.973439,0.869987,0.968950,0.874999,0.058082,0.547497,0.233072,0.551160,0.174450,0.571995,0.233072,0.568400,
0.174450,0.564868,0.058082,0.558114,0.174450,0.554707,0.058082,0.551160,0.233072,0.547497,0.174450,0.543860,
0.174450,0.561460,0.984858,0.572408,0.692592,0.953458,0.376284,0.547497,0.839167,0.568885,0.694507,0.589781,
0.694507,0.568885,0.866539,0.946518,0.868314,0.582589,0.320140,0.554707,0.895842,0.932482,0.984858,0.586138,
0.203769,0.551160,0.262306,0.568400,0.348406,0.571995,0.954151,0.936149,0.895842,0.946518,0.749607,0.943159,
0.984858,0.568885,0.751554,0.579172,0.954151,0.946518,0.927023,0.593406,0.895842,0.953458,0.720852,0.957036,
0.927023,0.572408,0.925076,0.943159,0.692592,0.939728,0.694507,0.586138,0.348406,0.543860,0.203769,0.558114,
0.839167,0.586138,0.174450,0.551160,0.233072,0.571995,0.780630,0.579172,0.029821,0.558114,0.751554,0.568885,
0.895842,0.943159,0.984858,0.579172,0.925076,0.953458,0.956100,0.589781,0.956100,0.568885,0.897791,0.582589,
0.720852,0.928850,0.751554,0.589781,0.720852,0.949930,0.963937,0.870509,0.837219,0.932482,0.320140,0.551160,
0.262306,0.564868,0.203769,0.561460,0.376284,0.571995,0.982910,0.946518,0.722665,0.572408,0.927023,0.565302,
0.115910,0.568400,0.291382,0.558114,0.751554,0.582589,0.664718,0.943159,0.778681,0.939728,0.749607,0.939728,
0.692592,0.943159,0.807913,0.932482,0.058082,0.561460,0.233072,0.543860,0.956100,0.565302,0.837219,0.946518,
0.972233,0.873422,0.115910,0.564868,0.029821,0.564868,0.720852,0.936149,0.927023,0.589781,0.694507,0.565302,
0.984858,0.593406,0.749607,0.949930,0.291382,0.543860,0.927023,0.568885,0.837219,0.939728,0.749607,0.928850,
0.376284,0.551160,0.692592,0.932482,0.664718,0.939728,0.971866,0.866703,0.086837,0.543860,0.115910,0.543860,
0.086837,0.568400,0.086837,0.551160,0.115910,0.551160,0.115910,0.554707,0.086837,0.547497,0.115910,0.547497,
0.086837,0.558114,0.115910,0.558114,0.778681,0.946518,0.320140,0.547497,0.925076,0.928850,0.666667,0.572408,
0.956100,0.575815,0.720852,0.953458,0.956100,0.582589,0.376284,0.554707,0.925076,0.949930,0.751554,0.575815,
0.897791,0.589781,0.866539,0.932482,0.348406,0.561460,0.145143,0.554707,0.029821,0.547497,0.029821,0.551160,
0.029821,0.543860,0.001949,0.558114,0.001949,0.554707,0.001949,0.547497,0.001949,0.551160,0.001949,0.543860,
0.001949,0.568400,0.029821,0.568400,0.233072,0.554707,0.001949,0.571995,0.666667,0.586138,0.954151,0.949930,
0.722665,0.568885,0.809861,0.575815,0.722665,0.589781,0.291382,0.547497,0.954151,0.928850,0.982910,0.928850,
0.778681,0.953458,0.751554,0.565302,0.807913,0.953458,0.145143,0.551160,0.262306,0.547497,0.048300,0.943254,
0.058082,0.543860,0.233072,0.561460,0.778681,0.936149,0.694507,0.575815,0.692592,0.928850,0.780630,0.593406,
0.320140,0.543860,0.839167,0.575815,0.807913,0.936149,0.868314,0.589781,0.664718,0.957036,0.692592,0.949930,
0.809861,0.572408,0.982910,0.949930,0.376284,0.561460,0.837219,0.943159,0.837219,0.949930,0.982910,0.943159,
0.348406,0.551160,0.203769,0.571995,0.042669,0.939572,0.982910,0.936149,0.694507,0.582589,0.809861,0.579172,
0.086837,0.564868,0.029821,0.571995,0.897791,0.593406,0.692592,0.936149
UVIndex: 111,332,4,3,3,4,267,126,126,267,357,277,277,357,154,166,50,111,3,275,275,3,126,240,240,126,277,334,334,277,166,134,324,22,113,45,45,113,221,295,295,221,135,200,200,135,340,179,146,324,45,271,271,45,295,242,242,295,200,341,341,200,179,129,
290,146,271,177,177,271,242,161,161,242,341,71,71,341,129,43,162,103,290,163,163,290,177,215,215,177,161,104,104,161,71,258,258,71,43,255,256,163,215,257,257,215,104,130,130,104,258,224,224,258,255,278,332,256,257,4,4,257,130,267,267,130,224,357,
357,224,278,154,259,244,1,338,244,301,108,1,301,208,64,108,208,182,41,64,182,62,213,41,62,70,351,213,150,237,184,209,237,268,165,184,268,300,2,165,300,339,101,2,339,72,228,101,72,0,65,228,0,21,44,65,21,241,185,44,241,320,114,185,
320,203,225,114,203,66,316,225,309,304,305,310,304,188,195,305,188,286,283,195,286,287,284,283,287,26,327,284,26,172,229,327,172,148,210,229,148,196,189,210,196,328,27,189,328,321,137,27,321,291,245,137,291,5,348,245,5,201,276,348,16,115,301,244,
115,98,208,301,98,292,182,208,292,322,62,182,322,323,70,62,270,116,237,150,116,219,268,237,219,356,300,268,356,17,339,300,17,156,72,339,156,131,0,72,131,335,21,0,335,112,241,21,112,180,320,241,180,157,203,320,157,142,66,203,311,306,304,309,
306,330,188,304,330,280,286,188,280,281,287,286,281,79,26,287,79,197,172,26,197,6,148,172,6,261,196,148,261,7,328,196,7,272,321,328,272,336,291,321,336,226,5,291,226,171,201,5,80,67,141,147,67,220,143,141,220,236,96,143,236,51,81,96,
51,31,158,81,216,238,262,159,238,273,251,262,273,91,52,251,91,74,42,52,74,202,73,42,202,124,144,73,124,24,99,144,24,233,325,99,233,318,138,325,318,204,269,138,204,38,132,269,312,313,355,315,313,29,173,355,29,282,93,173,282,252,174,93,
252,149,8,174,149,59,190,8,59,28,349,190,28,191,230,349,191,211,168,230,211,68,118,168,68,181,127,118,181,169,212,127,169,106,248,212,32,346,80,326,346,39,67,80,39,100,220,67,100,298,236,220,298,317,51,236,317,343,31,51,199,110,238,216,
110,222,273,238,222,63,91,273,63,25,74,91,25,82,202,74,82,342,124,202,342,75,24,124,75,119,233,24,119,250,318,233,250,160,204,318,160,293,38,204,84,266,313,312,266,92,29,313,92,354,282,29,354,265,252,282,265,9,149,252,9,192,59,149,
192,78,28,59,78,153,191,28,153,246,211,191,246,18,68,211,18,88,181,68,88,122,169,181,122,128,106,169,263,205,39,346,205,214,100,39,214,23,298,100,23,218,317,298,218,249,343,317,105,294,110,199,294,40,222,110,40,90,63,222,90,86,25,63,
86,337,82,25,337,319,342,82,319,12,75,342,12,299,119,75,299,125,250,119,125,333,160,250,333,117,293,160,85,95,266,84,95,260,92,266,260,175,354,92,175,94,265,354,94,10,9,265,10,198,192,9,198,247,78,192,247,331,153,78,331,77,246,153,
77,170,18,246,170,49,88,18,49,302,122,88,302,344,128,122,345,37,205,263,37,234,214,205,234,223,23,214,223,19,218,23,19,347,249,218,235,89,294,105,89,167,40,294,167,102,90,40,102,133,86,90,133,178,337,86,178,353,319,337,353,231,12,319,
231,217,299,12,217,34,125,299,34,183,333,125,183,48,117,333,307,232,95,85,232,193,260,95,193,288,175,260,288,289,94,175,289,121,10,94,121,140,198,10,140,227,247,198,227,123,331,247,123,53,77,331,53,253,170,77,253,139,49,170,139,11,302,49,
11,13,344,302,274,33,37,345,33,87,234,37,87,83,223,234,83,176,19,223,176,69,347,19,97,296,89,235,296,46,167,89,46,239,102,167,239,206,133,102,206,30,178,133,30,145,353,178,145,164,231,353,164,254,217,231,254,35,34,217,35,352,183,34,
352,120,48,183,308,61,232,307,61,15,193,232,15,155,288,193,155,285,289,288,285,303,121,289,303,194,140,121,194,54,227,140,54,314,123,227,314,136,53,123,136,47,253,53,47,207,139,253,207,14,11,139,14,297,13,11,338,1,274,107,1,108,33,274,
108,64,87,33,64,41,83,87,41,213,176,83,213,351,69,176,209,184,296,97,184,165,46,296,165,2,239,46,2,101,206,239,101,228,30,206,228,65,145,30,65,44,164,145,44,185,254,164,185,114,35,254,114,225,352,35,225,316,120,352,310,305,61,308,
305,195,15,61,195,283,155,15,283,284,285,155,284,327,303,285,327,229,194,303,229,210,54,194,210,189,314,54,189,27,136,314,27,137,47,136,137,245,207,47,245,348,14,207,348,276,297,14,259,338,332,111,36,259,111,50,326,20,22,324,32,326,324,146,
103,32,146,290,107,162,163,256,338,107,256,332,36,16,244,259,326,80,147,20,103,263,346,32,162,345,263,103,107,274,345,162,350,55,329,56,57,350,56,151,152,57,151,58,279,186,264,187,76,279,187,60,109,76,60,243
}
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: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::gas_body", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.084711968898773,-0.507033109664917,-0.006081163883209
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: -2.058978,0.000004,-3.721392,-2.058978,0.000004,-4.013949,-1.958205,0.636263,-4.013949,-1.958205,0.636263,-3.721392,
1.958203,0.636265,-3.721392,1.958203,0.636267,-4.013949,2.058977,0.000006,-4.013949,2.058977,0.000004,-3.721392,
-1.665748,1.210240,-3.721392,-1.665748,1.210240,-4.013949,-1.210238,1.665752,-4.013948,-1.210238,1.665752,-3.721392,
1.958205,-0.636255,-3.721392,1.958205,-0.636252,-4.013949,1.665749,-1.210232,-4.013949,1.665749,-1.210232,-3.721393,
-0.636259,1.958208,-3.721392,-0.636259,1.958208,-4.013948,0.000000,2.058982,-4.013948,0.000000,2.058982,-3.721392,
1.210238,-1.665744,-3.721393,1.210238,-1.665744,-4.013949,0.636260,-1.958204,-4.013949,0.636260,-1.958204,-3.721393,
0.000000,-2.058976,-3.721393,0.000000,-2.058976,-4.013949,-0.636259,-1.958204,-4.013949,-0.636259,-1.958204,-3.721393,
0.636256,1.958208,-3.721392,0.636256,1.958208,-4.013948,1.210235,1.665752,-4.013948,1.210235,1.665752,-3.721392,
-1.210238,-1.665744,-3.721393,-1.210238,-1.665744,-4.013949,-1.665748,-1.210232,-4.013949,-1.665748,-1.210236,-3.721393,
1.665747,1.210242,-3.721392,1.665747,1.210242,-4.013949,-1.958204,-0.636255,-3.721392,-1.958204,-0.636255,-4.013949,
0.000000,2.153563,-3.784304,0.000000,2.153558,4.952977,0.665482,2.048157,4.952977,0.665482,2.048160,-3.784304,
-0.665487,-2.048155,-3.784305,-0.665487,-2.048158,4.952973,-1.265830,-1.742267,4.952973,-1.265830,-1.742264,-3.784305,
1.265827,1.742270,-3.784304,1.265827,1.742267,4.952977,1.742265,1.265833,4.952976,1.742265,1.265838,-3.784304,
-1.742265,-1.265828,-3.784305,-1.742265,-1.265830,4.952974,-2.048157,-0.665486,4.952976,-2.048157,-0.665485,-3.784305,
-2.153559,0.000004,-3.784305,-2.153559,0.000001,4.952976,-2.048157,0.665486,4.952976,-2.048157,0.665489,-3.784305,
2.048155,0.665491,-3.784305,2.048155,0.665488,4.952976,2.153558,0.000002,4.952976,2.153558,0.000004,-3.784305,
-1.742265,1.265832,-3.784304,-1.742265,1.265829,4.952976,-1.265830,1.742265,4.952977,-1.265830,1.742268,-3.784304,
2.048156,-0.665483,-3.784305,2.048156,-0.665485,4.952976,1.742266,-1.265830,4.952974,1.742266,-1.265828,-3.784305,
-0.665487,2.048160,-3.784304,-0.665487,2.048157,4.952977,1.265831,-1.742264,-3.784305,1.265831,-1.742267,4.952973,
0.665488,-2.048158,4.952973,0.665488,-2.048155,-3.784305,0.000000,-2.153555,-3.784305,0.000000,-2.153558,4.952973,
0.927577,-2.083374,-3.784306,0.474151,-2.230697,-3.784307,0.474151,-2.230697,-4.013949,0.927577,-2.083374,-4.013949,
1.340467,-1.844993,-3.784306,1.340467,-1.844993,-4.013949,-0.474150,2.230705,-3.784306,0.000000,2.280542,-3.784306,
0.000000,2.280542,-4.013948,-0.474150,2.230705,-4.013948,0.474154,2.230705,-3.784306,0.927581,2.083375,-3.784306,
0.927581,2.083375,-4.013948,0.474154,2.230705,-4.013948,2.268043,-0.238381,-3.784306,2.168920,-0.704724,-3.784306,
2.168920,-0.704720,-4.013949,2.268043,-0.238379,-4.013949,-1.975003,1.140273,-3.784306,-1.694770,1.525979,-3.784306,
-1.694770,1.525979,-4.013948,-1.975003,1.140273,-4.013949,-1.975003,-1.140269,-3.784306,-2.168921,-0.704724,-3.784306,
-2.168921,-0.704720,-4.013949,-1.975003,-1.140265,-4.013949,1.340468,1.844993,-3.784306,1.694771,1.525977,-3.784306,
1.694771,1.525977,-4.013948,1.340468,1.844993,-4.013948,0.000000,-2.280537,-3.784307,0.000000,-2.280537,-4.013949,
1.975002,-1.140269,-3.784306,1.694769,-1.525977,-3.784306,1.694769,-1.525973,-4.013949,1.975002,-1.140265,-4.013949,
-2.268044,0.238383,-3.784306,-2.168921,0.704726,-3.784306,-2.168921,0.704728,-4.013949,-2.268044,0.238383,-4.013949,
1.975004,1.140269,-3.784306,1.975004,1.140269,-4.013949,-1.340466,-1.844993,-3.784306,-1.694770,-1.525977,-3.784306,
-1.694770,-1.525973,-4.013949,-1.340466,-1.844993,-4.013949,-0.474150,-2.230697,-3.784307,-0.474150,-2.230697,-4.013949,
-0.927578,-2.083374,-3.784306,-0.927578,-2.083374,-4.013949,2.168920,0.704725,-3.784306,2.168920,0.704725,-4.013949,
-1.340466,1.844997,-3.784306,-1.340466,1.844997,-4.013948,-0.927578,2.083376,-3.784306,-0.927578,2.083376,-4.013948,
2.268043,0.238382,-3.784306,2.268043,0.238383,-4.013949,-2.268044,-0.238381,-3.784306,-2.268044,-0.238379,-4.013949,
1.694771,1.525974,5.182621,1.975004,1.140266,5.182621,1.975004,1.140266,4.952976,1.694771,1.525974,4.952977,
-0.927578,2.083375,5.182621,-0.474150,2.230702,5.182621,-0.474150,2.230702,4.952977,-0.927578,2.083375,4.952977,
0.927577,-2.083375,5.182621,0.474149,-2.230702,5.182621,0.474149,-2.230702,4.952973,0.927577,-2.083375,4.952973,
0.000000,-2.280537,5.182621,-0.474150,-2.230702,5.182621,-0.474150,-2.230702,4.952973,0.000000,-2.280537,4.952973,
-2.268044,-0.238380,5.182621,-2.268044,0.238382,5.182621,-2.268044,0.238382,4.952976,-2.268044,-0.238380,4.952976,
-2.168921,0.704725,5.182621,-1.975003,1.140268,5.182621,-1.975003,1.140268,4.952976,-2.168921,0.704725,4.952976,
2.168920,0.704723,5.182621,2.268043,0.238380,5.182621,2.268043,0.238380,4.952976,2.168920,0.704723,4.952976,
0.927581,2.083373,5.182621,1.340468,1.844992,5.182621,1.340468,1.844992,4.952977,0.927581,2.083374,4.952977,
-1.694770,1.525978,5.182621,-1.340466,1.844994,5.182621,-1.340466,1.844994,4.952977,-1.694770,1.525978,4.952977,
-0.927578,-2.083375,5.182621,-1.340466,-1.844996,5.182621,-1.340466,-1.844996,4.952973,-0.927578,-2.083375,4.952973,
-1.694770,-1.525978,5.182621,-1.694770,-1.525978,4.952973,0.474154,2.230702,5.182621,0.474154,2.230702,4.952977,
-1.975003,-1.140268,5.182621,-2.168921,-0.704725,5.182621,-2.168921,-0.704725,4.952976,-1.975003,-1.140268,4.952976,
0.000000,2.280537,5.182621,0.000000,2.280537,4.952977,2.168920,-0.704725,5.182621,1.975002,-1.140268,5.182621,
1.975002,-1.140268,4.952976,2.168920,-0.704725,4.952976,1.340467,-1.844994,5.182621,1.340467,-1.844994,4.952973,
1.694769,-1.525976,5.182621,1.694769,-1.525976,4.952973,2.268043,-0.238382,5.182621,2.268043,-0.238382,4.952976,
0.000000,2.058977,5.182621,0.428090,2.013983,5.182621,1.530119,-1.377724,5.182621,1.210237,-1.665748,5.182621,
-2.047698,-0.215221,5.182621,-2.047698,0.215221,5.182621,0.837464,1.880967,5.182621,1.210238,1.665746,5.182621,
0.837461,-1.880968,5.182621,0.428085,-2.013983,5.182621,-1.958204,0.636258,5.182621,-1.783127,1.029488,5.182621,
1.530120,1.377723,5.182621,1.783127,1.029486,5.182621,-1.530118,1.377725,5.182621,-1.210238,1.665747,5.182621,
0.000000,-2.058979,5.182621,-0.428086,-2.013983,5.182621,1.958203,0.636258,5.182621,2.047697,0.215221,5.182621,
-0.837461,1.880969,5.182621,-0.428086,2.013983,5.182621,-0.837461,-1.880969,5.182621,-1.210236,-1.665748,5.182621,
2.047697,-0.215221,5.182621,1.958203,-0.636258,5.182621,-1.530118,-1.377724,5.182621,-1.783127,-1.029488,5.182621,
1.783127,-1.029488,5.182621,-1.958204,-0.636258,5.182621,2.047697,0.215221,4.890063,2.047697,-0.215221,4.890063,
-0.428086,2.013983,4.890063,0.000000,2.058977,4.890063,-1.210236,-1.665748,4.890062,-1.530118,-1.377724,4.890063,
1.958203,-0.636258,4.890063,1.783127,-1.029488,4.890063,-1.783127,-1.029488,4.890063,-1.958204,-0.636258,4.890063,
0.428090,2.013983,4.890063,1.530119,-1.377724,4.890063,1.210237,-1.665748,4.890062,-2.047698,-0.215221,4.890063,
-2.047698,0.215221,4.890063,0.837464,1.880967,4.890063,1.210238,1.665746,4.890063,0.837461,-1.880968,4.890062,
0.428085,-2.013983,4.890062,-1.958204,0.636258,4.890063,-1.783127,1.029488,4.890063,1.530120,1.377723,4.890063,
1.783127,1.029486,4.890063,-1.530118,1.377725,4.890063,-1.210238,1.665747,4.890063,0.000000,-2.058979,4.890062,
-0.428086,-2.013983,4.890062,1.958203,0.636258,4.890063,-0.837461,1.880969,4.890063,-0.837461,-1.880969,4.890062,
-0.350765,0.675222,5.478250,-0.350765,0.675222,6.279103,-0.156336,0.769178,6.279103,-0.125015,0.769179,5.478250,
0.728771,0.067612,6.279103,0.728771,0.571685,7.259628,0.728771,-1.442137,7.258209,-0.501534,0.565687,5.478250,
-0.501534,0.565686,6.279103,-0.607458,0.418529,5.478250,-0.607458,0.418529,6.279103,-0.178756,0.769456,6.338315,
-0.530944,0.769748,6.279103,-0.530944,0.769745,7.259628,-0.178756,0.769452,7.259628,-0.670993,0.711738,6.279103,
-0.729009,0.571688,6.279103,-0.729009,0.571685,7.259628,-0.670993,0.711735,7.259628,0.350534,0.675222,5.478250,
0.124784,0.769179,5.478250,0.156103,0.769178,6.279103,0.350534,0.675222,6.279103,0.728771,-0.671029,5.478250,
0.728771,0.067879,5.478250,0.501303,0.565687,5.478250,0.501303,0.565686,6.279103,0.607227,0.418529,5.478250,
0.607227,0.418529,6.279103,0.178525,0.769456,6.338315,0.530711,0.769748,6.279103,0.178525,0.769452,7.259628,
0.530711,0.769745,7.259628,0.670761,0.711733,7.259628,0.670761,0.711737,6.279103,-0.729009,0.067879,5.478250,
-0.729009,0.067612,6.279103,-0.729009,-1.442137,7.258209,-0.729009,-0.671027,5.478250,-0.729009,-0.671027,5.223247,
-0.729009,-2.062512,5.223244,0.728771,-2.062512,5.223244,0.728771,-0.671029,5.223247,0.728771,0.571688,6.279103,
-0.729003,1.124917,7.144278,-0.178756,1.124917,7.144278,-0.178756,1.183495,7.248308,-0.729003,1.183495,7.248308,
-0.178756,1.275886,7.275241,-0.729003,1.275886,7.275241,-0.729003,1.162849,6.948056,-0.178756,1.162849,6.948056,
-0.178756,1.117596,7.041085,-0.729003,1.117596,7.041085,-0.729003,1.248559,6.890115,-0.178756,1.248557,6.890115,
0.728771,1.379078,7.267919,-0.729003,1.379080,7.267919,0.178525,1.275886,7.275241,0.728771,1.464786,7.209981,
-0.729003,1.464786,7.209981,0.728771,1.502719,7.013756,-0.729003,1.502719,7.013756,-0.729003,1.510041,7.116951,
0.728771,1.510041,7.116951,0.728771,1.444783,6.928049,-0.729003,1.444783,6.928049,-0.729003,1.351754,6.882792,
0.728771,1.351754,6.882792,0.728771,1.124915,7.144278,0.728771,1.183493,7.248308,0.178525,1.183495,7.248308,
0.178525,1.124917,7.144278,0.728771,1.275886,7.275241,0.728771,1.162849,6.948056,0.728771,1.117592,7.041085,
0.178525,1.117596,7.041085,0.178525,1.162849,6.948056,0.728771,1.248557,6.890115,0.178525,1.248557,6.890115,
-0.178756,0.796742,6.338315,0.178525,0.796742,6.338315,-0.000116,0.984838,5.478250,-0.373783,0.910512,5.478250,
0.373550,0.910512,5.478250,0.690331,0.698847,5.478250,0.901995,0.382067,5.478250,-0.690562,0.698847,5.478250,
-0.902226,0.382068,5.478250,-0.976554,0.008401,5.478250,-0.902226,-0.365267,5.478250,0.976321,0.008401,5.478250,
0.901995,-0.365267,5.478250,-0.373783,-0.893710,5.223247,-0.373783,-0.893710,4.850709,-0.000116,-0.968038,4.850709,
-0.000116,-0.968038,5.223247,-0.000116,0.984838,4.850709,-0.373783,0.910512,4.850709,-0.729009,-0.671027,4.850709,
0.373550,-0.893711,4.850709,0.373550,-0.893712,5.223247,0.728771,-0.671029,4.850709,0.901995,-0.365267,4.850709,
0.976321,0.008401,4.850709,-0.902226,-0.365267,4.850709,-0.690562,0.698847,4.850709,0.373550,0.910512,4.850709,
0.901995,0.382067,4.850709,0.690331,0.698847,4.850709,-0.902226,0.382068,4.850709,-0.976554,0.008401,4.850709
PolygonVertexIndex: 0,1,2,-4,4,5,6,-8,8,9,10,-12,12,13,14,-16,16,17,18,-20,20,21,22,-24,24,25,26,-28,28,29,30,-32,
32,33,34,-36,36,37,5,-5,38,39,1,-1,3,2,9,-9,7,6,13,-13,11,10,17,-17,15,14,21,-21,23,22,25,-25,
19,18,29,-29,27,26,33,-33,31,30,37,-37,35,34,39,-39,40,41,42,-44,44,45,46,-48,48,49,50,-52,52,53,54,-56,
56,57,58,-60,60,61,62,-64,64,65,66,-68,68,69,70,-72,72,73,41,-41,74,75,76,-78,78,79,45,-45,43,42,49,-49,
47,46,53,-53,51,50,61,-61,55,54,57,-57,59,58,65,-65,63,62,69,-69,67,66,73,-73,71,70,75,-75,77,76,79,-79,
80,81,82,-84,84,80,83,-86,86,87,88,-90,90,91,92,-94,94,95,96,-98,98,99,100,-102,102,103,104,-106,106,107,108,-110,
81,110,111,-83,112,113,114,-116,116,117,118,-120,87,90,93,-89,91,106,109,-93,107,120,121,-109,122,123,124,-126,110,126,127,-112,
95,112,115,-97,128,122,125,-130,117,98,101,-119,120,130,131,-122,99,132,133,-101,134,86,89,-136,126,128,129,-128,113,84,85,-115,
130,136,137,-132,136,94,97,-138,138,116,119,-140,123,102,105,-125,103,138,139,-105,132,134,135,-134,140,141,142,-144,144,145,146,-148,
148,149,150,-152,152,153,154,-156,156,157,158,-160,160,161,162,-164,164,165,166,-168,168,169,170,-172,172,173,174,-176,176,177,178,-180,
177,180,181,-179,182,168,171,-184,184,185,186,-188,157,160,163,-159,161,172,175,-163,188,182,183,-190,141,164,167,-143,180,184,187,-182,
153,176,179,-155,145,188,189,-147,185,156,159,-187,190,191,192,-194,194,148,151,-196,196,194,195,-198,169,140,143,-171,149,152,155,-151,
198,190,193,-200,173,144,147,-175,191,196,197,-193,165,198,199,-167,36,4,7,-13,31,36,12,-16,28,31,15,-21,19,28,20,-24,
16,19,23,-25,11,16,24,-28,8,11,27,-33,3,8,32,-36,0,3,35,-39,200,201,182,-189,202,203,194,-197,204,205,157,-157,
206,207,169,-169,208,209,149,-149,210,211,161,-161,212,213,141,-141,214,215,173,-173,216,217,153,-153,218,219,165,-165,220,221,145,-145,
222,223,177,-177,224,225,190,-199,226,227,184,-181,228,202,196,-192,229,204,156,-186,201,206,168,-183,203,208,148,-195,205,210,160,-158,
207,212,140,-170,211,214,172,-162,209,216,152,-150,213,218,164,-142,215,220,144,-174,217,222,176,-154,219,224,198,-166,221,200,188,-146,
223,226,180,-178,225,228,191,-191,227,229,185,-185,224,219,230,-232,200,221,232,-234,226,223,234,-236,228,225,236,-238,229,227,238,-240,
201,200,233,-241,203,202,241,-243,205,204,243,-245,207,206,245,-247,209,208,247,-249,211,210,249,-251,213,212,251,-253,215,214,253,-255,
217,216,255,-257,219,218,257,-231,221,220,258,-233,223,222,259,-235,225,224,231,-237,227,226,235,-239,202,228,237,-242,204,229,239,-244,
206,201,240,-246,208,203,242,-248,210,205,244,-250,212,207,246,-252,214,211,250,-254,216,209,248,-256,218,213,252,-258,220,215,254,-259,
222,217,256,-260,25,22,-83,104,139,-40,39,105,-105,33,125,-125,26,127,-130,25,82,-112,21,85,-84,14,115,-115,13,97,-97,105,
39,-35,115,13,-97,124,105,-35,14,13,-116,124,34,-34,21,14,-115,129,33,-27,85,21,-115,129,125,-34,22,21,-84,127,26,-26,
82,22,-84,25,111,-128,18,88,-94,97,13,-7,1,39,-140,137,6,-6,119,1,-140,137,97,-7,2,1,-120,121,5,-38,118,2,
-120,131,137,-6,101,2,-119,121,131,-6,9,2,-102,108,37,-31,100,9,-102,108,121,-38,10,9,-101,92,30,-30,133,10,-101,109,
108,-31,135,10,-134,92,109,-31,17,10,-136,93,29,-19,89,17,-136,18,89,-89,29,93,-93,89,18,-18,116,138,-57,126,78,-45,
86,40,-88,126,110,-79,72,40,-87,128,44,-48,134,72,-87,128,126,-45,67,72,-135,123,47,-53,132,67,-135,122,128,-48,99,67,
-133,123,122,-48,64,67,-100,102,52,-56,98,64,-100,102,123,-53,59,64,-99,138,55,-57,117,59,-99,59,117,-117,55,138,-104,103,
102,-56,56,59,-117,94,136,-64,90,40,-44,81,78,-111,90,87,-41,77,78,-82,91,43,-49,80,77,-82,91,90,-44,74,77,-81,
107,48,-52,84,74,-81,106,91,-49,113,74,-85,107,106,-49,71,74,-114,120,51,-61,112,71,-114,120,107,-52,68,71,-113,136,60,
-64,95,68,-113,68,95,-95,60,136,-131,130,120,-61,63,68,-95,57,54,-160,146,189,-42,73,147,-147,66,175,-175,58,163,-163,57,
159,-159,54,187,-187,46,178,-182,45,154,-180,154,79,-156,146,41,-74,45,79,-155,147,73,-67,46,45,-180,174,147,-67,178,46,-180,
175,66,-66,53,46,-182,162,175,-66,187,53,-182,162,65,-59,54,53,-188,158,58,-58,159,54,-187,158,163,-59,62,61,-167,150,155,
-80,76,151,-151,75,197,-196,69,193,-193,62,166,-200,61,142,-168,49,170,-144,42,183,-172,183,41,-190,150,79,-77,42,41,-184,151,
76,-76,49,42,-172,195,151,-76,170,49,-172,197,75,-71,50,49,-144,192,197,-71,142,50,-144,192,70,-70,61,50,-143,199,69,-63,
166,61,-168,199,193,-70,249,244,243,-240,250,249,239,-239,253,250,238,-236,254,253,235,-235,258,254,234,-260,232,258,259,-257,233,232,
256,-256,240,233,255,-249,245,240,248,-248,246,245,247,-243,251,246,242,-242,252,251,241,-238,257,252,237,-237,230,257,236,-232,260,261,
262,-264,264,265,-267,267,268,261,-261,269,270,268,-268,271,262,-273,271,272,273,-275,275,276,277,-279,272,275,278,-274,279,280,281,-283,
283,284,264,-267,285,279,282,-287,287,285,286,-289,289,290,-282,289,291,292,-291,290,292,293,-295,295,296,270,-270,284,287,288,-265,262,
271,289,-282,263,262,281,-281,297,296,295,-299,299,300,297,-299,301,302,283,-267,294,293,265,-304,277,276,-297,296,297,-278,265,264,-304,
304,305,306,-308,306,308,309,-308,310,311,312,-314,314,315,311,-311,316,317,308,-319,319,320,317,-317,321,322,323,-325,325,326,322,-322,
309,308,-318,327,315,-315,313,312,305,-305,324,323,320,-320,328,327,326,-326,329,330,331,-333,331,330,333,-319,334,335,336,-338,338,334,
337,-340,333,316,-319,328,338,-340,335,329,332,-337,273,278,-278,274,273,-278,308,274,291,-319,339,315,327,-329,277,297,266,-266,277,265,
-275,265,292,-292,265,291,-275,292,265,-294,340,315,339,-342,342,263,-281,343,260,263,-343,280,279,344,-343,345,285,287,-347,344,279,285,
-346,343,347,267,-261,348,349,295,-270,349,350,-296,351,284,-353,347,348,269,-268,284,283,-353,350,298,-296,346,287,284,-352,353,354,355,
-357,342,357,358,-344,299,359,354,-354,356,355,360,-362,302,362,363,-353,361,360,362,-303,352,363,364,-352,299,350,365,-360,343,358,366,
-348,344,367,357,-343,351,364,368,-347,345,369,367,-345,346,368,369,-346,349,348,370,-372,350,349,371,-366,348,347,366,-371,298,350,-300,
283,302,-353,311,271,-313,274,308,-307,311,315,-341,274,306,-306,271,311,-341,274,305,-313,312,271,-275,261,272,-263,268,275,272,-262,270,
276,275,-269,296,276,-271,310,313,304,-308,314,310,307,-310,327,314,309,-318,326,327,317,-321,322,326,320,-324,337,336,-290,291,331,-319,
337,341,-340,291,332,-332,289,341,-338,291,336,-333,336,291,-290,282,281,-291,286,282,290,-295,288,286,294,-304,264,288,-304,297,300,301,
-267,271,340,341,-290,361,302,-302,301,300,-357,300,299,-354,356,361,-302,300,353,-357,325,321,324,-320,328,325,319,-317,338,328,316,-334,
334,338,333,-331,335,334,330,-330
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: 1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,0.951056,-0.309017,-0.000000,0.951057,-0.309017,-0.000000,
-0.951057,-0.309017,-0.000001,-0.951056,-0.309018,-0.000001,-1.000000,-0.000002,0.000000,-1.000000,-0.000001,0.000000,
0.809017,-0.587785,0.000000,0.809017,-0.587785,0.000000,0.587785,-0.809017,0.000000,0.587785,-0.809017,0.000000,
-0.951057,0.309017,0.000002,-0.951057,0.309015,0.000002,-0.809018,0.587784,0.000001,-0.809018,0.587784,0.000001,
0.309017,-0.951057,0.000000,0.309017,-0.951057,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,
-0.587788,0.809015,0.000000,-0.587788,0.809015,0.000000,-0.309018,0.951056,0.000000,-0.309018,0.951056,0.000000,
0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.309018,0.951056,0.000000,0.309018,0.951056,0.000000,
-0.309017,-0.951056,0.000000,-0.309017,-0.951056,0.000000,-0.587784,-0.809018,0.000000,-0.587784,-0.809018,0.000000,
0.587787,0.809016,0.000002,0.587787,0.809016,0.000002,0.809018,0.587784,0.000003,0.809017,0.587786,0.000003,
-0.809016,-0.587786,-0.000001,-0.809016,-0.587786,-0.000001,-0.951056,-0.309018,-0.000001,-0.951057,-0.309017,-0.000001,
0.951056,0.309017,0.000001,0.951056,0.309017,0.000001,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,
0.951057,-0.309017,-0.000000,0.951056,-0.309017,-0.000000,0.809017,-0.587785,0.000000,0.809017,-0.587785,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000002,0.000000,-0.951057,0.309015,0.000002,-0.951057,0.309017,0.000002,
0.587785,-0.809017,0.000000,0.587785,-0.809017,0.000000,0.309017,-0.951057,0.000000,0.309017,-0.951057,0.000000,
-0.809018,0.587784,0.000001,-0.809018,0.587784,0.000001,-0.587788,0.809015,0.000000,-0.587788,0.809015,0.000000,
-0.309018,0.951056,0.000000,-0.309018,0.951056,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,
-0.000000,-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.309017,-0.951056,0.000000,-0.309017,-0.951056,0.000000,
0.309018,0.951056,0.000000,0.309018,0.951056,0.000000,0.587787,0.809016,0.000002,0.587787,0.809016,0.000002,
-0.587784,-0.809018,0.000000,-0.587784,-0.809018,0.000000,-0.809016,-0.587786,-0.000001,-0.809016,-0.587786,-0.000001,
0.809017,0.587786,0.000003,0.809018,0.587784,0.000003,0.951056,0.309017,0.000001,0.951056,0.309017,0.000001,
0.000001,1.000000,0.000000,0.000001,1.000000,0.000000,0.309017,0.951057,0.000000,0.309017,0.951057,0.000000,
-0.309016,-0.951057,-0.000000,-0.309016,-0.951057,-0.000000,-0.587786,-0.809016,-0.000000,-0.587786,-0.809016,-0.000000,
0.587783,0.809019,0.000000,0.587783,0.809019,0.000000,0.809016,0.587786,0.000000,0.809016,0.587786,0.000000,
-0.809017,-0.587786,-0.000000,-0.809017,-0.587785,-0.000000,-0.951057,-0.309017,-0.000000,-0.951057,-0.309017,-0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-0.951056,0.309017,0.000000,-0.951056,0.309017,0.000000,
0.951057,0.309017,0.000000,0.951057,0.309016,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,
-0.809016,0.587786,0.000000,-0.809016,0.587786,0.000000,-0.587786,0.809016,0.000000,-0.587786,0.809016,0.000000,
0.951057,-0.309016,-0.000000,0.951057,-0.309015,-0.000000,0.809018,-0.587784,-0.000000,0.809018,-0.587784,-0.000000,
-0.309018,0.951056,0.000000,-0.309018,0.951056,0.000000,0.000001,1.000000,0.000000,0.000001,1.000000,0.000000,
0.587786,-0.809016,-0.000000,0.587786,-0.809016,-0.000000,0.309016,-0.951057,-0.000000,0.309016,-0.951057,-0.000000,
0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.309016,-0.951057,-0.000000,-0.309016,-0.951057,-0.000000,
0.309017,0.951057,0.000000,0.309017,0.951057,0.000000,0.587783,0.809019,0.000000,0.587783,0.809019,0.000000,
-0.587786,-0.809016,-0.000000,-0.587786,-0.809016,-0.000000,-0.809017,-0.587785,-0.000000,-0.809017,-0.587786,-0.000000,
0.809016,0.587786,0.000000,0.809016,0.587786,0.000000,0.951057,0.309016,0.000000,0.951057,0.309017,0.000000,
-0.951057,-0.309017,-0.000000,-0.951057,-0.309017,-0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-0.951056,0.309017,0.000000,-0.951056,0.309017,0.000000,-0.809016,0.587786,0.000000,-0.809016,0.587786,0.000000,
1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,0.951057,-0.309015,-0.000000,0.951057,-0.309016,-0.000000,
-0.587786,0.809016,0.000000,-0.587786,0.809016,0.000000,-0.309018,0.951056,0.000000,-0.309018,0.951056,0.000000,
0.809018,-0.587784,-0.000000,0.809018,-0.587784,-0.000000,0.587786,-0.809016,-0.000000,0.587786,-0.809016,-0.000000,
0.309016,-0.951057,-0.000000,0.309016,-0.951057,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,
0.406733,-0.913547,0.000000,0.207913,-0.978147,0.000000,0.207913,-0.978147,0.000000,0.406733,-0.913547,0.000000,
0.587786,-0.809016,-0.000003,0.406733,-0.913547,0.000000,0.406733,-0.913547,0.000000,0.587786,-0.809016,-0.000003,
-0.207914,0.978147,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.207914,0.978147,0.000000,
0.207916,0.978147,0.000000,0.406740,0.913544,0.000000,0.406740,0.913544,0.000000,0.207916,0.978147,0.000000,
0.994522,-0.104528,-0.000001,0.951056,-0.309018,-0.000004,0.951057,-0.309016,-0.000004,0.994522,-0.104527,-0.000001,
-0.866025,0.500001,0.000001,-0.743145,0.669131,0.000000,-0.743145,0.669131,0.000000,-0.866025,0.500001,0.000001,
-0.866025,-0.500000,-0.000008,-0.951056,-0.309018,-0.000004,-0.951057,-0.309016,-0.000004,-0.866026,-0.499999,-0.000008,
0.587786,0.809016,0.000000,0.743145,0.669131,0.000000,0.743145,0.669131,0.000000,0.587786,0.809016,0.000000,
0.207913,-0.978147,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.207913,-0.978147,0.000000,
0.866025,-0.500001,-0.000008,0.743146,-0.669129,-0.000007,0.743147,-0.669128,-0.000007,0.866026,-0.499999,-0.000008,
-0.994522,0.104528,0.000000,-0.951057,0.309016,0.000001,-0.951057,0.309017,0.000001,-0.994522,0.104528,0.000000,
-0.000000,1.000000,0.000000,0.207916,0.978147,0.000000,0.207916,0.978147,0.000000,-0.000000,1.000000,0.000000,
0.406740,0.913544,0.000000,0.587786,0.809016,0.000000,0.587786,0.809016,0.000000,0.406740,0.913544,0.000000,
0.743145,0.669131,0.000000,0.866026,0.500000,0.000000,0.866026,0.499999,0.000000,0.743145,0.669131,0.000000,
-0.587786,-0.809017,-0.000003,-0.743145,-0.669131,-0.000007,-0.743146,-0.669129,-0.000007,-0.587786,-0.809017,-0.000003,
0.000000,-1.000000,0.000000,-0.207913,-0.978147,0.000000,-0.207913,-0.978147,0.000000,0.000000,-1.000000,0.000000,
0.951056,-0.309018,-0.000004,0.866025,-0.500001,-0.000008,0.866026,-0.499999,-0.000008,0.951057,-0.309016,-0.000004,
-0.406733,-0.913547,0.000000,-0.587786,-0.809017,-0.000003,-0.587786,-0.809017,-0.000003,-0.406733,-0.913547,0.000000,
-0.951057,0.309016,0.000001,-0.866025,0.500001,0.000001,-0.866025,0.500001,0.000001,-0.951057,0.309017,0.000001,
0.866026,0.500000,0.000000,0.951057,0.309016,0.000000,0.951057,0.309016,0.000000,0.866026,0.499999,0.000000,
-0.743145,0.669131,0.000000,-0.587785,0.809017,0.000000,-0.587785,0.809017,0.000000,-0.743145,0.669131,0.000000,
-0.406737,0.913545,0.000000,-0.207914,0.978147,0.000000,-0.207914,0.978147,0.000000,-0.406737,0.913545,0.000000,
-0.207913,-0.978147,0.000000,-0.406733,-0.913547,0.000000,-0.406733,-0.913547,0.000000,-0.207913,-0.978147,0.000000,
0.743146,-0.669129,-0.000007,0.587786,-0.809016,-0.000003,0.587786,-0.809016,-0.000003,0.743147,-0.669128,-0.000007,
0.951057,0.309016,0.000000,0.994522,0.104527,0.000000,0.994522,0.104528,0.000000,0.951057,0.309016,0.000000,
0.994522,0.104527,0.000000,0.994522,-0.104528,-0.000001,0.994522,-0.104527,-0.000001,0.994522,0.104528,0.000000,
-0.994522,-0.104529,-0.000001,-0.994522,0.104528,0.000000,-0.994522,0.104528,0.000000,-0.994522,-0.104528,-0.000001,
-0.743145,-0.669131,-0.000007,-0.866025,-0.500000,-0.000008,-0.866026,-0.499999,-0.000008,-0.743146,-0.669129,-0.000007,
-0.951056,-0.309018,-0.000004,-0.994522,-0.104529,-0.000001,-0.994522,-0.104528,-0.000001,-0.951057,-0.309016,-0.000004,
-0.587785,0.809017,0.000000,-0.406737,0.913545,0.000000,-0.406737,0.913545,0.000000,-0.587785,0.809017,0.000000,
0.743146,0.669129,0.000000,0.866026,0.499999,0.000000,0.866026,0.499999,0.000000,0.743146,0.669129,0.000000,
-0.406736,0.913546,0.000001,-0.207911,0.978148,0.000002,-0.207911,0.978148,0.000002,-0.406736,0.913546,0.000001,
0.406735,-0.913546,-0.000001,0.207911,-0.978148,-0.000001,0.207911,-0.978148,-0.000001,0.406735,-0.913546,-0.000001,
0.000000,-1.000000,-0.000001,-0.207911,-0.978148,-0.000001,-0.207911,-0.978148,-0.000001,0.000000,-1.000000,-0.000001,
-0.994522,-0.104528,-0.000000,-0.994522,0.104528,0.000000,-0.994522,0.104528,0.000000,-0.994522,-0.104528,-0.000000,
-0.951056,0.309018,0.000000,-0.866026,0.500000,0.000000,-0.866026,0.500000,0.000000,-0.951056,0.309018,0.000000,
0.951057,0.309015,0.000000,0.994522,0.104528,0.000000,0.994522,0.104528,0.000000,0.951057,0.309015,0.000000,
0.406738,0.913545,0.000001,0.587787,0.809015,0.000001,0.587787,0.809015,0.000001,0.406738,0.913545,0.000001,
-0.743145,0.669130,0.000000,-0.587785,0.809017,0.000000,-0.587785,0.809017,0.000000,-0.743146,0.669130,0.000000,
-0.406735,-0.913546,-0.000001,-0.587785,-0.809017,-0.000000,-0.587785,-0.809017,-0.000000,-0.406735,-0.913546,-0.000001,
-0.587785,-0.809017,-0.000000,-0.743146,-0.669129,0.000000,-0.743146,-0.669129,0.000000,-0.587785,-0.809017,-0.000000,
0.207912,0.978148,0.000001,0.406738,0.913545,0.000001,0.406738,0.913545,0.000001,0.207912,0.978148,0.000001,
-0.866026,-0.500000,0.000000,-0.951056,-0.309017,-0.000000,-0.951056,-0.309017,-0.000000,-0.866026,-0.500000,0.000000,
-0.994522,0.104528,0.000000,-0.951056,0.309018,0.000000,-0.951056,0.309018,0.000000,-0.994522,0.104528,0.000000,
-0.866026,0.500000,0.000000,-0.743145,0.669130,0.000000,-0.743146,0.669130,0.000000,-0.866026,0.500000,0.000000,
-0.000000,1.000000,0.000001,0.207912,0.978148,0.000001,0.207912,0.978148,0.000001,-0.000000,1.000000,0.000001,
0.866026,0.499999,0.000000,0.951057,0.309015,0.000000,0.951057,0.309015,0.000000,0.866026,0.499999,0.000000,
-0.743146,-0.669129,0.000000,-0.866026,-0.500000,0.000000,-0.866026,-0.500000,0.000000,-0.743146,-0.669129,0.000000,
-0.207911,-0.978148,-0.000001,-0.406735,-0.913546,-0.000001,-0.406735,-0.913546,-0.000001,-0.207911,-0.978148,-0.000001,
-0.207911,0.978148,0.000002,-0.000000,1.000000,0.000001,-0.000000,1.000000,0.000001,-0.207911,0.978148,0.000002,
-0.951056,-0.309017,-0.000000,-0.994522,-0.104528,-0.000000,-0.994522,-0.104528,-0.000000,-0.951056,-0.309017,-0.000000,
0.951056,-0.309017,0.000000,0.866025,-0.500001,0.000000,0.866025,-0.500001,0.000000,0.951056,-0.309017,0.000000,
0.587787,-0.809016,-0.000000,0.406735,-0.913546,-0.000001,0.406735,-0.913546,-0.000001,0.587787,-0.809016,-0.000000,
0.743147,-0.669129,0.000000,0.587787,-0.809016,-0.000000,0.587787,-0.809016,-0.000000,0.743146,-0.669129,0.000000,
0.587787,0.809015,0.000001,0.743146,0.669129,0.000000,0.743146,0.669129,0.000000,0.587787,0.809015,0.000001,
0.207911,-0.978148,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.207911,-0.978148,-0.000001,
0.994522,-0.104528,0.000000,0.951056,-0.309017,0.000000,0.951056,-0.309017,0.000000,0.994522,-0.104528,0.000000,
-0.587785,0.809017,0.000000,-0.406736,0.913546,0.000001,-0.406736,0.913546,0.000001,-0.587785,0.809017,0.000000,
0.866025,-0.500001,0.000000,0.743147,-0.669129,0.000000,0.743146,-0.669129,0.000000,0.866025,-0.500001,0.000000,
0.994522,0.104528,0.000000,0.994522,-0.104528,0.000000,0.994522,-0.104528,0.000000,0.994522,0.104528,0.000000,
0.000000,0.000000,-1.000000,-0.000002,-0.000000,-1.000000,-0.000002,-0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,-0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,-0.000000,-1.000000,
-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000001,-0.000001,1.000000,0.000000,-0.000001,1.000000,0.000000,-0.000001,1.000000,-0.000001,-0.000001,1.000000,
0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,0.000000,1.000000,
-0.000000,0.000000,1.000000,0.000000,-0.000001,1.000000,0.000000,-0.000001,1.000000,-0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000000,-0.000001,1.000000,0.000000,-0.000001,1.000000,0.000000,0.000000,1.000000,
0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,
0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,
-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000001,-0.000001,1.000000,-0.000001,-0.000001,1.000000,0.000000,0.000000,1.000000,
-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,
0.000000,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000000,-0.000001,1.000000,
-0.000001,-0.000001,1.000000,-0.000001,-0.000001,1.000000,-0.000001,-0.000001,1.000000,-0.000001,-0.000001,1.000000,
0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,
-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000000,-0.000001,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000001,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000000,-0.000001,1.000000,
0.000000,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000001,-0.000001,1.000000,0.000000,-0.000001,1.000000,
-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000001,-0.000001,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000001,1.000000,
0.000001,-0.000001,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000001,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
-0.000001,-0.000001,1.000000,0.000000,-0.000001,1.000000,0.000000,-0.000001,1.000000,-0.000001,-0.000001,1.000000,
-0.000001,0.000000,1.000000,-0.000001,-0.000001,1.000000,-0.000001,-0.000001,1.000000,-0.000001,0.000000,1.000000,
0.000001,-0.000001,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,-0.000001,1.000000,
-0.994522,0.104528,0.000000,-0.994522,-0.104528,-0.000000,-0.994522,-0.104528,-0.000000,-0.994522,0.104528,0.000000,
0.000000,-1.000000,0.000000,0.207912,-0.978148,-0.000000,0.207911,-0.978148,-0.000000,0.000000,-1.000000,0.000000,
0.743144,0.669131,0.000000,0.587786,0.809016,0.000000,0.587786,0.809016,0.000000,0.743144,0.669131,0.000000,
-0.866026,0.499999,0.000000,-0.951057,0.309016,0.000000,-0.951057,0.309016,0.000000,-0.866026,0.499999,0.000000,
0.951057,0.309016,0.000000,0.866025,0.500001,0.000000,0.866025,0.500001,0.000000,0.951057,0.309016,0.000000,
-0.207914,-0.978147,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,-0.207914,-0.978147,-0.000000,
-0.587784,0.809018,0.000000,-0.743145,0.669130,0.000000,-0.743145,0.669130,0.000000,-0.587784,0.809018,0.000000,
0.994522,-0.104528,-0.000000,0.994522,0.104528,0.000000,0.994522,0.104528,0.000000,0.994522,-0.104528,-0.000000,
-0.587785,-0.809017,0.000000,-0.406738,-0.913545,-0.000000,-0.406738,-0.913545,-0.000000,-0.587785,-0.809017,0.000000,
-0.207916,0.978147,0.000000,-0.406735,0.913546,0.000000,-0.406735,0.913546,0.000000,-0.207916,0.978147,0.000000,
0.866026,-0.500000,-0.000000,0.951057,-0.309016,-0.000000,0.951057,-0.309016,-0.000000,0.866026,-0.500000,-0.000000,
-0.866027,-0.499997,-0.000000,-0.743146,-0.669129,0.000000,-0.743146,-0.669129,0.000000,-0.866027,-0.499997,-0.000000,
0.587785,-0.809017,0.000000,0.743145,-0.669131,0.000000,0.743145,-0.669131,0.000000,0.587785,-0.809017,0.000000,
0.207914,0.978147,0.000000,-0.000000,1.000000,0.000001,-0.000000,1.000000,0.000001,0.207914,0.978147,0.000000,
-0.994522,-0.104528,-0.000000,-0.951057,-0.309016,-0.000000,-0.951057,-0.309016,-0.000000,-0.994522,-0.104528,-0.000000,
0.207912,-0.978148,-0.000000,0.406735,-0.913546,-0.000000,0.406735,-0.913546,-0.000000,0.207911,-0.978148,-0.000000,
0.587786,0.809016,0.000000,0.406736,0.913546,0.000000,0.406736,0.913546,0.000000,0.587786,0.809016,0.000000,
-0.951057,0.309016,0.000000,-0.994522,0.104528,0.000000,-0.994522,0.104528,0.000000,-0.951057,0.309016,0.000000,
0.866025,0.500001,0.000000,0.743144,0.669131,0.000000,0.743144,0.669131,0.000000,0.866025,0.500001,0.000000,
-0.743145,0.669130,0.000000,-0.866026,0.499999,0.000000,-0.866026,0.499999,0.000000,-0.743145,0.669130,0.000000,
0.994522,0.104528,0.000000,0.951057,0.309016,0.000000,0.951057,0.309016,0.000000,0.994522,0.104528,0.000000,
-0.406738,-0.913545,-0.000000,-0.207914,-0.978147,-0.000000,-0.207914,-0.978147,-0.000000,-0.406738,-0.913545,-0.000000,
-0.406735,0.913546,0.000000,-0.587784,0.809018,0.000000,-0.587784,0.809018,0.000000,-0.406735,0.913546,0.000000,
0.951057,-0.309016,-0.000000,0.994522,-0.104528,-0.000000,0.994522,-0.104528,-0.000000,0.951057,-0.309016,-0.000000,
-0.743146,-0.669129,0.000000,-0.587785,-0.809017,0.000000,-0.587785,-0.809017,0.000000,-0.743146,-0.669129,0.000000,
0.743145,-0.669131,0.000000,0.866026,-0.500000,-0.000000,0.866026,-0.500000,-0.000000,0.743145,-0.669131,0.000000,
-0.000000,1.000000,0.000001,-0.207916,0.978147,0.000000,-0.207916,0.978147,0.000000,-0.000000,1.000000,0.000001,
-0.951057,-0.309016,-0.000000,-0.866027,-0.499997,-0.000000,-0.866027,-0.499997,-0.000000,-0.951057,-0.309016,-0.000000,
0.406735,-0.913546,-0.000000,0.587785,-0.809017,0.000000,0.587785,-0.809017,0.000000,0.406735,-0.913546,-0.000000,
0.406736,0.913546,0.000000,0.207914,0.978147,0.000000,0.207914,0.978147,0.000000,0.406736,0.913546,0.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000001,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000001,0.000001,-1.000000,-0.000002,0.000000,-1.000000,-0.000001,0.000001,-1.000000,
0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000001,0.000001,-1.000000,-0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000001,-1.000000,0.000001,0.000000,-1.000000,0.000001,0.000001,-1.000000,
-0.000001,0.000001,-1.000000,0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,0.000000,0.000001,-1.000000,
0.000001,0.000001,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000001,-1.000000,
-0.000001,0.000001,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000001,-1.000000,0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,0.000000,0.000001,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
0.000002,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000002,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000001,0.000001,-1.000000,-0.000000,0.000000,-1.000000,
0.000002,0.000000,-1.000000,-0.000000,0.000001,-1.000000,0.000000,0.000001,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000001,-1.000000,0.000001,0.000001,-1.000000,0.000002,0.000000,-1.000000,-0.000000,0.000001,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000001,-1.000000,0.000001,0.000000,-1.000000,0.000001,0.000001,-1.000000,
0.000000,0.000001,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000001,-1.000000,0.000001,0.000000,-1.000000,
-0.000000,0.000001,-1.000000,0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000010,0.000001,1.000000,-0.000007,-0.000001,1.000000,
-0.000011,0.000000,1.000000,-0.000002,-0.000011,1.000000,-0.000000,-0.000013,1.000000,-0.000005,-0.000012,1.000000,
-0.000002,0.000008,1.000000,-0.000000,0.000009,1.000000,0.000000,0.000009,1.000000,-0.000002,-0.000011,1.000000,
0.000000,-0.000013,1.000000,-0.000000,-0.000013,1.000000,-0.000002,0.000010,1.000000,-0.000000,0.000009,1.000000,
-0.000002,0.000008,1.000000,-0.000005,-0.000009,1.000000,-0.000005,-0.000012,1.000000,-0.000007,-0.000009,1.000000,
-0.000004,0.000009,1.000000,-0.000002,0.000010,1.000000,-0.000002,0.000008,1.000000,-0.000005,-0.000009,1.000000,
-0.000002,-0.000011,1.000000,-0.000005,-0.000012,1.000000,-0.000008,0.000009,1.000000,-0.000002,0.000010,1.000000,
-0.000004,0.000009,1.000000,-0.000006,-0.000007,1.000000,-0.000007,-0.000009,1.000000,-0.000010,-0.000007,1.000000,
-0.000009,0.000009,1.000000,-0.000008,0.000009,1.000000,-0.000004,0.000009,1.000000,-0.000008,-0.000009,1.000000,
-0.000005,-0.000009,1.000000,-0.000007,-0.000009,1.000000,-0.000007,0.000007,1.000000,-0.000008,0.000009,1.000000,
-0.000009,0.000009,1.000000,-0.000006,-0.000007,1.000000,-0.000008,-0.000009,1.000000,-0.000007,-0.000009,1.000000,
-0.000009,0.000007,1.000000,-0.000008,0.000009,1.000000,-0.000007,0.000007,1.000000,-0.000013,-0.000005,1.000000,
-0.000010,-0.000007,1.000000,-0.000008,-0.000004,1.000000,-0.000008,0.000004,1.000000,-0.000009,0.000007,1.000000,
-0.000007,0.000007,1.000000,-0.000013,-0.000005,1.000000,-0.000006,-0.000007,1.000000,-0.000010,-0.000007,1.000000,
-0.000011,0.000003,1.000000,-0.000009,0.000007,1.000000,-0.000008,0.000004,1.000000,-0.000007,-0.000001,1.000000,
-0.000008,-0.000004,1.000000,-0.000011,0.000000,1.000000,-0.000012,0.000003,1.000000,-0.000011,0.000003,1.000000,
-0.000008,0.000004,1.000000,-0.000011,0.000003,1.000000,-0.000012,0.000003,1.000000,-0.000010,0.000001,1.000000,
-0.000008,-0.000004,1.000000,-0.000007,-0.000001,1.000000,-0.000008,-0.000004,1.000000,-0.000008,-0.000004,1.000000,
-0.000013,-0.000005,1.000000,-0.000008,-0.000004,1.000000,-0.000011,0.000000,1.000000,-0.000011,0.000003,1.000000,
-0.000010,0.000001,1.000000,0.000010,-0.000001,1.000000,0.000013,0.000001,1.000000,0.000013,0.000000,1.000000,
0.000002,0.000008,1.000000,-0.000000,0.000009,1.000000,0.000003,0.000010,1.000000,0.000002,-0.000011,1.000000,
-0.000000,-0.000013,1.000000,0.000000,-0.000013,1.000000,0.000002,0.000008,1.000000,0.000000,0.000009,1.000000,
-0.000000,0.000009,1.000000,0.000005,-0.000012,1.000000,-0.000000,-0.000013,1.000000,0.000002,-0.000011,1.000000,
0.000004,0.000009,1.000000,0.000003,0.000010,1.000000,0.000006,0.000009,1.000000,0.000005,-0.000009,1.000000,
0.000005,-0.000012,1.000000,0.000002,-0.000011,1.000000,0.000004,0.000009,1.000000,0.000002,0.000008,1.000000,
0.000003,0.000010,1.000000,0.000007,-0.000009,1.000000,0.000005,-0.000012,1.000000,0.000005,-0.000009,1.000000,
0.000010,0.000007,1.000000,0.000006,0.000009,1.000000,0.000012,0.000007,1.000000,0.000008,-0.000009,1.000000,
0.000007,-0.000009,1.000000,0.000005,-0.000009,1.000000,0.000006,0.000009,1.000000,0.000004,0.000009,1.000000,
0.000006,0.000009,1.000000,0.000007,-0.000007,1.000000,0.000007,-0.000009,1.000000,0.000008,-0.000009,1.000000,
0.000010,0.000007,1.000000,0.000006,0.000009,1.000000,0.000006,0.000009,1.000000,0.000010,-0.000007,1.000000,
0.000007,-0.000009,1.000000,0.000007,-0.000007,1.000000,0.000011,0.000004,1.000000,0.000012,0.000007,1.000000,
0.000012,0.000003,1.000000,0.000010,-0.000005,1.000000,0.000010,-0.000007,1.000000,0.000007,-0.000007,1.000000,
0.000011,0.000004,1.000000,0.000010,0.000007,1.000000,0.000012,0.000007,1.000000,0.000008,-0.000004,1.000000,
0.000010,-0.000007,1.000000,0.000010,-0.000005,1.000000,0.000013,0.000001,1.000000,0.000012,0.000003,1.000000,
0.000013,0.000000,1.000000,0.000008,-0.000004,1.000000,0.000008,-0.000004,1.000000,0.000010,-0.000005,1.000000,
0.000008,-0.000004,1.000000,0.000008,-0.000004,1.000000,0.000010,-0.000001,1.000000,0.000012,0.000003,1.000000,
0.000013,0.000001,1.000000,0.000012,0.000003,1.000000,0.000012,0.000003,1.000000,0.000011,0.000004,1.000000,
0.000012,0.000003,1.000000,0.000013,0.000000,1.000000,0.000008,-0.000004,1.000000,0.000010,-0.000001,1.000000,
0.000000,0.000000,-1.000000,-0.000002,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000002,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000002,-0.000000,-1.000000,-0.000009,-0.000001,-1.000000,
-0.000002,0.000000,-1.000000,0.000003,0.000000,-1.000000,0.000004,0.000000,-1.000000,-0.000003,0.000002,-1.000000,
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000003,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000004,0.000000,-1.000000,0.000003,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
0.000000,0.000002,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000002,-1.000000,-0.000008,0.000000,-1.000000,
0.000003,0.000000,-1.000000,-0.000003,0.000002,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000002,-1.000000,
0.000000,0.000002,-1.000000,-0.000009,-0.000001,-1.000000,-0.000008,0.000000,-1.000000,-0.000003,0.000002,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000002,-1.000000,0.000000,0.000000,-1.000000,-0.000002,-0.000000,-1.000000,
-0.000008,0.000000,-1.000000,-0.000009,-0.000001,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000002,-0.000000,-1.000000,-0.000002,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000002,0.000002,-1.000000,0.000002,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,
-0.000001,0.000000,-1.000000,0.000008,-0.000001,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
-0.000003,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000002,0.000002,-1.000000,0.000001,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000002,0.000002,-1.000000,
0.000002,0.000000,-1.000000,0.000010,0.000000,-1.000000,0.000003,0.000002,-1.000000,0.000000,0.000000,-1.000000,
0.000002,0.000002,-1.000000,0.000008,-0.000001,-1.000000,0.000002,0.000002,-1.000000,0.000010,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000003,0.000002,-1.000000,0.000002,0.000002,-1.000000,0.000008,-0.000001,-1.000000,
0.000010,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000003,0.000002,-1.000000,
0.000002,0.000000,-1.000000,-0.000003,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,-0.000003,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,1.000000,-0.000006,0.000000,1.000000,
-0.000006,0.000000,1.000000,-0.000001,0.000000,1.000000,0.000002,0.000000,1.000000,-0.000001,0.000000,1.000000,
-0.000001,0.000000,1.000000,0.000002,0.000000,1.000000,-0.000001,-0.000000,1.000000,0.000002,0.000000,1.000000,
0.000002,0.000000,1.000000,-0.000001,-0.000000,1.000000,0.000001,-0.000000,1.000000,-0.000001,-0.000000,1.000000,
-0.000001,-0.000000,1.000000,0.000001,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000001,-0.000000,1.000000,
0.000001,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,
0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,
0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,
0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,
-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,
0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,
-0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,-0.000000,1.000000,
-0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,-0.000002,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000002,0.000000,1.000000,0.000003,0.000000,1.000000,-0.000002,0.000000,1.000000,
-0.000002,0.000000,1.000000,0.000003,0.000000,1.000000,-0.500708,0.865607,-0.004013,-0.500708,0.865607,-0.004013,
-0.105894,0.994368,-0.004346,-0.203727,0.979020,-0.003984,0.996575,0.082692,0.000014,0.980777,0.195134,0.000001,
1.000000,-0.000000,0.000000,-0.708663,0.705547,0.000001,-0.708663,0.705547,0.000001,-0.500708,0.865607,-0.004013,
-0.500708,0.865607,-0.004013,-0.887581,0.460651,0.000028,-0.887581,0.460651,0.000028,-0.708663,0.705547,0.000001,
-0.708663,0.705547,0.000001,0.000876,0.999996,-0.002739,-0.105894,0.994368,-0.004346,-0.194647,0.980873,-0.000219,
0.000876,0.999996,-0.002739,-0.194647,0.980873,-0.000219,-0.194683,0.980866,0.000004,0.000830,1.000000,0.000004,
-0.707093,0.707120,0.000003,-0.980781,0.195109,0.000001,-0.980773,0.195152,0.000001,-0.707094,0.707119,0.000003,
-0.194647,0.980873,-0.000219,-0.707093,0.707120,0.000003,-0.707094,0.707119,0.000003,-0.194683,0.980866,0.000004,
0.500707,0.865608,-0.004012,0.203726,0.979020,-0.003983,0.105893,0.994368,-0.004345,0.500707,0.865608,-0.004012,
1.000000,0.000000,0.000000,0.986120,0.166036,0.000028,0.996575,0.082692,0.000014,1.000000,-0.000000,0.000000,
0.708663,0.705547,0.000001,0.500707,0.865608,-0.004012,0.500707,0.865608,-0.004012,0.708663,0.705547,0.000001,
0.887585,0.460643,0.000028,0.708663,0.705547,0.000001,0.708663,0.705547,0.000001,0.887585,0.460643,0.000028,
-0.000876,0.999996,-0.002738,0.194650,0.980873,-0.000219,0.105893,0.994368,-0.004345,-0.000876,0.999996,-0.002738,
-0.000831,1.000000,0.000004,0.194686,0.980866,0.000004,0.194650,0.980873,-0.000219,0.194650,0.980873,-0.000219,
0.194686,0.980866,0.000004,0.707109,0.707104,0.000003,0.707108,0.707105,0.000003,-0.986118,0.166045,0.000028,
-0.996575,0.082696,0.000014,-0.887581,0.460651,0.000028,-0.887581,0.460651,0.000028,0.986120,0.166036,0.000028,
0.887585,0.460643,0.000028,0.887585,0.460643,0.000028,0.996575,0.082692,0.000014,-0.105894,0.994368,-0.004346,
0.000876,0.999996,-0.002739,-0.000876,0.999996,-0.002738,0.105893,0.994368,-0.004345,-0.203727,0.979020,-0.003984,
-0.105894,0.994368,-0.004346,0.105893,0.994368,-0.004345,0.203726,0.979020,-0.003983,-1.000000,0.000000,0.000000,
-0.996575,0.082696,0.000014,-0.986118,0.166045,0.000028,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.707108,0.707105,0.000003,
0.707109,0.707104,0.000003,0.980777,0.195134,0.000001,0.980785,0.195091,0.000001,-0.980773,0.195152,0.000001,
-0.980781,0.195109,0.000001,-0.996575,0.082696,0.000014,-0.996575,0.082696,0.000014,-1.000000,0.000000,0.000000,
-0.980773,0.195152,0.000001,0.980777,0.195134,0.000001,0.996575,0.082692,0.000014,0.980785,0.195091,0.000001,
0.000000,-0.957718,0.287707,0.000000,-0.957718,0.287707,0.000000,-0.621617,0.783321,0.000000,-0.621617,0.783321,
0.000000,-0.621617,0.783321,0.000000,-0.042724,0.999087,0.000000,-0.106204,0.994344,0.000000,-0.621617,0.783321,
-0.000001,-0.755391,-0.655274,-0.000001,-0.755391,-0.655274,0.000000,-0.981823,-0.189800,0.000000,-0.981823,-0.189800,
-0.000000,-0.326546,-0.945181,-0.000000,-0.241165,-0.970484,-0.000001,-0.755391,-0.655274,-0.000001,-0.755391,-0.655274,
0.000000,0.326537,0.945185,0.000000,0.326537,0.945185,0.000000,-0.042724,0.999087,0.000000,-0.042723,0.999087,
0.000000,0.755382,0.655285,0.000000,0.755382,0.655285,0.000000,0.326537,0.945185,0.000000,0.326537,0.945185,
0.000000,0.945188,-0.326527,0.000000,0.945188,-0.326527,0.000000,0.981823,0.189799,0.000000,0.981823,0.189799,
0.000000,0.655299,-0.755369,0.000000,0.655299,-0.755369,0.000000,0.945188,-0.326527,0.000000,0.945188,-0.326527,
0.000000,-0.106204,0.994344,0.000000,-0.042724,0.999087,0.000000,0.326537,0.945185,0.000000,0.189806,-0.981822,
-0.000000,-0.241165,-0.970484,-0.000000,-0.326546,-0.945181,0.000000,-0.981823,-0.189800,0.000000,-0.981823,-0.189800,
0.000000,-0.957718,0.287707,0.000000,-0.957718,0.287707,0.000000,0.981823,0.189799,0.000000,0.981823,0.189799,
0.000000,0.755382,0.655285,0.000000,0.755382,0.655285,0.000000,0.189806,-0.981822,0.000000,0.189806,-0.981822,
0.000000,0.655299,-0.755369,0.000000,0.655299,-0.755369,-0.000004,-0.957717,0.287710,-0.000001,-0.621617,0.783322,
-0.000001,-0.621616,0.783322,-0.000004,-0.957717,0.287711,-0.000001,-0.621616,0.783322,-0.000001,-0.621617,0.783322,
0.000000,-0.106202,0.994345,0.000000,-0.042723,0.999087,-0.000002,-0.755388,-0.655278,-0.000004,-0.981822,-0.189803,
-0.000004,-0.981822,-0.189803,-0.000002,-0.755388,-0.655278,0.000000,-0.326548,-0.945181,-0.000002,-0.755388,-0.655278,
-0.000002,-0.755388,-0.655278,0.000000,-0.241166,-0.970484,0.000000,-0.106202,0.994345,0.000000,0.326537,0.945185,
0.000000,-0.042723,0.999087,0.000000,0.189806,-0.981822,0.000000,-0.326548,-0.945181,0.000000,-0.241166,-0.970484,
-0.000004,-0.981822,-0.189803,-0.000004,-0.957717,0.287710,-0.000004,-0.957717,0.287711,-0.000004,-0.981822,-0.189803,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000403,1.000000,0.000000,-0.010271,0.999947,
0.000000,0.000000,1.000000,0.000000,-0.000403,1.000000,0.000000,-0.042724,0.999087,0.000000,-0.010271,0.999947,
0.000000,-0.010271,0.999947,0.000000,-0.042723,0.999087,0.000000,-0.241166,-0.970484,-0.000000,-0.241165,-0.970484,
0.000000,0.189806,-0.981822,0.000000,0.189806,-0.981822,0.000000,-0.000403,1.000000,0.000000,-0.000705,1.000000,
0.000000,-0.000705,1.000000,0.000000,-0.000403,1.000000,0.000000,-0.000403,1.000000,0.000000,-0.000403,1.000000,
0.000000,-0.010271,0.999947,0.000000,-0.000403,1.000000,0.000000,0.000000,1.000000,0.000000,-0.010271,0.999947,
0.000000,-0.000403,1.000000,0.000000,-0.010271,0.999947,0.000000,-0.010271,0.999947,0.000000,0.000000,1.000000,
0.000000,-0.000403,1.000000,0.000000,0.000000,1.000000,0.000000,0.773722,-0.633525,0.000000,0.773722,-0.633525,
0.000000,0.773722,-0.633525,0.000000,0.773722,-0.633525,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,
-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,
-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
-0.000002,0.000000,1.000000,-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.369201,-0.929350,-0.000000,-0.369201,-0.929350,-0.000000,-0.000002,-1.000000,-0.000000,
-0.000002,-1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.382682,0.923880,0.000000,
-0.382682,0.923880,0.000000,-0.778177,-0.628045,-0.000000,-0.722669,-0.691195,0.000000,-0.369201,-0.929350,-0.000000,
-0.369201,-0.929350,-0.000000,-0.000002,-1.000000,-0.000000,-0.000002,-1.000000,-0.000000,0.369202,-0.929349,-0.000000,
0.369202,-0.929349,-0.000000,0.778172,-0.628051,-0.000000,0.722666,-0.691198,-0.000000,0.937334,-0.348431,-0.000000,
0.937334,-0.348431,-0.000000,0.369202,-0.929349,-0.000000,0.369202,-0.929349,-0.000000,0.722666,-0.691198,-0.000000,
0.778172,-0.628051,-0.000000,0.937334,-0.348431,-0.000000,0.937334,-0.348431,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,-0.778177,-0.628045,-0.000000,-0.937336,-0.348426,-0.000000,-0.937336,-0.348426,-0.000000,
-0.722669,-0.691195,0.000000,-0.382682,0.923880,0.000000,-0.382682,0.923880,0.000000,-0.707107,0.707107,0.000000,
-0.707107,0.707107,0.000000,0.382681,0.923880,0.000000,0.382681,0.923880,0.000000,0.000000,1.000000,0.000000,
0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,0.923880,0.382681,0.000000,
0.923880,0.382681,0.000000,0.707107,0.707107,0.000000,0.707107,0.707107,0.000000,0.382681,0.923880,0.000000,
0.382681,0.923880,0.000000,0.923880,0.382681,0.000000,0.923880,0.382681,0.000000,0.707107,0.707107,0.000000,
0.707107,0.707107,0.000000,-1.000000,-0.000000,-0.000000,-0.923879,0.382684,0.000000,-0.923879,0.382684,0.000000,
-1.000000,-0.000000,-0.000000,-0.937336,-0.348426,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-0.937336,-0.348426,-0.000000,-0.923879,0.382684,0.000000,-0.707107,0.707107,0.000000,-0.707107,0.707107,0.000000,
-0.923879,0.382684,0.000000,-0.870080,-0.492910,-0.000000,-0.937336,-0.348426,-0.000000,-0.778177,-0.628045,-0.000000,
0.870073,-0.492923,0.000000,0.778172,-0.628051,-0.000000,0.937334,-0.348431,-0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,
-0.000002,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000002,0.000000,-1.000000,0.000003,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000004,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000003,0.000000,-1.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000001,0.000000,-1.000000,
0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000004,0.000000,-1.000000,-0.000002,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,0.000000,-0.956538,0.291608,0.000000,-0.956538,0.291608,0.000000,-0.956538,0.291608,
0.000000,-0.956538,0.291608,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000003,-1.000000,0.000000,0.000002,-1.000000,0.000000,0.000003,-1.000000,
0.000000,0.000003,-1.000000,-0.000000,0.000003,-1.000000,0.000000,0.000003,-1.000000,-0.000000,0.000003,-1.000000,
-0.000001,0.000002,-1.000000,-0.000000,0.000003,-1.000000,0.000000,0.000003,-1.000000,0.000000,0.000003,-1.000000,
0.000000,0.000003,-1.000000,-0.000000,0.000003,-1.000000,-0.000000,0.000003,-1.000000,0.000000,0.000003,-1.000000,
1.000000,0.000000,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.774384,0.634090,0.613063,0.561244,0.521022,0.745350,0.915075,0.684702,0.844454,0.772928,0.829435,0.642339,
0.871274,0.670686,0.996499,0.978389,0.667580,0.629625,0.831765,0.649509,0.502930,0.603214,0.461014,0.597131,
0.486769,0.977583,0.430926,0.525341,0.875661,0.279677,0.912383,0.254783,0.828156,0.250133,0.472911,0.629654,
0.934846,0.271868,0.822320,0.881959,0.857128,0.636460,0.681741,0.622834,0.753411,0.924782,0.559939,0.939572,
0.483431,0.956946,0.483431,0.939572,0.844055,0.498050,0.256767,0.982666,0.341721,0.996200,0.143520,0.982702,
0.426648,0.525349,0.940206,0.996098,0.952527,0.326584,0.952503,0.475848,0.869790,0.313486,0.897979,0.047445,
0.719756,0.771367,0.479238,0.940546,0.213385,0.834742,0.518854,0.572898,0.679271,0.604316,0.828907,0.758210,
0.792002,0.978392,0.935218,0.902770,0.882307,0.515424,0.907355,0.853848,0.961837,0.874444,0.901560,0.826149,
0.894255,0.978392,0.740874,0.978395,0.740874,0.961020,0.894256,0.543863,0.875691,0.759259,0.926377,0.706628,
0.353801,0.819760,0.562572,0.525341,0.843125,0.561234,0.163643,0.962890,0.945378,0.978390,0.233784,0.639205,
0.430799,0.983760,0.115206,0.996340,0.518692,0.525341,0.866757,0.169671,0.723204,0.729861,0.721124,0.731261,
0.252411,0.977657,0.426648,0.538987,0.370024,0.538983,0.851052,0.174517,0.853801,0.288507,0.853059,0.279929,
0.456614,0.940546,0.138612,0.940546,0.933661,0.255126,0.885438,0.636452,0.679249,0.737610,0.680256,0.792404,
0.001949,0.002050,0.859118,0.678363,0.666091,0.758284,0.945054,0.894031,0.713692,0.539108,0.968518,0.982457,
0.817560,0.543860,0.937451,0.857066,0.806043,0.079053,0.920563,0.515424,0.313398,0.525350,0.968518,0.996093,
0.958818,0.498050,0.589613,0.599452,0.896483,0.270864,0.529916,0.572898,0.833571,0.635672,0.791665,0.924782,
0.843129,0.978396,0.907372,0.770162,0.602065,0.520817,0.228463,0.996327,0.906434,0.907407,0.201998,0.520877,
0.370017,0.982526,0.200144,0.982696,0.906434,0.924782,0.814694,0.772057,0.537441,0.760139,0.833334,0.735881,
0.913132,0.670158,0.115207,0.982701,0.226364,0.576023,0.226364,0.593397,0.559447,0.863518,0.571663,0.656418,
0.365422,0.977657,0.770382,0.863550,0.766437,0.978392,0.868177,0.907407,0.903390,0.765125,0.916914,0.256310,
0.302875,0.576023,0.302875,0.593397,0.882307,0.498050,0.358395,0.798148,0.367390,0.883656,0.489332,0.525341,
0.624431,0.818388,0.835850,0.258117,0.431711,0.940546,0.217249,0.856014,0.897635,0.893430,0.615484,0.590030,
0.504171,0.525341,0.058575,0.538978,0.058575,0.525341,0.909983,0.052835,0.833945,0.031541,0.831787,0.663330,
0.171833,0.996336,0.638402,0.791535,0.882453,0.744639,0.555556,0.614045,0.827424,0.175439,0.861031,0.730019,
0.529180,0.967840,0.894788,0.253587,0.910739,0.677307,0.798636,0.982471,0.689748,0.961023,0.826950,0.996106,
0.940204,0.982462,0.910735,0.182365,0.996843,0.538987,0.901566,0.797857,0.844055,0.515424,0.058577,0.996323,
0.657063,0.982475,0.590107,0.576998,0.835658,0.743055,0.707102,0.635896,0.694397,0.785575,0.320217,0.977657,
0.730994,0.771906,0.769411,0.597466,0.115198,0.525345,0.841363,0.183417,0.631458,0.598346,0.844078,0.475861,
0.791997,0.561235,0.633503,0.716374,0.806590,0.235287,0.823463,0.240431,0.205635,0.857178,0.559939,0.956946,
0.885440,0.597466,0.529761,0.525341,0.625556,0.656377,0.791997,0.543863,0.913139,0.655866,0.926792,0.488951,
0.415920,0.734268,0.138755,0.962890,0.285078,0.982638,0.766432,0.543867,0.929302,0.829967,0.996826,0.525349,
0.990540,0.401218,0.964478,0.730434,0.885965,0.102434,0.600437,0.996110,0.926901,0.801775,0.838571,0.001949,
0.617808,0.582858,0.914183,0.191437,0.362044,0.002006,0.790428,0.729861,0.522076,0.001981,0.001954,0.520896,
0.722103,0.001954,0.442055,0.001993,0.762117,0.001950,0.282037,0.002020,0.806477,0.107345,0.171829,0.538978,
0.937100,0.260216,0.666110,0.744639,0.380377,0.901532,0.458916,0.725146,0.803881,0.829621,0.830410,0.795322,
0.625557,0.693240,0.630888,0.815709,0.608188,0.818382,0.543346,0.961054,0.639727,0.610424,0.442042,0.520841,
0.770319,0.982471,0.817564,0.978395,0.792002,0.961019,0.899121,0.102552,0.949591,0.851993,0.968513,0.525383,
0.919899,0.774179,0.894254,0.961019,0.981801,0.711633,0.919820,0.543863,0.933437,0.301049,0.857112,0.650203,
0.919820,0.561235,0.198831,0.888889,0.746760,0.881959,0.833506,0.615876,0.431583,0.962890,0.374591,0.718814,
0.638624,0.561243,0.275015,0.977657,0.402033,0.520848,0.909083,0.152459,0.468811,0.617151,0.496488,0.611195,
0.358399,0.863469,0.410638,0.977657,0.923627,0.275740,0.611565,0.608199,0.912685,0.691853,0.338207,0.597466,
0.501917,0.927401,0.566334,0.809281,0.785194,0.798251,0.901978,0.077127,0.086894,0.996336,0.819543,0.105787,
0.081977,0.520891,0.116131,0.962890,0.512154,0.718814,0.885398,0.616959,0.564026,0.819812,0.608188,0.841753,
0.522055,0.520827,0.829435,0.623185,0.798697,0.863548,0.584593,0.923980,0.197855,0.848214,0.538991,0.693295,
0.918729,0.879761,0.379386,0.576023,0.379386,0.593397,0.572125,0.538977,0.770325,0.539116,0.911904,0.539077,
0.398336,0.525349,0.945081,0.729991,0.939472,0.746904,0.843129,0.961023,0.829435,0.603366,0.515037,0.961014,
0.489644,0.974014,0.787008,0.766132,0.693456,0.725254,0.538986,0.637484,0.942495,0.903180,0.778192,0.651495,
0.540533,0.525341,0.883102,0.133534,0.831691,0.676539,0.770325,0.525480,0.790435,0.665692,0.514496,0.983306,
0.909150,0.635199,0.920563,0.498050,0.370033,0.996164,0.341131,0.593397,0.341131,0.576023,0.488641,0.590954,
0.480898,0.934223,0.464469,0.660648,0.717005,0.743756,0.510502,0.995843,0.474812,0.525341,0.501890,0.734300,
0.784540,0.875962,0.538991,0.668719,0.847384,0.759260,0.220728,0.849835,0.722100,0.777600,0.798643,0.539112,
0.887431,0.678584,0.722093,0.764198,0.458461,0.977734,0.593583,0.923980,0.736201,0.798463,0.868177,0.924782,
0.744040,0.610507,0.592885,0.711685,0.942224,0.827500,0.600451,0.525375,0.689748,0.561238,0.918752,0.744253,
0.628750,0.982475,0.868691,0.978396,0.855264,0.996105,0.970944,0.561235,0.642085,0.520812,0.753411,0.907407,
0.913129,0.622658,0.719826,0.784791,0.625558,0.662521,0.342821,0.977657,0.464660,0.613086,0.735034,0.784427,
0.939937,0.011733,0.978457,0.893869,0.919814,0.961018,0.341704,0.982561,0.826948,0.982470,0.086897,0.982697,
0.228460,0.525346,0.912182,0.022965,0.921509,0.174812,0.638624,0.961020,0.909807,0.282660,0.550431,0.778016,
0.420838,0.597777,0.963711,0.901560,0.793404,0.636213,0.996499,0.961014,0.857186,0.663742,0.804884,0.845045,
0.370024,0.525346,0.313399,0.538987,0.920935,0.233843,0.914660,0.267964,0.783626,0.845544,0.665140,0.725146,
0.540679,0.572898,0.632600,0.865746,0.945383,0.543863,0.722154,0.923980,0.602104,0.001968,0.858619,0.785335,
0.548487,0.629428,0.592884,0.705541,0.886950,0.260983,0.188109,0.576023,0.188109,0.593397,0.221164,0.843708,
0.871282,0.609880,0.775762,0.792462,0.945383,0.561235,0.410832,0.940546,0.871284,0.643261,0.638402,0.764195,
0.926812,0.313479,0.665143,0.597466,0.719792,0.798567,0.883587,0.539095,0.264620,0.593397,0.264620,0.576023,
0.844064,0.326595,0.951416,0.752418,0.600437,0.539011,0.685387,0.525451,0.919885,0.849833,0.914654,0.799216,
0.482051,0.520835,0.613061,0.543871,0.766437,0.961019,0.873222,0.685268,0.516947,0.590643,0.613061,0.978395,
0.762135,0.520796,0.625561,0.711677,0.718775,0.610687,0.905832,0.234515,0.229807,0.977657,0.211762,0.857612,
0.629162,0.605529,0.200544,0.853738,0.771010,0.672347,0.798641,0.525477,0.911892,0.996105,0.866399,0.174972,
0.510679,0.623570,0.823654,0.347010,0.758700,0.766082,0.480885,0.727465,0.217172,0.925502,0.388028,0.977657,
0.922007,0.252871,0.465212,0.609603,0.896413,0.791273,0.740870,0.543867,0.922813,0.030716,0.822417,0.025195,
0.935248,0.721248,0.642103,0.001965,0.482062,0.001988,0.001967,0.982625,0.402051,0.002000,0.242015,0.002023,
0.202007,0.002031,0.894256,0.561235,0.625557,0.687099,0.592866,0.637458,0.207033,0.940546,0.895651,0.295075,
0.472682,0.990076,0.625561,0.668668,0.819688,0.765127,0.862688,0.268696,0.602578,0.923980,0.538987,0.650718,
0.380364,0.760091,0.538991,0.699436,0.829922,0.924782,0.829922,0.907407,0.636448,0.939572,0.855270,0.525468,
0.826959,0.539112,0.628749,0.539044,0.953928,0.722574,0.951004,0.881912,0.812712,0.134947,0.636448,0.956946,
0.825416,0.603332,0.637427,0.603243,0.297615,0.940546,0.320262,0.940546,0.503158,0.718814,0.815726,0.255971,
0.640714,0.757630,0.913136,0.642315,0.789960,0.785748,0.353804,0.841855,0.207199,0.977657,0.163721,0.977657,
0.858675,0.181725,0.868690,0.961023,0.806043,0.212677,0.198289,0.842085,0.676593,0.803119,0.592880,0.656400,
0.970939,0.978389,0.171833,0.982700,0.161992,0.520882,0.115198,0.538981,0.896986,0.157629,0.835823,0.153984,
0.889125,0.074320,0.242009,0.520871,0.228458,0.982688,0.824498,0.160681,0.121994,0.520887,0.901523,0.128024,
0.814184,0.191570,0.538987,0.643627,0.653435,0.622807,0.503424,0.660815,0.566277,0.716417,0.285092,0.996273,
0.940217,0.539053,0.086887,0.525341,0.982942,0.907407,0.982942,0.924782,0.282003,0.520867,0.657076,0.525433,
0.713690,0.982471,0.868690,0.561235,0.868691,0.543862,0.534113,0.583003,0.463740,0.525341,0.571662,0.643617,
0.782691,0.630628,0.909061,0.615874,0.875185,0.736825,0.571671,0.705564,0.550115,0.605864,0.864413,0.164901,
0.207256,0.834308,0.593638,0.865696,0.664186,0.561239,0.564032,0.841906,0.562378,0.865683,0.640737,0.771363,
0.430799,0.572898,0.533067,0.718814,0.591713,0.841753,0.954071,0.712498,0.415931,0.927373,0.313392,0.982601,
0.200142,0.538981,0.143513,0.525344,0.341711,0.525346,0.396800,0.916320,0.487485,0.572898,0.452849,0.572898,
0.640740,0.798702,0.876918,0.265694,0.274970,0.940546,0.929754,0.275308,0.937502,0.288534,0.575429,0.592711,
0.831384,0.684047,0.664182,0.543868,0.900464,0.778755,0.507371,0.576503,0.571668,0.699418,0.163516,0.940546,
0.881498,0.282651,0.597407,0.614996,0.220326,0.609600,0.830410,0.893430,0.512430,0.660859,0.463611,0.572898,
0.680250,0.751474,0.742006,0.982470,0.521683,0.956946,0.521683,0.939572,0.398331,0.982493,0.426642,0.982457,
0.628763,0.525405,0.086887,0.538980,0.285084,0.525354,0.996505,0.543862,0.682104,0.520808,0.571662,0.637476,
0.633560,0.809247,0.222103,0.597486,0.901063,0.772297,0.536460,0.590170,0.815248,0.798945,0.563682,0.923980,
0.784466,0.642741,0.641451,0.743470,0.637427,0.730944,0.872764,0.772904,0.676562,0.818265,0.625553,0.650663,
0.797718,0.597466,0.811426,0.051275,0.884669,0.180827,0.199805,0.597466,0.940204,0.525414,0.625557,0.674814,
0.184394,0.940546,0.996831,0.982457,0.689745,0.543865,0.506039,0.572898,0.625543,0.637427,0.313408,0.996238,
0.474672,0.572898,0.494413,0.660774,0.479094,0.962890,0.201731,0.836997,0.970938,0.961014,0.824014,0.055103,
0.715310,0.961023,0.770955,0.642412,0.592875,0.650688,0.603737,0.592592,0.868369,0.751585,0.592872,0.643600,
0.772831,0.778527,0.521058,0.916360,0.602651,0.865703,0.583256,0.608187,0.766436,0.561239,0.791665,0.907407,
0.809626,0.846445,0.883578,0.996102,0.613061,0.961020,0.685377,0.996110,0.722128,0.520803,0.973113,0.701754,
0.855264,0.982466,0.742012,0.525480,0.911893,0.525441,0.898302,0.308967,0.802135,0.520796,0.550463,0.883704,
0.719760,0.757801,0.819919,0.218674,0.783795,0.798245,0.694364,0.771930,0.680247,0.765078,0.121975,0.002041,
0.200146,0.996333,0.742006,0.996106,0.817620,0.791788,0.798636,0.996108,0.801898,0.839692,0.870371,0.712498,
0.693450,0.597562,0.591713,0.818388,0.721125,0.603521,0.823667,0.455456,0.256779,0.996305,0.143513,0.538980,
0.256772,0.525353,0.396783,0.745311,0.252323,0.940546,0.928135,0.252436,0.628749,0.996111,0.761650,0.785575,
0.742690,0.869450,0.930185,0.750766,0.825177,0.130737,0.817567,0.961022,0.715309,0.543865,0.715309,0.561238,
0.398336,0.538987,0.713690,0.996108,0.848532,0.010545,0.417640,0.576023,0.417640,0.593397,0.709434,0.628726,
0.723197,0.665692,0.600437,0.982471,0.951747,0.719671,0.911891,0.982466,0.871324,0.629468,0.458916,0.936526,
0.226598,0.618354,0.539000,0.711723,0.918139,0.274141,0.898068,0.706628,0.571663,0.650706,0.598194,0.939572,
0.572141,0.525341,0.685378,0.539090,0.598194,0.956946,0.997072,0.515424,0.996831,0.996093,0.572125,0.982474,
0.562058,0.520823,0.970944,0.543863,0.843125,0.543860,0.632679,0.818185,0.592884,0.699400,0.854148,0.744922,
0.571673,0.711705,0.897607,0.795350,0.544705,0.596214,0.907955,0.757420,0.722104,0.750634,0.198831,0.925502,
0.860005,0.161943,0.694404,0.758286,0.638402,0.750451,0.537477,0.901578,0.914230,0.261837,0.434928,0.996253,
0.625561,0.705532,0.184587,0.977657,0.861541,0.766063,0.869793,0.488956,0.487330,0.966837,0.452968,0.525341,
0.456472,0.962890,0.431502,0.977657,0.942495,0.901560,0.829435,0.656166,0.297615,0.977657,0.030262,0.996300,
0.540781,0.608772,0.115984,0.940546,0.569013,0.815735,0.945378,0.961015,0.872699,0.719667,0.910207,0.750221,
0.914711,0.743055,0.801540,0.834389,0.638402,0.778181,0.538990,0.656434,0.910813,0.649486,0.759226,0.803280,
0.638621,0.543869,0.889338,0.730019,0.547758,0.598700,0.058586,0.982686,0.742009,0.539116,0.943162,0.776626,
0.969407,0.903419,0.972913,0.455442,0.817563,0.561234,0.657063,0.539069,0.919817,0.978391,0.883578,0.982466,
0.996506,0.561235,0.808290,0.826662,0.561791,0.577047,0.884503,0.133529,0.538991,0.681003,0.713699,0.525472,
0.733919,0.791277,0.871290,0.656953,0.628051,0.635823,0.229676,0.940546,0.538990,0.687149,0.898290,0.493468,
0.810561,0.429743,0.857124,0.597469,0.666057,0.772124,0.832036,0.271627,0.774051,0.675959,0.524796,0.611112,
0.741715,0.603333,0.963711,0.903180,0.997072,0.498050,0.228457,0.538983,0.810556,0.372730,0.639257,0.614080,
0.486155,0.576508,0.388195,0.940546,0.625557,0.680956,0.810609,0.784565,0.030261,0.538981,0.030261,0.525345,
0.802141,0.001949,0.001949,0.996264,0.001949,0.538981,0.001949,0.525345,0.931144,0.001949,0.625558,0.699386,
0.218475,0.838184,0.534674,0.660964,0.804936,0.630604,0.829435,0.669343,0.571033,0.966959,0.562730,0.572898,
0.855272,0.539107,0.200144,0.525345,0.657063,0.996112,0.930336,0.773687,0.664184,0.961020,0.256770,0.538990,
0.664184,0.978395,0.362028,0.520854,0.944689,0.907407,0.944689,0.924782,0.920823,0.211219,0.285084,0.538991,
0.826510,0.751059,0.885421,0.650097,0.533328,0.664474,0.233833,0.609273,0.912222,0.713433,0.820837,0.791336,
0.680256,0.778833,0.910837,0.663047,0.420780,0.612920,0.538991,0.662582,0.625547,0.643571,0.756816,0.679388,
0.694420,0.744699,0.913131,0.603362,0.917035,0.735881,0.559424,0.798200,0.929307,0.203729,0.426658,0.996094,
0.341711,0.538983,0.972934,0.346994,0.857857,0.301025,0.885495,0.664019,0.041962,0.520893,0.666089,0.785622,
0.436939,0.934205,0.575960,0.583816,0.171829,0.525341,0.833661,0.691235,0.494164,0.718814,0.538995,0.705578,
0.826389,0.869448,0.715310,0.978396,0.823090,0.610503,0.783566,0.604270,0.739581,0.675960,0.685375,0.982474,
0.986019,0.429725,0.938282,0.194107,0.930163,0.873251,0.638624,0.978395,0.689747,0.978396,0.572127,0.996110,
0.968528,0.539019,0.958818,0.515424,0.398345,0.996129,0.575472,0.818409,0.816765,0.778827,0.367378,0.777967,
0.568699,0.974127,0.722104,0.791389,0.863411,0.180324,0.826956,0.525473,0.770319,0.996107,0.557880,0.621218,
0.552507,0.616899,0.322010,0.520860,0.806043,0.401238,0.217172,0.888889,0.848073,0.265998,0.342908,0.940546,
0.365553,0.940546,0.857092,0.617137,0.822012,0.772300,0.640775,0.785337,0.563709,0.869198,0.914646,0.824798,
0.041962,0.002045,0.030277,0.982663,0.081970,0.002044,0.322044,0.002013,0.682104,0.001959,0.562091,0.001974,
0.161995,0.002036,0.636928,0.621253,0.143519,0.996340,0.888620,0.130601,0.819147,0.080211,0.625731,0.628646,
0.211388,0.603071,0.230410,0.600950,0.937536,0.266343,0.883579,0.525459,0.740870,0.561239,0.436943,0.727449,
0.584625,0.865691,0.538991,0.674858,0.940054,0.802015,0.986032,0.372710
UVIndex: 95,587,435,434,364,363,110,111,311,117,100,104,376,377,120,121,759,758,482,483,291,292,265,266,154,26,122,44,536,537,23,173,87,289,90,805,650,647,436,443,22,323,587,95,434,435,117,311,111,110,377,376,104,100,758,759,121,120,292,291,266,265,633,634,
24,25,537,536,44,122,289,87,173,23,647,650,805,90,728,651,418,236,757,194,200,390,592,198,831,817,484,201,832,544,322,415,358,98,654,833,419,469,101,420,196,258,384,416,834,464,472,605,199,215,236,418,830,252,784,828,738,598,390,200,194,757,817,831,
198,592,544,832,201,484,469,419,415,322,98,358,833,654,258,196,420,101,464,834,416,384,215,199,605,472,252,830,828,784,197,78,155,683,829,699,250,155,699,335,380,267,648,315,806,290,102,538,606,138,463,103,82,649,381,713,750,438,813,437,28,569,509,333,
683,739,417,829,836,61,109,29,268,700,595,285,779,806,538,539,290,28,333,102,569,479,182,509,269,375,843,596,152,804,221,185,138,836,29,463,480,269,596,562,700,82,713,595,479,616,27,182,649,705,485,381,439,380,315,540,804,480,562,221,61,250,335,109,
616,99,470,27,99,606,103,470,305,268,285,399,375,750,437,843,438,305,399,813,705,439,540,485,589,320,594,707,133,736,737,134,622,189,637,318,67,630,270,30,729,510,751,336,203,617,511,788,149,609,147,334,31,400,639,150,465,541,481,164,68,780,512,348,
780,349,88,512,89,31,150,83,761,755,618,542,510,203,788,751,617,465,164,511,652,89,83,565,320,149,334,594,349,761,542,88,630,68,348,270,736,740,741,737,755,729,336,618,607,631,486,535,752,622,318,156,591,752,156,797,400,589,707,639,189,803,653,637,
814,607,535,216,541,133,134,481,631,591,797,486,609,814,216,147,781,849,186,798,32,781,798,703,372,32,703,33,597,372,33,179,34,597,179,719,378,34,719,675,403,378,675,167,730,403,167,615,818,730,615,720,224,187,440,593,383,827,47,153,330,412,337,742,
379,701,753,272,382,800,264,45,135,249,468,35,848,314,184,190,219,473,837,188,632,136,413,191,220,46,441,85,237,338,151,466,575,838,86,559,271,625,317,414,251,626,442,202,222,383,153,97,467,69,165,471,187,379,272,440,827,382,45,47,412,135,35,337,
701,848,190,753,249,219,188,468,800,81,43,264,314,220,85,184,473,237,466,837,136,575,559,413,46,331,702,441,338,799,778,151,838,251,202,86,625,222,97,317,626,467,471,442,217,42,218,627,708,321,655,543,629,316,566,628,319,96,273,457,586,844,411,183,
801,389,590,339,706,48,223,332,704,168,177,84,802,756,754,148,462,58,687,574,487,56,656,488,49,793,576,50,228,421,51,225,234,1,385,696,42,116,386,218,321,368,356,655,316,500,523,566,96,217,627,273,844,629,628,411,48,319,457,223,168,586,183,177,
756,801,339,754,58,706,332,687,56,704,84,656,793,802,148,576,421,487,488,51,7,462,574,345,116,49,50,386,368,228,225,356,500,234,696,523,296,76,278,259,823,94,360,725,816,17,238,239,425,528,340,296,278,65,553,554,353,300,115,260,684,388,662,725,
360,402,115,230,624,239,725,402,300,230,115,239,402,17,19,300,260,340,226,425,792,19,260,340,520,226,76,553,353,528,425,782,278,76,353,782,70,528,671,60,308,388,684,10,640,94,823,293,10,409,255,640,823,293,388,10,288,640,255,174,493,366,324,288,
255,11,293,409,4,767,808,174,775,493,359,767,4,721,366,231,555,359,4,721,174,366,410,359,555,12,297,426,524,410,555,274,721,231,404,329,162,12,287,297,582,329,404,308,426,671,277,582,404,735,277,105,426,308,12,277,735,582,275,213,144,558,794,795,
302,824,428,558,444,794,674,824,302,163,795,312,52,674,302,163,558,795,548,674,52,157,131,787,118,548,52,726,163,312,785,516,139,157,192,131,77,516,785,710,787,549,160,77,785,710,157,787,374,77,160,213,810,144,811,374,160,276,676,275,810,213,748,489,
710,549,144,276,275,20,75,370,53,638,766,521,496,698,53,507,638,91,496,521,645,766,688,579,91,521,645,53,766,396,91,579,603,325,768,166,396,579,611,645,688,227,137,681,603,304,325,715,137,227,722,768,825,763,715,227,722,603,768,769,715,763,75,694,
370,178,769,763,9,5,20,694,75,451,692,722,825,370,9,20,580,41,659,243,731,835,529,585,243,36,667,307,503,371,80,580,659,140,146,783,108,284,747,346,494,143,697,143,158,107,243,835,529,494,158,143,585,529,815,690,494,697,141,585,815,776,690,697,
667,36,604,6,284,346,80,667,604,783,6,346,80,604,503,146,6,783,140,663,580,659,41,762,140,689,663,40,214,373,774,664,600,534,205,774,244,306,3,789,522,79,40,373,612,550,452,608,310,714,623,8,476,21,476,716,839,774,600,534,8,716,476,205,
534,450,159,8,21,668,205,450,635,159,21,306,244,387,367,310,623,79,306,387,452,367,623,79,387,789,550,367,452,612,392,40,373,214,445,612,614,392,240,453,54,123,124,240,123,809,206,124,809,432,513,206,432,619,508,513,619,180,786,508,180,845,641,786,
845,207,294,641,207,405,246,294,405,299,583,246,299,2,669,583,2,106,599,669,106,341,112,599,341,777,501,112,777,256,62,39,567,132,295,790,233,175,93,39,62,282,354,93,175,826,502,846,826,846,261,551,499,584,430,309,846,499,309,261,298,125,514,570,
770,328,295,233,490,298,570,533,677,490,533,515,764,532,745,764,505,254,532,532,254,448,477,55,749,354,282,13,677,515,504,567,525,732,514,132,567,514,125,357,355,657,556,460,695,357,556,245,342,770,233,477,448,790,571,430,584,355,355,357,430,790,295,571,
475,491,646,431,646,113,693,431,791,495,660,643,433,526,495,791,326,771,113,461,427,301,771,326,734,712,847,563,422,718,712,734,693,113,771,263,526,433,279,545,491,475,563,847,301,427,210,263,718,422,772,557,578,581,578,557,176,461,672,391,313,361,743,672,
361,658,176,326,461,210,743,658,568,772,581,423,807,686,247,613,807,247,506,613,212,257,658,526,263,210,247,478,169,546,247,546,613,546,126,212,546,212,613,126,546,211,819,406,665,229,71,820,429,723,127,820,71,429,517,14,71,92,362,145,15,14,517,362,
92,723,449,16,127,170,458,601,171,458,474,601,350,393,760,449,170,171,16,393,193,760,474,142,601,15,145,393,350,678,72,37,572,682,446,447,161,232,128,72,678,253,685,73,181,57,527,564,673,181,73,527,57,673,564,424,454,232,241,369,128,161,447,821,
327,235,518,446,682,454,424,717,394,66,620,518,235,394,717,620,66,407,114,822,733,241,407,733,369,114,327,821,822,679,241,232,455,57,673,497,711,63,560,456,812,497,666,283,560,812,401,711,497,283,560,401,63,63,711,560,344,492,746,552,0,492,344,281,
577,0,552,398,577,281,744,365,303,129,38,744,129,395,498,38,395,172,573,498,172,397,459,573,397,262,208,691,602,352,347,588,208,248,709,352,610,347,602,248,208,352,691,610,691,352,602,840,561,547,530,840,547,841,642,530,841,765,59,642,765,531,209,661,
130,280,680,343,727,724,286,195,195,64,773,64,636,796,773,724,195,64,796,773,74,204,842,18,621,74,18,519,408,621,519,242,119,408,242,644,670,119,644,351
}
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: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::gas_handle", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.084596388041973,6.573512077331543,-1.319952964782715
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.797555,-2.559853,0.282451,0.797555,-2.693070,0.257366,0.837903,-2.620255,0.177607,0.837903,-2.495827,0.201038,
0.797555,-2.787435,0.220874,0.797555,-2.864693,0.136265,0.837903,-2.780558,0.064496,0.837903,-2.708398,0.143523,
0.657824,-4.207139,-8.032422,0.657824,-4.350251,-8.053967,0.587344,-4.333082,-8.572804,0.587344,-4.197842,-8.552107,
0.797555,-3.226929,-0.776203,0.705121,-2.893533,0.160869,0.705121,-3.258909,-0.759513,0.837903,-3.135376,-0.824405,
0.837903,-2.594019,-1.042407,0.837903,-2.484572,-0.899766,0.837903,-3.583091,-1.569976,0.837901,-4.398482,-2.441101,
0.837901,-4.303013,-2.543080,0.837903,-3.427107,-1.623152,0.706645,-0.296589,0.282598,0.706645,-0.219908,0.181691,
0.244906,-0.219908,0.181691,0.244906,-0.296589,0.282598,0.705121,-2.581804,0.310360,0.705121,-0.815160,0.310360,
-0.705042,-0.815160,0.310360,-0.705042,-2.581804,0.310360,0.706645,-0.413880,0.310360,0.244906,-0.413880,0.310360,
0.706645,-0.196470,0.080059,0.244906,-0.196470,0.080059,0.706645,-0.186209,-0.054994,0.244906,-0.186209,-0.054994,
0.706645,-0.119823,-0.152114,0.244906,-0.119823,-0.152114,0.706645,-0.005366,-0.196627,0.244906,-0.005363,-0.196627,
0.706645,0.109051,-0.170699,0.244906,0.109051,-0.170699,0.837903,-0.815158,0.201039,0.797555,-0.815158,0.282451,
0.837901,-4.449977,-2.562454,0.340073,-4.450567,-2.861788,0.277864,-4.349967,-8.062512,0.837901,-4.434896,-2.497252,
0.705121,-2.718031,0.284706,0.705121,-2.814530,0.247390,0.837903,-0.815157,0.062684,0.837903,-2.651124,0.039600,
0.837903,-2.438737,-0.560861,0.837903,-2.424100,-0.734098,0.837903,-3.332571,-1.629519,-0.797476,-2.559853,0.282451,
-0.837824,-2.495827,0.201038,-0.837824,-2.620253,0.177607,-0.797476,-2.693067,0.257366,-0.797476,-2.787435,0.220874,
-0.837824,-2.708394,0.143523,-0.837824,-2.780558,0.064496,-0.797476,-2.864693,0.136265,-0.797476,-3.226929,-0.776203,
-0.705042,-3.258909,-0.759513,-0.705042,-2.893533,0.160869,-0.837824,-3.135374,-0.824405,-0.837824,-2.484570,-0.899766,
-0.837824,-2.594019,-1.042407,-0.837824,-3.583091,-1.569976,-0.837824,-3.427107,-1.623152,-0.837824,-4.303013,-2.543080,
-0.837824,-4.398481,-2.441101,-0.705042,-2.718031,0.284706,-0.706565,-0.296589,0.282598,-0.244826,-0.296589,0.282598,
-0.244826,-0.219908,0.181691,-0.706565,-0.219908,0.181691,-0.706566,-0.413880,0.310360,-0.244826,-0.413880,0.310360,
-0.244826,-0.196470,0.080059,-0.706565,-0.196470,0.080059,-0.244826,-0.186209,-0.054994,-0.706565,-0.186209,-0.054994,
-0.244826,-0.119823,-0.152114,-0.706565,-0.119823,-0.152114,-0.244826,-0.005363,-0.196627,-0.706565,-0.005363,-0.196627,
-0.244826,0.109051,-0.170699,-0.706565,0.109051,-0.170699,0.244906,0.196938,-0.082175,0.706645,0.196938,-0.082175,
-0.797476,-0.815158,0.282451,-0.837824,-0.815158,0.201039,-0.657747,-4.350251,-8.053967,-0.277785,-4.349967,-8.062512,
-0.339995,-4.450567,-2.861788,-0.837824,-4.449977,-2.562454,-0.837824,-4.434896,-2.497252,-0.657747,-4.207138,-8.032422,
-0.705042,-2.814528,0.247390,-0.837824,-0.815157,0.062684,-0.837824,-2.651124,0.039600,-0.837824,-2.438737,-0.560861,
-0.837824,-2.424100,-0.734098,-0.837824,-3.332571,-1.629519,-0.587266,-4.197840,-8.552107,-0.587266,-4.333082,-8.572804,
0.156174,-4.346840,-8.157016,-0.156096,-4.346840,-8.157016,0.000039,-4.346048,-8.180916,-0.244826,0.196938,-0.082175,
-0.706565,0.196938,-0.082175,0.758398,-2.594019,-1.042407,0.758398,-2.484572,-0.899766,0.758927,-3.332571,-1.629519,
0.758398,-2.424100,-0.734098,0.758398,-2.438737,-0.560861,0.758398,-2.651124,0.039600,0.759458,-3.427107,-1.623152,
0.758398,-2.780558,0.064496,0.758398,-2.708398,0.143523,0.758398,-2.620255,0.177607,0.758929,-0.815158,0.201039,
0.758929,-0.815157,0.062684,0.706645,-0.332394,0.113905,0.706645,-0.314925,-0.057242,0.706645,-0.223971,-0.227782,
0.706645,-0.047276,-0.318348,0.706645,0.144537,-0.294449,0.706645,-0.413880,0.201039,0.706645,0.296983,-0.163191,
0.705121,-0.815158,0.201039,0.340073,-4.511499,-2.861788,0.277864,-4.408875,-8.062417,-0.277785,-4.408875,-8.062417,
-0.339995,-4.511499,-2.861788,-0.156096,-4.408545,-8.156881,0.156174,-4.408545,-8.156881,0.000039,-4.408462,-8.180786,
0.244906,-0.413880,0.201039,-0.244826,-0.413880,0.201039,0.244906,-0.332394,0.113905,0.244906,-0.314925,-0.057242,
0.244906,0.144537,-0.294449,0.244906,-0.047276,-0.318348,0.244906,-0.223971,-0.227782,0.244906,0.296983,-0.163191,
-0.706565,0.144537,-0.294449,-0.706565,0.296985,-0.163191,-0.244826,0.296983,-0.163191,-0.244826,0.144537,-0.294449,
-0.706566,-0.314925,-0.057242,-0.706565,-0.223971,-0.227782,-0.244826,-0.223971,-0.227782,-0.244826,-0.314925,-0.057242,
-0.706565,-0.047276,-0.318348,-0.244826,-0.047276,-0.318348,-0.706566,-0.332394,0.113905,-0.244826,-0.332394,0.113905,
-0.759379,-3.427107,-1.623152,-0.706566,-0.413880,0.201039,-0.758319,-2.780558,0.064496,-0.758319,-2.708394,0.143523,
-0.758319,-2.620253,0.177607,-0.705042,-0.815158,0.201039,-0.758848,-0.815158,0.201039,-0.758319,-2.484570,-0.899766,
-0.758319,-2.594019,-1.042407,-0.758850,-3.332571,-1.629519,-0.758319,-2.438737,-0.560861,-0.758319,-2.424100,-0.734098,
-0.758319,-2.651124,0.039600,-0.758848,-0.815157,0.062684
PolygonVertexIndex: 0,1,2,-4,4,5,6,-8,1,4,7,-3,8,9,10,-12,12,5,13,-15,15,16,-18,5,12,15,-7,18,19,20,-22,22,
23,24,-26,26,27,28,-30,30,22,25,-32,23,32,33,-25,32,34,35,-34,34,36,37,-36,36,38,39,-38,38,40,41,-40,0,
3,42,-44,9,44,45,-47,20,47,-45,44,9,8,-21,19,47,-21,26,48,1,-1,48,49,4,-2,49,13,5,-5,27,26,0,
-44,30,31,-28,18,12,-15,12,18,21,-16,50,42,3,-52,51,2,-8,51,7,-7,51,3,-3,52,6,-16,6,52,-52,15,17,
-54,15,54,-17,54,15,-22,15,53,-53,55,56,57,-59,59,60,61,-63,58,57,60,-60,63,64,65,-63,66,67,-69,62,61,66,
-64,69,70,71,-73,48,26,29,-74,74,75,76,-78,78,79,75,-75,77,76,80,-82,81,80,82,-84,83,82,84,-86,85,84,86,
-88,87,86,88,-90,90,41,40,-92,55,92,93,-57,94,95,96,-98,71,97,-99,97,71,99,-95,72,71,-99,29,55,58,-74,73,
58,59,-101,100,59,62,-66,28,92,55,-30,78,28,-80,69,64,-64,63,66,70,-70,101,102,56,-94,102,60,-58,102,61,-61,102,
57,-57,103,66,-62,61,102,-104,66,104,-68,66,68,-106,105,70,-67,66,103,-105,49,48,73,-101,13,49,100,-66,14,13,65,-65,
18,14,64,-70,19,18,69,-73,47,19,72,-99,44,47,98,-98,45,44,97,-97,9,46,-11,79,28,27,-32,99,106,107,-95,94,
107,-96,10,46,-109,107,109,-96,107,10,110,-110,10,108,-111,89,88,111,-113,17,16,113,-115,113,16,-116,16,54,-116,52,53,116,
-118,53,17,114,-117,51,52,117,-119,113,119,-121,117,113,-121,117,116,-115,120,118,-118,113,117,-115,118,121,-123,118,120,-122,118,122,
123,-125,119,113,-116,32,125,126,-35,34,126,127,-37,36,127,128,-39,38,128,129,-41,22,130,125,-24,40,129,131,-92,23,125,-33,
30,130,-23,130,30,27,-133,115,54,21,-120,46,45,133,-135,95,135,136,-97,109,137,135,-96,46,134,138,-109,108,138,139,-111,110,
139,137,-110,140,141,79,-32,24,33,-143,33,35,143,-143,39,41,144,-146,37,39,145,-147,35,37,146,-144,41,90,147,-145,31,25,
-141,25,24,142,-141,129,144,147,-132,126,143,146,-128,127,146,145,-129,128,145,144,-130,125,142,143,-127,119,21,-21,130,140,142,-126,
148,149,150,-152,152,153,154,-156,153,156,157,-155,156,148,151,-158,158,152,155,-160,160,71,-71,161,158,159,-142,119,20,71,-161,120,
119,160,-163,121,120,162,-164,122,121,163,-165,130,132,-141,141,165,-162,165,141,140,-133,166,165,-165,123,122,-133,164,165,132,-123,147,
90,91,-132,123,42,50,-125,27,43,42,-124,123,132,-28,50,51,118,-125,67,167,168,-69,168,169,-69,68,169,-106,103,170,171,-105,
104,171,167,-68,102,172,170,-104,168,162,-161,170,162,-169,170,167,-172,162,170,-173,168,167,-171,172,164,-164,172,163,-163,172,173,166,
-165,160,169,-169,81,83,152,-159,83,85,153,-153,85,87,156,-154,87,89,148,-157,74,77,158,-162,89,112,149,-149,77,81,-159,78,
74,-162,165,28,78,-162,169,160,70,-106,76,159,-81,80,159,155,-83,86,157,151,-89,84,154,157,-87,82,155,154,-85,88,151,150,
-112,79,141,-76,75,141,159,-77,150,149,112,-112,166,173,101,-94,28,166,93,-93,166,28,-166,101,173,172,-103,133,45,96,-137,134,
135,-140,135,134,-134,133,136,-136,135,137,-140,139,138,-135,8,11,106,-100,20,8,99,-72,11,10,107,-107
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: 0.652794,-0.070354,0.754261,0.678067,-0.200782,0.707044,0.977711,-0.052027,0.203406,0.972719,-0.013711,0.231579,
0.688103,-0.407480,0.600395,0.695486,-0.609891,0.379911,0.980501,-0.168544,0.101044,0.979092,-0.109135,0.171665,
0.678067,-0.200782,0.707044,0.688103,-0.407480,0.600395,0.979092,-0.109135,0.171665,0.977711,-0.052027,0.203406,
0.996788,0.011832,-0.079210,0.996084,0.013109,-0.087438,0.990778,0.020330,-0.133963,0.990778,0.020330,-0.133963,
0.742009,-0.614108,0.268877,0.695486,-0.609891,0.379911,0.376199,-0.782561,0.496058,0.362689,-0.855912,0.368607,
0.991935,-0.115139,0.052980,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,0.695486,-0.609891,0.379911,
0.742009,-0.614108,0.268877,0.991935,-0.115139,0.052980,0.980501,-0.168544,0.101044,1.000000,-0.000000,-0.000001,
1.000000,-0.000001,-0.000001,0.999925,0.001715,-0.012157,1.000000,-0.000000,-0.000001,0.000000,0.545261,0.838267,
0.000000,0.905503,0.424341,0.000000,0.905503,0.424341,0.000000,0.545261,0.838267,0.000000,-0.092934,0.995672,
0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.092934,0.995672,0.000000,0.116086,0.993239,
0.000000,0.545261,0.838267,0.000000,0.545261,0.838267,0.000000,0.077239,0.997013,0.000000,0.905503,0.424341,
0.000000,0.988584,0.150668,0.000000,0.988584,0.150668,0.000000,0.905503,0.424341,0.000000,0.988584,0.150668,
0.000000,0.943514,0.331333,0.000000,0.943514,0.331333,0.000000,0.988584,0.150668,0.000000,0.943514,0.331333,
0.000001,0.621808,0.783170,0.000001,0.621808,0.783170,0.000000,0.943514,0.331333,0.000001,0.621808,0.783170,
0.000000,0.073963,0.997261,0.000000,0.073960,0.997261,0.000001,0.621808,0.783170,0.000000,0.073963,0.997261,
-0.000000,-0.484619,0.874725,-0.000000,-0.484619,0.874725,0.000000,0.073960,0.997261,0.652794,-0.070354,0.754261,
0.972719,-0.013711,0.231579,0.973653,-0.000000,0.228035,0.645715,-0.000000,0.763578,0.003729,-0.999668,-0.025485,
0.002252,-0.994047,0.108930,0.003135,-0.999968,-0.007409,0.002651,-0.999613,-0.027677,0.999925,0.001715,-0.012157,
1.000000,-0.000000,0.000000,0.999816,0.002682,-0.019012,0.999816,0.002682,-0.019012,0.996084,0.013109,-0.087438,
0.996788,0.011832,-0.079210,0.999925,0.001715,-0.012157,1.000000,-0.000001,-0.000001,1.000000,-0.000000,0.000000,
0.999925,0.001715,-0.012157,0.309107,-0.099058,0.945855,0.338827,-0.266309,0.902372,0.678067,-0.200782,0.707044,
0.652794,-0.070354,0.754261,0.338827,-0.266309,0.902372,0.373816,-0.531249,0.760287,0.688103,-0.407480,0.600395,
0.678067,-0.200782,0.707044,0.373816,-0.531249,0.760287,0.376199,-0.782561,0.496058,0.695486,-0.609891,0.379911,
0.688103,-0.407480,0.600395,0.289048,-0.000000,0.957314,0.309107,-0.099058,0.945855,0.652794,-0.070354,0.754261,
0.645715,-0.000000,0.763578,0.000000,0.116086,0.993239,0.000000,0.077239,0.997013,0.000000,-0.000000,1.000000,
0.977066,-0.185992,0.103680,0.742009,-0.614108,0.268877,0.362689,-0.855912,0.368607,0.742009,-0.614108,0.268877,
0.977066,-0.185992,0.103680,0.996496,-0.071704,0.043058,0.991935,-0.115139,0.052980,1.000000,0.000000,0.000000,
0.973653,-0.000000,0.228035,0.972719,-0.013711,0.231579,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
0.977711,-0.052027,0.203406,0.979092,-0.109135,0.171665,1.000000,0.000000,0.000000,0.979092,-0.109135,0.171665,
0.980501,-0.168544,0.101044,1.000000,0.000000,0.000000,0.972719,-0.013711,0.231579,0.977711,-0.052027,0.203406,
1.000000,-0.000000,0.000000,0.980501,-0.168544,0.101044,0.991935,-0.115139,0.052980,0.980501,-0.168544,0.101044,
1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.991935,-0.115139,0.052980,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,0.991935,-0.115139,0.052980,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,0.000000,0.000000,0.991935,-0.115139,0.052980,0.996496,-0.071704,0.043058,0.991935,-0.115139,0.052980,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,-0.652795,-0.070355,0.754261,-0.972720,-0.013712,0.231578,
-0.977711,-0.052027,0.203405,-0.678070,-0.200780,0.707042,-0.688103,-0.407479,0.600396,-0.979092,-0.109131,0.171663,
-0.980502,-0.168543,0.101044,-0.695486,-0.609890,0.379913,-0.678070,-0.200780,0.707042,-0.977711,-0.052027,0.203405,
-0.979092,-0.109131,0.171663,-0.688103,-0.407479,0.600396,-0.742010,-0.614107,0.268877,-0.362689,-0.855912,0.368607,
-0.376196,-0.782560,0.496060,-0.695486,-0.609890,0.379913,-0.991936,-0.115138,0.052980,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-0.695486,-0.609890,0.379913,-0.980502,-0.168543,0.101044,-0.991936,-0.115138,0.052980,
-0.742010,-0.614107,0.268877,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-0.999925,0.001715,-0.012157,
-1.000000,0.000000,0.000000,-0.000000,-0.274013,0.961726,0.000000,-0.092934,0.995672,0.000000,-0.092934,0.995672,
-0.000000,-0.274013,0.961726,0.000000,0.545259,0.838268,0.000000,0.545261,0.838267,0.000000,0.905503,0.424341,
0.000000,0.905503,0.424341,0.000000,0.116086,0.993239,0.000000,0.077239,0.997013,0.000000,0.545261,0.838267,
0.000000,0.545259,0.838268,0.000000,0.905503,0.424341,0.000000,0.905503,0.424341,0.000000,0.988584,0.150668,
0.000000,0.988584,0.150668,0.000000,0.988584,0.150668,0.000000,0.988584,0.150668,0.000000,0.943514,0.331333,
0.000000,0.943514,0.331333,0.000000,0.943514,0.331333,0.000000,0.943514,0.331333,0.000000,0.621806,0.783171,
0.000000,0.621806,0.783171,0.000000,0.621806,0.783171,0.000000,0.621806,0.783171,0.000000,0.073958,0.997261,
0.000000,0.073958,0.997261,0.000000,0.073958,0.997261,0.000000,0.073958,0.997261,0.000000,-0.484620,0.874725,
0.000000,-0.484620,0.874725,0.000000,-0.709658,0.704546,-0.000000,-0.484619,0.874725,-0.000000,-0.484619,0.874725,
0.000000,-0.709658,0.704546,-0.652795,-0.070355,0.754261,-0.645715,-0.000000,0.763578,-0.973653,-0.000000,0.228034,
-0.972720,-0.013712,0.231578,-0.003729,-0.999668,-0.025486,-0.002651,-0.999613,-0.027678,-0.003135,-0.999968,-0.007409,
-0.002252,-0.994047,0.108930,-0.999925,0.001715,-0.012157,-0.999816,0.002681,-0.019012,-1.000000,-0.000000,0.000000,
-0.999816,0.002681,-0.019012,-0.999925,0.001715,-0.012157,-0.996788,0.011831,-0.079211,-0.996084,0.013108,-0.087439,
-1.000000,0.000000,0.000000,-0.999925,0.001715,-0.012157,-1.000000,-0.000000,0.000000,-0.309108,-0.099059,0.945854,
-0.652795,-0.070355,0.754261,-0.678070,-0.200780,0.707042,-0.338830,-0.266310,0.902371,-0.338830,-0.266310,0.902371,
-0.678070,-0.200780,0.707042,-0.688103,-0.407479,0.600396,-0.373814,-0.531245,0.760290,-0.373814,-0.531245,0.760290,
-0.688103,-0.407479,0.600396,-0.695486,-0.609890,0.379913,-0.376196,-0.782560,0.496060,-0.289048,-0.000000,0.957315,
-0.645715,-0.000000,0.763578,-0.652795,-0.070355,0.754261,-0.309108,-0.099059,0.945854,0.000000,0.116086,0.993239,
0.000000,-0.000000,1.000000,0.000000,0.077239,0.997013,-0.977066,-0.185991,0.103680,-0.362689,-0.855912,0.368607,
-0.742010,-0.614107,0.268877,-0.742010,-0.614107,0.268877,-0.991936,-0.115138,0.052980,-0.996496,-0.071704,0.043058,
-0.977066,-0.185991,0.103680,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-0.972720,-0.013712,0.231578,
-0.973653,-0.000000,0.228034,-1.000000,0.000000,0.000000,-0.979092,-0.109131,0.171663,-0.977711,-0.052027,0.203405,
-1.000000,0.000000,0.000000,-0.980502,-0.168543,0.101044,-0.979092,-0.109131,0.171663,-1.000000,0.000000,0.000000,
-0.977711,-0.052027,0.203405,-0.972720,-0.013712,0.231578,-1.000000,0.000000,0.000000,-0.991936,-0.115138,0.052980,
-0.980502,-0.168543,0.101044,-0.980502,-0.168543,0.101044,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-0.991936,-0.115138,0.052980,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.991936,-0.115138,0.052980,
-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-0.996496,-0.071704,0.043058,
-0.991936,-0.115138,0.052980,-0.991936,-0.115138,0.052980,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,
-0.000000,-0.564550,0.825399,-0.000000,-0.274013,0.961726,-0.000000,-0.274013,0.961726,-0.000000,-0.564550,0.825399,
-0.000000,-0.847809,0.530302,-0.000000,-0.564550,0.825399,-0.000000,-0.564550,0.825399,-0.000000,-0.847809,0.530302,
0.000000,-0.928938,0.370236,-0.000000,-0.847809,0.530302,-0.000000,-0.847809,0.530302,0.000000,-0.928938,0.370236,
-0.000000,-0.838688,0.544613,0.000000,-0.928938,0.370236,0.000000,-0.928938,0.370236,-0.000000,-0.838688,0.544613,
-0.000000,-0.787630,0.616149,-0.000000,-0.838688,0.544613,-0.000000,-0.838688,0.544613,-0.000000,-0.787630,0.616149,
-0.000000,-0.920546,0.390633,-0.000000,-0.787630,0.616149,-0.000000,-0.787630,0.616149,-0.000000,-0.920546,0.390633,
0.002252,-0.994047,0.108930,-0.000000,-0.920546,0.390633,-0.000000,-0.920546,0.390633,-0.002252,-0.994047,0.108930,
0.003135,-0.999968,-0.007409,0.002252,-0.994047,0.108930,-0.002252,-0.994047,0.108930,-0.003135,-0.999968,-0.007409,
0.003729,-0.999668,-0.025485,0.002651,-0.999613,-0.027677,-0.001219,-0.999051,-0.043538,0.000000,0.077239,0.997013,
0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.077239,0.997013,-0.996788,0.011831,-0.079211,
-0.990778,0.020330,-0.133963,-0.990778,0.020330,-0.133963,-0.996084,0.013108,-0.087439,-0.003729,-0.999668,-0.025486,
0.000002,-0.999453,-0.033070,-0.002651,-0.999613,-0.027678,-0.001219,-0.999051,-0.043538,0.002651,-0.999613,-0.027677,
-0.000002,-0.999453,-0.033072,0.000002,-0.999453,-0.033070,-0.000000,-0.999453,-0.033067,-0.002651,-0.999613,-0.027678,
0.000002,-0.999453,-0.033070,-0.001219,-0.999051,-0.043538,-0.000115,-0.999495,-0.031781,-0.000000,-0.999453,-0.033067,
-0.001219,-0.999051,-0.043538,-0.000002,-0.999453,-0.033072,-0.000115,-0.999495,-0.031781,0.000000,-0.484620,0.874725,
0.000000,-0.484620,0.874725,0.000000,-0.709658,0.704546,0.000000,-0.709658,0.704546,0.000000,0.876510,-0.481384,
0.000000,0.713155,-0.701007,0.000000,0.713170,-0.700991,0.000000,0.876510,-0.481384,0.000000,0.713170,-0.700991,
0.000000,0.713155,-0.701007,0.000000,0.622282,-0.782793,0.000000,0.713155,-0.701007,0.000000,0.622282,-0.782794,
0.000000,0.622282,-0.782793,0.000000,0.977584,0.210544,0.000000,0.991188,-0.132459,0.000000,0.991188,-0.132459,
0.000000,0.977584,0.210544,0.000000,0.991188,-0.132459,0.000000,0.876510,-0.481384,0.000000,0.876510,-0.481384,
0.000000,0.991188,-0.132459,0.000000,0.942764,0.333462,0.000000,0.977584,0.210544,0.000000,0.977584,0.210544,
0.000000,0.942764,0.333462,-1.000000,-0.000904,-0.000010,-0.999990,-0.003315,0.002929,-1.000000,-0.000219,-0.000037,
-1.000000,-0.000000,0.000000,-1.000000,-0.000904,-0.000010,-1.000000,-0.000219,-0.000037,-1.000000,-0.000000,0.000000,
-1.000000,-0.000002,0.000000,-1.000000,0.000002,0.000000,-1.000000,-0.000219,-0.000037,-1.000000,0.000077,-0.000009,
-1.000000,-0.000000,0.000000,-1.000000,-0.000904,-0.000010,-1.000000,-0.000000,0.000000,-1.000000,0.000002,0.000000,
-1.000000,0.000077,-0.000009,-1.000000,0.000000,0.000000,-1.000000,0.000189,-0.000021,-1.000000,0.000077,-0.000009,
-1.000000,-0.000219,-0.000037,-1.000000,0.000000,0.000000,-1.000000,0.000077,-0.000009,-1.000000,0.000189,-0.000021,
-1.000000,0.000292,-0.000033,-1.000000,0.000292,-0.000033,-0.999990,-0.003315,0.002929,-1.000000,-0.000904,-0.000010,
-0.999973,-0.004949,0.005504,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.999999,-0.001507,-0.000000,1.000000,0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,
0.999998,-0.002051,-0.000000,0.999999,-0.001507,-0.000000,1.000000,0.000000,0.000000,0.999999,-0.001507,-0.000000,
0.999998,-0.002051,-0.000000,0.999993,-0.003799,-0.000000,0.999993,-0.003799,-0.000000,0.000000,-0.067192,-0.997740,
0.000000,-0.067192,-0.997740,0.000000,-0.067192,-0.997740,0.000000,-0.067192,-0.997740,0.892576,-0.000852,-0.450896,
0.999928,-0.000010,-0.011961,0.999928,-0.000010,-0.011961,0.897053,-0.000358,-0.441922,-0.892576,-0.000852,-0.450896,
-0.897081,-0.000517,-0.441865,-0.999928,-0.000010,-0.011961,-0.999928,-0.000010,-0.011961,-0.392918,-0.001867,-0.919572,
-0.395307,-0.001864,-0.918547,-0.897081,-0.000517,-0.441865,-0.892576,-0.000852,-0.450896,0.892576,-0.000852,-0.450896,
0.897053,-0.000358,-0.441922,0.395307,-0.001864,-0.918547,0.392918,-0.001867,-0.919572,0.392918,-0.001867,-0.919572,
0.395307,-0.001864,-0.918547,-0.000000,-0.002128,-0.999998,-0.000001,-0.001771,-0.999998,-0.000001,-0.001771,-0.999998,
-0.000000,-0.002128,-0.999998,-0.395307,-0.001864,-0.918547,-0.392918,-0.001867,-0.919572,0.000000,1.000000,0.000000,
0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,0.000000,0.405389,-0.914145,0.000000,0.405389,-0.914145,0.000000,0.652479,-0.757807,
0.000000,0.652479,-0.757807,0.000000,-0.956664,-0.291193,0.000000,-0.956664,-0.291193,0.000000,-0.701317,-0.712850,
0.000000,-0.701317,-0.712850,0.000000,-0.701317,-0.712850,0.000000,-0.701317,-0.712850,0.000000,-0.173953,-0.984754,
0.000000,-0.173953,-0.984754,0.000000,-0.173953,-0.984754,0.000000,-0.173953,-0.984754,0.000000,0.405389,-0.914145,
0.000000,0.405389,-0.914145,0.000000,-0.910288,-0.413976,0.000000,-0.910288,-0.413976,0.000000,-0.956664,-0.291193,
0.000000,-0.956664,-0.291193,0.000000,0.808018,-0.589158,0.000000,0.724223,-0.689566,0.000000,0.724223,-0.689566,
0.000000,-0.398579,-0.917134,0.000000,-0.262664,-0.964887,0.000000,-0.910288,-0.413976,0.000000,-0.910288,-0.413976,
0.000001,0.405387,-0.914145,0.000001,0.652476,-0.757809,0.000001,0.652476,-0.757809,0.000001,0.405387,-0.914145,
0.000000,-0.956558,-0.291540,0.000000,-0.701317,-0.712849,0.000000,-0.701317,-0.712850,0.000000,-0.956558,-0.291541,
0.000000,-0.701317,-0.712849,0.000000,-0.173953,-0.984754,0.000000,-0.173953,-0.984754,0.000000,-0.701317,-0.712850,
0.000000,-0.173953,-0.984754,0.000001,0.405387,-0.914145,0.000001,0.405387,-0.914145,0.000000,-0.173953,-0.984754,
0.000000,-0.910288,-0.413976,0.000000,-0.956558,-0.291540,0.000000,-0.956558,-0.291541,0.000000,-0.910288,-0.413976,
0.000000,0.808018,-0.589158,0.000000,0.724223,-0.689566,0.000000,0.724223,-0.689566,0.000000,-0.398579,-0.917134,
0.000000,-0.910288,-0.413976,0.000000,-0.910288,-0.413976,0.000000,-0.262664,-0.964887,0.000000,0.808018,-0.589158,
0.000000,0.724223,-0.689566,0.000000,0.724223,-0.689566,0.000000,0.808018,-0.589158,0.000000,0.851002,-0.525163,
0.000000,0.808018,-0.589158,0.000000,0.808018,-0.589158,0.000000,0.851002,-0.525163,0.000001,0.564541,-0.825405,
0.000000,0.851002,-0.525163,0.000000,0.851002,-0.525163,0.000001,0.564540,-0.825405,0.000000,0.189806,-0.981822,
0.000001,0.564541,-0.825405,0.000001,0.564540,-0.825405,0.000000,0.189806,-0.981822,0.000000,-0.398579,-0.917134,
-0.000000,0.008312,-0.999965,0.000000,-0.262664,-0.964887,0.000000,-0.262664,-0.964887,0.000000,0.008646,-0.999963,
0.000000,-0.398579,-0.917134,0.000000,0.008646,-0.999963,0.000000,-0.262664,-0.964887,0.000000,-0.262664,-0.964887,
-0.000000,0.008312,-0.999965,0.000000,0.012980,-0.999916,0.000000,0.008646,-0.999963,0.000000,0.189806,-0.981822,
0.000000,0.012980,-0.999916,0.000000,0.189806,-0.981822,-0.000000,0.008312,-0.999965,0.000000,0.189806,-0.981822,
0.000000,0.008646,-0.999963,-0.000000,0.008312,-0.999965,0.000000,0.189806,-0.981822,0.000000,0.629325,0.777142,
0.000000,0.629325,0.777142,0.000000,0.629325,0.777142,0.000000,0.629325,0.777142,-0.000007,1.000000,0.000009,
-0.000006,1.000000,0.000003,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,-0.000010,1.000000,0.000014,
-0.000015,1.000000,0.000007,-0.000006,1.000000,0.000003,-0.000007,1.000000,0.000009,-0.000007,1.000000,0.000009,
0.000000,1.000000,0.000027,-0.000010,1.000000,0.000014,0.000000,0.012572,-0.999921,0.000000,0.012572,-0.999921,
0.000000,0.012572,-0.999921,0.000000,0.012572,-0.999921,0.000000,0.876510,-0.481383,0.000000,0.876510,-0.481383,
0.000000,0.713167,-0.700994,0.000000,0.713152,-0.701009,0.000000,0.713167,-0.700994,0.000000,0.622282,-0.782794,
0.000000,0.713152,-0.701009,0.000000,0.713152,-0.701009,0.000000,0.622282,-0.782794,0.000000,0.622282,-0.782793,
0.000000,0.977584,0.210545,0.000000,0.977584,0.210545,0.000000,0.991189,-0.132455,0.000000,0.991189,-0.132455,
0.000000,0.991189,-0.132455,0.000000,0.991189,-0.132455,0.000000,0.876510,-0.481383,0.000000,0.876510,-0.481383,
0.000000,0.942764,0.333462,0.000000,0.942764,0.333462,0.000000,0.977584,0.210545,0.000000,0.977584,0.210545,
1.000000,-0.000904,-0.000011,1.000000,-0.000219,-0.000037,0.999990,-0.003305,0.002917,1.000000,0.000000,0.000000,
1.000000,-0.000219,-0.000037,1.000000,-0.000904,-0.000011,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,-0.000219,-0.000037,1.000000,0.000000,0.000000,1.000000,0.000077,-0.000009,
1.000000,-0.000904,-0.000011,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000077,-0.000009,
1.000000,0.000189,-0.000021,1.000000,0.000000,0.000000,1.000000,0.000077,-0.000009,1.000000,0.000000,0.000000,
1.000000,-0.000219,-0.000037,1.000000,0.000077,-0.000009,1.000000,0.000291,-0.000033,1.000000,0.000291,-0.000033,
1.000000,0.000189,-0.000021,0.999990,-0.003305,0.002917,0.999970,-0.005216,0.005658,1.000000,-0.000904,-0.000011,
-1.000000,0.000014,0.000002,-1.000000,0.000011,-0.000001,-1.000000,0.000012,0.000000,-1.000000,0.000012,0.000005,
-1.000000,0.000011,-0.000001,-1.000000,0.000004,-0.000001,-1.000000,0.000005,-0.000001,-1.000000,0.000012,0.000000,
-1.000000,0.000004,-0.000001,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000005,-0.000001,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000011,0.000005,-1.000000,0.000012,0.000006,-1.000000,0.000012,0.000005,-0.999999,-0.001500,0.000003,
-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,0.000012,0.000006,-1.000000,0.000014,0.000002,-1.000000,0.000012,0.000005,-0.999998,-0.002044,-0.000000,
-1.000000,0.000011,0.000005,-0.999999,-0.001500,0.000003,-0.999993,-0.003799,-0.000000,-0.999993,-0.003799,-0.000000,
-0.999998,-0.002044,-0.000000,-0.999999,-0.001500,0.000003,0.000000,-0.067192,-0.997740,0.000000,-0.067192,-0.997740,
0.000000,-0.067192,-0.997740,0.000000,-0.067192,-0.997740,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,
0.000001,0.629322,0.777145,0.000001,0.629322,0.777145,0.000001,0.629322,0.777145,0.000001,0.629322,0.777145,
0.000007,1.000000,0.000009,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000006,1.000000,0.000003,
0.000010,1.000000,0.000014,0.000007,1.000000,0.000009,0.000006,1.000000,0.000003,0.000015,1.000000,0.000006,
0.000007,1.000000,0.000009,0.000010,1.000000,0.000014,0.000000,1.000000,0.000027,0.000000,0.012572,-0.999921,
0.000000,0.012572,-0.999921,0.000000,0.012572,-0.999921,0.000000,0.012572,-0.999921,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.999888,-0.014947,
-0.000000,-0.999888,-0.014951,-0.000000,-0.999994,-0.003484,-0.000000,-0.999888,-0.014951,0.000000,-0.999888,-0.014947,
0.000000,-0.999805,-0.019729,0.000000,-0.999805,-0.019729,0.000000,-0.999805,-0.019729,-0.000000,-0.999888,-0.014951,
-0.000000,-0.999888,-0.014951,-0.000000,-0.999994,-0.003504,-0.000000,-0.999994,-0.003484,-0.000000,-0.999994,-0.003484,
0.000000,-0.999994,-0.003473,0.000000,-0.999888,-0.014947,0.000001,0.999844,0.017664,0.000001,0.999840,0.017889,
0.000001,0.999840,0.017889,0.000001,0.999844,0.017664,0.000000,0.999848,0.017463,0.000001,0.999844,0.017664,
0.000001,0.999844,0.017664,0.000000,0.999848,0.017463,0.000000,0.151280,-0.988491,0.000000,0.151280,-0.988491,
0.000000,0.151280,-0.988491,0.000000,0.151280,-0.988491
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.944800,0.010300,0.339933,0.911996,0.111599,0.973399,0.100400,0.590699,0.742799,0.645600,0.384099,0.919099,
0.334300,0.936100,0.105899,0.589100,0.338775,0.816378,0.339910,0.809288,0.333621,0.812818,0.337652,0.786609,
0.838199,0.109099,0.237694,0.730695,0.228528,0.681937,0.200959,0.759744,0.854799,0.049400,0.874300,0.224099,
0.887099,0.208199,0.859899,0.236200,0.054600,0.633499,0.849600,0.253899,0.838199,0.149800,0.821799,0.760900,
0.926100,0.720300,0.347731,0.807327,0.979200,0.694899,0.637499,0.720499,0.755900,0.734899,0.907400,0.073100,
0.904900,0.188099,0.347221,0.681953,0.351289,0.786416,0.985400,0.359400,0.334300,0.927900,0.074699,0.614899,
0.232502,0.815475,0.114000,0.924000,0.112999,0.584200,0.108300,0.584200,0.825200,0.644100,0.950299,0.841700,
0.973500,0.841700,0.218799,0.636900,0.794300,0.690100,0.825600,0.893499,0.701699,0.715900,0.336295,0.799824,
0.885299,0.200800,0.977599,0.829900,0.994099,0.360399,0.821799,0.753499,0.240758,0.911269,0.190400,0.924000,
0.917200,0.597500,0.756699,0.742500,0.196303,0.751021,0.898599,0.216700,0.380178,0.750683,0.981299,0.313100,
0.050500,0.926299,0.046799,0.926299,0.056499,0.605599,0.058299,0.633499,0.058299,0.948700,0.046799,0.611100,
0.050500,0.611100,0.908299,0.195700,0.223669,0.806304,0.860700,0.229800,0.117799,0.924000,0.184900,0.599900,
0.919399,0.694899,0.338569,0.730808,0.332120,0.787508,0.380642,0.740674,0.378043,0.730798,0.701799,0.639400,
0.981400,0.677900,0.821799,0.730199,0.329059,0.727706,0.687099,0.617500,0.907400,0.113600,0.123300,0.599900,
0.981400,0.601499,0.821799,0.690100,0.950299,0.786499,0.737600,0.657800,0.733299,0.766799,0.192000,0.597500,
0.875100,0.216100,0.243126,0.810600,0.330990,0.797542,0.245644,0.800841,0.934700,0.109899,0.821799,0.739600,
0.808799,0.622200,0.950299,0.796700,0.973500,0.796700,0.982299,0.840300,0.854900,0.057700,0.115000,0.936299,
0.193900,0.686900,0.801900,0.619199,0.404100,0.936100,0.884000,0.001900,0.891799,0.001900,0.920899,0.001900,
0.988699,0.001900,0.001900,0.977800,0.961000,0.001900,0.067100,0.949199,0.853900,0.065300,0.849600,0.250499,
0.820500,0.638800,0.329224,0.784062,0.977599,0.763199,0.959699,0.694899,0.812500,0.636600,0.718299,0.618900,
0.733600,0.756600,0.934700,0.078500,0.859899,0.253899,0.301316,0.931448,0.231433,0.730245,0.725600,0.657199,
0.838199,0.078900,0.930599,0.083200,0.065600,0.607200,0.883899,0.086699,0.907400,0.103500,0.939400,0.022399,
0.995999,0.032999,0.865599,0.078900,0.934700,0.022399,0.907400,0.083200,0.110699,0.589100,0.973500,0.816999,
0.236696,0.804462,0.821799,0.710099,0.977599,0.819199,0.977599,0.840300,0.820399,0.628700,0.950299,0.816999,
0.792699,0.613300,0.825600,0.887000,0.977299,0.010200,0.866999,0.235400,0.836300,0.233600,0.235206,0.798956,
0.939400,0.089100,0.111599,0.977800,0.098700,0.612600,0.237704,0.811984,0.225590,0.786438,0.858399,0.064999,
0.794600,0.620700,0.739099,0.762099,0.982299,0.829900,0.325989,0.807763,0.794300,0.753499,0.987699,0.953999,
0.995500,0.956799,0.986199,0.626600,0.836300,0.250499,0.934700,0.089100,0.336475,0.678005,0.341587,0.804182,
0.231463,0.808369,0.203799,0.934800,0.907400,0.122199,0.804600,0.612100,0.194100,0.924000,0.898599,0.727900,
0.934700,0.099600,0.736800,0.890799,0.750000,0.850899,0.116200,0.584200,0.930599,0.093400,0.838199,0.128499,
0.325824,0.794000,0.333649,0.794153,0.347814,0.911881,0.334300,0.919099,0.941500,0.313100,0.907199,0.018300,
0.902599,0.018300,0.911899,0.018300,0.832300,0.195700,0.930599,0.128199,0.826499,0.072899,0.747699,0.651499,
0.898599,0.720300,0.822600,0.858399,0.750500,0.859200,0.794300,0.745999,0.245574,0.794949,0.950299,0.827099,
0.973500,0.827099,0.328219,0.811362,0.741900,0.756500,0.865599,0.142399,0.939400,0.099600,0.339305,0.792808,
0.336278,0.610096,0.237744,0.681100,0.327220,0.908288,0.334300,0.923600,0.199699,0.936299,0.825100,0.650600,
0.182199,0.575999,0.815100,0.617900,0.996399,0.953000,0.982299,0.850700,0.721700,0.631900,0.325894,0.799883,
0.794300,0.700100,0.736899,0.650200,0.688399,0.611100,0.883599,0.253899,0.116200,0.590699,0.327592,0.931121,
0.232873,0.784736,0.987900,0.031800,0.329240,0.912054,0.710500,0.622300,0.857200,0.041299,0.865999,0.225199,
0.897000,0.203600,0.939400,0.109899,0.115099,0.929799,0.243353,0.730923,0.248969,0.784299,0.882000,0.091399,
0.874199,0.205200,0.879899,0.210299,0.907400,0.128199,0.794300,0.710099,0.994300,0.625400,0.982299,0.819199,
0.783599,0.621200,0.859899,0.250499,0.352297,0.683702,0.229855,0.803241,0.749199,0.743600,0.930599,0.113600,
0.239228,0.786483,0.985400,0.596800,0.939400,0.078500,0.838199,0.134900,0.829400,0.188099,0.240540,0.796745,
0.243314,0.793981,0.241106,0.678281,0.062399,0.840200,0.853900,0.072899,0.711799,0.615899,0.950299,0.806800,
0.973500,0.806800,0.821799,0.720200,0.222188,0.910848,0.993499,0.595499,0.977599,0.888499,0.237643,0.792699,
0.712599,0.638400,0.722999,0.646600,0.729399,0.650600,0.242002,0.802542,0.726100,0.766799,0.865599,0.134900,
0.273446,0.931794,0.034499,0.953700,0.904399,0.196400,0.235254,0.911175,0.223471,0.683740,0.838199,0.089000,
0.813799,0.642700,0.930599,0.122199,0.950299,0.835699,0.973500,0.835699,0.701699,0.720499,0.981400,0.597500,
0.821799,0.745999,0.736400,0.746800,0.767099,0.739199,0.766900,0.752499,0.103600,0.575999,0.345836,0.790605,
0.332912,0.731097,0.247170,0.932122,0.329244,0.790729,0.865599,0.109099,0.344826,0.730289,0.014299,0.612600,
0.920899,0.008399,0.891799,0.008399,0.870299,0.253899,0.637399,0.639400,0.939400,0.147799,0.038300,0.614899,
0.917200,0.677900,0.865599,0.089000,0.838199,0.098999,0.246970,0.909283,0.245740,0.808737,0.329451,0.803320,
0.240909,0.610373,0.907400,0.093400,0.894200,0.210700,0.977599,0.850700,0.740999,0.892400,0.821799,0.700100,
0.794300,0.739600,0.763400,0.745899,0.744300,0.737800,0.727699,0.760500,0.404100,0.927900,0.721499,0.625699,
0.773800,0.749100,0.384099,0.923600,0.217500,0.660600,0.838199,0.119099,0.071800,0.840200,0.071800,0.949199,
0.112999,0.575999,0.018100,0.579900,0.114000,0.863300,0.865599,0.098999,0.865599,0.119099,0.079000,0.953700,
0.877799,0.087800,0.244770,0.787321,0.195731,0.741014,0.826499,0.065300,0.126000,0.575999,0.926100,0.727900,
0.794300,0.760900,0.979200,0.677900,0.883599,0.250499,0.818199,0.648800,0.720200,0.639699,0.714200,0.628300,
0.716099,0.649900,0.902499,0.012699,0.907199,0.012699,0.911899,0.012699,0.198224,0.731109,0.103600,0.584200,
0.334731,0.805310,0.865599,0.128499,0.836300,0.253899,0.100400,0.584200,0.062399,0.949199,0.198200,0.683300,
0.375620,0.759452,0.343987,0.784793,0.982299,0.888499,0.917200,0.601499,0.336268,0.606288,0.201199,0.929799,
0.794300,0.720200,0.938899,0.694899,0.934700,0.147699,0.870299,0.250499,0.872200,0.229900,0.094999,0.579999,
0.838199,0.142399,0.196299,0.598800,0.334744,0.912033,0.221100,0.653199,0.047400,0.607200,0.996800,0.003199,
0.231088,0.790568,0.248989,0.790968,0.867500,0.215100,0.221200,0.644900,0.739499,0.885999,0.746599,0.858500,
0.637499,0.715900,0.812699,0.628600,0.919399,0.677900,0.986299,0.363299,0.825399,0.850899,0.794300,0.730199,
0.837000,0.227099,0.789399,0.626200,0.230067,0.911069,0.194100,0.863300,0.337996,0.681216,0.973500,0.786499,
0.054600,0.948700,0.248804,0.727939,0.108300,0.575999,0.240899,0.606562,0.904999,0.212500,0.930599,0.073100,
0.930599,0.103500,0.879700,0.003299,0.002000,0.973399,0.952899,0.003400,0.969099,0.003299,0.067100,0.840200,
0.192100,0.682200,0.743799,0.748700,0.865599,0.149800,0.982299,0.763199
UVIndex: 10,348,9,8,203,11,355,287,348,47,167,9,132,223,108,371,73,11,74,288,292,76,75,11,73,292,355,193,194,176,382,366,249,269,201,159,206,303,304,22,366,201,404,249,179,349,269,179,321,328,349,321,12,291,328,12,302,327,291,302,275,301,327,10,
8,1,368,152,2,329,35,50,381,33,33,223,132,50,194,377,176,199,305,348,10,305,92,47,348,181,74,11,203,224,199,10,368,221,123,206,388,73,288,73,388,31,292,182,1,8,25,25,9,167,32,287,355,25,8,9,354,355,292,355,354,32,292,75,
58,292,242,76,242,292,31,292,58,354,153,36,168,138,263,372,222,246,138,168,243,149,13,231,331,246,124,332,346,246,222,124,13,188,250,30,272,215,159,304,93,51,160,195,282,23,336,160,51,282,195,312,95,95,312,383,79,79,383,360,259,259,360,237,
139,139,237,216,311,133,301,275,126,153,273,386,36,293,299,271,398,161,212,162,212,161,163,238,272,30,67,91,153,138,267,267,138,149,251,252,263,246,331,52,273,153,91,289,303,270,205,231,13,13,124,14,205,260,68,36,386,68,243,168,154,222,372,68,
168,36,15,124,222,222,154,15,124,56,332,124,346,274,274,14,124,124,15,56,180,215,93,196,115,290,373,232,80,115,232,391,166,80,391,253,204,166,253,306,358,204,306,393,2,151,109,398,329,2,398,271,152,35,365,270,303,206,123,163,247,261,238,293,
325,299,365,35,128,325,370,299,325,365,62,370,365,128,62,311,216,44,85,49,140,239,158,239,140,405,140,116,405,309,141,99,213,141,49,158,99,262,309,213,356,226,105,129,155,226,129,155,100,16,129,330,155,226,155,16,359,169,208,330,129,233,359,208,
101,230,105,226,397,17,227,374,90,90,374,234,235,235,234,48,18,18,48,228,308,147,69,227,364,308,228,394,57,364,227,17,19,69,147,69,19,148,384,343,344,185,186,63,64,390,20,65,66,60,61,113,21,350,164,338,219,296,363,363,296,122,241,241,
122,21,113,106,107,294,295,276,118,114,118,379,142,114,103,156,144,171,96,103,171,211,379,96,211,142,156,385,240,144,209,339,40,339,276,114,40,127,135,29,395,245,82,130,396,396,130,307,178,178,307,135,127,277,170,82,245,70,37,326,189,236,170,277,
97,86,389,98,197,143,137,198,143,257,258,137,257,97,98,258,278,197,198,279,53,387,172,41,278,279,42,70,326,387,53,378,297,77,46,27,378,46,280,357,54,281,84,72,380,361,117,337,26,337,117,361,380,78,337,84,300,357,380,84,337,380,357,24,
335,173,192,38,39,392,324,220,136,39,38,38,177,220,111,401,322,323,150,165,121,248,121,134,248,248,134,131,229,94,174,202,202,174,165,150,298,362,94,229,43,402,89,320,402,43,320,375,369,402,320,353,43,375,320,376,310,175,353,102,402,376,145,45,
310,89,367,43,214,340,264,341,340,265,342,264,265,266,125,342,266,217,87,125,119,317,341,225,217,4,191,87,317,214,341,256,119,225,81,218,256,225,345,187,185,344,157,120,200,200,120,283,403,55,28,284,313,244,314,28,55,403,283,314,244,313,284,318,
285,268,315,88,88,315,120,157,333,112,255,190,347,286,392,39,3,347,39,7,347,3,351,111,352,254,401,207,183,5,319,146,0,110,0,146,59,59,184,0,0,399,110,110,400,146,83,334,210,71,326,83,71,387,6,34,316,104
}
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: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
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: 4
PoseNode: {
Node: "Model::gas_pin"
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.961012840270996,5.898973464965820,1.452221870422363,1.000000000000000
}
PoseNode: {
Node: "Model::gas_ring"
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.961012899875641,5.898973941802979,1.452221632003784,1.000000000000000
}
PoseNode: {
Node: "Model::gas_body"
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.084711968898773,-0.507033109664917,-0.006081163883209,1.000000000000000
}
PoseNode: {
Node: "Model::gas_handle"
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.084596388041973,6.573512077331543,-1.319952964782715,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::gas_pin", "Mesh" {
}
Model: "Model::gas_ring", "Mesh" {
}
Model: "Model::gas_body", "Mesh" {
}
Model: "Model::gas_handle", "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::gas_pin", "Model::Scene"
Connect: "OO", "Model::gas_ring", "Model::Scene"
Connect: "OO", "Model::gas_body", "Model::Scene"
Connect: "OO", "Model::gas_handle", "Model::Scene"
Connect: "OO", "Material::unnamed", "Model::gas_pin"
Connect: "OO", "Material::unnamed", "Model::gas_ring"
Connect: "OO", "Material::unnamed", "Model::gas_body"
Connect: "OO", "Material::unnamed", "Model::gas_handle"
}
;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::gas_pin" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: -0.961012840270996
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.961012840270996,L
Color: 1,0,0
}
Channel: "Y" {
Default: 5.898973464965820
KeyVer: 4005
KeyCount: 1
Key:
1924423250,5.898973464965820,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.452221870422363
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.452221870422363,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
}
}
}
Model: "Model::gas_ring" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: -0.961012899875641
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.961012899875641,L
Color: 1,0,0
}
Channel: "Y" {
Default: 5.898973941802979
KeyVer: 4005
KeyCount: 1
Key:
1924423250,5.898973941802979,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.452221632003784
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.452221632003784,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
}
}
}
Model: "Model::gas_body" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 0.084711968898773
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.084711968898773,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.507033109664917
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.507033109664917,L
Color: 0,1,0
}
Channel: "Z" {
Default: -0.006081163883209
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.006081163883209,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
}
}
}
Model: "Model::gas_handle" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 0.084596388041973
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.084596388041973,L
Color: 1,0,0
}
Channel: "Y" {
Default: 6.573512077331543
KeyVer: 4005
KeyCount: 1
Key:
1924423250,6.573512077331543,L
Color: 0,1,0
}
Channel: "Z" {
Default: -1.319952964782715
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-1.319952964782715,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
}
}