Socialify

Folder ..

Viewing queen.fbx
2292 lines (2281 loc) • 274.1 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
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: [email protected]
; ----------------------------------------------------

FBXHeaderExtension:  {
	FBXHeaderVersion: 1003
	FBXVersion: 6100
	CreationTimeStamp:  {
		Version: 1000
		Year: 2013
		Month: 06
		Day: 05
		Hour: 04
		Minute: 27
		Second: 03
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-06-05 04:27:03:000"
Creator: "Blender version 2.64 (sub 0)"

; Object definitions
;------------------------------------------------------------------

Definitions:  {
	Version: 100
	Count: 6
	ObjectType: "Model" {
		Count: 1
	}
	ObjectType: "Geometry" {
		Count: 1
	}
	ObjectType: "Material" {
		Count: 2
	}
	ObjectType: "Texture" {
		Count: 1
	}
	ObjectType: "Video" {
		Count: 1
	}
	ObjectType: "Pose" {
		Count: 1
	}
	ObjectType: "GlobalSettings" {
		Count: 1
	}
}

; Object properties
;------------------------------------------------------------------

Objects:  {
	Model: "Model::Cylinder", "Mesh" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",0.699999988079071,0.699999988079071,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.251801,-1.154551,1.759636,-1.274436,-1.105994,1.726817,-1.269760,-1.075259,1.681985,-1.239026,-1.070583,1.637153,-1.190468,-1.093218,1.604334,-1.205537,-1.136770,1.772030,-1.194303,-1.075196,1.748284
		,-1.177230,-1.039697,1.706772,-1.158893,-1.039785,1.658619,-1.144204,-1.075437,1.616727,-1.157889,-1.157889,1.777164,-1.111775,-1.111775,1.757175,-1.081935,-1.081935,1.717040,-1.076365,-1.076365,1.667511
		,-1.096556,-1.096556,1.621861,-1.207920,-1.207920,1.771649,-1.136770,-1.205537,1.772030,-1.075196,-1.194303,1.748284,-1.039697,-1.177230,1.706772,-1.039785,-1.158892,1.658619,-1.075437,-1.144203,1.616727
		,-1.154551,-1.251801,1.759636,-1.105994,-1.274436,1.726817,-1.075259,-1.269760,1.681985,-1.070583,-1.239026,1.637153,-1.093218,-1.190468,1.604334,-1.200816,-1.269582,1.747243,-1.186127,-1.305234,1.705350
		,-1.167789,-1.305322,1.657197,-1.150716,-1.269823,1.615686,-1.139483,-1.208249,1.591940,-1.248464,-1.248464,1.742109,-1.268655,-1.268655,1.696459,-1.263084,-1.263084,1.646930,-1.233244,-1.233244,1.606794
		,-1.187130,-1.187130,1.586806,-1.269583,-1.200816,1.747243,-1.305234,-1.186127,1.705350,-1.305322,-1.167789,1.657197,-1.269823,-1.150716,1.615686,-1.208249,-1.139483,1.591940,-1.137099,-1.137099,1.592321
		,-1.701548,0.068766,1.759636,-1.683218,0.119107,1.726817,-1.658179,0.137533,1.681985,-1.633140,0.119107,1.637153,-1.614810,0.068766,1.604334,-1.656261,0.048625,1.772030,-1.604778,0.084221,1.748284
		,-1.567605,0.097250,1.706772,-1.554700,0.084221,1.658619,-1.569523,0.048625,1.616727,-1.637502,0.000000,1.777164,-1.572288,0.000000,1.757175,-1.530087,0.000000,1.717040,-1.522209,0.000000,1.667511
		,-1.550764,0.000000,1.621861,-1.708257,0.000000,1.771649,-1.656261,-0.048625,1.772030,-1.604778,-0.084221,1.748284,-1.567605,-0.097251,1.706772,-1.554700,-0.084221,1.658619,-1.569523,-0.048625,1.616727
		,-1.701548,-0.068766,1.759636,-1.683218,-0.119107,1.726817,-1.658179,-0.137533,1.681985,-1.633140,-0.119107,1.637153,-1.614810,-0.068766,1.604334,-1.746835,-0.048625,1.747243,-1.761658,-0.084221,1.705350
		,-1.748754,-0.097251,1.657197,-1.711580,-0.084221,1.615686,-1.660097,-0.048625,1.591940,-1.765594,0.000000,1.742109,-1.794149,0.000000,1.696459,-1.786271,0.000000,1.646930,-1.744070,0.000000,1.606794
		,-1.678856,0.000000,1.586806,-1.746835,0.048625,1.747243,-1.761658,0.084221,1.705350,-1.748754,0.097250,1.657197,-1.711580,0.084221,1.615686,-1.660097,0.048625,1.591940,-1.608101,0.000000,1.592321
		,-1.154551,1.251801,1.759636,-1.105994,1.274436,1.726817,-1.075259,1.269760,1.681985,-1.070583,1.239025,1.637153,-1.093218,1.190468,1.604334,-1.136770,1.205536,1.772030,-1.075196,1.194303,1.748284
		,-1.039697,1.177230,1.706772,-1.039785,1.158892,1.658619,-1.075437,1.144203,1.616727,-1.157889,1.157889,1.777164,-1.111775,1.111775,1.757175,-1.081935,1.081935,1.717040,-1.076365,1.076364,1.667511
		,-1.096556,1.096556,1.621861,-1.207920,1.207920,1.771649,-1.205536,1.136770,1.772030,-1.194303,1.075196,1.748284,-1.177230,1.039697,1.706772,-1.158892,1.039785,1.658619,-1.144203,1.075437,1.616727
		,-1.251801,1.154551,1.759636,-1.274436,1.105994,1.726817,-1.269760,1.075259,1.681985,-1.239026,1.070583,1.637153,-1.190468,1.093218,1.604334,-1.269582,1.200816,1.747243,-1.305234,1.186127,1.705350
		,-1.305322,1.167789,1.657197,-1.269823,1.150716,1.615686,-1.208249,1.139483,1.591940,-1.248464,1.248464,1.742109,-1.268655,1.268655,1.696459,-1.263084,1.263084,1.646930,-1.233244,1.233244,1.606794
		,-1.187130,1.187130,1.586806,-1.200816,1.269582,1.747243,-1.186127,1.305234,1.705350,-1.167789,1.305322,1.657197,-1.150716,1.269823,1.615686,-1.139483,1.208249,1.591940,-1.137099,1.137099,1.592321
		,0.068766,1.701548,1.759636,0.119107,1.683218,1.726817,0.137533,1.658179,1.681985,0.119107,1.633139,1.637153,0.068766,1.614810,1.604334,0.048625,1.656261,1.772030,0.084222,1.604778,1.748284
		,0.097250,1.567604,1.706772,0.084221,1.554700,1.658619,0.048625,1.569523,1.616727,-0.000000,1.637502,1.777164,0.000000,1.572288,1.757175,-0.000000,1.530087,1.717040,-0.000000,1.522209,1.667511
		,-0.000000,1.550764,1.621861,0.000000,1.708257,1.771649,-0.048625,1.656261,1.772030,-0.084221,1.604778,1.748284,-0.097250,1.567604,1.706772,-0.084221,1.554700,1.658619,-0.048625,1.569523,1.616727
		,-0.068766,1.701548,1.759636,-0.119107,1.683218,1.726817,-0.137533,1.658179,1.681985,-0.119107,1.633139,1.637153,-0.068766,1.614810,1.604334,-0.048625,1.746835,1.747243,-0.084221,1.761658,1.705350
		,-0.097250,1.748753,1.657197,-0.084221,1.711580,1.615686,-0.048625,1.660097,1.591940,0.000000,1.765594,1.742109,0.000000,1.794149,1.696459,0.000000,1.786271,1.646930,0.000000,1.744070,1.606794
		,0.000000,1.678856,1.586806,0.048625,1.746835,1.747243,0.084221,1.761658,1.705350,0.097250,1.748753,1.657197,0.084221,1.711580,1.615686,0.048625,1.660097,1.591940,0.000000,1.608101,1.592321
		,1.251801,1.154551,1.759636,1.274436,1.105994,1.726817,1.269760,1.075259,1.681985,1.239026,1.070583,1.637153,1.190468,1.093218,1.604334,1.205537,1.136770,1.772030,1.194303,1.075196,1.748284
		,1.177230,1.039697,1.706772,1.158892,1.039785,1.658619,1.144203,1.075437,1.616727,1.157889,1.157889,1.777164,1.111775,1.111775,1.757175,1.081935,1.081935,1.717040,1.076365,1.076365,1.667511
		,1.096556,1.096556,1.621861,1.207920,1.207920,1.771649,1.136770,1.205536,1.772030,1.075196,1.194303,1.748284,1.039697,1.177230,1.706772,1.039785,1.158892,1.658619,1.075437,1.144203,1.616727
		,1.154551,1.251801,1.759636,1.105994,1.274436,1.726817,1.075259,1.269760,1.681985,1.070583,1.239025,1.637153,1.093218,1.190468,1.604334,1.200816,1.269582,1.747243,1.186127,1.305234,1.705350
		,1.167789,1.305322,1.657197,1.150716,1.269823,1.615686,1.139483,1.208249,1.591940,1.248464,1.248464,1.742109,1.268655,1.268655,1.696459,1.263084,1.263084,1.646930,1.233244,1.233244,1.606794
		,1.187130,1.187130,1.586806,1.269583,1.200816,1.747243,1.305234,1.186127,1.705350,1.305322,1.167789,1.657197,1.269823,1.150716,1.615686,1.208249,1.139483,1.591940,1.137099,1.137099,1.592321
		,1.701548,-0.068766,1.759636,1.683218,-0.119107,1.726817,1.658179,-0.137533,1.681985,1.633140,-0.119107,1.637153,1.614810,-0.068766,1.604334,1.656261,-0.048625,1.772030,1.604778,-0.084222,1.748284
		,1.567605,-0.097250,1.706772,1.554700,-0.084221,1.658619,1.569523,-0.048625,1.616727,1.637502,0.000000,1.777164,1.572288,0.000000,1.757175,1.530087,0.000000,1.717040,1.522209,0.000000,1.667511
		,1.550764,0.000000,1.621861,1.708257,0.000000,1.771649,1.656261,0.048625,1.772030,1.604778,0.084221,1.748284,1.567604,0.097250,1.706772,1.554700,0.084221,1.658619,1.569523,0.048625,1.616727
		,1.701548,0.068766,1.759636,1.683218,0.119107,1.726817,1.658179,0.137533,1.681985,1.633140,0.119107,1.637153,1.614810,0.068766,1.604334,1.746835,0.048625,1.747243,1.761658,0.084221,1.705350
		,1.748753,0.097250,1.657197,1.711580,0.084221,1.615686,1.660097,0.048625,1.591940,1.765594,-0.000000,1.742109,1.794149,0.000000,1.696459,1.786271,-0.000000,1.646930,1.744070,0.000000,1.606794
		,1.678856,0.000000,1.586806,1.746835,-0.048625,1.747243,1.761658,-0.084221,1.705350,1.748754,-0.097250,1.657197,1.711580,-0.084221,1.615686,1.660097,-0.048625,1.591940,1.608101,0.000000,1.592321
		,1.154551,-1.251801,1.759636,1.105994,-1.274436,1.726817,1.075259,-1.269760,1.681985,1.070583,-1.239026,1.637153,1.093218,-1.190468,1.604334,1.136770,-1.205537,1.772030,1.075196,-1.194303,1.748284
		,1.039697,-1.177230,1.706772,1.039785,-1.158892,1.658619,1.075437,-1.144203,1.616727,1.157889,-1.157889,1.777164,1.111775,-1.111775,1.757175,1.081935,-1.081935,1.717040,1.076365,-1.076365,1.667511
		,1.096556,-1.096556,1.621861,1.207920,-1.207920,1.771649,1.205536,-1.136770,1.772030,1.194303,-1.075196,1.748284,1.177230,-1.039697,1.706772,1.158892,-1.039786,1.658619,1.144203,-1.075437,1.616727
		,1.251801,-1.154551,1.759636,1.274436,-1.105994,1.726817,1.269760,-1.075259,1.681985,1.239026,-1.070583,1.637153,1.190468,-1.093218,1.604334,1.269582,-1.200816,1.747243,1.305234,-1.186127,1.705350
		,1.305322,-1.167789,1.657197,1.269823,-1.150716,1.615686,1.208249,-1.139483,1.591940,1.248464,-1.248464,1.742109,1.268655,-1.268655,1.696459,1.263084,-1.263084,1.646930,1.233244,-1.233244,1.606794
		,1.187130,-1.187130,1.586806,1.200816,-1.269583,1.747243,1.186127,-1.305234,1.705350,1.167789,-1.305322,1.657197,1.150716,-1.269823,1.615686,1.139483,-1.208249,1.591940,1.137099,-1.137099,1.592321
		,-0.068766,-1.701548,1.759636,-0.119107,-1.683218,1.726817,-0.137533,-1.658179,1.681985,-0.119107,-1.633140,1.637153,-0.068766,-1.614810,1.604334,-0.048625,-1.656261,1.772030,-0.084222,-1.604779,1.748284
		,-0.097251,-1.567605,1.706772,-0.084221,-1.554700,1.658619,-0.048625,-1.569523,1.616727,0.000000,-1.637502,1.777164,0.000000,-1.572288,1.757175,0.000000,-1.530087,1.717040,0.000000,-1.522209,1.667511
		,0.000000,-1.550764,1.621861,0.000000,-1.708257,1.771649,0.048625,-1.656261,1.772030,0.084221,-1.604779,1.748284,0.097251,-1.567604,1.706772,0.084221,-1.554700,1.658619,0.048625,-1.569523,1.616727
		,0.068766,-1.701548,1.759636,0.119107,-1.683218,1.726817,0.137533,-1.658179,1.681985,0.119107,-1.633140,1.637153,0.068766,-1.614810,1.604334,0.048625,-1.746835,1.747243,0.084221,-1.761658,1.705350
		,0.097251,-1.748753,1.657197,0.084221,-1.711580,1.615686,0.048625,-1.660097,1.591940,-0.000000,-1.765594,1.742109,0.000000,-1.794149,1.696459,-0.000000,-1.786271,1.646930,0.000000,-1.744070,1.606794
		,0.000000,-1.678856,1.586806,-0.048625,-1.746835,1.747243,-0.084221,-1.761658,1.705350,-0.097251,-1.748754,1.657197,-0.084221,-1.711580,1.615686,-0.048625,-1.660097,1.591940,0.000000,-1.608101,1.592321
		,0.827277,-0.342669,0.196189,-0.342669,0.827277,0.196189,-0.827277,0.342669,0.196189,-0.000000,-0.917553,0.000000,-0.770747,-0.319254,0.288573,0.773398,-0.320352,0.221468,0.320352,0.773398,0.221468
		,0.320352,-0.773398,0.221468,-0.320352,0.773398,0.221468,-0.729207,0.302047,0.303788,0.770747,0.319254,0.288573,-0.319254,-0.770747,0.288573,-0.319254,0.770747,0.288573,0.319254,0.770747,0.288573
		,0.319254,-0.770747,0.288573,-0.770747,0.319254,0.288573,0.770747,-0.319254,0.288573,0.729207,-0.302048,0.303788,-0.302048,-0.729207,0.303788,0.302047,0.729207,0.303788,0.830827,-0.344140,0.458127
		,-0.310831,-0.750412,0.417268,-0.310831,0.750412,0.417268,0.310831,0.750412,0.417268,0.310831,-0.750412,0.417268,0.409658,-0.989002,0.600796,-0.344140,-0.830827,0.458127,0.344140,0.830827,0.458127
		,0.344140,-0.830827,0.458127,-0.830827,0.344140,0.458127,-0.989002,0.409658,0.600796,-0.989002,-0.409658,0.600796,0.989002,0.409658,0.600796,-0.409658,0.989002,0.600796,0.353553,0.853553,0.003846
		,0.853553,0.353553,0.003846,0.853553,-0.353553,0.003846,0.353553,-0.853553,0.003846,-0.353553,-0.853553,0.003846,-0.853553,-0.353553,0.003846,-0.353553,0.853553,0.003846,-0.853553,0.353553,0.003846
		,0.876491,-0.363054,0.144084,-0.363055,0.876491,0.144084,-0.363055,-0.876491,0.144084,0.319254,0.770747,0.225307,-0.876491,0.363054,0.144084,0.876491,0.363054,0.144084,-0.876491,-0.363054,0.144084
		,0.363054,0.876491,0.144084,0.363054,-0.876491,0.144084,-0.770747,0.319254,0.225307,-0.319254,0.770747,0.225307,-0.790434,0.327408,0.214756,0.750412,0.310831,0.417268,-0.750412,0.310831,0.417268
		,0.750412,-0.310831,0.417268,0.342669,-0.827277,0.196189,-0.721221,-0.298739,0.403441,0.790434,-0.327408,0.214756,0.827277,0.342669,0.196189,0.721220,-0.298739,0.403441,0.721220,0.298739,0.403441
		,0.342669,0.827277,0.196189,0.327408,0.790434,0.214756,-0.790434,-0.327408,0.214756,-0.750412,-0.310831,0.417268,0.298739,0.721220,0.403441,-0.342670,-0.827277,0.196189,0.327408,-0.790434,0.214756
		,-0.827277,-0.342669,0.196189,-0.721221,0.298739,0.403441,0.876491,-0.363054,0.053156,0.876491,0.363054,0.053156,-0.876491,-0.363054,0.053156,0.363054,0.876491,0.053156,0.363054,-0.876491,0.053156
		,-0.727686,0.301417,0.410941,0.292212,-0.705463,0.357533,-0.292213,-0.705463,0.357533,-0.292212,0.705463,0.357533,-0.705463,0.292212,0.357533,-0.302048,0.729207,0.303788,0.302047,-0.729207,0.303788
		,0.389299,-0.939852,0.545966,0.939852,-0.389299,0.545966,0.939852,0.389299,0.545966,-0.389300,-0.939852,0.545966,-0.389299,0.939852,0.545966,0.389299,0.939852,0.545966,0.350035,0.845058,0.000000
		,0.845058,0.350035,0.000000,0.845058,-0.350035,0.000000,0.350035,-0.845058,0.000000,-0.350035,-0.845058,0.000000,-0.845058,-0.350035,0.000000,-0.845058,0.350035,0.000000,-0.350035,0.845058,0.000000
		,0.403561,0.974283,0.603640,0.974283,0.403561,0.603640,0.974283,-0.403561,0.603640,0.403561,-0.974283,0.603640,-0.403561,-0.974283,0.603640,-0.974283,-0.403561,0.603640,-0.974283,0.403561,0.603640
		,-0.403561,0.974283,0.603640,0.352674,0.851430,0.000962,-0.000000,0.898246,0.196189,0.655330,0.655330,0.003846,0.851430,0.352674,0.000962,0.926777,-0.000000,0.003846,0.851430,-0.352674,0.000962
		,0.806439,-0.334038,0.202776,0.655330,-0.655330,0.003846,0.352674,-0.851430,0.000962,-0.000000,-0.926777,0.003846,-0.352674,-0.851430,0.000962,-0.655330,-0.655330,0.003846,-0.851430,-0.352674,0.000962
		,-0.926777,0.000000,0.003846,-0.851430,0.352674,0.000962,-0.806439,0.334038,0.202776,-0.655330,0.655330,0.003846,-0.352674,0.851430,0.000962,-0.334038,0.806439,0.202776,0.773398,0.320352,0.221468
		,-0.320352,-0.773398,0.221468,-0.773398,-0.320352,0.221468,-0.773398,0.320352,0.221468,0.593789,0.593789,0.221468,-0.000000,0.839745,0.221468,0.317427,0.766337,0.292904,0.766337,0.317427,0.292904
		,0.766337,-0.317427,0.292904,0.317427,-0.766337,0.292904,-0.317427,-0.766336,0.292904,-0.766337,-0.317427,0.292904,-0.766337,0.317427,0.292904,-0.317427,0.766336,0.292904,-0.591754,-0.591754,0.288573
		,0.591754,0.591754,0.288573,-0.000000,-0.836867,0.288573,-0.591754,0.591754,0.288573,0.591754,-0.591754,0.288573,0.298897,0.721601,0.311541,0.721601,0.298897,0.311541,0.721601,-0.298897,0.311541
		,0.298897,-0.721601,0.311541,-0.298897,-0.721601,0.311541,-0.721601,-0.298897,0.311541,-0.721601,0.298897,0.311541,-0.298897,0.721601,0.311541,0.791763,-0.000000,0.303788,0.559861,0.559861,0.303788
		,-0.783091,0.000000,0.403441,0.783091,-0.000000,0.403441,0.830827,0.344140,0.458127,-0.830827,-0.344140,0.458127,-0.344140,0.830826,0.458127,0.576141,0.576141,0.417268,-0.000000,-0.814787,0.417268
		,-0.576141,0.576141,0.417268,0.576141,-0.576141,0.417268,-0.939852,-0.389299,0.545966,-0.939852,0.389299,0.545966,0.902100,-0.000000,0.458127,0.637881,-0.637881,0.458127,-0.637881,-0.637881,0.458127
		,-0.902100,0.000000,0.458127,-0.637881,0.637881,0.458127,-0.000000,0.902100,0.458127,0.408662,0.986597,0.602929,0.986597,0.408662,0.602929,0.986597,-0.408662,0.602929,0.408662,-0.986597,0.602929
		,-0.408662,-0.986597,0.602929,-0.986597,-0.408662,0.602929,-0.986597,0.408662,0.602929,-0.408662,0.986597,0.602929,-0.721587,0.721587,0.545966,1.073845,-0.000000,0.600796,-0.759323,-0.759323,0.600796
		,-0.000000,0.926777,0.003846,0.898246,-0.000000,0.196189,0.635156,-0.635156,0.196189,-0.898246,0.000000,0.196189,-0.635156,0.635156,0.196189,-0.363055,-0.876491,0.053156,-0.363055,0.876491,0.053156
		,-0.876491,0.363054,0.053156,0.770747,-0.319254,0.225307,0.593789,-0.593789,0.221468,-0.593789,-0.593789,0.221468,-0.839745,0.000000,0.221468,-0.327408,0.790434,0.214756,-0.327408,-0.790434,0.214756
		,-0.672941,0.672941,0.053156,-0.000000,-0.951682,0.053156,-0.591754,0.591754,0.225307,0.319254,-0.770747,0.225307,0.790434,0.327408,0.214756,0.852719,-0.353208,0.179842,0.852719,0.353208,0.179842
		,0.353208,-0.852719,0.179842,0.353208,0.852719,0.179842,-0.319254,-0.770747,0.225307,0.770747,0.319254,0.225307,-0.770747,-0.319254,0.225307,0.672941,-0.672941,0.053156,0.672941,0.672941,0.053156
		,-0.000000,0.951682,0.053156,0.951682,-0.000000,0.053156,-0.000000,0.836867,0.288573,-0.852719,0.353208,0.179842,-0.852719,-0.353208,0.179842,-0.353208,-0.852719,0.179842,-0.353208,0.852719,0.179842
		,0.836867,-0.000000,0.288573,-0.836867,0.000000,0.288573,-0.591754,-0.591754,0.225307,-0.298739,-0.721220,0.403441,-0.298739,0.721220,0.403441,0.298739,-0.721220,0.403441,-0.334038,-0.806439,0.202776
		,-0.000000,-0.858242,0.214756,-0.000000,0.814787,0.417268,-0.576141,-0.576141,0.417268,0.553729,-0.553729,0.403441,0.814787,-0.000000,0.417268,0.858242,-0.000000,0.214756,-0.806439,-0.334038,0.202776
		,0.806439,0.334038,0.202776,0.334038,0.806439,0.202776,0.334038,-0.806439,0.202776,0.635156,0.635156,0.196189,-0.000000,-0.765982,0.357533,-0.814787,0.000000,0.417268,-0.635156,-0.635156,0.196189
		,-0.000000,-0.898246,0.196189,-0.000000,0.858242,0.214756,-0.951682,0.000000,0.144084,-0.672941,-0.672941,0.144084,-0.672941,0.672941,0.144084,-0.000000,-0.951682,0.144084,0.672941,-0.672941,0.144084
		,0.672941,0.672941,0.144084,-0.000000,0.951682,0.144084,0.951682,-0.000000,0.144084,0.887960,-0.367805,0.098620,-0.367805,0.887960,0.098620,-0.367805,-0.887960,0.098620,-0.887960,0.367805,0.098620
		,0.887960,0.367805,0.098620,-0.887960,-0.367805,0.098620,0.367805,0.887960,0.098620,0.367805,-0.887960,0.098620,-0.558693,0.558693,0.410941,-0.301418,-0.727686,0.410941,-0.301418,0.727686,0.410941
		,0.301417,0.727686,0.410941,0.301417,-0.727686,0.410941,0.727686,0.301417,0.410941,0.727686,-0.301417,0.410941,-0.727686,-0.301417,0.410941,-0.000000,0.783091,0.403441,-0.541631,0.541631,0.357533
		,0.553729,0.553729,0.403441,-0.541631,-0.541631,0.357533,-0.000000,-0.783091,0.403441,-0.705463,-0.292212,0.357533,0.705463,-0.292212,0.357533,0.705463,0.292212,0.357533,0.292212,0.705463,0.357533
		,-0.559861,0.559861,0.303788,0.559861,-0.559861,0.303788,-0.559861,-0.559861,0.303788,-0.000000,0.791763,0.303788,-0.729207,-0.302047,0.303788,0.729207,0.302047,0.303788,-0.000000,-1.073845,0.600796
		,-1.020478,0.000000,0.545966,-0.721587,-0.721587,0.545966,0.721587,0.721587,0.545966,0.989002,-0.409658,0.600796,-0.409658,-0.989002,0.600796,0.409658,0.989002,0.600796,-0.000000,0.917553,0.000000
		,0.648808,0.648808,0.000000,0.917553,-0.000000,0.000000,0.648808,-0.648808,0.000000,-0.648808,-0.648808,0.000000,-0.917553,0.000000,0.000000,-0.648808,0.648808,0.000000,0.748022,0.748022,0.603640
		,-0.000000,1.057863,0.603640,1.057863,-0.000000,0.603640,0.748022,-0.748022,0.603640,-0.000000,-1.057863,0.603640,-0.748022,-0.748022,0.603640,-1.057863,0.000000,0.603640,-0.748022,0.748022,0.603640
		,-0.000000,0.924471,0.000962,-0.000000,0.875621,0.202776,0.653700,0.653700,0.000962,0.924471,-0.000000,0.000962,0.875621,-0.000000,0.202776,0.653700,-0.653700,0.000962,0.619157,-0.619157,0.202776
		,-0.000000,-0.924471,0.000962,-0.653700,-0.653700,0.000962,-0.924471,0.000000,0.000962,-0.875621,0.000000,0.202776,-0.653700,0.653699,0.000962,-0.619157,0.619157,0.202776,0.839745,-0.000000,0.221468
		,-0.000000,-0.839745,0.221468,-0.593789,0.593789,0.221468,-0.000000,0.832078,0.292904,0.588368,0.588368,0.292904,0.832078,-0.000000,0.292904,0.588368,-0.588368,0.292904,-0.000000,-0.832078,0.292904
		,-0.588368,-0.588368,0.292904,-0.832078,0.000000,0.292904,-0.588368,0.588368,0.292904,-0.000000,0.783504,0.311541,0.554021,0.554021,0.311541,0.783504,-0.000000,0.311541,0.554021,-0.554021,0.311541
		,-0.000000,-0.783504,0.311541,-0.554021,-0.554021,0.311541,-0.783504,0.000000,0.311541,-0.554021,0.554021,0.311541,0.637881,0.637881,0.458127,-0.000000,-0.902100,0.458127,-0.000000,1.020478,0.545966
		,1.020478,-0.000000,0.545966,0.721587,-0.721587,0.545966,-0.000000,-1.020478,0.545966,-0.000000,1.071234,0.602929,0.757477,0.757477,0.602929,1.071234,-0.000000,0.602929,0.757477,-0.757477,0.602929
		,-0.000000,-1.071234,0.602929,-0.757477,-0.757476,0.602929,-1.071234,0.000000,0.602929,-0.757477,0.757476,0.602929,-0.672941,-0.672941,0.053156,-0.951682,0.000000,0.053156,0.606869,-0.606869,0.214756
		,0.606869,0.606869,0.214756,-0.606869,0.606869,0.214756,-0.858242,0.000000,0.214756,-0.606869,-0.606869,0.214756,0.619157,0.619157,0.202776,-0.000000,0.925870,0.179842,0.654689,0.654689,0.179842
		,0.925870,-0.000000,0.179842,0.654689,-0.654689,0.179842,-0.000000,-0.925870,0.179842,-0.654689,-0.654689,0.179842,-0.925870,0.000000,0.179842,-0.654689,0.654689,0.179842,0.836867,-0.000000,0.225307
		,-0.836867,0.000000,0.225307,-0.553729,0.553729,0.403441,0.591754,-0.591754,0.225307,-0.000000,0.836867,0.225307,-0.000000,-0.836867,0.225307,-0.553729,-0.553729,0.403441,0.591754,0.591754,0.225307
		,-0.619157,-0.619157,0.202776,-0.000000,-0.875621,0.202776,-0.964135,0.000000,0.098620,-0.681746,-0.681746,0.098620,-0.681746,0.681746,0.098620,-0.000000,-0.964135,0.098620,0.681746,-0.681746,0.098620
		,0.681746,0.681746,0.098620,-0.000000,0.964135,0.098620,0.964135,-0.000000,0.098620,0.558693,0.558693,0.410941,-0.000000,-0.790112,0.410941,0.558693,-0.558693,0.410941,-0.000000,0.790112,0.410941
		,-0.558693,-0.558693,0.410941,0.790112,-0.000000,0.410941,-0.790112,0.000000,0.410941,-0.765982,0.000000,0.357533,0.765982,-0.000000,0.357533,0.541631,-0.541631,0.357533,-0.000000,0.765982,0.357533
		,0.541631,0.541631,0.357533,-0.791763,0.000000,0.303788,-0.000000,-0.791763,0.303788,0.759323,-0.759323,0.600796,-1.073845,0.000000,0.600796,-0.759323,0.759323,0.600796,0.759323,0.759323,0.600796
		,-0.000000,1.073845,0.600796,-0.698775,-0.455975,0.603841,-0.706174,-0.456636,0.609299,-0.696825,-0.454922,0.608186,-0.454922,-0.696825,0.608186,-0.456662,-0.706147,0.609293,-0.455975,-0.698776,0.603841
		,-1.153073,-1.108810,1.615979,-1.161192,-1.108826,1.614428,-1.108953,-1.161053,1.614407,-1.108808,-1.153071,1.615980,-1.177387,-1.125287,1.608085,-1.177329,-1.133078,1.606589,-0.881671,-0.632118,0.609300
		,-0.876697,-0.633896,0.603841,-0.881986,-0.640195,0.608650,-1.133078,-1.177329,1.606589,-1.125408,-1.177258,1.608064,-0.640195,-0.881987,0.608650,-0.633896,-0.876697,0.603841,-0.632126,-0.881664,0.609299
		,-0.816532,0.171686,0.603841,-0.822230,0.176450,0.609299,-0.814408,0.171051,0.608186,-0.814408,-0.171051,0.608186,-0.822230,-0.176412,0.609293,-0.816532,-0.171686,0.603841,-1.599393,0.031299,1.615979
		,-1.605145,0.037029,1.614428,-1.605136,-0.036840,1.614407,-1.599390,-0.031299,1.615980,-1.628236,0.036840,1.608085,-1.633704,0.031291,1.606589,-1.070411,0.176461,0.609300,-1.068151,0.171686,0.603841
		,-1.076345,0.170972,0.608650,-1.633704,-0.031291,1.606589,-1.628230,-0.036664,1.608064,-1.076345,-0.170972,0.608650,-1.068151,-0.171686,0.603841,-1.070411,-0.176450,0.609299,-0.455975,0.698775,0.603841
		,-0.456636,0.706174,0.609299,-0.454922,0.696824,0.608186,-0.696824,0.454922,0.608186,-0.706147,0.456662,0.609293,-0.698775,0.455974,0.603841,-1.108810,1.153073,1.615979,-1.108826,1.161192,1.614428
		,-1.161053,1.108953,1.614407,-1.153071,1.108808,1.615980,-1.125287,1.177387,1.608085,-1.133077,1.177329,1.606589,-0.632118,0.881671,0.609300,-0.633896,0.876697,0.603841,-0.640195,0.881986,0.608650
		,-1.177329,1.133077,1.606589,-1.177258,1.125407,1.608064,-0.881986,0.640195,0.608650,-0.876697,0.633896,0.603841,-0.881664,0.632126,0.609299,0.171686,0.816531,0.603841,0.176450,0.822230,0.609299
		,0.171051,0.814408,0.608186,-0.171051,0.814408,0.608186,-0.176412,0.822230,0.609293,-0.171686,0.816531,0.603841,0.031299,1.599393,1.615979,0.037029,1.605145,1.614428,-0.036840,1.605136,1.614407
		,-0.031299,1.599390,1.615980,0.036840,1.628236,1.608085,0.031291,1.633704,1.606589,0.176461,1.070411,0.609300,0.171686,1.068151,0.603841,0.170972,1.076345,0.608650,-0.031291,1.633704,1.606589
		,-0.036664,1.628231,1.608064,-0.170972,1.076345,0.608650,-0.171686,1.068151,0.603841,-0.176450,1.070411,0.609299,0.698775,0.455974,0.603841,0.706174,0.456636,0.609299,0.696824,0.454922,0.608186
		,0.454922,0.696824,0.608186,0.456662,0.706147,0.609293,0.455974,0.698775,0.603841,1.153073,1.108810,1.615979,1.161192,1.108826,1.614428,1.108953,1.161053,1.614407,1.108808,1.153071,1.615980
		,1.177387,1.125287,1.608085,1.177329,1.133078,1.606589,0.881671,0.632118,0.609300,0.876697,0.633896,0.603841,0.881986,0.640195,0.608650,1.133078,1.177329,1.606589,1.125408,1.177258,1.608064
		,0.640195,0.881986,0.608650,0.633896,0.876697,0.603841,0.632126,0.881664,0.609299,0.816531,-0.171686,0.603841,0.822230,-0.176450,0.609299,0.814408,-0.171051,0.608186,0.814408,0.171051,0.608186
		,0.822230,0.176412,0.609293,0.816532,0.171686,0.603841,1.599393,-0.031299,1.615979,1.605145,-0.037029,1.614428,1.605136,0.036840,1.614407,1.599390,0.031298,1.615980,1.628236,-0.036840,1.608085
		,1.633704,-0.031291,1.606589,1.070411,-0.176461,0.609300,1.068151,-0.171686,0.603841,1.076345,-0.170972,0.608650,1.633704,0.031291,1.606589,1.628230,0.036664,1.608064,1.076345,0.170972,0.608650
		,1.068151,0.171686,0.603841,1.070411,0.176450,0.609299,0.455975,-0.698775,0.603841,0.456636,-0.706174,0.609299,0.454922,-0.696824,0.608186,0.696825,-0.454922,0.608186,0.706147,-0.456662,0.609293
		,0.698775,-0.455975,0.603841,1.108810,-1.153073,1.615979,1.108826,-1.161192,1.614428,1.161053,-1.108953,1.614407,1.153071,-1.108808,1.615980,1.125287,-1.177387,1.608085,1.133078,-1.177329,1.606589
		,0.632118,-0.881671,0.609300,0.633896,-0.876697,0.603841,0.640195,-0.881986,0.608650,1.177329,-1.133077,1.606589,1.177258,-1.125408,1.608064,0.881986,-0.640196,0.608650,0.876697,-0.633896,0.603841
		,0.881664,-0.632126,0.609299,-0.171686,-0.816531,0.603841,-0.176450,-0.822230,0.609299,-0.171051,-0.814408,0.608186,0.171051,-0.814408,0.608186,0.176412,-0.822230,0.609293,0.171686,-0.816532,0.603841
		,-0.031299,-1.599393,1.615979,-0.037029,-1.605145,1.614428,0.036840,-1.605136,1.614407,0.031299,-1.599390,1.615980,-0.036840,-1.628237,1.608085,-0.031291,-1.633704,1.606589,-0.176461,-1.070411,0.609300
		,-0.171686,-1.068151,0.603841,-0.170972,-1.076345,0.608650,0.031291,-1.633704,1.606589,0.036664,-1.628230,1.608064,0.170972,-1.076345,0.608650,0.171686,-1.068151,0.603841,0.176450,-1.070411,0.609299
		PolygonVertexIndex: 742,745,739,-739,1,0,5,-7,8,9,4,-4,7,8,3,-3,6,7,2,-2,11,12,7,-7,10,11,6,-6,13,14,9,-9,12,13,8,-8,17,18,12,-12,16,17,11,-11,19,20,14,-14,18,19,13,-13
		,23,24,19,-19,22,23,18,-18,21,22,17,-17,24,25,20,-20,28,29,24,-24,27,28,23,-23,26,27,22,-22,29,30,25,-25,31,32,27,-27,34,35,30,-30,33,34,29,-29,32,33,28,-28,36,37,32,-32
		,39,40,35,-35,38,39,34,-34,37,38,33,-33,5,0,-16,9,41,-5,14,41,-10,15,10,-6,20,41,-15,15,16,-11,25,41,-21,15,21,-17,15,26,-22,30,41,-26
		,15,31,-27,35,41,-31,40,41,-36,15,36,-32,1,2,38,-38,4,41,-41,0,1,37,-37,3,4,40,-40,15,0,-37,2,3,39,-39,744,752,755,-741,749,736,741,-755,746,743,737,-749
		,747,750,753,-752,762,765,759,-759,47,48,43,-43,50,51,46,-46,49,50,45,-45,48,49,44,-44,53,54,49,-49,52,53,48,-48,55,56,51,-51,54,55,50,-50,59,60,54,-54,58,59,53,-53,61,62,56,-56
		,60,61,55,-55,65,66,61,-61,64,65,60,-60,63,64,59,-59,66,67,62,-62,70,71,66,-66,69,70,65,-65,68,69,64,-64,71,72,67,-67,73,74,69,-69,76,77,72,-72,75,76,71,-71,74,75,70,-70
		,78,79,74,-74,81,82,77,-77,80,81,76,-76,79,80,75,-75,57,47,-43,51,83,-47,56,83,-52,57,52,-48,62,83,-57,57,58,-53,67,83,-63,57,63,-59,57,68,-64
		,72,83,-68,57,73,-69,77,83,-73,82,83,-78,57,78,-74,43,44,80,-80,46,83,-83,42,43,79,-79,45,46,82,-82,57,42,-79,44,45,81,-81,764,772,775,-761,769,756,761,-775
		,766,763,757,-769,767,770,773,-772,782,785,779,-779,89,90,85,-85,92,93,88,-88,91,92,87,-87,90,91,86,-86,95,96,91,-91,94,95,90,-90,97,98,93,-93,96,97,92,-92,101,102,96,-96,100,101,95,-95
		,103,104,98,-98,102,103,97,-97,107,108,103,-103,106,107,102,-102,105,106,101,-101,108,109,104,-104,112,113,108,-108,111,112,107,-107,110,111,106,-106,113,114,109,-109,115,116,111,-111,118,119,114,-114,117,118,113,-113
		,116,117,112,-112,120,121,116,-116,123,124,119,-119,122,123,118,-118,121,122,117,-117,99,89,-85,93,125,-89,98,125,-94,99,94,-90,104,125,-99,99,100,-95,109,125,-105,99,105,-101
		,99,110,-106,114,125,-110,99,115,-111,119,125,-115,124,125,-120,99,120,-116,85,86,122,-122,88,125,-125,84,85,121,-121,87,88,124,-124,99,84,-121,86,87,123,-123,784,792,795,-781
		,789,776,781,-795,786,783,777,-789,787,790,793,-792,802,805,799,-799,131,132,127,-127,134,135,130,-130,133,134,129,-129,132,133,128,-128,137,138,133,-133,136,137,132,-132,139,140,135,-135,138,139,134,-134,143,144,138,-138
		,142,143,137,-137,145,146,140,-140,144,145,139,-139,149,150,145,-145,148,149,144,-144,147,148,143,-143,150,151,146,-146,154,155,150,-150,153,154,149,-149,152,153,148,-148,155,156,151,-151,157,158,153,-153,160,161,156,-156
		,159,160,155,-155,158,159,154,-154,162,163,158,-158,165,166,161,-161,164,165,160,-160,163,164,159,-159,141,131,-127,135,167,-131,140,167,-136,141,136,-132,146,167,-141,141,142,-137,151,167,-147
		,141,147,-143,141,152,-148,156,167,-152,141,157,-153,161,167,-157,166,167,-162,141,162,-158,127,128,164,-164,130,167,-167,126,127,163,-163,129,130,166,-166,141,126,-163,128,129,165,-165
		,804,812,815,-801,809,796,801,-815,806,803,797,-809,807,810,813,-812,822,825,819,-819,173,174,169,-169,176,177,172,-172,175,176,171,-171,174,175,170,-170,179,180,175,-175,178,179,174,-174,181,182,177,-177,180,181,176,-176
		,185,186,180,-180,184,185,179,-179,187,188,182,-182,186,187,181,-181,191,192,187,-187,190,191,186,-186,189,190,185,-185,192,193,188,-188,196,197,192,-192,195,196,191,-191,194,195,190,-190,197,198,193,-193,199,200,195,-195
		,202,203,198,-198,201,202,197,-197,200,201,196,-196,204,205,200,-200,207,208,203,-203,206,207,202,-202,205,206,201,-201,183,173,-169,177,209,-173,182,209,-178,183,178,-174,188,209,-183,183,184,-179
		,193,209,-189,183,189,-185,183,194,-190,198,209,-194,183,199,-195,203,209,-199,208,209,-204,183,204,-200,169,170,206,-206,172,209,-209,168,169,205,-205,171,172,208,-208,183,168,-205
		,170,171,207,-207,824,832,835,-821,829,816,821,-835,826,823,817,-829,827,830,833,-832,842,845,839,-839,215,216,211,-211,218,219,214,-214,217,218,213,-213,216,217,212,-212,221,222,217,-217,220,221,216,-216,223,224,219,-219
		,222,223,218,-218,227,228,222,-222,226,227,221,-221,229,230,224,-224,228,229,223,-223,233,234,229,-229,232,233,228,-228,231,232,227,-227,234,235,230,-230,238,239,234,-234,237,238,233,-233,236,237,232,-232,239,240,235,-235
		,241,242,237,-237,244,245,240,-240,243,244,239,-239,242,243,238,-238,246,247,242,-242,249,250,245,-245,248,249,244,-244,247,248,243,-243,225,215,-211,219,251,-215,224,251,-220,225,220,-216,230,251,-225
		,225,226,-221,235,251,-231,225,231,-227,225,236,-232,240,251,-236,225,241,-237,245,251,-241,250,251,-246,225,246,-242,211,212,248,-248,214,251,-251,210,211,247,-247,213,214,250,-250
		,225,210,-247,212,213,249,-249,844,852,855,-841,849,836,841,-855,846,843,837,-849,847,850,853,-852,862,865,859,-859,257,258,253,-253,260,261,256,-256,259,260,255,-255,258,259,254,-254,263,264,259,-259,262,263,258,-258
		,265,266,261,-261,264,265,260,-260,269,270,264,-264,268,269,263,-263,271,272,266,-266,270,271,265,-265,275,276,271,-271,274,275,270,-270,273,274,269,-269,276,277,272,-272,280,281,276,-276,279,280,275,-275,278,279,274,-274
		,281,282,277,-277,283,284,279,-279,286,287,282,-282,285,286,281,-281,284,285,280,-280,288,289,284,-284,291,292,287,-287,290,291,286,-286,289,290,285,-285,267,257,-253,261,293,-257,266,293,-262,267,262,-258
		,272,293,-267,267,268,-263,277,293,-273,267,273,-269,267,278,-274,282,293,-278,267,283,-279,287,293,-283,292,293,-288,267,288,-284,253,254,290,-290,256,293,-293,252,253,289,-289
		,255,256,292,-292,267,252,-289,254,255,291,-291,864,872,875,-861,869,856,861,-875,866,863,857,-869,867,870,873,-872,882,885,879,-879,299,300,295,-295,302,303,298,-298,301,302,297,-297,300,301,296,-296,305,306,301,-301
		,304,305,300,-300,307,308,303,-303,306,307,302,-302,311,312,306,-306,310,311,305,-305,313,314,308,-308,312,313,307,-307,317,318,313,-313,316,317,312,-312,315,316,311,-311,318,319,314,-314,322,323,318,-318,321,322,317,-317
		,320,321,316,-316,323,324,319,-319,325,326,321,-321,328,329,324,-324,327,328,323,-323,326,327,322,-322,330,331,326,-326,333,334,329,-329,332,333,328,-328,331,332,327,-327,309,299,-295,303,335,-299,308,335,-304
		,309,304,-300,314,335,-309,309,310,-305,319,335,-315,309,315,-311,309,320,-316,324,335,-320,309,325,-321,329,335,-325,334,335,-330,309,330,-326,295,296,332,-332,298,335,-335
		,294,295,331,-331,297,298,334,-334,309,294,-331,296,297,333,-333,884,892,895,-881,889,876,881,-895,886,883,877,-889,887,890,893,-892,336,537,693,-520,336,519,641,-449,336,448,643,-521,336,520,694,-538,337,552,698,-523
		,337,522,649,-461,337,460,638,-444,337,443,691,-553,338,549,697,-522,338,521,647,-458,338,457,649,-523,338,522,698,-550,536,567,690,-687,605,724,667,-486,342,400,575,-467,530,575,638,-461,389,687,649,-458,536,565,641,-568
		,343,651,560,-406,342,465,686,-401,340,554,700,-544,340,475,658,-473,340,472,659,-555,608,480,661,-728,598,397,491,-723,526,341,650,-700,535,343,527,-703,345,486,668,-610,346,553,699,-543,346,476,654,-469,346,468,655,-554
		,347,541,704,-478,347,477,657,-472,347,471,658,-476,348,478,660,-475,348,474,653,-549,349,548,653,-468,349,467,654,-477,350,477,704,-536,350,535,702,-480,350,479,656,-471,350,470,657,-478,351,554,659,-474,351,473,660,-479
		,352,553,655,-470,352,469,656,-480,353,488,663,-483,353,482,664,-611,353,610,656,-470,355,612,661,-481,355,480,662,-490,418,487,661,-613,357,562,721,-594,357,593,718,-497,358,561,720,-595,359,495,717,-596,359,595,720,-562
		,360,496,718,-597,360,596,719,-499,361,510,679,-616,367,517,680,-513,368,508,677,-517,370,442,637,-519,370,444,639,-443,371,445,639,-445,371,446,640,-446,372,447,640,-447,372,449,642,-448,373,450,642,-450,373,451,644,-451
		,374,452,644,-452,374,523,683,-454,374,453,645,-453,375,454,645,-454,375,455,646,-455,376,459,648,-459,376,518,637,-460,377,456,646,-456,377,455,684,-526,377,458,648,-457,407,417,724,-491,607,481,662,-729,378,584,716,-584
		,378,583,693,-538,378,537,694,-581,378,580,713,-585,349,476,706,-382,381,342,466,-704,348,388,534,-479,379,585,711,-579,379,578,698,-553,379,552,691,-583,379,582,715,-586,542,461,465,-707,380,586,712,-580,380,579,695,-552
		,380,551,696,-578,380,577,710,-587,593,721,705,-557,387,534,652,-465,391,413,723,-573,388,344,652,-535,352,526,699,-554,382,587,709,-577,382,576,697,-550,382,549,698,-579,382,578,711,-588,383,588,714,-582,383,581,692,-539
		,383,538,693,-584,383,583,716,-589,384,589,710,-578,384,577,696,-551,384,550,697,-577,384,576,709,-590,340,543,555,-476,541,462,651,-705,385,590,715,-583,385,582,691,-541,385,540,692,-582,385,581,714,-591,526,702,527,-342
		,613,729,659,-473,386,591,713,-581,386,580,694,-540,386,539,695,-580,386,579,712,-592,358,594,592,-498,594,557,701,-593,347,475,555,-542,541,555,528,-463,346,542,706,-477,613,472,658,-612,381,706,465,-343,419,730,657,-471
		,352,479,702,-527,388,703,466,-345,349,381,703,-549,542,699,650,-462,390,564,722,-598,390,597,717,-496,390,495,669,-493,392,498,719,-599,392,598,722,-565,393,539,694,-521,393,520,643,-570,393,569,708,-575,393,574,695,-540
		,394,490,724,-606,597,398,602,-718,395,448,641,-566,558,604,571,-415,605,485,666,-604,417,486,667,-725,596,718,604,-559,396,538,692,-571,396,570,690,-568,396,567,641,-520,396,519,693,-539,397,563,726,-607,397,606,725,-492
		,398,491,725,-608,398,607,728,-603,399,540,691,-444,399,443,638,-569,399,568,690,-571,399,570,692,-541,557,600,727,-417,400,568,638,-576,606,482,663,-726,402,572,723,-600,402,599,721,-563,595,403,600,-721,407,701,601,-418
		,596,558,563,-720,403,602,728,-609,403,608,727,-601,404,551,695,-575,404,574,708,-560,404,559,707,-574,404,573,696,-552,405,560,708,-570,558,414,726,-564,414,483,664,-727,594,720,600,-558,406,550,696,-574,406,573,707,-567
		,406,566,647,-522,406,521,697,-551,408,547,716,-585,408,584,713,-545,409,545,714,-589,409,588,716,-548,411,546,715,-591,411,590,714,-546,412,544,713,-592,412,591,712,-534,430,339,644,-453,429,450,644,-340,414,571,665,-484
		,415,603,666,-485,415,484,665,-572,416,487,668,-602,417,601,668,-487,418,609,668,-488,355,489,654,-468,354,484,666,-612,355,467,653,-613,391,497,592,-414,345,473,659,-730,353,469,655,-489,614,481,663,-489,345,729,667,-487
		,614,468,654,-490,419,470,656,-611,354,611,658,-472,354,471,657,-731,613,485,667,-730,614,489,662,-482,419,610,664,-484,354,730,665,-485,345,609,660,-474,418,474,660,-610,614,488,655,-469,613,611,666,-486,418,612,653,-475
		,419,483,665,-731,425,621,734,-619,464,389,688,-530,426,622,637,-443,426,442,639,-624,389,457,647,-689,462,531,560,-652,427,623,639,-446,427,445,640,-625,413,407,490,-724,344,466,575,-531,428,624,640,-448,428,447,642,-626
		,400,686,690,-569,464,652,687,-390,429,625,642,-451,531,559,708,-561,401,566,707,-690,430,452,645,-627,461,650,565,-537,341,527,685,-396,431,626,645,-455,431,454,646,-628,394,605,603,-706,343,405,685,-528,432,627,646,-457
		,432,456,648,-629,530,460,649,-688,463,529,688,-402,433,628,648,-460,433,459,637,-623,434,629,676,-508,434,507,675,-631,435,631,677,-509,435,508,676,-630,436,632,678,-510,436,509,677,-632,437,633,679,-511,437,510,678,-633
		,438,634,680,-512,438,511,679,-634,439,635,681,-513,439,512,680,-635,440,636,682,-514,440,513,681,-636,441,630,675,-515,441,514,682,-637,525,587,711,-533,374,451,533,-524,373,449,544,-413,376,458,532,-525,410,589,709,-685
		,371,409,547,-447,377,525,532,-459,410,683,710,-590,525,684,709,-588,372,408,544,-450,370,411,545,-445,372,446,547,-409,371,444,545,-410,524,585,715,-547,523,533,712,-587,524,532,711,-586,373,412,533,-452,523,586,710,-684
		,376,524,546,-519,375,410,684,-456,370,518,546,-412,375,453,683,-411,348,548,703,-389,387,464,529,-701,461,536,686,-466,535,704,651,-344,462,528,689,-532,543,700,529,-464,543,463,528,-556,599,394,705,-722,351,478,534,-388
		,599,723,490,-395,344,530,687,-653,556,705,603,-416,351,387,700,-555,416,727,661,-488,463,401,689,-529,531,689,707,-560,401,688,647,-567,341,395,565,-651,395,685,643,-449,405,569,643,-686,426,623,-340,426,339,-623
		,427,624,-340,427,339,-624,428,625,-340,428,339,-625,429,339,-626,430,626,-340,431,627,-340,431,339,-627,432,628,-340,432,339,-628,433,622,-340,433,339,-629,607,725,663,-482
		,557,416,601,-702,597,722,491,-399,608,728,662,-481,413,592,701,-408,598,719,563,-398,595,717,602,-404,606,726,664,-483,556,415,571,-605,593,556,604,-719,424,369,735,-672,499,617,517,-368,425,671,735,-622,424,515,733,-370
		,500,616,732,-367,391,365,505,-498,620,615,679,-512,621,507,676,-735,391,572,504,-366,367,512,681,-733,364,420,674,-671,363,425,618,-670,368,734,676,-509,361,731,678,-511,362,423,617,-504,359,561,506,-364,358,497,505,-495
		,360,364,670,-497,499,367,732,-617,363,506,671,-426,420,673,731,-362,356,421,673,-503,402,493,504,-573,360,498,502,-365,390,492,501,-565,421,619,731,-674,402,562,503,-494,366,513,682,-734,365,504,616,-501,369,733,682,-515
		,492,669,618,-423,493,499,616,-505,357,362,503,-563,369,514,675,-736,392,564,501,-357,356,501,672,-422,392,356,502,-499,421,672,516,-620,359,363,669,-496,364,502,673,-421,494,505,515,-425,493,503,617,-500,492,422,672,-502
		,358,494,506,-562,500,366,733,-516,423,674,615,-621,494,424,671,-507,422,618,734,-369,619,516,677,-510,420,361,615,-675,365,500,515,-506,362,670,674,-424,423,620,517,-618,619,509,678,-732,621,735,675,-508,422,368,516,-673
		,620,511,680,-518,357,496,670,-363,366,732,681,-514,736,737,-739,739,740,-742,748,749,-751,753,754,-756,756,757,-759,759,760,-762,768,769,-771,773,774,-776,776,777,-779,779,780,-782
		,788,789,-791,793,794,-796,796,797,-799,799,800,-802,808,809,-811,813,814,-816,816,817,-819,819,820,-822,828,829,-831,833,834,-836,836,837,-839,839,840,-842,848,849,-851
		,853,854,-856,856,857,-859,859,860,-862,868,869,-871,873,874,-876,876,877,-879,879,880,-882,888,889,-891,893,894,-896,742,738,737,-744,744,740,739,-746,741,736,738,-740,754,741,740,-756
		,748,737,736,-750,746,748,750,-748,751,753,755,-753,749,754,753,-751,762,758,757,-764,764,760,759,-766,761,756,758,-760,774,761,760,-776,768,757,756,-770,766,768,770,-768,771,773,775,-773,769,774,773,-771,782,778,777,-784
		,784,780,779,-786,781,776,778,-780,794,781,780,-796,788,777,776,-790,786,788,790,-788,791,793,795,-793,789,794,793,-791,802,798,797,-804,804,800,799,-806,801,796,798,-800,814,801,800,-816,808,797,796,-810,806,808,810,-808
		,811,813,815,-813,809,814,813,-811,822,818,817,-824,824,820,819,-826,821,816,818,-820,834,821,820,-836,828,817,816,-830,826,828,830,-828,831,833,835,-833,829,834,833,-831,842,838,837,-844,844,840,839,-846,841,836,838,-840
		,854,841,840,-856,848,837,836,-850,846,848,850,-848,851,853,855,-853,849,854,853,-851,862,858,857,-864,864,860,859,-866,861,856,858,-860,874,861,860,-876,868,857,856,-870,866,868,870,-868,871,873,875,-873,869,874,873,-871
		,882,878,877,-884,884,880,879,-886,881,876,878,-880,894,881,880,-896,888,877,876,-890,886,888,890,-888,891,893,895,-893,889,894,893,-891,436,631,-634,440,635,-634,629,434,-634,634,438,-634,435,629,-634
		,439,634,-634,630,441,-634,434,630,-634,632,436,-634,636,440,-634,437,632,-634,441,636,-634,631,435,-634,635,439,-634
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: -0.494338810443878,0.134983360767365,0.858699321746826,-0.708212554454803,0.457350373268127,0.537797152996063
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,-0.457350373268127,0.708212554454803,-0.537797152996063
			 ,-0.134983360767365,0.494338810443878,-0.858699321746826,-0.180486470460892,0.237525552511215,0.954435884952545
			 ,-0.143009737133980,0.629078030586243,0.764030873775482,-0.040467545390129,0.945738077163696,0.322367012500763
			 ,0.100497454404831,0.954924166202545,-0.279213845729828,0.177617728710175,0.640400409698486,-0.747184693813324
			 ,0.106082335114479,0.106082335114479,0.988677620887756,0.378643155097961,0.378643155097961,0.844508171081543
			 ,0.630634486675262,0.630634486675262,0.452314823865891,0.697286903858185,0.697286903858185,-0.165990173816681
			 ,0.506241023540497,0.506241023540497,-0.698141396045685,-0.193914607167244,-0.193914607167244,0.961638212203979
			 ,0.237525552511215,-0.180486470460892,0.954435884952545,0.629078030586243,-0.143009737133980,0.764030873775482
			 ,0.945738077163696,-0.040467545390129,0.322367012500763,0.954924166202545,0.100497454404831,-0.279213845729828
			 ,0.640400409698486,0.177648246288300,-0.747184693813324,0.134983360767365,-0.494338810443878,0.858699321746826
			 ,0.457350373268127,-0.708212554454803,0.537797152996063,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.708212554454803,-0.457350373268127,-0.537797152996063,0.494338810443878,-0.134983360767365,-0.858699321746826
			 ,-0.177648246288300,-0.640400409698486,0.747184693813324,-0.100497454404831,-0.954924166202545,0.279213845729828
			 ,0.040467545390129,-0.945738077163696,-0.322367012500763,0.143009737133980,-0.629078030586243,-0.764030873775482
			 ,0.180486470460892,-0.237525552511215,-0.954435884952545,-0.506241023540497,-0.506241023540497,0.698141396045685
			 ,-0.697286903858185,-0.697286903858185,0.165990173816681,-0.630634486675262,-0.630634486675262,-0.452314823865891
			 ,-0.378643155097961,-0.378643155097961,-0.844508171081543,-0.106082335114479,-0.106082335114479,-0.988677620887756
			 ,-0.640400409698486,-0.177617728710175,0.747184693813324,-0.954924166202545,-0.100497454404831,0.279213845729828
			 ,-0.945738077163696,0.040467545390129,-0.322367012500763,-0.629078030586243,0.143009737133980,-0.764030873775482
			 ,-0.237525552511215,0.180486470460892,-0.954435884952545,0.193914607167244,0.193914607167244,-0.961638212203979
			 ,-0.254097104072571,0.445020914077759,0.858699321746826,-0.177373573184013,0.824182868003845,0.537797152996063
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.177373573184013,0.824182868003845,-0.537797152996063
			 ,0.254097104072571,0.445020914077759,-0.858699321746826,0.040314950048923,0.295602291822433,0.954435884952545
			 ,0.343699455261230,0.545945644378662,0.764030873775482,0.640095233917236,0.697347939014435,0.322367012500763
			 ,0.746299624443054,0.604144394397736,-0.279213845729828,0.578447818756104,0.327219456434250,-0.747184693813324
			 ,0.150028988718987,0.000000000000000,0.988677620887756,0.535477757453918,0.000000000000000,0.844508171081543
			 ,0.891842424869537,0.000000000000000,0.452314823865891,0.986114084720612,0.000000000000000,-0.165990173816681
			 ,0.715933740139008,0.000000000000000,-0.698141396045685,-0.274239331483841,0.000000000000000,0.961638212203979
			 ,0.040314950048923,-0.295602291822433,0.954435884952545,0.343699455261230,-0.545945644378662,0.764030873775482
			 ,0.640095233917236,-0.697347939014435,0.322367012500763,0.746299624443054,-0.604144394397736,-0.279213845729828
			 ,0.578447818756104,-0.327219456434250,-0.747184693813324,-0.254097104072571,-0.445020914077759,0.858699321746826
			 ,-0.177373573184013,-0.824182868003845,0.537797152996063,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,0.177373573184013,-0.824182868003845,-0.537797152996063,0.254097104072571,-0.445020914077759,-0.858699321746826
			 ,-0.578447818756104,-0.327219456434250,0.747184693813324,-0.746299624443054,-0.604174911975861,0.279213845729828
			 ,-0.640095233917236,-0.697347939014435,-0.322367012500763,-0.343699455261230,-0.545945644378662,-0.764030873775482
			 ,-0.040314950048923,-0.295602291822433,-0.954435884952545,-0.715933740139008,0.000000000000000,0.698141396045685
			 ,-0.986114084720612,0.000000000000000,0.165990173816681,-0.891842424869537,0.000000000000000,-0.452314823865891
			 ,-0.535477757453918,0.000000000000000,-0.844508171081543,-0.150028988718987,0.000000000000000,-0.988677620887756
			 ,-0.578447818756104,0.327219456434250,0.747184693813324,-0.746299624443054,0.604174911975861,0.279213845729828
			 ,-0.640095233917236,0.697347939014435,-0.322367012500763,-0.343699455261230,0.545945644378662,-0.764030873775482
			 ,-0.040314950048923,0.295602291822433,-0.954435884952545,0.274239331483841,0.000000000000000,-0.961638212203979
			 ,0.134983360767365,0.494338810443878,0.858699321746826,0.457350373268127,0.708212554454803,0.537797152996063
			 ,0.707083344459534,0.707083344459534,0.000000000000000,0.708212554454803,0.457350373268127,-0.537797152996063
			 ,0.494338810443878,0.134983360767365,-0.858699321746826,0.237525552511215,0.180486470460892,0.954435884952545
			 ,0.629078030586243,0.143009737133980,0.764030873775482,0.945738077163696,0.040467545390129,0.322367012500763
			 ,0.954924166202545,-0.100497454404831,-0.279213845729828,0.640400409698486,-0.177648246288300,-0.747184693813324
			 ,0.106082335114479,-0.106082335114479,0.988677620887756,0.378643155097961,-0.378643155097961,0.844508171081543
			 ,0.630634486675262,-0.630634486675262,0.452314823865891,0.697286903858185,-0.697286903858185,-0.165990173816681
			 ,0.506241023540497,-0.506241023540497,-0.698141396045685,-0.193914607167244,0.193914607167244,0.961638212203979
			 ,-0.180486470460892,-0.237525552511215,0.954435884952545,-0.143009737133980,-0.629078030586243,0.764030873775482
			 ,-0.040467545390129,-0.945738077163696,0.322367012500763,0.100497454404831,-0.954924166202545,-0.279213845729828
			 ,0.177617728710175,-0.640400409698486,-0.747184693813324,-0.494338810443878,-0.134983360767365,0.858699321746826
			 ,-0.708212554454803,-0.457350373268127,0.537797152996063,-0.707083344459534,-0.707083344459534,0.000000000000000
			 ,-0.457350373268127,-0.708212554454803,-0.537797152996063,-0.134983360767365,-0.494338810443878,-0.858699321746826
			 ,-0.640400409698486,0.177617728710175,0.747184693813324,-0.954924166202545,0.100497454404831,0.279213845729828
			 ,-0.945738077163696,-0.040467545390129,-0.322367012500763,-0.629078030586243,-0.143009737133980,-0.764030873775482
			 ,-0.237525552511215,-0.180486470460892,-0.954435884952545,-0.506241023540497,0.506241023540497,0.698141396045685
			 ,-0.697286903858185,0.697286903858185,0.165990173816681,-0.630603969097137,0.630634486675262,-0.452314823865891
			 ,-0.378643155097961,0.378643155097961,-0.844508171081543,-0.106082335114479,0.106082335114479,-0.988677620887756
			 ,-0.177617728710175,0.640400409698486,0.747184693813324,-0.100497454404831,0.954924166202545,0.279213845729828
			 ,0.040467545390129,0.945738077163696,-0.322367012500763,0.143009737133980,0.629078030586243,-0.764030873775482
			 ,0.180486470460892,0.237525552511215,-0.954435884952545,0.193914607167244,-0.193914607167244,-0.961638212203979
			 ,0.445020914077759,0.254097104072571,0.858699321746826,0.824182868003845,0.177373573184013,0.537797152996063
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.824182868003845,-0.177373573184013,-0.537797152996063
			 ,0.445020914077759,-0.254097104072571,-0.858699321746826,0.295602291822433,-0.040314950048923,0.954435884952545
			 ,0.545945644378662,-0.343699455261230,0.764030873775482,0.697347939014435,-0.640095233917236,0.322367012500763
			 ,0.604144394397736,-0.746299624443054,-0.279213845729828,0.327219456434250,-0.578447818756104,-0.747184693813324
			 ,0.000000000000000,-0.150028988718987,0.988677620887756,0.000000000000000,-0.535477757453918,0.844508171081543
			 ,0.000000000000000,-0.891842424869537,0.452314823865891,0.000000000000000,-0.986114084720612,-0.165990173816681
			 ,0.000000000000000,-0.715933740139008,-0.698141396045685,0.000000000000000,0.274239331483841,0.961638212203979
			 ,-0.295602291822433,-0.040314950048923,0.954435884952545,-0.545945644378662,-0.343699455261230,0.764030873775482
			 ,-0.697347939014435,-0.640095233917236,0.322367012500763,-0.604144394397736,-0.746299624443054,-0.279213845729828
			 ,-0.327219456434250,-0.578447818756104,-0.747184693813324,-0.445020914077759,0.254097104072571,0.858699321746826
			 ,-0.824182868003845,0.177373573184013,0.537797152996063,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.824182868003845,-0.177373573184013,-0.537797152996063,-0.445020914077759,-0.254097104072571,-0.858699321746826
			 ,-0.327219456434250,0.578447818756104,0.747184693813324,-0.604174911975861,0.746299624443054,0.279213845729828
			 ,-0.697347939014435,0.640095233917236,-0.322367012500763,-0.545945644378662,0.343699455261230,-0.764030873775482
			 ,-0.295602291822433,0.040314950048923,-0.954435884952545,0.000000000000000,0.715933740139008,0.698141396045685
			 ,0.000000000000000,0.986114084720612,0.165990173816681,0.000000000000000,0.891842424869537,-0.452314823865891
			 ,0.000000000000000,0.535477757453918,-0.844508171081543,0.000000000000000,0.150028988718987,-0.988677620887756
			 ,0.327219456434250,0.578447818756104,0.747184693813324,0.604174911975861,0.746299624443054,0.279213845729828
			 ,0.697347939014435,0.640095233917236,-0.322367012500763,0.545945644378662,0.343699455261230,-0.764030873775482
			 ,0.295602291822433,0.040314950048923,-0.954435884952545,0.000000000000000,-0.274239331483841,-0.961638212203979
			 ,0.494338810443878,-0.134983360767365,0.858699321746826,0.708212554454803,-0.457350373268127,0.537797152996063
			 ,0.707083344459534,-0.707083344459534,0.000000000000000,0.457350373268127,-0.708212554454803,-0.537797152996063
			 ,0.134983360767365,-0.494338810443878,-0.858699321746826,0.180486470460892,-0.237525552511215,0.954435884952545
			 ,0.143009737133980,-0.629078030586243,0.764030873775482,0.040467545390129,-0.945738077163696,0.322367012500763
			 ,-0.100497454404831,-0.954924166202545,-0.279213845729828,-0.177648246288300,-0.640400409698486,-0.747184693813324
			 ,-0.106082335114479,-0.106082335114479,0.988677620887756,-0.378643155097961,-0.378643155097961,0.844508171081543
			 ,-0.630634486675262,-0.630634486675262,0.452314823865891,-0.697286903858185,-0.697286903858185,-0.165990173816681
			 ,-0.506241023540497,-0.506241023540497,-0.698141396045685,0.193914607167244,0.193914607167244,0.961638212203979
			 ,-0.237525552511215,0.180486470460892,0.954435884952545,-0.629078030586243,0.143009737133980,0.764030873775482
			 ,-0.945738077163696,0.040467545390129,0.322367012500763,-0.954924166202545,-0.100497454404831,-0.279213845729828
			 ,-0.640400409698486,-0.177648246288300,-0.747184693813324,-0.134983360767365,0.494338810443878,0.858699321746826
			 ,-0.457350373268127,0.708212554454803,0.537797152996063,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,-0.708212554454803,0.457350373268127,-0.537797152996063,-0.494338810443878,0.134983360767365,-0.858699321746826
			 ,0.177617728710175,0.640400409698486,0.747184693813324,0.100497454404831,0.954924166202545,0.279213845729828
			 ,-0.040467545390129,0.945738077163696,-0.322367012500763,-0.143009737133980,0.629078030586243,-0.764030873775482
			 ,-0.180486470460892,0.237525552511215,-0.954435884952545,0.506241023540497,0.506241023540497,0.698141396045685
			 ,0.697286903858185,0.697286903858185,0.165990173816681,0.630634486675262,0.630634486675262,-0.452314823865891
			 ,0.378643155097961,0.378643155097961,-0.844508171081543,0.106082335114479,0.106082335114479,-0.988677620887756
			 ,0.640400409698486,0.177617728710175,0.747184693813324,0.954924166202545,0.100497454404831,0.279213845729828
			 ,0.945738077163696,-0.040467545390129,-0.322367012500763,0.629078030586243,-0.143009737133980,-0.764030873775482
			 ,0.237525552511215,-0.180486470460892,-0.954435884952545,-0.193914607167244,-0.193914607167244,-0.961638212203979
			 ,0.254097104072571,-0.445020914077759,0.858699321746826,0.177373573184013,-0.824182868003845,0.537797152996063
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,-0.177373573184013,-0.824182868003845,-0.537797152996063
			 ,-0.254097104072571,-0.445020914077759,-0.858699321746826,-0.040314950048923,-0.295602291822433,0.954435884952545
			 ,-0.343699455261230,-0.545945644378662,0.764030873775482,-0.640095233917236,-0.697347939014435,0.322367012500763
			 ,-0.746299624443054,-0.604144394397736,-0.279213845729828,-0.578447818756104,-0.327219456434250,-0.747184693813324
			 ,-0.150028988718987,0.000000000000000,0.988677620887756,-0.535477757453918,0.000000000000000,0.844508171081543
			 ,-0.891842424869537,0.000000000000000,0.452314823865891,-0.986114084720612,0.000000000000000,-0.165990173816681
			 ,-0.715933740139008,0.000000000000000,-0.698141396045685,0.274239331483841,0.000000000000000,0.961638212203979
			 ,-0.040314950048923,0.295602291822433,0.954435884952545,-0.343699455261230,0.545945644378662,0.764030873775482
			 ,-0.640095233917236,0.697347939014435,0.322367012500763,-0.746299624443054,0.604174911975861,-0.279213845729828
			 ,-0.578447818756104,0.327219456434250,-0.747184693813324,0.254097104072571,0.445020914077759,0.858699321746826
			 ,0.177373573184013,0.824182868003845,0.537797152996063,0.000000000000000,1.000000000000000,0.000000000000000
			 ,-0.177373573184013,0.824182868003845,-0.537797152996063,-0.254097104072571,0.445020914077759,-0.858699321746826
			 ,0.578447818756104,0.327219456434250,0.747184693813324,0.746299624443054,0.604174911975861,0.279213845729828
			 ,0.640095233917236,0.697347939014435,-0.322367012500763,0.343699455261230,0.545945644378662,-0.764030873775482
			 ,0.040314950048923,0.295602291822433,-0.954435884952545,0.715933740139008,0.000000000000000,0.698141396045685
			 ,0.986114084720612,0.000000000000000,0.165990173816681,0.891842424869537,0.000000000000000,-0.452314823865891
			 ,0.535477757453918,0.000000000000000,-0.844508171081543,0.150028988718987,0.000000000000000,-0.988677620887756
			 ,0.578447818756104,-0.327219456434250,0.747184693813324,0.746299624443054,-0.604174911975861,0.279213845729828
			 ,0.640095233917236,-0.697347939014435,-0.322367012500763,0.343699455261230,-0.545945644378662,-0.764030873775482
			 ,0.040314950048923,-0.295602291822433,-0.954435884952545,-0.274239331483841,0.000000000000000,-0.961638212203979
			 ,-0.134983360767365,-0.494338810443878,0.858699321746826,-0.457350373268127,-0.708212554454803,0.537797152996063
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.708212554454803,-0.457350373268127,-0.537797152996063
			 ,-0.494338810443878,-0.134983360767365,-0.858699321746826,-0.237525552511215,-0.180486470460892,0.954435884952545
			 ,-0.629078030586243,-0.143009737133980,0.764030873775482,-0.945738077163696,-0.040467545390129,0.322367012500763
			 ,-0.954924166202545,0.100497454404831,-0.279213845729828,-0.640400409698486,0.177648246288300,-0.747184693813324
			 ,-0.106082335114479,0.106082335114479,0.988677620887756,-0.378643155097961,0.378643155097961,0.844508171081543
			 ,-0.630634486675262,0.630634486675262,0.452314823865891,-0.697286903858185,0.697286903858185,-0.165990173816681
			 ,-0.506241023540497,0.506241023540497,-0.698141396045685,0.193914607167244,-0.193914607167244,0.961638212203979
			 ,0.180486470460892,0.237525552511215,0.954435884952545,0.143009737133980,0.629078030586243,0.764030873775482
			 ,0.040467545390129,0.945738077163696,0.322367012500763,-0.100497454404831,0.954924166202545,-0.279213845729828
			 ,-0.177617728710175,0.640400409698486,-0.747184693813324,0.494338810443878,0.134983360767365,0.858699321746826
			 ,0.708212554454803,0.457350373268127,0.537797152996063,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.457350373268127,0.708212554454803,-0.537797152996063,0.134983360767365,0.494338810443878,-0.858699321746826
			 ,0.640400409698486,-0.177617728710175,0.747184693813324,0.954924166202545,-0.100497454404831,0.279213845729828
			 ,0.945738077163696,0.040467545390129,-0.322367012500763,0.629078030586243,0.143009737133980,-0.764030873775482
			 ,0.237525552511215,0.180486470460892,-0.954435884952545,0.506241023540497,-0.506241023540497,0.698141396045685
			 ,0.697286903858185,-0.697286903858185,0.165990173816681,0.630634486675262,-0.630634486675262,-0.452314823865891
			 ,0.378643155097961,-0.378643155097961,-0.844508171081543,0.106082335114479,-0.106082335114479,-0.988677620887756
			 ,0.177617728710175,-0.640400409698486,0.747184693813324,0.100497454404831,-0.954924166202545,0.279213845729828
			 ,-0.040467545390129,-0.945738077163696,-0.322367012500763,-0.143009737133980,-0.629078030586243,-0.764030873775482
			 ,-0.180486470460892,-0.237525552511215,-0.954435884952545,-0.193914607167244,0.193914607167244,-0.961638212203979
			 ,-0.445020914077759,-0.254097104072571,0.858699321746826,-0.824182868003845,-0.177373573184013,0.537797152996063
			 ,-1.000000000000000,0.000000000000000,0.000000000000000,-0.824182868003845,0.177373573184013,-0.537797152996063
			 ,-0.445020914077759,0.254097104072571,-0.858699321746826,-0.295602291822433,0.040314950048923,0.954435884952545
			 ,-0.545945644378662,0.343699455261230,0.764030873775482,-0.697347939014435,0.640095233917236,0.322367012500763
			 ,-0.604144394397736,0.746299624443054,-0.279213845729828,-0.327219456434250,0.578447818756104,-0.747184693813324
			 ,0.000000000000000,0.150028988718987,0.988677620887756,0.000000000000000,0.535477757453918,0.844508171081543
			 ,0.000000000000000,0.891842424869537,0.452314823865891,0.000000000000000,0.986114084720612,-0.165990173816681
			 ,0.000000000000000,0.715933740139008,-0.698141396045685,0.000000000000000,-0.274239331483841,0.961638212203979
			 ,0.295602291822433,0.040314950048923,0.954435884952545,0.545945644378662,0.343699455261230,0.764030873775482
			 ,0.697347939014435,0.640095233917236,0.322367012500763,0.604144394397736,0.746299624443054,-0.279213845729828
			 ,0.327219456434250,0.578447818756104,-0.747184693813324,0.445020914077759,-0.254097104072571,0.858699321746826
			 ,0.824182868003845,-0.177373573184013,0.537797152996063,1.000000000000000,0.000000000000000,0.000000000000000
			 ,0.824182868003845,0.177373573184013,-0.537797152996063,0.445020914077759,0.254097104072571,-0.858699321746826
			 ,0.327219456434250,-0.578447818756104,0.747184693813324,0.604174911975861,-0.746299624443054,0.279213845729828
			 ,0.697347939014435,-0.640095233917236,-0.322367012500763,0.545945644378662,-0.343699455261230,-0.764030873775482
			 ,0.295602291822433,-0.040314950048923,-0.954435884952545,0.000000000000000,-0.715933740139008,0.698141396045685
			 ,0.000000000000000,-0.986114084720612,0.165990173816681,0.000000000000000,-0.891842424869537,-0.452314823865891
			 ,0.000000000000000,-0.535477757453918,-0.844508171081543,0.000000000000000,-0.150028988718987,-0.988677620887756
			 ,-0.327219456434250,-0.578447818756104,0.747184693813324,-0.604174911975861,-0.746299624443054,0.279213845729828
			 ,-0.697347939014435,-0.640095233917236,-0.322367012500763,-0.545945644378662,-0.343699455261230,-0.764030873775482
			 ,-0.295602291822433,-0.040314950048923,-0.954435884952545,0.000000000000000,0.274239331483841,-0.961638212203979
			 ,0.379741817712784,-0.157292395830154,0.911587893962860,-0.157292395830154,0.379741817712784,0.911587893962860
			 ,-0.379741817712784,0.157292395830154,0.911587893962860,0.000000000000000,-0.077913753688335,-0.996948122978210
			 ,-0.851435899734497,-0.352671891450882,0.388134390115738,0.529770791530609,-0.219428077340126,0.819238841533661
			 ,0.219428077340126,0.529770791530609,0.819238841533661,0.219428077340126,-0.529770791530609,0.819238841533661
			 ,-0.219428077340126,0.529770791530609,0.819238841533661,-0.429883718490601,0.178044989705086,0.885128319263458
			 ,0.851435899734497,0.352671891450882,0.388134390115738,-0.352671891450882,-0.851435899734497,0.388134390115738
			 ,-0.352671891450882,0.851435899734497,0.388134390115738,0.352671891450882,0.851435899734497,0.388134390115738
			 ,0.352671891450882,-0.851435899734497,0.388134390115738,-0.851435899734497,0.352671891450882,0.388134390115738
			 ,0.851435899734497,-0.352671891450882,0.388134390115738,0.429883718490601,-0.178044989705086,0.885128319263458
			 ,-0.178044989705086,-0.429883718490601,0.885128319263458,0.178044989705086,0.429883718490601,0.885128319263458
			 ,0.482558667659760,-0.199865713715553,-0.852717697620392,-0.133304849267006,-0.321817696094513,-0.937345504760742
			 ,-0.133304849267006,0.321817696094513,-0.937345504760742,0.133304849267006,0.321817696094513,-0.937345504760742
			 ,0.133304849267006,-0.321817696094513,-0.937345504760742,0.382122248411179,-0.922574520111084,0.052613910287619
			 ,-0.199865713715553,-0.482558667659760,-0.852717697620392,0.199865713715553,0.482558667659760,-0.852717697620392
			 ,0.199865713715553,-0.482558667659760,-0.852717697620392,-0.482558667659760,0.199865713715553,-0.852717697620392
			 ,-0.922574520111084,0.382122248411179,0.052613910287619,-0.922574520111084,-0.382122248411179,0.052644427865744
			 ,0.922574520111084,0.382152765989304,0.052644427865744,-0.382152765989304,0.922574520111084,0.052644427865744
			 ,0.323587745428085,0.781212806701660,-0.533799231052399,0.781212806701660,0.323587745428085,-0.533799231052399
			 ,0.781212806701660,-0.323587745428085,-0.533799231052399,0.323587745428085,-0.781212806701660,-0.533799231052399
			 ,-0.323587745428085,-0.781212806701660,-0.533799231052399,-0.781212806701660,-0.323587745428085,-0.533799231052399
			 ,-0.323587745428085,0.781212806701660,-0.533799231052399,-0.781212806701660,0.323587745428085,-0.533799231052399
			 ,0.837336361408234,-0.346812337636948,0.422528773546219,-0.346812337636948,0.837336361408234,0.422528773546219
			 ,-0.346812337636948,-0.837336361408234,0.422528773546219,0.361583292484283,0.872951447963715,0.327311009168625
			 ,-0.837336361408234,0.346812337636948,0.422528773546219,0.837336361408234,0.346812337636948,0.422528773546219
			 ,-0.837336361408234,-0.346812337636948,0.422528773546219,0.346812337636948,0.837336361408234,0.422528773546219
			 ,0.346812337636948,-0.837336361408234,0.422528773546219,-0.872951447963715,0.361583292484283,0.327311009168625
			 ,-0.361583292484283,0.872951447963715,0.327311009168625,-0.435193955898285,0.180242314934731,0.882076501846313
			 ,0.321817696094513,0.133304849267006,-0.937345504760742,-0.321817696094513,0.133304849267006,-0.937345504760742
			 ,0.321817696094513,-0.133304849267006,-0.937345504760742,0.157292395830154,-0.379741817712784,0.911587893962860
			 ,-0.779808938503265,-0.323007911443710,-0.536210238933563,0.435193955898285,-0.180242314934731,0.882076501846313
			 ,0.379741817712784,0.157292395830154,0.911587893962860,0.779808938503265,-0.323007911443710,-0.536210238933563
			 ,0.779808938503265,0.323007911443710,-0.536210238933563,0.157292395830154,0.379741817712784,0.911587893962860
			 ,0.180242314934731,0.435193955898285,0.882076501846313,-0.435193955898285,-0.180242314934731,0.882076501846313
			 ,-0.321817696094513,-0.133304849267006,-0.937345504760742,0.323007911443710,0.779808938503265,-0.536210238933563
			 ,-0.157292395830154,-0.379741817712784,0.911587893962860,0.180242314934731,-0.435193955898285,0.882076501846313
			 ,-0.379741817712784,-0.157292395830154,0.911587893962860,-0.779808938503265,0.323007911443710,-0.536210238933563
			 ,0.863887429237366,-0.357829511165619,-0.354411453008652,0.863887429237366,0.357829511165619,-0.354411453008652
			 ,-0.863887429237366,-0.357829511165619,-0.354411453008652,0.357829511165619,0.863887429237366,-0.354411453008652
			 ,0.357829511165619,-0.863887429237366,-0.354411453008652,-0.447981208562851,0.185552537441254,-0.874538421630859
			 ,0.382671594619751,-0.923856317996979,0.003753776662052,-0.382671594619751,-0.923856317996979,0.003784295171499
			 ,-0.382671594619751,0.923856317996979,0.003784295171499,-0.923856317996979,0.382671594619751,0.003753776662052
			 ,-0.178044989705086,0.429883718490601,0.885128319263458,0.178044989705086,-0.429883718490601,0.885128319263458
			 ,0.254432827234268,-0.614246010780334,-0.746940493583679,0.614246010780334,-0.254432827234268,-0.746940493583679
			 ,0.614246010780334,0.254432827234268,-0.746940493583679,-0.254432827234268,-0.614246010780334,-0.746940493583679
			 ,-0.254432827234268,0.614246010780334,-0.746940493583679,0.254432827234268,0.614246010780334,-0.746940493583679
			 ,0.029633473604918,0.071565903723240,-0.996978640556335,0.071565903723240,0.029633473604918,-0.996978640556335
			 ,0.071565903723240,-0.029633473604918,-0.996978640556335,0.029633473604918,-0.071565903723240,-0.996978640556335
			 ,-0.029633473604918,-0.071565903723240,-0.996978640556335,-0.071565903723240,-0.029633473604918,-0.996978640556335
			 ,-0.071565903723240,0.029633473604918,-0.996978640556335,-0.029633473604918,0.071565903723240,-0.996978640556335
			 ,0.011413922533393,0.027558214962482,0.999542236328125,0.027558214962482,0.011413922533393,0.999542236328125
			 ,0.027558214962482,-0.011413922533393,0.999542236328125,0.011413922533393,-0.027558214962482,0.999542236328125
			 ,-0.011413922533393,-0.027558214962482,0.999542236328125,-0.027558214962482,-0.011413922533393,0.999542236328125
			 ,-0.027558214962482,0.011413922533393,0.999542236328125,-0.011413922533393,0.027558214962482,0.999542236328125
			 ,0.201818898320198,0.487258523702621,-0.849574267864227,0.000000000000000,0.411023288965225,0.911587893962860
			 ,0.597613453865051,0.597613453865051,-0.534501194953918,0.487258523702621,0.201818898320198,-0.849574267864227
			 ,0.845149099826813,0.000000000000000,-0.534501194953918,0.487258523702621,-0.201818898320198,-0.849574267864227
			 ,0.382671594619751,-0.158513143658638,0.910153508186340,0.597613453865051,-0.597613453865051,-0.534501194953918
			 ,0.201818898320198,-0.487258523702621,-0.849574267864227,0.000000000000000,-0.845149099826813,-0.534501194953918
			 ,-0.201818898320198,-0.487258523702621,-0.849574267864227,-0.597613453865051,-0.597613453865051,-0.534501194953918
			 ,-0.487258523702621,-0.201818898320198,-0.849574267864227,-0.845149099826813,0.000000000000000,-0.534501194953918
			 ,-0.487258523702621,0.201818898320198,-0.849574267864227,-0.382671594619751,0.158513143658638,0.910153508186340
			 ,-0.597613453865051,0.597613453865051,-0.534501194953918,-0.201818898320198,0.487258523702621,-0.849574267864227
			 ,-0.158513143658638,0.382671594619751,0.910153508186340,0.529770791530609,0.219428077340126,0.819238841533661
			 ,-0.219428077340126,-0.529770791530609,0.819238841533661,-0.529770791530609,-0.219428077340126,0.819238841533661
			 ,-0.529770791530609,0.219428077340126,0.819238841533661,0.403332620859146,0.403332620859146,0.821344673633575
			 ,0.000000000000000,0.570390939712524,0.821344673633575,0.191717281937599,0.462843716144562,0.865443885326385
			 ,0.462843716144562,0.191717281937599,0.865443885326385,0.462843716144562,-0.191717281937599,0.865443885326385
			 ,0.191717281937599,-0.462843716144562,0.865443885326385,-0.191717281937599,-0.462843716144562,0.865443885326385
			 ,-0.462843716144562,-0.191717281937599,0.865443885326385,-0.462843716144562,0.191717281937599,0.865443885326385
			 ,-0.191717281937599,0.462843716144562,0.865443885326385,-0.651844859123230,-0.651844859123230,0.387463003396988
			 ,0.651844859123230,0.651844859123230,0.387463003396988,0.000000000000000,-0.921872615814209,0.387463003396988
			 ,-0.651844859123230,0.651844859123230,0.387463003396988,0.651844859123230,-0.651844859123230,0.387463003396988
			 ,0.314828932285309,0.760093986988068,0.568407237529755,0.760093986988068,0.314828932285309,0.568407237529755
			 ,0.760093986988068,-0.314828932285309,0.568407237529755,0.314828932285309,-0.760093986988068,0.568407237529755
			 ,-0.314828932285309,-0.760093986988068,0.568407237529755,-0.760093986988068,-0.314828932285309,0.568407237529755
			 ,-0.760093986988068,0.314828932285309,0.568407237529755,-0.314828932285309,0.760093986988068,0.568407237529755
			 ,0.462324887514114,0.000000000000000,0.886684775352478,0.326914280653000,0.326914280653000,0.886684775352478
			 ,-0.842738091945648,0.000000000000000,-0.538254976272583,0.842738091945648,0.000000000000000,-0.538254976272583
			 ,0.482558667659760,0.199865713715553,-0.852717697620392,-0.482558667659760,-0.199865713715553,-0.852717697620392
			 ,-0.199865713715553,0.482558667659760,-0.852717697620392,0.246223330497742,0.246223330497742,-0.937406539916992
			 ,0.000000000000000,-0.348216205835342,-0.937406539916992,-0.246223330497742,0.246223330497742,-0.937406539916992
			 ,0.246223330497742,-0.246223330497742,-0.937406539916992,-0.614246010780334,-0.254432827234268,-0.746940493583679
			 ,-0.614246010780334,0.254432827234268,-0.746940493583679,0.521897017955780,0.000000000000000,-0.852992355823517
			 ,0.369029819965363,-0.369029819965363,-0.852992355823517,-0.369029819965363,-0.369029819965363,-0.852992355823517
			 ,-0.521897017955780,0.000000000000000,-0.852992355823517,-0.369029819965363,0.369029819965363,-0.852992355823517
			 ,0.000000000000000,0.521897017955780,-0.852992355823517,0.150364696979523,0.363048195838928,0.919522702693939
			 ,0.363048195838928,0.150364696979523,0.919522702693939,0.363048195838928,-0.150364696979523,0.919522702693939
			 ,0.150364696979523,-0.363048195838928,0.919522702693939,-0.150364696979523,-0.363048195838928,0.919522702693939
			 ,-0.363048195838928,-0.150364696979523,0.919522702693939,-0.363048195838928,0.150364696979523,0.919522702693939
			 ,-0.150364696979523,0.363048195838928,0.919522702693939,-0.469618827104568,0.469618827104568,-0.747550904750824
			 ,0.998626649379730,0.000000000000000,0.052278205752373,-0.706137299537659,-0.706106781959534,0.052278205752373
			 ,0.000000000000000,0.845149099826813,-0.534501194953918,0.411023288965225,0.000000000000000,0.911587893962860
			 ,0.290627777576447,-0.290627777576447,0.911587893962860,-0.411023288965225,0.000000000000000,0.911587893962860
			 ,-0.290627777576447,0.290627777576447,0.911587893962860,-0.357829511165619,-0.863887429237366,-0.354411453008652
			 ,-0.357829511165619,0.863887429237366,-0.354411453008652,-0.863887429237366,0.357829511165619,-0.354411453008652
			 ,0.872951447963715,-0.361583292484283,0.327311009168625,0.403332620859146,-0.403332620859146,0.821344673633575
			 ,-0.403332620859146,-0.403332620859146,0.821344673633575,-0.570390939712524,0.000000000000000,0.821344673633575
			 ,-0.180242314934731,0.435193955898285,0.882076501846313,-0.180242314934731,-0.435193955898285,0.882076501846313
			 ,-0.661030888557434,0.661030888557434,-0.355021834373474,0.000000000000000,-0.934843003749847,-0.355021834373474
			 ,-0.667683959007263,0.667683959007263,0.329142123460770,0.361583292484283,-0.872951447963715,0.327311009168625
			 ,0.435193955898285,0.180242314934731,0.882076501846313,0.635761618614197,-0.263344228267670,0.725547015666962
			 ,0.635761618614197,0.263344228267670,0.725547015666962,0.263344228267670,-0.635761618614197,0.725547015666962
			 ,0.263344228267670,0.635761618614197,0.725547015666962,-0.361583292484283,-0.872951447963715,0.327311009168625
			 ,0.872951447963715,0.361583292484283,0.327311009168625,-0.872951447963715,-0.361583292484283,0.327311009168625
			 ,0.661030888557434,-0.661030888557434,-0.355021834373474,0.661030888557434,0.661030888557434,-0.355021834373474
			 ,0.000000000000000,0.934843003749847,-0.355021834373474,0.934843003749847,0.000000000000000,-0.355021834373474
			 ,0.000000000000000,0.921872615814209,0.387463003396988,-0.635761618614197,0.263344228267670,0.725547015666962
			 ,-0.635761618614197,-0.263344228267670,0.725547015666962,-0.263344228267670,-0.635761618614197,0.725547015666962
			 ,-0.263344228267670,0.635761618614197,0.725547015666962,0.921872615814209,0.000000000000000,0.387463003396988
			 ,-0.921842098236084,0.000000000000000,0.387493520975113,-0.667683959007263,-0.667683959007263,0.329142123460770
			 ,-0.323007911443710,-0.779808938503265,-0.536210238933563,-0.323007911443710,0.779808938503265,-0.536210238933563
			 ,0.323007911443710,-0.779808938503265,-0.536210238933563,-0.158513143658638,-0.382671594619751,0.910153508186340
			 ,0.000000000000000,-0.470931112766266,0.882168054580688,0.000000000000000,0.348216205835342,-0.937406539916992
			 ,-0.246223330497742,-0.246223330497742,-0.937406539916992,0.595904409885406,-0.595904409885406,-0.538254976272583
			 ,0.348216205835342,0.000000000000000,-0.937406539916992,0.470931112766266,0.000000000000000,0.882168054580688
			 ,-0.382671594619751,-0.158513143658638,0.910153508186340,0.382671594619751,0.158513143658638,0.910153508186340
			 ,0.158513143658638,0.382671594619751,0.910153508186340,0.158513143658638,-0.382671594619751,0.910153508186340
			 ,0.290627777576447,0.290627777576447,0.911587893962860,0.000000000000000,-0.999969482421875,0.003784295171499
			 ,-0.348216205835342,0.000000000000000,-0.937406539916992,-0.290627777576447,-0.290627777576447,0.911587893962860
			 ,0.000000000000000,-0.411023288965225,0.911587893962860,0.000000000000000,0.470931112766266,0.882168054580688
			 ,-0.906155586242676,0.000000000000000,0.422894984483719,-0.640736103057861,-0.640736103057861,0.422894984483719
			 ,-0.640736103057861,0.640736103057861,0.422894984483719,0.000000000000000,-0.906155586242676,0.422894984483719
			 ,0.640736103057861,-0.640736103057861,0.422894984483719,0.640736103057861,0.640736103057861,0.422894984483719
			 ,0.000000000000000,0.906155586242676,0.422894984483719,0.906155586242676,0.000000000000000,0.422894984483719
			 ,0.923856317996979,-0.382671594619751,0.000000000000000,-0.382671594619751,0.923856317996979,0.000000000000000
			 ,-0.382671594619751,-0.923856317996979,0.000000000000000,-0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.923856317996979,0.382671594619751,0.000000000000000,-0.923856317996979,-0.382671594619751,0.000000000000000
			 ,0.382671594619751,0.923856317996979,0.000000000000000,0.382671594619751,-0.923856317996979,0.000000000000000
			 ,-0.340586572885513,0.340586572885513,-0.876339018344879,-0.185552537441254,-0.447981208562851,-0.874568939208984
			 ,-0.185552537441254,0.447981208562851,-0.874568939208984,0.185552537441254,0.447981208562851,-0.874568939208984
			 ,0.185552537441254,-0.447981208562851,-0.874568939208984,0.447981208562851,0.185552537441254,-0.874568939208984
			 ,0.447981208562851,-0.185552537441254,-0.874568939208984,-0.447981208562851,-0.185552537441254,-0.874568939208984
			 ,0.000000000000000,0.842738091945648,-0.538254976272583,-0.707083344459534,0.707083344459534,0.003784295171499
			 ,0.595904409885406,0.595904409885406,-0.538254976272583,-0.707083344459534,-0.707083344459534,0.003784295171499
			 ,0.000000000000000,-0.842738091945648,-0.538254976272583,-0.923856317996979,-0.382671594619751,0.003753776662052
			 ,0.923856317996979,-0.382671594619751,0.003753776662052,0.923856317996979,0.382671594619751,0.003784295171499
			 ,0.382671594619751,0.923856317996979,0.003753776662052,-0.326914280653000,0.326914280653000,0.886684775352478
			 ,0.326914280653000,-0.326914280653000,0.886684775352478,-0.326914280653000,-0.326914280653000,0.886684775352478
			 ,0.000000000000000,0.462324887514114,0.886684775352478,-0.429883718490601,-0.178044989705086,0.885128319263458
			 ,0.429883718490601,0.178044989705086,0.885128319263458,0.000000000000000,-0.998626649379730,0.052278205752373
			 ,-0.664174318313599,0.000000000000000,-0.747550904750824,-0.469618827104568,-0.469618827104568,-0.747550904750824
			 ,0.469618827104568,0.469618827104568,-0.747550904750824,0.922574520111084,-0.382122248411179,0.052644427865744
			 ,-0.382122248411179,-0.922574520111084,0.052644427865744,0.382122248411179,0.922574520111084,0.052644427865744
			 ,0.000000000000000,0.077913753688335,-0.996948122978210,0.055085908621550,0.055085908621550,-0.996948122978210
			 ,0.077913753688335,0.000000000000000,-0.996948122978210,0.055085908621550,-0.055085908621550,-0.996948122978210
			 ,-0.055085908621550,-0.055085908621550,-0.996948122978210,-0.077913753688335,0.000000000000000,-0.996948122978210
			 ,-0.055085908621550,0.055085908621550,-0.996948122978210,0.021210364997387,0.021210364997387,0.999542236328125
			 ,0.000000000000000,0.029999695718288,0.999542236328125,0.029999695718288,0.000000000000000,0.999542236328125
			 ,0.021210364997387,-0.021210364997387,0.999542236328125,0.000000000000000,-0.029999695718288,0.999542236328125
			 ,-0.021210364997387,-0.021210364997387,0.999542236328125,-0.029999695718288,0.000000000000000,0.999542236328125
			 ,-0.021210364997387,0.021210364997387,0.999542236328125,0.000000000000000,0.529099404811859,-0.848536610603333
			 ,0.000000000000000,0.411847293376923,0.911221683025360,0.374126404523849,0.374126404523849,-0.848536610603333
			 ,0.529099404811859,0.000000000000000,-0.848536610603333,0.411847293376923,0.000000000000000,0.911221683025360
			 ,0.374126404523849,-0.374126404523849,-0.848536610603333,0.291207611560822,-0.291207611560822,0.911221683025360
			 ,0.000000000000000,-0.529099404811859,-0.848536610603333,-0.374126404523849,-0.374126404523849,-0.848536610603333
			 ,-0.529099404811859,0.000000000000000,-0.848536610603333,-0.411847293376923,0.000000000000000,0.911221683025360
			 ,-0.374126404523849,0.374126404523849,-0.848536610603333,-0.291207611560822,0.291207611560822,0.911221683025360
			 ,0.570390939712524,0.000000000000000,0.821344673633575,0.000000000000000,-0.570390939712524,0.821344673633575
			 ,-0.403332620859146,0.403332620859146,0.821344673633575,0.000000000000000,0.501632750034332,0.865047156810760
			 ,0.354716628789902,0.354716628789902,0.865047156810760,0.501632750034332,0.000000000000000,0.865047156810760
			 ,0.354716628789902,-0.354716628789902,0.865047156810760,0.000000000000000,-0.501632750034332,0.865047156810760
			 ,-0.354716628789902,-0.354716628789902,0.865047156810760,-0.501632750034332,0.000000000000000,0.865047156810760
			 ,-0.354716628789902,0.354716628789902,0.865047156810760,0.000000000000000,0.821192026138306,0.570604562759399
			 ,0.580675661563873,0.580675661563873,0.570604562759399,0.821192026138306,0.000000000000000,0.570604562759399
			 ,0.580675661563873,-0.580675661563873,0.570604562759399,0.000000000000000,-0.821192026138306,0.570604562759399
			 ,-0.580675661563873,-0.580675661563873,0.570604562759399,-0.821192026138306,0.000000000000000,0.570604562759399
			 ,-0.580675661563873,0.580675661563873,0.570604562759399,0.369029819965363,0.369029819965363,-0.852992355823517
			 ,0.000000000000000,-0.521897017955780,-0.852992355823517,0.000000000000000,0.664174318313599,-0.747550904750824
			 ,0.664174318313599,0.000000000000000,-0.747550904750824,0.469618827104568,-0.469618827104568,-0.747550904750824
			 ,0.000000000000000,-0.664174318313599,-0.747550904750824,0.000000000000000,0.394665360450745,0.918790221214294
			 ,0.279061257839203,0.279061257839203,0.918790221214294,0.394665360450745,0.000000000000000,0.918790221214294
			 ,0.279061257839203,-0.279061257839203,0.918790221214294,0.000000000000000,-0.394665360450745,0.918790221214294
			 ,-0.279061257839203,-0.279061257839203,0.918790221214294,-0.394665360450745,0.000000000000000,0.918790221214294
			 ,-0.279061257839203,0.279061257839203,0.918790221214294,-0.661030888557434,-0.661030888557434,-0.355021834373474
			 ,-0.934843003749847,0.000000000000000,-0.355021834373474,0.332987457513809,-0.332987457513809,0.882168054580688
			 ,0.332987457513809,0.332987457513809,0.882168054580688,-0.332987457513809,0.332987457513809,0.882168054580688
			 ,-0.470931112766266,0.000000000000000,0.882168054580688,-0.332987457513809,-0.332987457513809,0.882168054580688
			 ,0.291207611560822,0.291207611560822,0.911221683025360,0.000000000000000,0.688161849975586,0.725516498088837
			 ,0.486587107181549,0.486587107181549,0.725516498088837,0.688161849975586,0.000000000000000,0.725516498088837
			 ,0.486587107181549,-0.486587107181549,0.725516498088837,0.000000000000000,-0.688161849975586,0.725516498088837
			 ,-0.486587107181549,-0.486587107181549,0.725516498088837,-0.688161849975586,0.000000000000000,0.725516498088837
			 ,-0.486587107181549,0.486587107181549,0.725516498088837,0.944273173809052,0.000000000000000,0.329111605882645
			 ,-0.944273173809052,0.000000000000000,0.329142123460770,-0.595904409885406,0.595904409885406,-0.538254976272583
			 ,0.667683959007263,-0.667683959007263,0.329111605882645,0.000000000000000,0.944273173809052,0.329142123460770
			 ,0.000000000000000,-0.944273173809052,0.329142123460770,-0.595904409885406,-0.595904409885406,-0.538254976272583
			 ,0.667683959007263,0.667683959007263,0.329111605882645,-0.291207611560822,-0.291207611560822,0.911221683025360
			 ,0.000000000000000,-0.411847293376923,0.911221683025360,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.340586572885513,0.340586572885513,-0.876339018344879
			 ,0.000000000000000,-0.481673628091812,-0.876339018344879,0.340586572885513,-0.340586572885513,-0.876339018344879
			 ,0.000000000000000,0.481673628091812,-0.876339018344879,-0.340586572885513,-0.340586572885513,-0.876339018344879
			 ,0.481673628091812,0.000000000000000,-0.876339018344879,-0.481673628091812,0.000000000000000,-0.876339018344879
			 ,-0.999969482421875,0.000000000000000,0.003784295171499,0.999969482421875,0.000000000000000,0.003784295171499
			 ,0.707083344459534,-0.707083344459534,0.003784295171499,0.000000000000000,0.999969482421875,0.003784295171499
			 ,0.707083344459534,0.707083344459534,0.003784295171499,-0.462324887514114,0.000000000000000,0.886684775352478
			 ,0.000000000000000,-0.462324887514114,0.886684775352478,0.706137299537659,-0.706137299537659,0.052278205752373
			 ,-0.998626649379730,0.000000000000000,0.052278205752373,-0.706137299537659,0.706137299537659,0.052278205752373
			 ,0.706137299537659,0.706137299537659,0.052278205752373,0.000000000000000,0.998626649379730,0.052278205752373
			 ,0.040437024086714,0.672811031341553,-0.738669991493225,-0.457197785377502,0.886410117149353,-0.072359383106232
			 ,0.363017678260803,0.924832940101624,0.113406777381897,0.925840020179749,0.360545665025711,0.113010041415691
			 ,0.884517967700958,-0.460737943649292,-0.072847679257393,0.673268854618073,0.039521470665932,-0.738303780555725
			 ,0.237403482198715,0.762291312217712,0.602099657058716,-0.486983865499496,0.816522717475891,0.309945970773697
			 ,0.815301954746246,-0.490462958812714,0.307687610387802,0.764488637447357,0.232367932796478,0.601245164871216
			 ,-0.930356740951538,0.352122575044632,-0.101962342858315,-0.834986448287964,-0.353404343128204,-0.421704769134521
			 ,-0.825647771358490,0.447767555713654,-0.343150109052658,-0.422223567962646,0.102725304663181,-0.900631725788116
			 ,-0.753013730049133,-0.247260957956314,-0.609729290008545,-0.350871294736862,-0.836481809616089,-0.420850247144699
			 ,0.356089979410172,-0.929105520248413,-0.099520862102509,-0.244636371731758,-0.754387021064758,-0.609088420867920
			 ,0.103305153548717,-0.422772914171219,-0.900296032428741,0.449598670005798,-0.825373113155365,-0.341441094875336
			 ,0.504348874092102,0.447126686573029,-0.738669991493225,0.303476065397263,0.950071692466736,-0.072359383106232
			 ,0.910672307014465,0.397228926420212,0.113406777381897,0.909604191780090,-0.399731427431107,0.113010041415691
			 ,0.299661248922348,-0.951231420040131,-0.072847679257393,0.504013180732727,-0.448133796453476,-0.738303780555725
			 ,0.706900238990784,0.371135592460632,0.602099657058716,0.233008816838264,0.921750545501709,0.309945970773697
			 ,0.229682296514511,-0.923307001590729,0.307687610387802,0.704886019229889,-0.376262694597244,0.601245164871216
			 ,-0.408856481313705,0.906857490539551,-0.101962342858315,-0.840327143669128,0.340525537729263,-0.421704769134521
			 ,-0.267189562320709,0.900448620319366,-0.343150109052658,-0.225898012518883,0.371227145195007,-0.900631725788116
			 ,-0.707327485084534,0.357615888118744,-0.609729290008545,-0.839594721794128,-0.343363761901855,-0.420850247144699
			 ,-0.405163735151291,-0.908780157566071,-0.099520862102509,-0.706442475318909,-0.360423594713211,-0.609088420867920
			 ,-0.225898012518883,-0.371990114450455,-0.900296032428741,-0.265694141387939,-0.901547312736511,-0.341441094875336
			 ,0.672811031341553,-0.040437024086714,-0.738669991493225,0.886410117149353,0.457197785377502,-0.072359383106232
			 ,0.924832940101624,-0.363017678260803,0.113406777381897,0.360545665025711,-0.925840020179749,0.113010041415691
			 ,-0.460737943649292,-0.884517967700958,-0.072847679257393,0.039521470665932,-0.673268854618073,-0.738303780555725
			 ,0.762291312217712,-0.237433999776840,0.602099657058716,0.816522717475891,0.486983865499496,0.309945970773697
			 ,-0.490462958812714,-0.815301954746246,0.307687610387802,0.232367932796478,-0.764488637447357,0.601245164871216
			 ,0.352122575044632,0.930356740951538,-0.101962342858315,-0.353404343128204,0.834986448287964,-0.421704769134521
			 ,0.447767555713654,0.825647771358490,-0.343150109052658,0.102725304663181,0.422223567962646,-0.900631725788116
			 ,-0.247260957956314,0.753013730049133,-0.609729290008545,-0.836481809616089,0.350871294736862,-0.420850247144699
			 ,-0.929105520248413,-0.356089979410172,-0.099520862102509,-0.754387021064758,0.244636371731758,-0.609088420867920
			 ,-0.422772914171219,-0.103305153548717,-0.900296032428741,-0.825373113155365,-0.449598670005798,-0.341441094875336
			 ,0.447126686573029,-0.504348874092102,-0.738669991493225,0.950071692466736,-0.303476065397263,-0.072359383106232
			 ,0.397228926420212,-0.910672307014465,0.113406777381897,-0.399731427431107,-0.909604191780090,0.113010041415691
			 ,-0.951231420040131,-0.299661248922348,-0.072847679257393,-0.448133796453476,-0.504013180732727,-0.738303780555725
			 ,0.371135592460632,-0.706900238990784,0.602099657058716,0.921750545501709,-0.233008816838264,0.309945970773697
			 ,-0.923307001590729,-0.229712814092636,0.307687610387802,-0.376262694597244,-0.704886019229889,0.601245164871216
			 ,0.906857490539551,0.408856481313705,-0.101962342858315,0.340525537729263,0.840327143669128,-0.421704769134521
			 ,0.900448620319366,0.267189562320709,-0.343150109052658,0.371227145195007,0.225898012518883,-0.900631725788116
			 ,0.357615888118744,0.707327485084534,-0.609729290008545,-0.343363761901855,0.839594721794128,-0.420850247144699
			 ,-0.908780157566071,0.405163735151291,-0.099520862102509,-0.360423594713211,0.706442475318909,-0.609088420867920
			 ,-0.371990114450455,0.225898012518883,-0.900296032428741,-0.901547312736511,0.265694141387939,-0.341441094875336
			 ,-0.040437024086714,-0.672811031341553,-0.738669991493225,0.457197785377502,-0.886379599571228,-0.072359383106232
			 ,-0.363017678260803,-0.924832940101624,0.113406777381897,-0.925840020179749,-0.360545665025711,0.113010041415691
			 ,-0.884517967700958,0.460737943649292,-0.072847679257393,-0.673268854618073,-0.039521470665932,-0.738303780555725
			 ,-0.237403482198715,-0.762291312217712,0.602099657058716,0.486983865499496,-0.816522717475891,0.309945970773697
			 ,-0.815301954746246,0.490462958812714,0.307687610387802,-0.764488637447357,-0.232367932796478,0.601245164871216
			 ,0.930356740951538,-0.352122575044632,-0.101962342858315,0.834986448287964,0.353404343128204,-0.421704769134521
			 ,0.825647771358490,-0.447767555713654,-0.343150109052658,0.422223567962646,-0.102725304663181,-0.900631725788116
			 ,0.753013730049133,0.247260957956314,-0.609729290008545,0.350871294736862,0.836481809616089,-0.420850247144699
			 ,-0.356089979410172,0.929105520248413,-0.099520862102509,0.244636371731758,0.754387021064758,-0.609088420867920
			 ,-0.103305153548717,0.422772914171219,-0.900296032428741,-0.449598670005798,0.825373113155365,-0.341441094875336
			 ,-0.504348874092102,-0.447126686573029,-0.738669991493225,-0.303476065397263,-0.950071692466736,-0.072359383106232
			 ,-0.910672307014465,-0.397228926420212,0.113406777381897,-0.909604191780090,0.399731427431107,0.113010041415691
			 ,-0.299661248922348,0.951231420040131,-0.072847679257393,-0.504013180732727,0.448133796453476,-0.738303780555725
			 ,-0.706900238990784,-0.371135592460632,0.602099657058716,-0.233008816838264,-0.921750545501709,0.309945970773697
			 ,-0.229712814092636,0.923307001590729,0.307687610387802,-0.704886019229889,0.376262694597244,0.601245164871216
			 ,0.408856481313705,-0.906857490539551,-0.101962342858315,0.840327143669128,-0.340525537729263,-0.421704769134521
			 ,0.267189562320709,-0.900448620319366,-0.343150109052658,0.225898012518883,-0.371227145195007,-0.900631725788116
			 ,0.707327485084534,-0.357615888118744,-0.609729290008545,0.839594721794128,0.343363761901855,-0.420850247144699
			 ,0.405163735151291,0.908780157566071,-0.099520862102509,0.706442475318909,0.360423594713211,-0.609088420867920
			 ,0.225898012518883,0.371990114450455,-0.900296032428741,0.265694141387939,0.901547312736511,-0.341441094875336
			 ,-0.672811031341553,0.040437024086714,-0.738669991493225,-0.886410117149353,-0.457197785377502,-0.072359383106232
			 ,-0.924832940101624,0.363017678260803,0.113406777381897,-0.360545665025711,0.925840020179749,0.113010041415691
			 ,0.460737943649292,0.884517967700958,-0.072847679257393,-0.039521470665932,0.673268854618073,-0.738303780555725
			 ,-0.762291312217712,0.237433999776840,0.602099657058716,-0.816522717475891,-0.486983865499496,0.309945970773697
			 ,0.490462958812714,0.815301954746246,0.307687610387802,-0.232367932796478,0.764488637447357,0.601245164871216
			 ,-0.352122575044632,-0.930356740951538,-0.101962342858315,0.353404343128204,-0.834986448287964,-0.421704769134521
			 ,-0.447767555713654,-0.825647771358490,-0.343150109052658,-0.102725304663181,-0.422223567962646,-0.900631725788116
			 ,0.247260957956314,-0.753013730049133,-0.609729290008545,0.836481809616089,-0.350871294736862,-0.420850247144699
			 ,0.929105520248413,0.356089979410172,-0.099520862102509,0.754387021064758,-0.244636371731758,-0.609088420867920
			 ,0.422772914171219,0.103305153548717,-0.900296032428741,0.825373113155365,0.449598670005798,-0.341441094875336
			 ,-0.447126686573029,0.504348874092102,-0.738669991493225,-0.950071692466736,0.303476065397263,-0.072359383106232
			 ,-0.397228926420212,0.910672307014465,0.113406777381897,0.399731427431107,0.909604191780090,0.113010041415691
			 ,0.951231420040131,0.299661248922348,-0.072847679257393,0.448133796453476,0.504013180732727,-0.738303780555725
			 ,-0.371135592460632,0.706900238990784,0.602099657058716,-0.921750545501709,0.233008816838264,0.309945970773697
			 ,0.923307001590729,0.229712814092636,0.307687610387802,0.376262694597244,0.704886019229889,0.601245164871216
			 ,-0.906857490539551,-0.408856481313705,-0.101962342858315,-0.340525537729263,-0.840327143669128,-0.421704769134521
			 ,-0.900448620319366,-0.267189562320709,-0.343150109052658,-0.371227145195007,-0.225898012518883,-0.900631725788116
			 ,-0.357615888118744,-0.707327485084534,-0.609729290008545,0.343363761901855,-0.839594721794128,-0.420850247144699
			 ,0.908780157566071,-0.405163735151291,-0.099520862102509,0.360423594713211,-0.706442475318909,-0.609088420867920
			 ,0.371990114450455,-0.225898012518883,-0.900296032428741,0.901547312736511,-0.265694141387939,-0.341441094875336
		}
		LayerElementSmoothing: 0 {
			Version: 102
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "Direct"
			Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.893685,0.745932,0.883926,0.741819,0.934298,0.553928,0.999411,0.555968,0.148294,0.827741,0.156598,0.823186,0.161484,0.828634
			 ,0.158109,0.838545,0.119621,0.639346,0.117255,0.647235,0.110311,0.646668,0.105755,0.638365,0.121996,0.629213,0.119621,0.639346
			 ,0.105755,0.638365,0.099486,0.629213,0.158109,0.838545,0.155316,0.849790,0.139143,0.834010,0.148294,0.827741,0.173511,0.839039
			 ,0.177819,0.849464,0.155316,0.849790,0.158109,0.838545,0.169318,0.828890,0.173511,0.839039,0.158109,0.838545,0.161484,0.828634
			 ,0.128510,0.649510,0.121704,0.652323,0.117255,0.647235,0.119621,0.639346,0.138395,0.645425,0.128510,0.649510,0.119621,0.639346
			 ,0.121996,0.629213,0.184072,0.827816,0.193988,0.833809,0.177819,0.849464,0.173511,0.839039,0.174685,0.823179,0.184072,0.827816
			 ,0.173511,0.839039,0.169318,0.828890,0.129389,0.662984,0.122144,0.659067,0.121704,0.652323,0.128510,0.649510,0.138224,0.668485
			 ,0.129389,0.662984,0.128510,0.649510,0.138395,0.645425,0.122281,0.684374,0.120261,0.673467,0.129389,0.662984,0.138224,0.668485
			 ,0.183397,0.813236,0.194304,0.811215,0.193988,0.833809,0.184072,0.827816,0.174299,0.815871,0.183397,0.813236,0.184072,0.827816
			 ,0.174685,0.823179,0.120261,0.673467,0.117626,0.664370,0.122144,0.659067,0.129389,0.662984,0.099689,0.684058,0.105681,0.674142
			 ,0.120261,0.673467,0.122281,0.684374,0.172914,0.804108,0.178414,0.795272,0.194304,0.811215,0.183397,0.813236,0.168996,0.811352
			 ,0.172914,0.804108,0.183397,0.813236,0.174299,0.815871,0.105681,0.674142,0.110318,0.664755,0.117626,0.664370,0.120261,0.673467
			 ,0.162252,0.811793,0.159440,0.804987,0.172914,0.804108,0.168996,0.811352,0.094458,0.663582,0.104606,0.659388,0.110318,0.664755
			 ,0.105681,0.674142,0.084033,0.667890,0.094458,0.663582,0.105681,0.674142,0.099689,0.684058,0.159440,0.804987,0.155355,0.795102
			 ,0.178414,0.795272,0.172914,0.804108,0.157165,0.816242,0.149276,0.813876,0.159440,0.804987,0.162252,0.811793,0.094951,0.648179
			 ,0.104863,0.651554,0.104606,0.659388,0.094458,0.663582,0.083706,0.645387,0.094951,0.648179,0.094458,0.663582,0.084033,0.667890
			 ,0.149276,0.813876,0.139143,0.811500,0.155355,0.795102,0.159440,0.804987,0.161484,0.828634,0.156598,0.823186,0.165442,0.819511
			 ,0.117255,0.647235,0.113986,0.655512,0.110311,0.646668,0.121704,0.652323,0.113986,0.655512,0.117255,0.647235,0.165442,0.819511
			 ,0.169318,0.828890,0.161484,0.828634,0.122144,0.659067,0.113986,0.655512,0.121704,0.652323,0.165442,0.819511,0.174685,0.823179
			 ,0.169318,0.828890,0.117626,0.664370,0.113986,0.655512,0.122144,0.659067,0.165442,0.819511,0.174299,0.815871,0.174685,0.823179
			 ,0.165442,0.819511,0.168996,0.811352,0.174299,0.815871,0.110318,0.664755,0.113986,0.655512,0.117626,0.664370,0.165442,0.819511
			 ,0.162252,0.811793,0.168996,0.811352,0.104606,0.659388,0.113986,0.655512,0.110318,0.664755,0.104863,0.651554,0.113986,0.655512
			 ,0.104606,0.659388,0.165442,0.819511,0.157165,0.816242,0.162252,0.811793,0.148294,0.827741,0.139143,0.834010,0.139143,0.811500
			 ,0.149276,0.813876,0.110311,0.646668,0.113986,0.655512,0.104863,0.651554,0.156598,0.823186,0.148294,0.827741,0.149276,0.813876
			 ,0.157165,0.816242,0.105755,0.638365,0.110311,0.646668,0.104863,0.651554,0.094951,0.648179,0.165442,0.819511,0.156598,0.823186
			 ,0.157165,0.816242,0.099486,0.629213,0.105755,0.638365,0.094951,0.648179,0.083706,0.645387,0.880183,0.741609,0.876344,0.742170
			 ,0.892114,0.569723,0.931809,0.554688,0.832908,0.568295,0.832908,0.525356,0.891505,0.525357,0.891505,0.568295,0.859464,0.742761
			 ,0.855556,0.742440,0.788398,0.550115,0.832242,0.569819,0.862809,0.743096,0.833938,0.570087,0.890497,0.570083,0.873063,0.742722
			 ,0.678377,0.967258,0.668619,0.963145,0.718991,0.775256,0.784102,0.777296,0.116054,0.761712,0.119429,0.751801,0.129244,0.762605
			 ,0.120940,0.767161,0.045402,0.776471,0.037513,0.774105,0.038080,0.767161,0.046383,0.762605,0.055535,0.778846,0.045402,0.776471
			 ,0.046383,0.762605,0.055535,0.756337,0.119429,0.751801,0.122222,0.740557,0.138395,0.756336,0.129244,0.762605,0.104027,0.751307
			 ,0.099719,0.740882,0.122222,0.740557,0.119429,0.751801,0.108220,0.761456,0.104027,0.751307,0.119429,0.751801,0.116054,0.761712
			 ,0.035238,0.785360,0.032425,0.778554,0.037513,0.774105,0.045402,0.776471,0.039323,0.795245,0.035238,0.785360,0.045402,0.776471
			 ,0.055535,0.778846,0.093466,0.762530,0.083550,0.756537,0.099719,0.740882,0.104027,0.751307,0.102853,0.767167,0.093466,0.762530
			 ,0.104027,0.751307,0.108220,0.761456,0.021764,0.786239,0.025681,0.778994,0.032425,0.778554,0.035238,0.785360,0.016263,0.795074
			 ,0.021764,0.786239,0.035238,0.785360,0.039323,0.795245,0.000374,0.779131,0.011281,0.777111,0.021764,0.786239,0.016263,0.795074
			 ,0.094141,0.777110,0.083234,0.779130,0.083550,0.756537,0.093466,0.762530,0.103238,0.774475,0.094141,0.777110,0.093466,0.762530
			 ,0.102853,0.767167,0.011281,0.777111,0.020378,0.774476,0.025681,0.778994,0.021764,0.786239,0.000690,0.756538,0.010606,0.762531
			 ,0.011281,0.777111,0.000374,0.779131,0.104624,0.786238,0.099123,0.795074,0.083234,0.779130,0.094141,0.777110,0.108541,0.778994
			 ,0.104624,0.786238,0.094141,0.777110,0.103238,0.774475,0.010606,0.762531,0.019993,0.767168,0.020378,0.774476,0.011281,0.777111
			 ,0.115286,0.778553,0.118098,0.785360,0.104624,0.786238,0.108541,0.778994,0.021166,0.751308,0.025360,0.761456,0.019993,0.767168
			 ,0.010606,0.762531,0.016858,0.740883,0.021166,0.751308,0.010606,0.762531,0.000690,0.756538,0.118098,0.785360,0.122183,0.795245
			 ,0.099123,0.795074,0.104624,0.786238,0.120373,0.774105,0.128262,0.776470,0.118098,0.785360,0.115286,0.778553,0.036569,0.751802
			 ,0.033194,0.761712,0.025360,0.761456,0.021166,0.751308,0.039362,0.740557,0.036569,0.751802,0.021166,0.751308,0.016858,0.740883
			 ,0.128262,0.776470,0.138395,0.778846,0.122183,0.795245,0.118098,0.785360,0.112096,0.770835,0.116054,0.761712,0.120940,0.767161
			 ,0.037513,0.774105,0.029236,0.770835,0.038080,0.767161,0.032425,0.778554,0.029236,0.770835,0.037513,0.774105,0.112096,0.770835
			 ,0.108220,0.761456,0.116054,0.761712,0.025681,0.778994,0.029236,0.770835,0.032425,0.778554,0.112096,0.770835,0.102853,0.767167
			 ,0.108220,0.761456,0.020378,0.774476,0.029236,0.770835,0.025681,0.778994,0.112096,0.770835,0.103238,0.774475,0.102853,0.767167
			 ,0.112096,0.770835,0.108541,0.778994,0.103238,0.774475,0.019993,0.767168,0.029236,0.770835,0.020378,0.774476,0.112096,0.770835
			 ,0.115286,0.778553,0.108541,0.778994,0.025360,0.761456,0.029236,0.770835,0.019993,0.767168,0.033194,0.761712,0.029236,0.770835
			 ,0.025360,0.761456,0.112096,0.770835,0.120373,0.774105,0.115286,0.778553,0.129244,0.762605,0.138395,0.756336,0.138395,0.778846
			 ,0.128262,0.776470,0.038080,0.767161,0.029236,0.770835,0.033194,0.761712,0.120940,0.767161,0.129244,0.762605,0.128262,0.776470
			 ,0.120373,0.774105,0.046383,0.762605,0.038080,0.767161,0.033194,0.761712,0.036569,0.751802,0.112096,0.770835,0.120940,0.767161
			 ,0.120373,0.774105,0.055535,0.756337,0.046383,0.762605,0.036569,0.751802,0.039362,0.740557,0.664875,0.962935,0.661037,0.963495
			 ,0.676809,0.791049,0.716501,0.776016,0.617601,0.789622,0.617601,0.746681,0.676199,0.746681,0.676199,0.789622,0.644157,0.964087
			 ,0.640248,0.963766,0.573090,0.771442,0.616935,0.791146,0.647501,0.964422,0.618630,0.791414,0.675192,0.791410,0.657755,0.964048
			 ,0.463069,0.745934,0.453311,0.741821,0.503683,0.553932,0.568795,0.555973,0.117241,0.828813,0.127151,0.832189,0.116348,0.842002
			 ,0.111792,0.833699,0.817060,0.284511,0.809171,0.282145,0.809738,0.275201,0.818041,0.270645,0.827193,0.286886,0.817060,0.284511
			 ,0.818041,0.270645,0.827193,0.264377,0.127151,0.832189,0.138395,0.834982,0.122616,0.851154,0.116348,0.842002,0.127646,0.816786
			 ,0.138071,0.812479,0.138395,0.834982,0.127151,0.832189,0.117497,0.820980,0.127646,0.816786,0.127151,0.832189,0.117241,0.828813
			 ,0.806896,0.293400,0.804083,0.286594,0.809171,0.282145,0.817060,0.284511,0.810981,0.303285,0.806896,0.293400,0.817060,0.284511
			 ,0.827193,0.286886,0.116423,0.806225,0.122416,0.796309,0.138071,0.812479,0.127646,0.816786,0.111786,0.815612,0.116423,0.806225
			 ,0.127646,0.816786,0.117497,0.820980,0.793421,0.294279,0.797339,0.287034,0.804083,0.286594,0.806896,0.293400,0.787921,0.303114
			 ,0.793421,0.294279,0.806896,0.293400,0.810981,0.303285,0.772031,0.287170,0.782938,0.285150,0.793421,0.294279,0.787921,0.303114
			 ,0.101842,0.806900,0.099822,0.795992,0.122416,0.796309,0.116423,0.806225,0.104477,0.815998,0.101842,0.806900,0.116423,0.806225
			 ,0.111786,0.815612,0.782938,0.285150,0.792036,0.282515,0.797339,0.287034,0.793421,0.294279,0.772348,0.264576,0.782264,0.270570
			 ,0.782938,0.285150,0.772031,0.287170,0.092714,0.817383,0.083878,0.811883,0.099822,0.795992,0.101842,0.806900,0.099959,0.821301
			 ,0.092714,0.817383,0.101842,0.806900,0.104477,0.815998,0.782264,0.270570,0.791651,0.275207,0.792036,0.282515,0.782938,0.285150
			 ,0.100400,0.828045,0.093594,0.830858,0.092714,0.817383,0.099959,0.821301,0.792825,0.259347,0.797018,0.269496,0.791651,0.275207
			 ,0.782264,0.270570,0.788518,0.248922,0.792825,0.259347,0.782264,0.270570,0.772348,0.264576,0.093594,0.830858,0.083709,0.834943
			 ,0.083878,0.811883,0.092714,0.817383,0.104848,0.833132,0.102483,0.841021,0.093594,0.830858,0.100400,0.828045,0.808227,0.259841
			 ,0.804852,0.269752,0.797018,0.269496,0.792825,0.259347,0.811020,0.248597,0.808227,0.259841,0.792825,0.259347,0.788518,0.248922
			 ,0.102483,0.841021,0.100108,0.851154,0.083709,0.834943,0.093594,0.830858,0.108118,0.824855,0.117241,0.828813,0.111792,0.833699
			 ,0.809171,0.282145,0.800894,0.278875,0.809738,0.275201,0.804083,0.286594,0.800894,0.278875,0.809171,0.282145,0.108118,0.824855
			 ,0.117497,0.820980,0.117241,0.828813,0.797339,0.287034,0.800894,0.278875,0.804083,0.286594,0.108118,0.824855,0.111786,0.815612
			 ,0.117497,0.820980,0.792036,0.282515,0.800894,0.278875,0.797339,0.287034,0.108118,0.824855,0.104477,0.815998,0.111786,0.815612
			 ,0.108118,0.824855,0.099959,0.821301,0.104477,0.815998,0.791651,0.275207,0.800894,0.278875,0.792036,0.282515,0.108118,0.824855
			 ,0.100400,0.828045,0.099959,0.821301,0.797018,0.269496,0.800894,0.278875,0.791651,0.275207,0.804852,0.269752,0.800894,0.278875
			 ,0.797018,0.269496,0.108118,0.824855,0.104848,0.833132,0.100400,0.828045,0.116348,0.842002,0.122616,0.851154,0.100108,0.851154
			 ,0.102483,0.841021,0.809738,0.275201,0.800894,0.278875,0.804852,0.269752,0.111792,0.833699,0.116348,0.842002,0.102483,0.841021
			 ,0.104848,0.833132,0.818041,0.270645,0.809738,0.275201,0.804852,0.269752,0.808227,0.259841,0.108118,0.824855,0.111792,0.833699
			 ,0.104848,0.833132,0.827193,0.264377,0.818041,0.270645,0.808227,0.259841,0.811020,0.248597,0.449567,0.741611,0.445729,0.742171
			 ,0.461501,0.569725,0.501193,0.554693,0.402292,0.568298,0.402292,0.525356,0.460891,0.525356,0.460891,0.568298,0.428850,0.742763
			 ,0.424941,0.742441,0.357782,0.550119,0.401626,0.569822,0.432194,0.743098,0.403321,0.570090,0.459884,0.570086,0.442447,0.742724
			 ,0.247763,0.794354,0.238004,0.790241,0.288376,0.602352,0.353487,0.604392,0.033195,0.650368,0.036570,0.640457,0.046384,0.651261
			 ,0.038080,0.655816,0.128262,0.609691,0.120373,0.607324,0.120940,0.600380,0.129244,0.595825,0.138395,0.612066,0.128262,0.609691
			 ,0.129244,0.595825,0.138395,0.589556,0.036570,0.640457,0.039363,0.629212,0.055536,0.644992,0.046384,0.651261,0.021168,0.639962
			 ,0.016860,0.629537,0.039363,0.629212,0.036570,0.640457,0.025361,0.650111,0.021168,0.639962,0.036570,0.640457,0.033195,0.650368
			 ,0.118097,0.618580,0.115285,0.611773,0.120373,0.607324,0.128262,0.609691,0.122182,0.628465,0.118097,0.618580,0.128262,0.609691
			 ,0.138395,0.612066,0.010607,0.651185,0.000691,0.645191,0.016860,0.629537,0.021168,0.639962,0.019993,0.655822,0.010607,0.651185
			 ,0.021168,0.639962,0.025361,0.650111,0.104623,0.619458,0.108541,0.612213,0.115285,0.611773,0.118097,0.618580,0.099121,0.628293
			 ,0.104623,0.619458,0.118097,0.618580,0.122182,0.628465,0.083233,0.612348,0.094140,0.610329,0.104623,0.619458,0.099121,0.628293
			 ,0.011281,0.665765,0.000374,0.667784,0.000691,0.645191,0.010607,0.651185,0.020378,0.663130,0.011281,0.665765,0.010607,0.651185
			 ,0.019993,0.655822,0.094140,0.610329,0.103238,0.607694,0.108541,0.612213,0.104623,0.619458,0.083551,0.589755,0.093466,0.595748
			 ,0.094140,0.610329,0.083233,0.612348,0.021763,0.674894,0.016262,0.683729,0.000374,0.667784,0.011281,0.665765,0.025681,0.667649
			 ,0.021763,0.674894,0.011281,0.665765,0.020378,0.663130,0.093466,0.595748,0.102853,0.600386,0.103238,0.607694,0.094140,0.610329
			 ,0.032426,0.667209,0.035238,0.674015,0.021763,0.674894,0.025681,0.667649,0.104028,0.584527,0.108221,0.594675,0.102853,0.600386
			 ,0.093466,0.595748,0.099720,0.574102,0.104028,0.584527,0.093466,0.595748,0.083551,0.589755,0.035238,0.674015,0.039322,0.683901
			 ,0.016262,0.683729,0.021763,0.674894,0.037514,0.662760,0.045403,0.665126,0.035238,0.674015,0.032426,0.667209,0.119430,0.585021
			 ,0.116054,0.594932,0.108221,0.594675,0.104028,0.584527,0.122223,0.573777,0.119430,0.585021,0.104028,0.584527,0.099720,0.574102
			 ,0.045403,0.665126,0.055536,0.667502,0.039322,0.683901,0.035238,0.674015,0.029236,0.659490,0.033195,0.650368,0.038080,0.655816
			 ,0.120373,0.607324,0.112096,0.604054,0.120940,0.600380,0.115285,0.611773,0.112096,0.604054,0.120373,0.607324,0.029236,0.659490
			 ,0.025361,0.650111,0.033195,0.650368,0.108541,0.612213,0.112096,0.604054,0.115285,0.611773,0.029236,0.659490,0.019993,0.655822
			 ,0.025361,0.650111,0.103238,0.607694,0.112096,0.604054,0.108541,0.612213,0.029236,0.659490,0.020378,0.663130,0.019993,0.655822
			 ,0.029236,0.659490,0.025681,0.667649,0.020378,0.663130,0.102853,0.600386,0.112096,0.604054,0.103238,0.607694,0.029236,0.659490
			 ,0.032426,0.667209,0.025681,0.667649,0.108221,0.594675,0.112096,0.604054,0.102853,0.600386,0.116054,0.594932,0.112096,0.604054
			 ,0.108221,0.594675,0.029236,0.659490,0.037514,0.662760,0.032426,0.667209,0.046384,0.651261,0.055536,0.644992,0.055536,0.667502
			 ,0.045403,0.665126,0.120940,0.600380,0.112096,0.604054,0.116054,0.594932,0.038080,0.655816,0.046384,0.651261,0.045403,0.665126
			 ,0.037514,0.662760,0.129244,0.595825,0.120940,0.600380,0.116054,0.594932,0.119430,0.585021,0.029236,0.659490,0.038080,0.655816
			 ,0.037514,0.662760,0.138395,0.589556,0.129244,0.595825,0.119430,0.585021,0.122223,0.573777,0.234261,0.790032,0.230422,0.790592
			 ,0.246194,0.618145,0.285886,0.603112,0.186985,0.616718,0.186985,0.573777,0.245585,0.573777,0.245585,0.616718,0.213542,0.791184
			 ,0.209634,0.790862,0.142475,0.598538,0.186319,0.618242,0.216887,0.791518,0.188015,0.618510,0.244577,0.618506,0.227140,0.791144
			 ,0.678375,0.745934,0.668617,0.741820,0.718992,0.553932,0.784102,0.555973,0.227872,0.816257,0.231247,0.806346,0.241061,0.817150
			 ,0.232758,0.821705,0.317790,0.840131,0.320156,0.832242,0.327100,0.832809,0.331655,0.841112,0.315415,0.850264,0.317790,0.840131
			 ,0.331655,0.841112,0.337923,0.850264,0.231247,0.806346,0.234040,0.795102,0.250213,0.810881,0.241061,0.817150,0.215845,0.805852
			 ,0.211537,0.795426,0.234040,0.795102,0.231247,0.806346,0.220038,0.816000,0.215845,0.805852,0.231247,0.806346,0.227872,0.816257
			 ,0.308901,0.829967,0.315707,0.827155,0.320156,0.832242,0.317790,0.840131,0.299016,0.834052,0.308901,0.829967,0.317790,0.840131
			 ,0.315415,0.850264,0.205283,0.817074,0.195367,0.811081,0.211537,0.795426,0.215845,0.805852,0.214671,0.821712,0.205283,0.817074
			 ,0.215845,0.805852,0.220038,0.816000,0.308022,0.816492,0.315267,0.820410,0.315707,0.827155,0.308901,0.829967,0.299186,0.810991
			 ,0.308022,0.816492,0.308901,0.829967,0.299016,0.834052,0.315132,0.795102,0.317151,0.806009,0.308022,0.816492,0.299186,0.810991
			 ,0.205959,0.831655,0.195051,0.833675,0.195367,0.811081,0.205283,0.817074,0.215056,0.829020,0.205959,0.831655,0.205283,0.817074
			 ,0.214671,0.821712,0.317151,0.806009,0.319786,0.815107,0.315267,0.820410,0.308022,0.816492,0.337726,0.795420,0.331732,0.805335
			 ,0.317151,0.806009,0.315132,0.795102,0.216442,0.840783,0.210942,0.849619,0.195051,0.833675,0.205959,0.831655,0.220359,0.833538
			 ,0.216442,0.840783,0.205959,0.831655,0.215056,0.829020,0.331732,0.805335,0.327094,0.814722,0.319786,0.815107,0.317151,0.806009
			 ,0.227103,0.833098,0.229916,0.839904,0.216442,0.840783,0.220359,0.833538,0.342954,0.815897,0.332805,0.820090,0.327094,0.814722
			 ,0.331732,0.805335,0.353380,0.811590,0.342954,0.815897,0.331732,0.805335,0.337726,0.795420,0.229916,0.839904,0.234001,0.849789
			 ,0.210942,0.849619,0.216442,0.840783,0.232191,0.828649,0.240080,0.831015,0.229916,0.839904,0.227103,0.833098,0.342459,0.831299
			 ,0.332549,0.827923,0.332805,0.820090,0.342954,0.815897,0.353703,0.834093,0.342459,0.831299,0.342954,0.815897,0.353380,0.811590
			 ,0.240080,0.831015,0.250213,0.833390,0.234001,0.849789,0.229916,0.839904,0.223914,0.825379,0.227872,0.816257,0.232758,0.821705
			 ,0.320156,0.832242,0.323426,0.823965,0.327100,0.832809,0.315707,0.827155,0.323426,0.823965,0.320156,0.832242,0.223914,0.825379
			 ,0.220038,0.816000,0.227872,0.816257,0.315267,0.820410,0.323426,0.823965,0.315707,0.827155,0.223914,0.825379,0.214671,0.821712
			 ,0.220038,0.816000,0.319786,0.815107,0.323426,0.823965,0.315267,0.820410,0.223914,0.825379,0.215056,0.829020,0.214671,0.821712
			 ,0.223914,0.825379,0.220359,0.833538,0.215056,0.829020,0.327094,0.814722,0.323426,0.823965,0.319786,0.815107,0.223914,0.825379
			 ,0.227103,0.833098,0.220359,0.833538,0.332805,0.820090,0.323426,0.823965,0.327094,0.814722,0.332549,0.827923,0.323426,0.823965
			 ,0.332805,0.820090,0.223914,0.825379,0.232191,0.828649,0.227103,0.833098,0.241061,0.817150,0.250213,0.810881,0.250213,0.833390
			 ,0.240080,0.831015,0.327100,0.832809,0.323426,0.823965,0.332549,0.827923,0.232758,0.821705,0.241061,0.817150,0.240080,0.831015
			 ,0.232191,0.828649,0.331655,0.841112,0.327100,0.832809,0.332549,0.827923,0.342459,0.831299,0.223914,0.825379,0.232758,0.821705
			 ,0.232191,0.828649,0.337923,0.850264,0.331655,0.841112,0.342459,0.831299,0.353703,0.834093,0.664873,0.741611,0.661035,0.742171
			 ,0.676809,0.569724,0.716502,0.554692,0.617601,0.568297,0.617602,0.525356,0.676200,0.525356,0.676200,0.568297,0.644155,0.742763
			 ,0.640246,0.742441,0.573090,0.550115,0.616936,0.569821,0.647499,0.743097,0.618631,0.570089,0.675192,0.570085,0.657753,0.742723
			 ,0.768832,0.524609,0.759074,0.520496,0.809447,0.332606,0.874558,0.334647,0.105575,0.718654,0.102200,0.728565,0.092385,0.717761
			 ,0.100689,0.713205,0.670346,0.267371,0.678235,0.269737,0.677669,0.276681,0.669365,0.281237,0.660213,0.264996,0.670346,0.267371
			 ,0.669365,0.281237,0.660213,0.287506,0.102200,0.728565,0.099407,0.739809,0.083234,0.724030,0.092385,0.717761,0.117602,0.729059
			 ,0.121910,0.739484,0.099407,0.739809,0.102200,0.728565,0.113409,0.718910,0.117602,0.729059,0.102200,0.728565,0.105575,0.718654
			 ,0.680511,0.258482,0.683323,0.265289,0.678235,0.269737,0.670346,0.267371,0.676426,0.248597,0.680511,0.258482,0.670346,0.267371
			 ,0.660213,0.264996,0.128163,0.717836,0.138079,0.723829,0.121910,0.739484,0.117602,0.729059,0.118776,0.713199,0.128163,0.717836
			 ,0.117602,0.729059,0.113409,0.718910,0.693985,0.257603,0.690067,0.264848,0.683323,0.265289,0.680511,0.258482,0.699486,0.248768
			 ,0.693985,0.257603,0.680511,0.258482,0.676426,0.248597,0.715375,0.264712,0.704468,0.266732,0.693985,0.257603,0.699486,0.248768
			 ,0.127488,0.703256,0.138395,0.701236,0.138079,0.723829,0.128163,0.717836,0.118391,0.705891,0.127488,0.703256,0.128163,0.717836
			 ,0.118776,0.713199,0.704468,0.266732,0.695370,0.269367,0.690067,0.264848,0.693985,0.257603,0.715058,0.287305,0.705143,0.281312
			 ,0.704468,0.266732,0.715375,0.264712,0.117005,0.694128,0.122506,0.685292,0.138395,0.701236,0.127488,0.703256,0.113087,0.701372
			 ,0.117005,0.694128,0.127488,0.703256,0.118391,0.705891,0.705143,0.281312,0.695756,0.276675,0.695370,0.269367,0.704468,0.266732
			 ,0.106343,0.701813,0.103531,0.695006,0.117005,0.694128,0.113087,0.701372,0.694582,0.292535,0.690388,0.282386,0.695756,0.276675
			 ,0.705143,0.281312,0.698889,0.302960,0.694582,0.292535,0.705143,0.281312,0.715058,0.287305,0.103531,0.695006,0.099446,0.685121
			 ,0.122506,0.685292,0.117005,0.694128,0.101256,0.706262,0.093367,0.703896,0.103531,0.695006,0.106343,0.701813,0.679179,0.292041
			 ,0.682555,0.282130,0.690388,0.282386,0.694582,0.292535,0.676386,0.303285,0.679179,0.292041,0.694582,0.292535,0.698889,0.302960
			 ,0.093367,0.703896,0.083234,0.701520,0.099446,0.685121,0.103531,0.695006,0.109533,0.709531,0.105575,0.718654,0.100689,0.713205
			 ,0.678235,0.269737,0.686512,0.273007,0.677669,0.276681,0.683323,0.265289,0.686512,0.273007,0.678235,0.269737,0.109533,0.709531
			 ,0.113409,0.718910,0.105575,0.718654,0.690067,0.264848,0.686512,0.273007,0.683323,0.265289,0.109533,0.709531,0.118776,0.713199
			 ,0.113409,0.718910,0.695370,0.269367,0.686512,0.273007,0.690067,0.264848,0.109533,0.709531,0.118391,0.705891,0.118776,0.713199
			 ,0.109533,0.709531,0.113087,0.701372,0.118391,0.705891,0.695756,0.276675,0.686512,0.273007,0.695370,0.269367,0.109533,0.709531
			 ,0.106343,0.701813,0.113087,0.701372,0.690388,0.282386,0.686512,0.273007,0.695756,0.276675,0.682555,0.282130,0.686512,0.273007
			 ,0.690388,0.282386,0.109533,0.709531,0.101256,0.706262,0.106343,0.701813,0.092385,0.717761,0.083234,0.724030,0.083234,0.701520
			 ,0.093367,0.703896,0.677669,0.276681,0.686512,0.273007,0.682555,0.282130,0.100689,0.713205,0.092385,0.717761,0.093367,0.703896
			 ,0.101256,0.706262,0.669365,0.281237,0.677669,0.276681,0.682555,0.282130,0.679179,0.292041,0.109533,0.709531,0.100689,0.713205
			 ,0.101256,0.706262,0.660213,0.287506,0.669365,0.281237,0.679179,0.292041,0.676386,0.303285,0.755330,0.520286,0.751492,0.520846
			 ,0.767264,0.348399,0.806957,0.333367,0.708056,0.346972,0.708056,0.304032,0.766654,0.304032,0.766654,0.346972,0.734612,0.521438
			 ,0.730704,0.521117,0.663546,0.328792,0.707391,0.348496,0.737956,0.521773,0.709086,0.348764,0.765647,0.348760,0.748210,0.521399
			 ,0.463069,0.967258,0.453310,0.963145,0.503683,0.775256,0.568795,0.777296,0.738464,0.282129,0.735089,0.292040,0.725274,0.281236
			 ,0.733578,0.276681,0.036288,0.694781,0.033922,0.702670,0.026978,0.702104,0.022422,0.693800,0.038663,0.684648,0.036288,0.694781
			 ,0.022422,0.693800,0.016153,0.684648,0.735089,0.292040,0.732296,0.303285,0.716122,0.287505,0.725274,0.281236,0.750491,0.292534
			 ,0.754799,0.302960,0.732296,0.303285,0.735089,0.292040,0.746298,0.282386,0.750491,0.292534,0.735089,0.292040,0.738464,0.282129
			 ,0.045177,0.704946,0.038371,0.707758,0.033922,0.702670,0.036288,0.694781,0.055062,0.700861,0.045177,0.704946,0.036288,0.694781
			 ,0.038663,0.684648,0.761052,0.281312,0.770968,0.287304,0.754799,0.302960,0.750491,0.292534,0.751665,0.276674,0.761052,0.281312
			 ,0.750491,0.292534,0.746298,0.282386,0.046056,0.718420,0.038811,0.714502,0.038371,0.707758,0.045177,0.704946,0.054891,0.723921
			 ,0.046056,0.718420,0.045177,0.704946,0.055062,0.700861,0.038948,0.739810,0.036927,0.728903,0.046056,0.718420,0.054891,0.723921
			 ,0.760377,0.266731,0.771284,0.264711,0.770968,0.287304,0.761052,0.281312,0.751280,0.269366,0.760377,0.266731,0.761052,0.281312
			 ,0.751665,0.276674,0.036927,0.728903,0.034293,0.719805,0.038811,0.714502,0.046056,0.718420,0.016355,0.739493,0.022347,0.729578
			 ,0.036927,0.728903,0.038948,0.739810,0.749894,0.257603,0.755395,0.248768,0.771284,0.264711,0.760377,0.266731,0.745976,0.264848
			 ,0.749894,0.257603,0.760377,0.266731,0.751280,0.269366,0.022347,0.729578,0.026984,0.720191,0.034293,0.719805,0.036927,0.728903
			 ,0.739232,0.265288,0.736420,0.258482,0.749894,0.257603,0.745976,0.264848,0.011125,0.719017,0.021273,0.714823,0.026984,0.720191
			 ,0.022347,0.729578,0.000699,0.723325,0.011125,0.719017,0.022347,0.729578,0.016355,0.739493,0.736420,0.258482,0.732336,0.248597
			 ,0.755395,0.248768,0.749894,0.257603,0.734145,0.269737,0.726256,0.267371,0.736420,0.258482,0.739232,0.265288,0.011618,0.703614
			 ,0.021529,0.706990,0.021273,0.714823,0.011125,0.719017,0.000374,0.700822,0.011618,0.703614,0.011125,0.719017,0.000699,0.723325
			 ,0.726256,0.267371,0.716122,0.264995,0.732336,0.248597,0.736420,0.258482,0.742422,0.273007,0.738464,0.282129,0.733578,0.276681
			 ,0.033922,0.702670,0.030652,0.710947,0.026978,0.702104,0.038371,0.707758,0.030652,0.710947,0.033922,0.702670,0.742422,0.273007
			 ,0.746298,0.282386,0.738464,0.282129,0.038811,0.714502,0.030652,0.710947,0.038371,0.707758,0.742422,0.273007,0.751665,0.276674
			 ,0.746298,0.282386,0.034293,0.719805,0.030652,0.710947,0.038811,0.714502,0.742422,0.273007,0.751280,0.269366,0.751665,0.276674
			 ,0.742422,0.273007,0.745976,0.264848,0.751280,0.269366,0.026984,0.720191,0.030652,0.710947,0.034293,0.719805,0.742422,0.273007
			 ,0.739232,0.265288,0.745976,0.264848,0.021273,0.714823,0.030652,0.710947,0.026984,0.720191,0.021529,0.706990,0.030652,0.710947
			 ,0.021273,0.714823,0.742422,0.273007,0.734145,0.269737,0.739232,0.265288,0.725274,0.281236,0.716122,0.287505,0.716122,0.264995
			 ,0.726256,0.267371,0.026978,0.702104,0.030652,0.710947,0.021529,0.706990,0.733578,0.276681,0.725274,0.281236,0.726256,0.267371
			 ,0.734145,0.269737,0.022422,0.693800,0.026978,0.702104,0.021529,0.706990,0.011618,0.703614,0.742422,0.273007,0.733578,0.276681
			 ,0.734145,0.269737,0.016153,0.684648,0.022422,0.693800,0.011618,0.703614,0.000374,0.700822,0.449567,0.962935,0.445728,0.963495
			 ,0.461501,0.791048,0.501193,0.776016,0.402293,0.789621,0.402293,0.746681,0.460891,0.746681,0.460891,0.789621,0.428848,0.964087
			 ,0.424940,0.963765,0.357783,0.771440,0.401627,0.791145,0.432193,0.964422,0.403323,0.791413,0.459884,0.791409,0.442447,0.964048
			 ,0.893688,0.967257,0.883930,0.963144,0.934299,0.775254,0.999410,0.777294,0.022715,0.829524,0.019340,0.839436,0.009525,0.828632
			 ,0.017829,0.824076,0.010507,0.592552,0.018396,0.594918,0.017829,0.601861,0.009525,0.606417,0.000374,0.590176,0.010507,0.592552
			 ,0.009525,0.606417,0.000374,0.612686,0.019340,0.839436,0.016547,0.850680,0.000374,0.834900,0.009525,0.828632,0.034743,0.839929
			 ,0.039052,0.850354,0.016547,0.850680,0.019340,0.839436,0.030549,0.829780,0.034743,0.839929,0.019340,0.839436,0.022715,0.829524
			 ,0.020671,0.583662,0.023484,0.590469,0.018396,0.594918,0.010507,0.592552,0.016587,0.573777,0.020671,0.583662,0.010507,0.592552
			 ,0.000374,0.590176,0.045303,0.828705,0.055220,0.834698,0.039052,0.850354,0.034743,0.839929,0.035916,0.824069,0.045303,0.828705
			 ,0.034743,0.839929,0.030549,0.829780,0.034146,0.582784,0.030228,0.590029,0.023484,0.590469,0.020671,0.583662,0.039647,0.573949
			 ,0.034146,0.582784,0.020671,0.583662,0.016587,0.573777,0.055536,0.589893,0.044628,0.591913,0.034146,0.582784,0.039647,0.573949
			 ,0.044627,0.814125,0.055534,0.812104,0.055220,0.834698,0.045303,0.828705,0.035530,0.816760,0.044627,0.814125,0.045303,0.828705
			 ,0.035916,0.824069,0.044628,0.591913,0.035531,0.594547,0.030228,0.590029,0.034146,0.582784,0.055218,0.612487,0.045303,0.606493
			 ,0.044628,0.591913,0.055536,0.589893,0.034144,0.804998,0.039643,0.796162,0.055534,0.812104,0.044627,0.814125,0.030227,0.812242
			 ,0.034144,0.804998,0.044627,0.814125,0.035530,0.816760,0.045303,0.606493,0.035916,0.601856,0.035531,0.594547,0.044628,0.591913
			 ,0.023483,0.812683,0.020670,0.805877,0.034144,0.804998,0.030227,0.812242,0.034741,0.617715,0.030548,0.607567,0.035916,0.601856
			 ,0.045303,0.606493,0.039049,0.628140,0.034741,0.617715,0.045303,0.606493,0.055218,0.612487,0.020670,0.805877,0.016585,0.795993
			 ,0.039643,0.796162,0.034144,0.804998,0.018395,0.817132,0.010506,0.814766,0.020670,0.805877,0.023483,0.812683,0.019339,0.617221
			 ,0.022715,0.607310,0.030548,0.607567,0.034741,0.617715,0.016546,0.628465,0.019339,0.617221,0.034741,0.617715,0.039049,0.628140
			 ,0.010506,0.814766,0.000374,0.812391,0.016585,0.795993,0.020670,0.805877,0.026672,0.820401,0.022715,0.829524,0.017829,0.824076
			 ,0.018396,0.594918,0.026673,0.598187,0.017829,0.601861,0.023484,0.590469,0.026673,0.598187,0.018396,0.594918,0.026672,0.820401
			 ,0.030549,0.829780,0.022715,0.829524,0.030228,0.590029,0.026673,0.598187,0.023484,0.590469,0.026672,0.820401,0.035916,0.824069
			 ,0.030549,0.829780,0.035531,0.594547,0.026673,0.598187,0.030228,0.590029,0.026672,0.820401,0.035530,0.816760,0.035916,0.824069
			 ,0.026672,0.820401,0.030227,0.812242,0.035530,0.816760,0.035916,0.601856,0.026673,0.598187,0.035531,0.594547,0.026672,0.820401
			 ,0.023483,0.812683,0.030227,0.812242,0.030548,0.607567,0.026673,0.598187,0.035916,0.601856,0.022715,0.607310,0.026673,0.598187
			 ,0.030548,0.607567,0.026672,0.820401,0.018395,0.817132,0.023483,0.812683,0.009525,0.828632,0.000374,0.834900,0.000374,0.812391
			 ,0.010506,0.814766,0.017829,0.601861,0.026673,0.598187,0.022715,0.607310,0.017829,0.824076,0.009525,0.828632,0.010506,0.814766
			 ,0.018395,0.817132,0.009525,0.606417,0.017829,0.601861,0.022715,0.607310,0.019339,0.617221,0.026672,0.820401,0.017829,0.824076
			 ,0.018395,0.817132,0.000374,0.612686,0.009525,0.606417,0.019339,0.617221,0.016546,0.628465,0.880186,0.962935,0.876347,0.963495
			 ,0.892117,0.791049,0.931809,0.776015,0.832908,0.789622,0.832908,0.746681,0.891507,0.746681,0.891507,0.789621,0.859467,0.964087
			 ,0.855559,0.963765,0.788398,0.771443,0.832242,0.791146,0.862812,0.964422,0.833938,0.791414,0.890500,0.791409,0.873066,0.964048
			 ,0.780934,0.148512,0.782044,0.153765,0.722904,0.165163,0.721997,0.159782,0.780934,0.148512,0.721997,0.159782,0.721324,0.155786
			 ,0.780116,0.144635,0.780934,0.148512,0.780116,0.144635,0.838120,0.131181,0.839117,0.135060,0.780934,0.148512,0.839117,0.135060
			 ,0.840465,0.140286,0.782044,0.153765,0.422618,0.178519,0.422391,0.183902,0.362176,0.180259,0.362634,0.174817,0.422618,0.178519
			 ,0.362634,0.174817,0.362974,0.170776,0.422785,0.174545,0.422618,0.178519,0.422785,0.174545,0.482702,0.175815,0.482702,0.179871
			 ,0.422618,0.178519,0.482702,0.179871,0.482702,0.185332,0.422391,0.183902,0.302879,0.168438,0.302204,0.173782,0.242529,0.165136
			 ,0.243436,0.159756,0.302879,0.168438,0.243436,0.159756,0.244109,0.155761,0.303378,0.164494,0.302879,0.168438,0.303378,0.164494
			 ,0.362974,0.170776,0.362634,0.174817,0.302879,0.168438,0.362634,0.174817,0.362176,0.180259,0.302204,0.173782,0.661580,0.160833
			 ,0.662044,0.164515,0.602439,0.170791,0.602131,0.167132,0.193559,0.105458,0.250716,0.116554,0.249170,0.125712,0.191676,0.114434
			 ,0.542323,0.167440,0.542466,0.170844,0.482703,0.172144,0.482703,0.168617,0.422941,0.170837,0.482703,0.172144,0.482702,0.175815
			 ,0.422785,0.174545,0.303842,0.160812,0.363282,0.167117,0.362974,0.170776,0.303378,0.164494,0.661580,0.160833,0.720716,0.152168
			 ,0.721324,0.155786,0.662044,0.164515,0.892555,0.108779,0.944950,0.088949,0.946728,0.091786,0.893571,0.111937,0.542323,0.167440
			 ,0.601836,0.163617,0.602131,0.167132,0.542466,0.170844,0.189477,0.124941,0.247327,0.136672,0.245472,0.147664,0.187002,0.136691
			 ,0.189477,0.124941,0.132073,0.112566,0.132362,0.111405,0.189715,0.123793,0.189477,0.124941,0.189715,0.123793,0.247527,0.135474
			 ,0.247327,0.136672,0.540939,0.134494,0.541325,0.143664,0.482704,0.145329,0.482705,0.136043,0.769649,0.094743,0.770032,0.096583
			 ,0.713185,0.107465,0.712873,0.105600,0.778447,0.136717,0.778654,0.137692,0.720131,0.148692,0.719962,0.147687,0.892259,0.107843
			 ,0.892555,0.108779,0.836361,0.124295,0.836112,0.123322,0.306990,0.135902,0.307252,0.133826,0.365531,0.140397,0.365354,0.142506
			 ,0.659519,0.144521,0.718107,0.136692,0.719962,0.147687,0.661028,0.156459,0.659519,0.144521,0.600816,0.151489,0.600715,0.150278
			 ,0.659372,0.143353,0.659519,0.144521,0.659372,0.143353,0.717907,0.135494,0.718107,0.136692,0.076581,0.096828,0.073232,0.107811
			 ,0.021013,0.088069,0.024533,0.078890,0.076581,0.096828,0.024533,0.078890,0.025059,0.077886,0.076916,0.095767,0.076581,0.096828
			 ,0.076916,0.095767,0.132362,0.111405,0.132073,0.112566,0.423633,0.154411,0.364599,0.151475,0.364701,0.150265,0.423682,0.153236
			 ,0.423633,0.154411,0.423682,0.153236,0.482704,0.155232,0.482704,0.156446,0.541776,0.154417,0.482704,0.156446,0.482704,0.155232
			 ,0.541727,0.153242,0.541776,0.154417,0.541727,0.153242,0.600715,0.150278,0.600816,0.151489,0.888911,0.096855,0.940979,0.078919
			 ,0.944500,0.088102,0.892259,0.107843,0.888911,0.096855,0.892259,0.107843,0.836112,0.123322,0.833396,0.112591,0.888911,0.096855
			 ,0.833396,0.112591,0.833107,0.111430,0.888575,0.095794,0.888911,0.096855,0.888575,0.095794,0.940454,0.077914,0.940979,0.078919
			 ,0.305904,0.144503,0.247327,0.136672,0.247527,0.135474,0.306051,0.143336,0.305904,0.144503,0.306051,0.143336,0.364701,0.150265
			 ,0.364599,0.151475,0.775973,0.124963,0.718107,0.136692,0.717907,0.135494,0.775734,0.123815,0.775973,0.124963,0.775734,0.123815
			 ,0.833107,0.111430,0.833396,0.112591,0.774201,0.116496,0.716615,0.127817,0.716265,0.125730,0.773774,0.114453,0.774201,0.116496
			 ,0.773774,0.114453,0.830732,0.101915,0.831233,0.103942,0.774201,0.116496,0.831233,0.103942,0.833107,0.111430,0.775734,0.123815
			 ,0.541413,0.145755,0.482704,0.147445,0.482704,0.145329,0.541325,0.143664,0.541413,0.145755,0.541325,0.143664,0.599885,0.140409
			 ,0.600062,0.142518,0.423997,0.145749,0.424085,0.143658,0.482704,0.145329,0.482704,0.147445,0.085816,0.063530,0.140633,0.077680
			 ,0.139552,0.082164,0.084723,0.067765,0.085816,0.063530,0.084723,0.067765,0.034036,0.054496,0.034277,0.050336,0.425124,0.119008
			 ,0.482706,0.120282,0.482705,0.124927,0.424933,0.123539,0.540289,0.119013,0.597782,0.115446,0.598172,0.120076,0.540479,0.123544
			 ,0.540289,0.119013,0.540479,0.123544,0.482705,0.124927,0.482706,0.120282,0.879675,0.063543,0.931236,0.050352,0.931477,0.054513
			 ,0.880769,0.067781,0.879675,0.063543,0.880769,0.067781,0.825918,0.082179,0.824837,0.077692,0.868852,0.015689,0.868612,0.014693
			 ,0.927366,0.000374,0.927821,0.001451,0.206780,0.041959,0.152262,0.028418,0.152511,0.027367,0.206982,0.041003,0.648894,0.060651
			 ,0.648772,0.059688,0.703547,0.050410,0.703726,0.051456,0.544372,0.216272,0.544417,0.217348,0.482699,0.218969,0.482699,0.217881
			 ,0.544372,0.216272,0.605963,0.212710,0.606054,0.213793,0.544417,0.217348,0.667278,0.205934,0.667414,0.207002,0.606054,0.213793
			 ,0.605963,0.212710,0.667278,0.205934,0.728327,0.197229,0.728509,0.198300,0.667414,0.207002,0.788776,0.185347,0.789001,0.186397
			 ,0.728509,0.198300,0.728327,0.197229,0.788776,0.185347,0.848635,0.171471,0.848912,0.172515,0.789001,0.186397,0.907144,0.154000
			 ,0.907467,0.155014,0.848912,0.172515,0.848635,0.171471,0.907144,0.154000,0.964927,0.134450,0.965138,0.135512,0.907467,0.155014
			 ,0.058343,0.153950,0.058021,0.154963,0.000374,0.135457,0.000585,0.134396,0.058343,0.153950,0.061119,0.145290,0.119204,0.162434
			 ,0.116830,0.171426,0.058343,0.153950,0.116830,0.171426,0.116553,0.172469,0.058021,0.154963,0.176669,0.185308,0.176444,0.186357
			 ,0.116553,0.172469,0.116830,0.171426,0.176669,0.185308,0.237104,0.197194,0.236922,0.198264,0.176444,0.186357,0.421028,0.216262
			 ,0.420983,0.217338,0.359353,0.213772,0.359444,0.212689,0.421028,0.216262,0.482699,0.217881,0.482699,0.218969,0.420983,0.217338
			 ,0.298139,0.205905,0.298004,0.206973,0.236922,0.198264,0.237104,0.197194,0.298139,0.205905,0.237104,0.197194,0.238669,0.187958
			 ,0.299313,0.196646,0.298139,0.205905,0.359444,0.212689,0.359353,0.213772,0.298004,0.206973,0.309547,0.115710,0.308406,0.124719
			 ,0.250716,0.116554,0.252250,0.107452,0.657018,0.124733,0.658171,0.133841,0.599885,0.140409,0.599105,0.131154,0.783568,0.160958
			 ,0.785196,0.168618,0.725441,0.180177,0.724131,0.172430,0.783568,0.160958,0.724131,0.172430,0.722904,0.165163,0.782044,0.153765
			 ,0.783568,0.160958,0.782044,0.153765,0.840465,0.140286,0.842298,0.147344,0.783568,0.160958,0.842298,0.147344,0.844268,0.154873
			 ,0.785196,0.168618,0.541776,0.154417,0.600816,0.151489,0.601751,0.162601,0.542281,0.166440,0.542281,0.166440,0.542323,0.167440
			 ,0.482703,0.168617,0.482703,0.167597,0.423633,0.154411,0.423126,0.166432,0.363663,0.162587,0.364599,0.151475,0.422081,0.191273
			 ,0.421750,0.199122,0.360897,0.195442,0.361557,0.187607,0.422081,0.191273,0.361557,0.187607,0.362176,0.180259,0.422391,0.183902
			 ,0.422081,0.191273,0.422391,0.183902,0.482702,0.185332,0.482701,0.192707,0.422081,0.191273,0.482701,0.192707,0.482701,0.200571
			 ,0.421750,0.199122,0.661028,0.156459,0.661153,0.157452,0.601836,0.163617,0.601751,0.162601,0.065798,0.130768,0.063454,0.138028
			 ,0.005224,0.117213,0.008471,0.109635,0.065798,0.130768,0.008471,0.109635,0.011995,0.102880,0.067998,0.123973,0.065798,0.130768
			 ,0.067998,0.123973,0.125003,0.140251,0.123169,0.147307,0.065798,0.130768,0.123169,0.147307,0.121198,0.154833,0.063454,0.138028
			 ,0.084723,0.067765,0.139552,0.082164,0.139111,0.083983,0.084258,0.069503,0.304395,0.156439,0.363663,0.162587,0.363578,0.163603
			 ,0.304269,0.157432,0.310351,0.109342,0.309783,0.113843,0.252563,0.105588,0.253332,0.101004,0.423126,0.166432,0.423084,0.167432
			 ,0.363578,0.163603,0.363663,0.162587,0.775973,0.124963,0.778447,0.136717,0.719962,0.147687,0.718107,0.136692,0.301280,0.181100
			 ,0.300294,0.188891,0.239992,0.180146,0.241302,0.172400,0.301280,0.181100,0.241302,0.172400,0.242529,0.165136,0.302204,0.173782
			 ,0.301280,0.181100,0.302204,0.173782,0.362176,0.180259,0.361557,0.187607,0.301280,0.181100,0.361557,0.187607,0.360897,0.195442
			 ,0.300294,0.188891,0.664141,0.181124,0.665125,0.188917,0.604512,0.195461,0.603854,0.187625,0.664141,0.181124,0.603854,0.187625
			 ,0.603236,0.180275,0.663217,0.173805,0.664141,0.181124,0.663217,0.173805,0.722904,0.165163,0.724131,0.172430,0.664141,0.181124
			 ,0.724131,0.172430,0.725441,0.180177,0.665125,0.188917,0.181880,0.160925,0.180251,0.168583,0.121198,0.154833,0.123169,0.147307
			 ,0.181880,0.160925,0.123169,0.147307,0.125003,0.140251,0.183405,0.153734,0.181880,0.160925,0.183405,0.153734,0.242529,0.165136
			 ,0.241302,0.172400,0.181880,0.160925,0.241302,0.172400,0.239992,0.180146,0.180251,0.168583,0.189477,0.124941,0.187002,0.136691
			 ,0.129356,0.123293,0.132073,0.112566,0.073232,0.107811,0.072936,0.108747,0.020563,0.088915,0.021013,0.088069,0.543323,0.191281
			 ,0.543653,0.199131,0.482701,0.200571,0.482701,0.192707,0.543323,0.191281,0.482701,0.192707,0.482702,0.185332,0.543014,0.183910
			 ,0.543323,0.191281,0.543014,0.183910,0.603236,0.180275,0.603854,0.187625,0.543323,0.191281,0.603854,0.187625,0.604512,0.195461
			 ,0.543653,0.199131,0.778447,0.136717,0.836112,0.123322,0.836361,0.124295,0.778654,0.137692,0.191249,0.116476,0.248819,0.127798
			 ,0.247527,0.135474,0.189715,0.123793,0.899692,0.130809,0.902035,0.138072,0.844268,0.154873,0.842298,0.147344,0.899692,0.130809
			 ,0.842298,0.147344,0.840465,0.140286,0.897492,0.124011,0.899692,0.130809,0.897492,0.124011,0.953519,0.102921,0.957042,0.109679
			 ,0.899692,0.130809,0.957042,0.109679,0.960289,0.117261,0.902035,0.138072,0.425124,0.119008,0.424933,0.123539,0.367246,0.120066
			 ,0.367635,0.115437,0.424933,0.123539,0.424854,0.125418,0.367087,0.121949,0.367246,0.120066,0.076581,0.096828,0.132073,0.112566
			 ,0.129356,0.123293,0.073232,0.107811,0.073232,0.107811,0.129356,0.123293,0.129107,0.124266,0.072936,0.108747,0.659519,0.144521
			 ,0.661028,0.156459,0.601751,0.162601,0.600816,0.151489,0.191249,0.116476,0.189715,0.123793,0.132362,0.111405,0.134236,0.103920
			 ,0.542281,0.166440,0.601751,0.162601,0.601836,0.163617,0.542323,0.167440,0.886495,0.088844,0.936928,0.072051,0.940454,0.077914
			 ,0.888575,0.095794,0.775973,0.124963,0.833396,0.112591,0.836112,0.123322,0.778447,0.136717,0.423126,0.166432,0.482703,0.167597
			 ,0.482703,0.168617,0.423084,0.167432,0.541776,0.154417,0.542281,0.166440,0.482703,0.167597,0.482704,0.156446,0.661028,0.156459
			 ,0.719962,0.147687,0.720131,0.148692,0.661153,0.157452,0.655073,0.109354,0.712103,0.101016,0.712873,0.105600,0.655641,0.113855
			 ,0.655073,0.109354,0.655641,0.113855,0.598172,0.120076,0.597782,0.115446,0.655073,0.109354,0.597782,0.115446,0.596394,0.098990
			 ,0.653010,0.093066,0.768726,0.090302,0.824837,0.077692,0.825918,0.082179,0.769649,0.094743,0.768726,0.090302,0.769649,0.094743
			 ,0.712873,0.105600,0.712103,0.101016,0.895871,0.119036,0.897492,0.124011,0.840465,0.140286,0.839117,0.135060,0.895871,0.119036
			 ,0.839117,0.135060,0.838120,0.131181,0.894669,0.115345,0.895871,0.119036,0.894669,0.115345,0.948533,0.094825,0.950674,0.098203
			 ,0.895871,0.119036,0.950674,0.098203,0.953519,0.102921,0.897492,0.124011,0.195418,0.096570,0.252250,0.107452,0.250716,0.116554
			 ,0.193559,0.105458,0.655641,0.113855,0.655877,0.115722,0.598330,0.121959,0.598172,0.120076,0.779353,0.141015,0.780116,0.144635
			 ,0.721324,0.155786,0.720716,0.152168,0.881234,0.069519,0.931669,0.056194,0.933159,0.063465,0.883536,0.078190,0.193559,0.105458
			 ,0.191676,0.114434,0.134737,0.101894,0.136964,0.092924,0.308406,0.124719,0.307252,0.133826,0.249170,0.125712,0.250716,0.116554
			 ,0.880769,0.067781,0.931477,0.054513,0.931669,0.056194,0.881234,0.069519,0.662542,0.168460,0.663217,0.173805,0.603236,0.180275
			 ,0.602778,0.174833,0.662542,0.168460,0.602778,0.174833,0.602439,0.170791,0.662044,0.164515,0.662542,0.168460,0.662044,0.164515
			 ,0.721324,0.155786,0.721997,0.159782,0.662542,0.168460,0.721997,0.159782,0.722904,0.165163,0.663217,0.173805,0.770032,0.096583
			 ,0.826359,0.083998,0.828505,0.092942,0.771892,0.105474,0.770032,0.096583,0.771892,0.105474,0.714719,0.116570,0.713185,0.107465
			 ,0.655877,0.115722,0.713185,0.107465,0.714719,0.116570,0.657018,0.124733,0.655877,0.115722,0.657018,0.124733,0.599105,0.131154
			 ,0.598330,0.121959,0.542788,0.178526,0.543014,0.183910,0.482702,0.185332,0.482702,0.179871,0.542788,0.178526,0.482702,0.179871
			 ,0.482702,0.175815,0.542622,0.174553,0.542788,0.178526,0.542622,0.174553,0.602439,0.170791,0.602778,0.174833,0.542788,0.178526
			 ,0.602778,0.174833,0.603236,0.180275,0.543014,0.183910,0.424854,0.125418,0.482705,0.126817,0.482705,0.136043,0.424472,0.134488
			 ,0.542466,0.170844,0.542622,0.174553,0.482702,0.175815,0.482703,0.172144,0.771892,0.105474,0.773774,0.114453,0.716265,0.125730
			 ,0.714719,0.116570,0.196725,0.090290,0.253332,0.101004,0.252563,0.105588,0.195801,0.094730,0.196725,0.090290,0.195801,0.094730
			 ,0.139552,0.082164,0.140633,0.077680,0.540479,0.123544,0.540558,0.125423,0.482705,0.126817,0.482705,0.124927,0.309547,0.115710
			 ,0.367087,0.121949,0.366312,0.131143,0.308406,0.124719,0.880769,0.067781,0.881234,0.069519,0.826359,0.083998,0.825918,0.082179
			 ,0.540558,0.125423,0.598330,0.121959,0.599105,0.131154,0.540939,0.134494,0.540558,0.125423,0.540939,0.134494,0.482705,0.136043
			 ,0.482705,0.126817,0.069619,0.119000,0.067998,0.123973,0.011995,0.102880,0.014839,0.098165,0.069619,0.119000,0.014839,0.098165
			 ,0.016980,0.094788,0.070821,0.115310,0.069619,0.119000,0.070821,0.115310,0.127348,0.131149,0.126351,0.135027,0.069619,0.119000
			 ,0.126351,0.135027,0.125003,0.140251,0.067998,0.123973,0.893571,0.111937,0.946728,0.091786,0.948533,0.094825,0.894669,0.115345
			 ,0.881234,0.069519,0.883536,0.078190,0.828505,0.092942,0.826359,0.083998,0.883536,0.078190,0.885938,0.086926,0.830732,0.101915
			 ,0.828505,0.092942,0.424933,0.123539,0.482705,0.124927,0.482705,0.126817,0.424854,0.125418,0.184515,0.148483,0.183405,0.153734
			 ,0.125003,0.140251,0.126351,0.135027,0.184515,0.148483,0.126351,0.135027,0.127348,0.131149,0.185333,0.144607,0.184515,0.148483
			 ,0.185333,0.144607,0.244109,0.155761,0.243436,0.159756,0.184515,0.148483,0.243436,0.159756,0.242529,0.165136,0.183405,0.153734
			 ,0.786825,0.176242,0.726762,0.187991,0.725441,0.180177,0.785196,0.168618,0.786825,0.176242,0.785196,0.168618,0.844268,0.154873
			 ,0.846261,0.162476,0.666106,0.196673,0.605177,0.203366,0.604512,0.195461,0.665125,0.188917,0.666106,0.196673,0.665125,0.188917
			 ,0.725441,0.180177,0.726762,0.187991,0.543980,0.206943,0.482700,0.208504,0.482701,0.200571,0.543653,0.199131,0.543980,0.206943
			 ,0.543653,0.199131,0.604512,0.195461,0.605177,0.203366,0.904369,0.145337,0.846261,0.162476,0.844268,0.154873,0.902035,0.138072
			 ,0.904369,0.145337,0.902035,0.138072,0.960289,0.117261,0.962645,0.125170,0.477987,0.523456,0.538187,0.523457,0.538425,0.524609
			 ,0.477767,0.524609,0.593459,0.499618,0.594118,0.500589,0.538425,0.524609,0.538187,0.523457,0.883536,0.078190,0.933159,0.063465
			 ,0.936068,0.070369,0.885938,0.086926,0.081956,0.078171,0.136964,0.092924,0.134737,0.101894,0.079553,0.086903,0.081956,0.078171
			 ,0.079553,0.086903,0.029444,0.070344,0.032353,0.063444,0.424472,0.134488,0.424085,0.143658,0.365531,0.140397,0.366312,0.131143
			 ,0.308406,0.124719,0.366312,0.131143,0.365531,0.140397,0.307252,0.133826,0.423997,0.145749,0.365354,0.142506,0.365531,0.140397
			 ,0.424085,0.143658,0.541413,0.145755,0.600062,0.142518,0.600715,0.150278,0.541727,0.153242,0.078997,0.088820,0.079553,0.086903
			 ,0.134737,0.101894,0.134236,0.103920,0.541413,0.145755,0.541727,0.153242,0.482704,0.155232,0.482704,0.147445,0.310351,0.109342
			 ,0.367635,0.115437,0.367246,0.120066,0.309783,0.113843,0.306990,0.135902,0.306051,0.143336,0.247527,0.135474,0.248819,0.127798
			 ,0.774201,0.116496,0.775734,0.123815,0.717907,0.135494,0.716615,0.127817,0.658433,0.135918,0.658171,0.133841,0.716265,0.125730
			 ,0.716615,0.127817,0.306990,0.135902,0.248819,0.127798,0.249170,0.125712,0.307252,0.133826,0.658433,0.135918,0.659372,0.143353
			 ,0.600715,0.150278,0.600062,0.142518,0.886495,0.088844,0.888575,0.095794,0.833107,0.111430,0.831233,0.103942,0.078997,0.088820
			 ,0.134236,0.103920,0.132362,0.111405,0.076916,0.095767,0.078997,0.088820,0.076916,0.095767,0.025059,0.077886,0.028584,0.072026
			 ,0.191249,0.116476,0.191676,0.114434,0.249170,0.125712,0.248819,0.127798,0.658433,0.135918,0.600062,0.142518,0.599885,0.140409
			 ,0.658171,0.133841,0.886495,0.088844,0.831233,0.103942,0.830732,0.101915,0.885938,0.086926,0.078997,0.088820,0.028584,0.072026
			 ,0.029444,0.070344,0.079553,0.086903,0.306990,0.135902,0.365354,0.142506,0.364701,0.150265,0.306051,0.143336,0.423997,0.145749
			 ,0.423682,0.153236,0.364701,0.150265,0.365354,0.142506,0.658433,0.135918,0.716615,0.127817,0.717907,0.135494,0.659372,0.143353
			 ,0.191249,0.116476,0.134236,0.103920,0.134737,0.101894,0.191676,0.114434,0.423997,0.145749,0.482704,0.147445,0.482704,0.155232
			 ,0.423682,0.153236,0.886495,0.088844,0.885938,0.086926,0.936068,0.070369,0.936928,0.072051,0.538664,0.080427,0.538225,0.070013
			 ,0.593562,0.065487,0.594508,0.076671,0.304269,0.157432,0.303842,0.160812,0.244718,0.152144,0.245303,0.148669,0.535924,0.220903
			 ,0.475715,0.220869,0.475477,0.219716,0.536144,0.219749,0.535924,0.220903,0.536144,0.219749,0.592538,0.242116,0.591891,0.243099
			 ,0.303842,0.160812,0.303378,0.164494,0.244109,0.155761,0.244718,0.152144,0.072936,0.108747,0.071920,0.111903,0.018785,0.091751
			 ,0.020563,0.088915,0.634439,0.285693,0.591891,0.243099,0.592538,0.242116,0.635410,0.285033,0.634439,0.285693,0.635410,0.285033
			 ,0.659466,0.340719,0.658314,0.340957,0.309783,0.113843,0.309547,0.115710,0.252250,0.107452,0.252563,0.105588,0.423084,0.167432
			 ,0.482703,0.168617,0.482703,0.172144,0.422941,0.170837,0.658272,0.401150,0.658314,0.340957,0.659466,0.340719,0.659425,0.401371
			 ,0.658272,0.401150,0.659425,0.401371,0.637048,0.457746,0.636065,0.457099,0.542466,0.170844,0.602131,0.167132,0.602439,0.170791
			 ,0.542622,0.174553,0.304269,0.157432,0.363578,0.163603,0.363282,0.167117,0.303842,0.160812,0.593459,0.499618,0.636065,0.457099
			 ,0.637048,0.457746,0.594118,0.500589,0.071920,0.111903,0.070821,0.115310,0.016980,0.094788,0.018785,0.091751,0.186096,0.140989
			 ,0.185333,0.144607,0.127348,0.131149,0.128247,0.127638,0.477987,0.523456,0.477767,0.524609,0.421379,0.502271,0.422025,0.501287
			 ,0.661153,0.157452,0.720131,0.148692,0.720716,0.152168,0.661580,0.160833,0.778654,0.137692,0.836361,0.124295,0.837221,0.127669
			 ,0.779353,0.141015,0.379478,0.458709,0.422025,0.501287,0.421379,0.502271,0.378507,0.459368,0.379478,0.458709,0.378507,0.459368
			 ,0.354450,0.403693,0.355602,0.403455,0.195418,0.096570,0.193559,0.105458,0.136964,0.092924,0.139111,0.083983,0.892555,0.108779
			 ,0.893571,0.111937,0.837221,0.127669,0.836361,0.124295,0.355638,0.343256,0.355602,0.403455,0.354450,0.403693,0.354485,0.343035
			 ,0.355638,0.343256,0.354485,0.343035,0.376854,0.286649,0.377837,0.287296,0.422941,0.170837,0.422785,0.174545,0.362974,0.170776
			 ,0.363282,0.167117,0.186796,0.137666,0.245303,0.148669,0.244718,0.152144,0.186096,0.140989,0.420440,0.244745,0.377837,0.287296
			 ,0.376854,0.286649,0.419781,0.243774,0.420440,0.244745,0.419781,0.243774,0.475477,0.219716,0.475715,0.220869,0.210319,0.570821
			 ,0.274851,0.545273,0.276089,0.547158,0.210740,0.573030,0.210319,0.570821,0.210740,0.573030,0.140452,0.573030,0.140909,0.570821
			 ,0.323929,0.496195,0.351495,0.432499,0.353703,0.432956,0.325788,0.497459,0.323929,0.496195,0.325788,0.497459,0.276089,0.547158
			 ,0.274851,0.545273,0.351493,0.363095,0.325942,0.298563,0.327827,0.297325,0.353702,0.362673,0.351493,0.363095,0.353702,0.362673
			 ,0.353703,0.432956,0.351495,0.432499,0.276862,0.249490,0.213162,0.221930,0.213620,0.219722,0.278125,0.247630,0.276862,0.249490
			 ,0.278125,0.247630,0.327827,0.297325,0.325942,0.298563,0.143756,0.221925,0.079225,0.247469,0.077987,0.245584,0.143335,0.219716
			 ,0.143756,0.221925,0.143335,0.219716,0.213620,0.219722,0.213162,0.221930,0.030148,0.296543,0.002582,0.360239,0.000374,0.359782
			 ,0.028289,0.295279,0.030148,0.296543,0.028289,0.295279,0.077987,0.245584,0.079225,0.247469,0.002582,0.429648,0.028132,0.494178
			 ,0.026247,0.495416,0.000374,0.430069,0.002582,0.429648,0.000374,0.430069,0.000374,0.359782,0.002582,0.360239,0.077211,0.543256
			 ,0.140909,0.570821,0.140452,0.573030,0.075948,0.545116,0.077211,0.543256,0.075948,0.545116,0.026247,0.495416,0.028132,0.494178
			 ,0.299313,0.196646,0.300294,0.188891,0.360897,0.195442,0.360231,0.203346,0.058343,0.153950,0.000585,0.134396,0.002868,0.125120
			 ,0.061119,0.145290,0.907144,0.154000,0.848635,0.171471,0.846261,0.162476,0.904369,0.145337,0.421028,0.216262,0.359444,0.212689
			 ,0.360231,0.203346,0.421421,0.206934,0.178621,0.176205,0.180251,0.168583,0.239992,0.180146,0.238669,0.187958,0.667278,0.205934
			 ,0.666106,0.196673,0.726762,0.187991,0.728327,0.197229,0.298139,0.205905,0.299313,0.196646,0.360231,0.203346,0.359444,0.212689
			 ,0.178621,0.176205,0.119204,0.162434,0.121198,0.154833,0.180251,0.168583,0.299313,0.196646,0.238669,0.187958,0.239992,0.180146
			 ,0.300294,0.188891,0.788776,0.185347,0.786825,0.176242,0.846261,0.162476,0.848635,0.171471,0.544372,0.216272,0.543980,0.206943
			 ,0.605177,0.203366,0.605963,0.212710,0.788776,0.185347,0.728327,0.197229,0.726762,0.187991,0.786825,0.176242,0.667278,0.205934
			 ,0.605963,0.212710,0.605177,0.203366,0.666106,0.196673,0.421421,0.206934,0.421750,0.199122,0.482701,0.200571,0.482700,0.208504
			 ,0.061119,0.145290,0.002868,0.125120,0.005224,0.117213,0.063454,0.138028,0.421421,0.206934,0.360231,0.203346,0.360897,0.195442
			 ,0.421750,0.199122,0.907144,0.154000,0.904369,0.145337,0.962645,0.125170,0.964927,0.134450,0.061119,0.145290,0.063454,0.138028
			 ,0.121198,0.154833,0.119204,0.162434,0.421028,0.216262,0.421421,0.206934,0.482700,0.208504,0.482699,0.217881,0.176669,0.185308
			 ,0.178621,0.176205,0.238669,0.187958,0.237104,0.197194,0.544372,0.216272,0.482699,0.217881,0.482700,0.208504,0.543980,0.206943
			 ,0.176669,0.185308,0.116830,0.171426,0.119204,0.162434,0.178621,0.176205,0.423633,0.154411,0.482704,0.156446,0.482703,0.167597
			 ,0.423126,0.166432,0.304395,0.156439,0.304269,0.157432,0.245303,0.148669,0.245472,0.147664,0.661153,0.157452,0.661580,0.160833
			 ,0.602131,0.167132,0.601836,0.163617,0.892259,0.107843,0.944500,0.088102,0.944950,0.088949,0.892555,0.108779,0.072936,0.108747
			 ,0.129107,0.124266,0.128247,0.127638,0.071920,0.111903,0.187002,0.136691,0.245472,0.147664,0.245303,0.148669,0.186796,0.137666
			 ,0.187002,0.136691,0.186796,0.137666,0.129107,0.124266,0.129356,0.123293,0.195801,0.094730,0.195418,0.096570,0.139111,0.083983
			 ,0.139552,0.082164,0.305904,0.144503,0.364599,0.151475,0.363663,0.162587,0.304395,0.156439,0.195801,0.094730,0.252563,0.105588
			 ,0.252250,0.107452,0.195418,0.096570,0.423084,0.167432,0.422941,0.170837,0.363282,0.167117,0.363578,0.163603,0.084258,0.069503
			 ,0.139111,0.083983,0.136964,0.092924,0.081956,0.078171,0.305904,0.144503,0.304395,0.156439,0.245472,0.147664,0.247327,0.136672
			 ,0.424472,0.134488,0.482705,0.136043,0.482704,0.145329,0.424085,0.143658,0.186796,0.137666,0.186096,0.140989,0.128247,0.127638
			 ,0.129107,0.124266,0.071920,0.111903,0.128247,0.127638,0.127348,0.131149,0.070821,0.115310,0.186096,0.140989,0.244718,0.152144
			 ,0.244109,0.155761,0.185333,0.144607,0.778654,0.137692,0.779353,0.141015,0.720716,0.152168,0.720131,0.148692,0.779353,0.141015
			 ,0.837221,0.127669,0.838120,0.131181,0.780116,0.144635,0.893571,0.111937,0.894669,0.115345,0.838120,0.131181,0.837221,0.127669
			 ,0.535924,0.220903,0.591891,0.243099,0.538187,0.523457,0.535924,0.220903,0.538187,0.523457,0.475715,0.220869,0.634439,0.285693
			 ,0.658314,0.340957,0.538187,0.523457,0.634439,0.285693,0.538187,0.523457,0.591891,0.243099,0.658272,0.401150,0.636065,0.457099
			 ,0.538187,0.523457,0.658272,0.401150,0.538187,0.523457,0.658314,0.340957,0.593459,0.499618,0.538187,0.523457,0.636065,0.457099
			 ,0.477987,0.523456,0.422025,0.501287,0.538187,0.523457,0.379478,0.458709,0.355602,0.403455,0.538187,0.523457,0.379478,0.458709
			 ,0.538187,0.523457,0.422025,0.501287,0.355638,0.343256,0.377837,0.287296,0.538187,0.523457,0.355638,0.343256,0.538187,0.523457
			 ,0.355602,0.403455,0.420440,0.244745,0.475715,0.220869,0.538187,0.523457,0.420440,0.244745,0.538187,0.523457,0.377837,0.287296
			 ,0.657018,0.124733,0.714719,0.116570,0.716265,0.125730,0.658171,0.133841,0.424854,0.125418,0.424472,0.134488,0.366312,0.131143
			 ,0.367087,0.121949,0.655641,0.113855,0.712873,0.105600,0.713185,0.107465,0.655877,0.115722,0.540939,0.134494,0.599105,0.131154
			 ,0.599885,0.140409,0.541325,0.143664,0.309783,0.113843,0.367246,0.120066,0.367087,0.121949,0.309547,0.115710,0.769649,0.094743
			 ,0.825918,0.082179,0.826359,0.083998,0.770032,0.096583,0.540479,0.123544,0.598172,0.120076,0.598330,0.121959,0.540558,0.125423
			 ,0.771892,0.105474,0.828505,0.092942,0.830732,0.101915,0.773774,0.114453,0.084258,0.069503,0.081956,0.078171,0.032353,0.063444
			 ,0.033843,0.056176,0.084723,0.067765,0.084258,0.069503,0.033843,0.056176,0.034036,0.054496,0.426751,0.080423,0.427190,0.070010
			 ,0.482707,0.070162,0.482707,0.081382,0.204633,0.052243,0.149621,0.039517,0.152262,0.028418,0.206780,0.041959,0.538664,0.080427
			 ,0.482707,0.081382,0.482707,0.070162,0.538225,0.070013,0.426751,0.080423,0.370910,0.076666,0.371856,0.065483,0.427190,0.070010
			 ,0.315215,0.070995,0.259821,0.062548,0.261707,0.051456,0.316530,0.060647,0.310351,0.109342,0.312414,0.093057,0.369024,0.098983
			 ,0.367635,0.115437,0.096641,0.015695,0.037697,0.001456,0.038152,0.000379,0.096881,0.014700,0.538225,0.070013,0.538184,0.069044
			 ,0.593473,0.064432,0.593562,0.065487,0.310351,0.109342,0.253332,0.101004,0.256079,0.084693,0.312414,0.093057,0.206780,0.041959
			 ,0.206982,0.041003,0.261886,0.050410,0.261707,0.051456,0.875995,0.047929,0.871242,0.026182,0.928947,0.013600,0.930385,0.035648
			 ,0.539599,0.102624,0.538664,0.080427,0.594508,0.076671,0.596394,0.098990,0.648894,0.060651,0.593562,0.065487,0.593473,0.064432
			 ,0.648772,0.059688,0.868852,0.015689,0.813208,0.028412,0.812959,0.027361,0.868612,0.014693,0.089497,0.047921,0.094251,0.026184
			 ,0.149621,0.039517,0.144439,0.061556,0.540289,0.119013,0.482706,0.120282,0.482706,0.103773,0.539599,0.102624,0.425124,0.119008
			 ,0.367635,0.115437,0.369024,0.098983,0.425815,0.102620,0.879675,0.063543,0.875995,0.047929,0.930385,0.035648,0.931236,0.050352
			 ,0.204633,0.052243,0.206780,0.041959,0.261707,0.051456,0.259821,0.062548,0.539599,0.102624,0.482706,0.103773,0.482707,0.081382
			 ,0.538664,0.080427,0.871242,0.026182,0.815849,0.039515,0.813208,0.028412,0.868852,0.015689,0.765377,0.074169,0.760817,0.052243
			 ,0.815849,0.039515,0.821032,0.061563,0.196725,0.090290,0.200074,0.074162,0.256079,0.084693,0.253332,0.101004,0.879675,0.063543
			 ,0.824837,0.077692,0.821032,0.061563,0.875995,0.047929,0.655073,0.109354,0.653010,0.093066,0.709356,0.084701,0.712103,0.101016
			 ,0.760817,0.052243,0.758669,0.041955,0.813208,0.028412,0.815849,0.039515,0.196725,0.090290,0.140633,0.077680,0.144439,0.061556
			 ,0.200074,0.074162,0.316530,0.060647,0.316652,0.059684,0.371946,0.064428,0.371856,0.065483,0.312414,0.093057,0.256079,0.084693
			 ,0.259821,0.062548,0.315215,0.070995,0.427190,0.070010,0.371856,0.065483,0.371946,0.064428,0.427231,0.069042,0.653010,0.093066
			 ,0.596394,0.098990,0.594508,0.076671,0.650209,0.071001,0.200074,0.074162,0.204633,0.052243,0.259821,0.062548,0.256079,0.084693
			 ,0.085816,0.063530,0.089497,0.047921,0.144439,0.061556,0.140633,0.077680,0.427190,0.070010,0.427231,0.069042,0.482707,0.069104
			 ,0.482707,0.070162,0.768726,0.090302,0.712103,0.101016,0.709356,0.084701,0.765377,0.074169,0.765377,0.074169,0.709356,0.084701
			 ,0.705613,0.062550,0.760817,0.052243,0.768726,0.090302,0.765377,0.074169,0.821032,0.061563,0.824837,0.077692,0.760817,0.052243
			 ,0.705613,0.062550,0.703726,0.051456,0.758669,0.041955,0.540289,0.119013,0.539599,0.102624,0.596394,0.098990,0.597782,0.115446
			 ,0.875995,0.047929,0.821032,0.061563,0.815849,0.039515,0.871242,0.026182,0.425815,0.102620,0.369024,0.098983,0.370910,0.076666
			 ,0.426751,0.080423,0.200074,0.074162,0.144439,0.061556,0.149621,0.039517,0.204633,0.052243,0.653010,0.093066,0.650209,0.071001
			 ,0.705613,0.062550,0.709356,0.084701,0.425124,0.119008,0.425815,0.102620,0.482706,0.103773,0.482706,0.120282,0.315215,0.070995
			 ,0.316530,0.060647,0.371856,0.065483,0.370910,0.076666,0.094251,0.026184,0.036570,0.013600,0.037697,0.001456,0.096641,0.015695
			 ,0.425815,0.102620,0.426751,0.080423,0.482707,0.081382,0.482706,0.103773,0.650209,0.071001,0.594508,0.076671,0.593562,0.065487
			 ,0.648894,0.060651,0.758669,0.041955,0.703726,0.051456,0.703547,0.050410,0.758467,0.040998,0.871242,0.026182,0.868852,0.015689
			 ,0.927821,0.001451,0.928947,0.013600,0.312414,0.093057,0.315215,0.070995,0.370910,0.076666,0.369024,0.098983,0.089497,0.047921
			 ,0.035130,0.035639,0.036570,0.013600,0.094251,0.026184,0.094251,0.026184,0.096641,0.015695,0.152262,0.028418,0.149621,0.039517
			 ,0.758669,0.041955,0.758467,0.040998,0.812959,0.027361,0.813208,0.028412,0.538225,0.070013,0.482707,0.070162,0.482707,0.069104
			 ,0.538184,0.069044,0.650209,0.071001,0.648894,0.060651,0.703726,0.051456,0.705613,0.062550,0.096641,0.015695,0.096881,0.014700
			 ,0.152511,0.027367,0.152262,0.028418,0.085816,0.063530,0.034277,0.050336,0.035130,0.035639,0.089497,0.047921,0.316530,0.060647
			 ,0.261707,0.051456,0.261886,0.050410,0.316652,0.059684,0.786558,0.547522,0.788398,0.550115,0.785066,0.548972,0.934298,0.553928
			 ,0.931809,0.554688,0.933588,0.552616,0.832242,0.569819,0.832908,0.568295,0.833938,0.570087,0.890497,0.570083,0.891505,0.568295
			 ,0.892114,0.569723,0.571250,0.768849,0.573090,0.771442,0.569758,0.770299,0.718991,0.775256,0.716501,0.776016,0.718281,0.773945
			 ,0.616935,0.791146,0.617601,0.789622,0.618630,0.791414,0.675192,0.791410,0.676199,0.789622,0.676809,0.791049,0.355942,0.547526
			 ,0.357782,0.550119,0.354450,0.548976,0.503683,0.553932,0.501193,0.554693,0.502972,0.552621,0.401626,0.569822,0.402292,0.568298
			 ,0.403321,0.570090,0.459884,0.570086,0.460891,0.568298,0.461501,0.569725,0.140635,0.595945,0.142475,0.598538,0.139143,0.597395
			 ,0.288376,0.602352,0.285886,0.603112,0.287665,0.601041,0.186319,0.618242,0.186985,0.616718,0.188015,0.618510,0.244577,0.618506
			 ,0.245585,0.616718,0.246194,0.618145,0.571250,0.547522,0.573090,0.550115,0.569758,0.548972,0.718992,0.553932,0.716502,0.554692
			 ,0.718281,0.552621,0.616936,0.569821,0.617601,0.568297,0.618631,0.570089,0.675192,0.570085,0.676200,0.568297,0.676809,0.569724
			 ,0.661706,0.326198,0.663546,0.328792,0.660213,0.327649,0.809447,0.332606,0.806957,0.333367,0.808736,0.331295,0.707391,0.348496
			 ,0.708056,0.346972,0.709086,0.348764,0.765647,0.348760,0.766654,0.346972,0.767264,0.348399,0.355943,0.768847,0.357783,0.771440
			 ,0.354450,0.770297,0.503683,0.775256,0.501193,0.776016,0.502972,0.773945,0.401627,0.791145,0.402293,0.789621,0.403323,0.791413
			 ,0.459884,0.791409,0.460891,0.789621,0.461501,0.791048,0.786558,0.768850,0.788398,0.771443,0.785066,0.770300,0.934299,0.775254
			 ,0.931809,0.776015,0.933588,0.773943,0.832242,0.791146,0.832908,0.789622,0.833938,0.791414,0.890500,0.791409,0.891507,0.789621
			 ,0.892117,0.791049,0.851655,0.742924,0.785066,0.548972,0.788398,0.550115,0.855556,0.742440,0.880183,0.741609,0.931809,0.554688
			 ,0.934298,0.553928,0.883926,0.741819,0.933588,0.552616,0.999626,0.554648,0.999411,0.555968,0.934298,0.553928,0.891505,0.568295
			 ,0.933588,0.552616,0.931809,0.554688,0.892114,0.569723,0.832242,0.569819,0.788398,0.550115,0.786558,0.547522,0.832908,0.568295
			 ,0.859464,0.742761,0.832242,0.569819,0.833938,0.570087,0.862809,0.743096,0.873063,0.742722,0.890497,0.570083,0.892114,0.569723
			 ,0.876344,0.742170,0.832908,0.568295,0.891505,0.568295,0.890497,0.570083,0.833938,0.570087,0.636348,0.964250,0.569758,0.770299
			 ,0.573090,0.771442,0.640248,0.963766,0.664875,0.962935,0.716501,0.776016,0.718991,0.775256,0.668619,0.963145,0.718281,0.773945
			 ,0.784318,0.775977,0.784102,0.777296,0.718991,0.775256,0.676199,0.789622,0.718281,0.773945,0.716501,0.776016,0.676809,0.791049
			 ,0.616935,0.791146,0.573090,0.771442,0.571250,0.768849,0.617601,0.789622,0.644157,0.964087,0.616935,0.791146,0.618630,0.791414
			 ,0.647501,0.964422,0.657755,0.964048,0.675192,0.791410,0.676809,0.791049,0.661037,0.963495,0.617601,0.789622,0.676199,0.789622
			 ,0.675192,0.791410,0.618630,0.791414,0.421041,0.742925,0.354450,0.548976,0.357782,0.550119,0.424941,0.742441,0.449567,0.741611
			 ,0.501193,0.554693,0.503683,0.553932,0.453311,0.741821,0.502972,0.552621,0.569010,0.554653,0.568795,0.555973,0.503683,0.553932
			 ,0.460891,0.568298,0.502972,0.552621,0.501193,0.554693,0.461501,0.569725,0.401626,0.569822,0.357782,0.550119,0.355942,0.547526
			 ,0.402292,0.568298,0.428850,0.742763,0.401626,0.569822,0.403321,0.570090,0.432194,0.743098,0.442447,0.742724,0.459884,0.570086
			 ,0.461501,0.569725,0.445729,0.742171,0.402292,0.568298,0.460891,0.568298,0.459884,0.570086,0.403321,0.570090,0.205733,0.791346
			 ,0.139143,0.597395,0.142475,0.598538,0.209634,0.790862,0.234261,0.790032,0.285886,0.603112,0.288376,0.602352,0.238004,0.790241
			 ,0.287665,0.601041,0.353703,0.603073,0.353487,0.604392,0.288376,0.602352,0.245585,0.616718,0.287665,0.601041,0.285886,0.603112
			 ,0.246194,0.618145,0.186319,0.618242,0.142475,0.598538,0.140635,0.595945,0.186985,0.616718,0.213542,0.791184,0.186319,0.618242
			 ,0.188015,0.618510,0.216887,0.791518,0.227140,0.791144,0.244577,0.618506,0.246194,0.618145,0.230422,0.790592,0.186985,0.616718
			 ,0.245585,0.616718,0.244577,0.618506,0.188015,0.618510,0.636346,0.742925,0.569758,0.548972,0.573090,0.550115,0.640246,0.742441
			 ,0.664873,0.741611,0.716502,0.554692,0.718992,0.553932,0.668617,0.741820,0.718281,0.552621,0.784318,0.554654,0.784102,0.555973
			 ,0.718992,0.553932,0.676200,0.568297,0.718281,0.552621,0.716502,0.554692,0.676809,0.569724,0.616936,0.569821,0.573090,0.550115
			 ,0.571250,0.547522,0.617601,0.568297,0.644155,0.742763,0.616936,0.569821,0.618631,0.570089,0.647499,0.743097,0.657753,0.742723
			 ,0.675192,0.570085,0.676809,0.569724,0.661035,0.742171,0.617601,0.568297,0.676200,0.568297,0.675192,0.570085,0.618631,0.570089
			 ,0.726803,0.521601,0.660213,0.327649,0.663546,0.328792,0.730704,0.521117,0.755330,0.520286,0.806957,0.333367,0.809447,0.332606
			 ,0.759074,0.520496,0.808736,0.331295,0.874774,0.333327,0.874558,0.334647,0.809447,0.332606,0.766654,0.346972,0.808736,0.331295
			 ,0.806957,0.333367,0.767264,0.348399,0.707391,0.348496,0.663546,0.328792,0.661706,0.326198,0.708056,0.346972,0.734612,0.521438
			 ,0.707391,0.348496,0.709086,0.348764,0.737956,0.521773,0.748210,0.521399,0.765647,0.348760,0.767264,0.348399,0.751492,0.520846
			 ,0.708056,0.346972,0.766654,0.346972,0.765647,0.348760,0.709086,0.348764,0.421039,0.964249,0.354450,0.770297,0.357783,0.771440
			 ,0.424940,0.963765,0.449567,0.962935,0.501193,0.776016,0.503683,0.775256,0.453310,0.963145,0.502972,0.773945,0.569011,0.775976
			 ,0.568795,0.777296,0.503683,0.775256,0.460891,0.789621,0.502972,0.773945,0.501193,0.776016,0.461501,0.791048,0.401627,0.791145
			 ,0.357783,0.771440,0.355943,0.768847,0.402293,0.789621,0.428848,0.964087,0.401627,0.791145,0.403323,0.791413,0.432193,0.964422
			 ,0.442447,0.964048,0.459884,0.791409,0.461501,0.791048,0.445728,0.963495,0.402293,0.789621,0.460891,0.789621,0.459884,0.791409
			 ,0.403323,0.791413,0.851658,0.964250,0.785066,0.770300,0.788398,0.771443,0.855559,0.963765,0.880186,0.962935,0.931809,0.776015
			 ,0.934299,0.775254,0.883930,0.963144,0.933588,0.773943,0.999626,0.775974,0.999410,0.777294,0.934299,0.775254,0.891507,0.789621
			 ,0.933588,0.773943,0.931809,0.776015,0.892117,0.791049,0.832242,0.791146,0.788398,0.771443,0.786558,0.768850,0.832908,0.789622
			 ,0.859467,0.964087,0.832242,0.791146,0.833938,0.791414,0.862812,0.964422,0.873066,0.964048,0.890500,0.791409,0.892117,0.791049
			 ,0.876347,0.963495,0.832908,0.789622,0.891507,0.789621,0.890500,0.791409,0.833938,0.791414,0.351493,0.363095,0.351495,0.432499
			 ,0.213162,0.221930,0.002582,0.429648,0.002582,0.360239,0.213162,0.221930,0.274851,0.545273,0.210319,0.570821,0.213162,0.221930
			 ,0.079225,0.247469,0.143756,0.221925,0.213162,0.221930,0.323929,0.496195,0.274851,0.545273,0.213162,0.221930,0.030148,0.296543
			 ,0.079225,0.247469,0.213162,0.221930,0.140909,0.570821,0.077211,0.543256,0.213162,0.221930,0.210319,0.570821,0.140909,0.570821
			 ,0.213162,0.221930,0.325942,0.298563,0.351493,0.363095,0.213162,0.221930,0.028132,0.494178,0.002582,0.429648,0.213162,0.221930
			 ,0.276862,0.249490,0.325942,0.298563,0.213162,0.221930,0.077211,0.543256,0.028132,0.494178,0.213162,0.221930,0.351495,0.432499
			 ,0.323929,0.496195,0.213162,0.221930,0.002582,0.360239,0.030148,0.296543,0.213162,0.221930
			UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54
				,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109
				,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164
				,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219
				,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274
				,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329
				,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384
				,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439
				,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494
				,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549
				,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604
				,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659
				,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714
				,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769
				,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824
				,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879
				,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934
				,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989
				,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044
				,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099
				,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154
				,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209
				,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264
				,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319
				,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374
				,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429
				,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484
				,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539
				,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594
				,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649
				,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704
				,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759
				,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814
				,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869
				,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924
				,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979
				,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034
				,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089
				,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144
				,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199
				,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254
				,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309
				,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364
				,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419
				,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474
				,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529
				,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584
				,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639
				,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694
				,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749
				,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804
				,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859
				,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914
				,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969
				,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024
				,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079
				,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134
				,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189
				,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244
				,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299
				,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354
				,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409
				,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464
				,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519
				,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539
		}
		LayerElementTexture: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
			 ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
		}
		LayerElementUV: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.641065,0.070800,0.613172,0.070800,0.613172,0.200387,0.641065,0.200387,0.562325,0.505472,0.573268,0.505472,0.573268,0.494528
			 ,0.562325,0.494528,0.556319,0.494528,0.545376,0.494528,0.545376,0.505472,0.556319,0.505472,0.573268,0.477579,0.562325,0.477579
			 ,0.562325,0.488522,0.573268,0.488522,0.556319,0.477579,0.545376,0.477579,0.545376,0.488522,0.556319,0.488522,0.607166,0.494528
			 ,0.596223,0.494528,0.596223,0.505472,0.607166,0.505472,0.590217,0.494528,0.579274,0.494528,0.579274,0.505472,0.590217,0.505472
			 ,0.607166,0.477579,0.596223,0.477579,0.596223,0.488522,0.607166,0.488522,0.590217,0.477579,0.579274,0.477579,0.579274,0.488522
			 ,0.590217,0.488522,0.573268,0.528427,0.562325,0.528427,0.562325,0.539370,0.573268,0.539370,0.556319,0.528427,0.545376,0.528427
			 ,0.545376,0.539370,0.556319,0.539370,0.573268,0.511478,0.562325,0.511478,0.562325,0.522421,0.573268,0.522421,0.556319,0.511478
			 ,0.545376,0.511478,0.545376,0.522421,0.556319,0.522421,0.607166,0.528427,0.596223,0.528427,0.596223,0.539370,0.607166,0.539370
			 ,0.590217,0.528427,0.579274,0.528427,0.579274,0.539370,0.590217,0.539370,0.607166,0.511478,0.596223,0.511478,0.596223,0.522421
			 ,0.607166,0.522421,0.590217,0.511478,0.579274,0.511478,0.579274,0.522421,0.590217,0.522421,0.505472,0.562325,0.494528,0.562325
			 ,0.494528,0.573268,0.505472,0.573268,0.488522,0.562325,0.477579,0.562325,0.477579,0.573268,0.488522,0.573268,0.505472,0.545376
			 ,0.494528,0.545376,0.494528,0.556319,0.505472,0.556319,0.488522,0.545376,0.477579,0.545376,0.477579,0.556319,0.488522,0.556319
			 ,0.539370,0.562325,0.528427,0.562325,0.528427,0.573268,0.539370,0.573268,0.522421,0.562325,0.511478,0.562325,0.511478,0.573268
			 ,0.522421,0.573268,0.539370,0.545376,0.528427,0.545376,0.528427,0.556319,0.539370,0.556319,0.522421,0.545376,0.511478,0.545376
			 ,0.511478,0.556319,0.522421,0.556319,0.505472,0.596223,0.494528,0.596223,0.494528,0.607166,0.505472,0.607166,0.488522,0.596223
			 ,0.477579,0.596223,0.477579,0.607166,0.488522,0.607166,0.505472,0.579274,0.494528,0.579274,0.494528,0.590217,0.505472,0.590217
			 ,0.488522,0.579274,0.477579,0.579274,0.477579,0.590217,0.488522,0.590217,0.667023,0.268183,0.674963,0.268183,0.674963,0.260243
			 ,0.624116,0.234285,0.624116,0.226345,0.616175,0.234285,0.658014,0.251234,0.658014,0.243294,0.650074,0.251234,0.624116,0.260243
			 ,0.624116,0.268183,0.616175,0.268183,0.633125,0.251234,0.641065,0.243294,0.641065,0.251234,0.641065,0.260243,0.633125,0.268183
			 ,0.641065,0.268183,0.344989,0.522421,0.352929,0.514481,0.352929,0.522421,0.658014,0.209396,0.658014,0.217336,0.650074,0.217336
			 ,0.624116,0.243294,0.624116,0.251234,0.616175,0.251234,0.328040,0.488522,0.335980,0.480582,0.335980,0.488522,0.285133,0.514481
			 ,0.285133,0.522421,0.277192,0.522421,0.369878,0.488522,0.369878,0.480582,0.361938,0.488522,0.463633,0.539370,0.471573,0.531430
			 ,0.471573,0.539370,0.647071,0.248231,0.655011,0.240291,0.647071,0.240291,0.539370,0.596223,0.528427,0.596223,0.528427,0.607166
			 ,0.539370,0.607166,0.403777,0.505472,0.403777,0.497531,0.395837,0.505472,0.522421,0.596223,0.511478,0.596223,0.511478,0.607166
			 ,0.522421,0.607166,0.539370,0.579274,0.528427,0.579274,0.528427,0.590217,0.539370,0.590217,0.658014,0.226345,0.650074,0.234285
			 ,0.658014,0.234285,0.522421,0.579274,0.511478,0.579274,0.511478,0.590217,0.522421,0.590217,0.403777,0.641065,0.403777,0.613172
			 ,0.274189,0.613172,0.274189,0.641065,0.403777,0.545376,0.341986,0.545376,0.341986,0.607166,0.403777,0.607166,0.607166,0.206393
			 ,0.579274,0.206393,0.579274,0.335980,0.607166,0.335980,0.409783,0.641065,0.539370,0.641065,0.539370,0.613172,0.409783,0.613172
			 ,0.607166,0.070800,0.579274,0.070800,0.579274,0.200387,0.607166,0.200387,0.573268,0.562325,0.562325,0.562325,0.562325,0.573268
			 ,0.573268,0.573268,0.556319,0.562325,0.545376,0.562325,0.545376,0.573268,0.556319,0.573268,0.573268,0.545376,0.562325,0.545376
			 ,0.562325,0.556319,0.573268,0.556319,0.556319,0.545376,0.545376,0.545376,0.545376,0.556319,0.556319,0.556319,0.607166,0.562325
			 ,0.596223,0.562325,0.596223,0.573268,0.607166,0.573268,0.590217,0.562325,0.579274,0.562325,0.579274,0.573268,0.590217,0.573268
			 ,0.607166,0.545376,0.596223,0.545376,0.596223,0.556319,0.607166,0.556319,0.590217,0.545376,0.579274,0.545376,0.579274,0.556319
			 ,0.590217,0.556319,0.573268,0.596223,0.562325,0.596223,0.562325,0.607166,0.573268,0.607166,0.556319,0.596223,0.545376,0.596223
			 ,0.545376,0.607166,0.556319,0.607166,0.573268,0.579274,0.562325,0.579274,0.562325,0.590217,0.573268,0.590217,0.556319,0.579274
			 ,0.545376,0.579274,0.545376,0.590217,0.556319,0.590217,0.607166,0.596223,0.596223,0.596223,0.596223,0.607166,0.607166,0.607166
			 ,0.590217,0.596223,0.579274,0.596223,0.579274,0.607166,0.590217,0.607166,0.607166,0.579274,0.596223,0.579274,0.596223,0.590217
			 ,0.607166,0.590217,0.590217,0.579274,0.579274,0.579274,0.579274,0.590217,0.590217,0.590217,0.234285,0.562325,0.223342,0.562325
			 ,0.223342,0.573268,0.234285,0.573268,0.217336,0.562325,0.206393,0.562325,0.206393,0.573268,0.217336,0.573268,0.234285,0.545376
			 ,0.223342,0.545376,0.223342,0.556319,0.234285,0.556319,0.217336,0.545376,0.206393,0.545376,0.206393,0.556319,0.217336,0.556319
			 ,0.268183,0.562325,0.257240,0.562325,0.257240,0.573268,0.268183,0.573268,0.251234,0.562325,0.240291,0.562325,0.240291,0.573268
			 ,0.251234,0.573268,0.268183,0.545376,0.257240,0.545376,0.257240,0.556319,0.268183,0.556319,0.251234,0.545376,0.240291,0.545376
			 ,0.240291,0.556319,0.251234,0.556319,0.234285,0.596223,0.223342,0.596223,0.223342,0.607166,0.234285,0.607166,0.217336,0.596223
			 ,0.206393,0.596223,0.206393,0.607166,0.217336,0.607166,0.234285,0.579274,0.223342,0.579274,0.223342,0.590217,0.234285,0.590217
			 ,0.217336,0.579274,0.206393,0.579274,0.206393,0.590217,0.217336,0.590217,0.386827,0.497531,0.378887,0.505472,0.386827,0.505472
			 ,0.471573,0.505472,0.471573,0.497531,0.463633,0.505472,0.674963,0.251234,0.674963,0.243294,0.667023,0.251234,0.454624,0.497531
			 ,0.454624,0.505472,0.446684,0.505472,0.671960,0.240291,0.664020,0.248231,0.664020,0.240291,0.454624,0.480582,0.446684,0.488522
			 ,0.454624,0.488522,0.429735,0.539370,0.437675,0.531430,0.437675,0.539370,0.471573,0.514481,0.471573,0.522421,0.463633,0.522421
			 ,0.624116,0.209396,0.624116,0.217336,0.616175,0.217336,0.412786,0.505472,0.420726,0.497531,0.420726,0.505472,0.658014,0.260243
			 ,0.658014,0.268183,0.650074,0.268183,0.386827,0.522421,0.386827,0.514481,0.378887,0.522421,0.667023,0.217336,0.674963,0.209396
			 ,0.674963,0.217336,0.647071,0.265180,0.655011,0.257240,0.647071,0.257240,0.268183,0.596223,0.257240,0.596223,0.257240,0.607166
			 ,0.268183,0.607166,0.664020,0.257240,0.664020,0.265180,0.671960,0.257240,0.251234,0.596223,0.240291,0.596223,0.240291,0.607166
			 ,0.251234,0.607166,0.268183,0.579274,0.257240,0.579274,0.257240,0.590217,0.268183,0.590217,0.613172,0.248231,0.621113,0.240291
			 ,0.613172,0.240291,0.251234,0.579274,0.240291,0.579274,0.240291,0.590217,0.251234,0.590217,0.268183,0.641065,0.268183,0.613172
			 ,0.138596,0.613172,0.138596,0.641065,0.200387,0.545376,0.138596,0.545376,0.138596,0.607166,0.200387,0.607166,0.607166,0.341986
			 ,0.579274,0.341986,0.579274,0.471573,0.607166,0.471573,0.003003,0.607166,0.132590,0.607166,0.132590,0.579274,0.003003,0.579274
			 ,0.573268,0.070800,0.545376,0.070800,0.545376,0.200387,0.573268,0.200387,0.302082,0.562325,0.291139,0.562325,0.291139,0.573268
			 ,0.302082,0.573268,0.285133,0.562325,0.274189,0.562325,0.274189,0.573268,0.285133,0.573268,0.302082,0.545376,0.291139,0.545376
			 ,0.291139,0.556319,0.302082,0.556319,0.285133,0.545376,0.274189,0.545376,0.274189,0.556319,0.285133,0.556319,0.335980,0.562325
			 ,0.325037,0.562325,0.325037,0.573268,0.335980,0.573268,0.319031,0.562325,0.308088,0.562325,0.308088,0.573268,0.319031,0.573268
			 ,0.335980,0.545376,0.325037,0.545376,0.325037,0.556319,0.335980,0.556319,0.319031,0.545376,0.308088,0.545376,0.308088,0.556319
			 ,0.319031,0.556319,0.302082,0.596223,0.291139,0.596223,0.291139,0.607166,0.302082,0.607166,0.285133,0.596223,0.274189,0.596223
			 ,0.274189,0.607166,0.285133,0.607166,0.302082,0.579274,0.291139,0.579274,0.291139,0.590217,0.302082,0.590217,0.285133,0.579274
			 ,0.274189,0.579274,0.274189,0.590217,0.285133,0.590217,0.335980,0.596223,0.325037,0.596223,0.325037,0.607166,0.335980,0.607166
			 ,0.319031,0.596223,0.308088,0.596223,0.308088,0.607166,0.319031,0.607166,0.335980,0.579274,0.325037,0.579274,0.325037,0.590217
			 ,0.335980,0.590217,0.319031,0.579274,0.308088,0.579274,0.308088,0.590217,0.319031,0.590217,0.030895,0.528427,0.019952,0.528427
			 ,0.019952,0.539370,0.030895,0.539370,0.013946,0.528427,0.003003,0.528427,0.003003,0.539370,0.013946,0.539370,0.030895,0.511478
			 ,0.019952,0.511478,0.019952,0.522421,0.030895,0.522421,0.013946,0.511478,0.003003,0.511478,0.003003,0.522421,0.013946,0.522421
			 ,0.064794,0.528427,0.053850,0.528427,0.053850,0.539370,0.064794,0.539370,0.047844,0.528427,0.036901,0.528427,0.036901,0.539370
			 ,0.047844,0.539370,0.064794,0.511478,0.053850,0.511478,0.053850,0.522421,0.064794,0.522421,0.047844,0.511478,0.036901,0.511478
			 ,0.036901,0.522421,0.047844,0.522421,0.030895,0.562325,0.019952,0.562325,0.019952,0.573268,0.030895,0.573268,0.013946,0.562325
			 ,0.003003,0.562325,0.003003,0.573268,0.013946,0.573268,0.030895,0.545376,0.019952,0.545376,0.019952,0.556319,0.030895,0.556319
			 ,0.013946,0.545376,0.003003,0.545376,0.003003,0.556319,0.013946,0.556319,0.454624,0.531430,0.446684,0.539370,0.454624,0.539370
			 ,0.454624,0.522421,0.454624,0.514481,0.446684,0.522421,0.630122,0.240291,0.630122,0.248231,0.638062,0.240291,0.613172,0.265180
			 ,0.613172,0.257240,0.621113,0.257240,0.633125,0.234285,0.641065,0.226345,0.641065,0.234285,0.630122,0.265180,0.638062,0.257240
			 ,0.630122,0.257240,0.429735,0.488522,0.437675,0.480582,0.437675,0.488522,0.647071,0.214333,0.647071,0.206393,0.655011,0.206393
			 ,0.420726,0.531430,0.420726,0.539370,0.412786,0.539370,0.429735,0.522421,0.437675,0.514481,0.437675,0.522421,0.352929,0.480582
			 ,0.352929,0.488522,0.344989,0.488522,0.664020,0.206393,0.664020,0.214333,0.671960,0.206393,0.344989,0.505472,0.352929,0.497531
			 ,0.352929,0.505472,0.420726,0.514481,0.412786,0.522421,0.420726,0.522421,0.064794,0.562325,0.053850,0.562325,0.053850,0.573268
			 ,0.064794,0.573268,0.386827,0.539370,0.386827,0.531430,0.378887,0.539370,0.047844,0.562325,0.036901,0.562325,0.036901,0.573268
			 ,0.047844,0.573268,0.064794,0.545376,0.053850,0.545376,0.053850,0.556319,0.064794,0.556319,0.647071,0.231282,0.655011,0.223342
			 ,0.647071,0.223342,0.047844,0.545376,0.036901,0.545376,0.036901,0.556319,0.047844,0.556319,0.268183,0.471573,0.268183,0.443681
			 ,0.138596,0.443681,0.138596,0.471573,0.335980,0.070800,0.274189,0.070800,0.274189,0.132590,0.335980,0.132590,0.369878,0.003003
			 ,0.341986,0.003003,0.341986,0.132590,0.369878,0.132590,0.138596,0.369878,0.268183,0.369878,0.268183,0.341986,0.138596,0.341986
			 ,0.302082,0.274189,0.274189,0.274189,0.274189,0.403777,0.302082,0.403777,0.098692,0.528427,0.087749,0.528427,0.087749,0.539370
			 ,0.098692,0.539370,0.081743,0.528427,0.070800,0.528427,0.070800,0.539370,0.081743,0.539370,0.098692,0.511478,0.087749,0.511478
			 ,0.087749,0.522421,0.098692,0.522421,0.081743,0.511478,0.070800,0.511478,0.070800,0.522421,0.081743,0.522421,0.132590,0.528427
			 ,0.121647,0.528427,0.121647,0.539370,0.132590,0.539370,0.115641,0.528427,0.104698,0.528427,0.104698,0.539370,0.115641,0.539370
			 ,0.132590,0.511478,0.121647,0.511478,0.121647,0.522421,0.132590,0.522421,0.115641,0.511478,0.104698,0.511478,0.104698,0.522421
			 ,0.115641,0.522421,0.098692,0.562325,0.087749,0.562325,0.087749,0.573268,0.098692,0.573268,0.081743,0.562325,0.070800,0.562325
			 ,0.070800,0.573268,0.081743,0.573268,0.098692,0.545376,0.087749,0.545376,0.087749,0.556319,0.098692,0.556319,0.081743,0.545376
			 ,0.070800,0.545376,0.070800,0.556319,0.081743,0.556319,0.132590,0.562325,0.121647,0.562325,0.121647,0.573268,0.132590,0.573268
			 ,0.115641,0.562325,0.104698,0.562325,0.104698,0.573268,0.115641,0.573268,0.132590,0.545376,0.121647,0.545376,0.121647,0.556319
			 ,0.132590,0.556319,0.115641,0.545376,0.104698,0.545376,0.104698,0.556319,0.115641,0.556319,0.539370,0.019952,0.528427,0.019952
			 ,0.528427,0.030895,0.539370,0.030895,0.522421,0.019952,0.511478,0.019952,0.511478,0.030895,0.522421,0.030895,0.539370,0.003003
			 ,0.528427,0.003003,0.528427,0.013946,0.539370,0.013946,0.522421,0.003003,0.511478,0.003003,0.511478,0.013946,0.522421,0.013946
			 ,0.573268,0.019952,0.562325,0.019952,0.562325,0.030895,0.573268,0.030895,0.556319,0.019952,0.545376,0.019952,0.545376,0.030895
			 ,0.556319,0.030895,0.573268,0.003003,0.562325,0.003003,0.562325,0.013946,0.573268,0.013946,0.556319,0.003003,0.545376,0.003003
			 ,0.545376,0.013946,0.556319,0.013946,0.539370,0.053850,0.528427,0.053850,0.528427,0.064794,0.539370,0.064794,0.522421,0.053850
			 ,0.511478,0.053850,0.511478,0.064794,0.522421,0.064794,0.539370,0.036901,0.528427,0.036901,0.528427,0.047844,0.539370,0.047844
			 ,0.522421,0.036901,0.511478,0.036901,0.511478,0.047844,0.522421,0.047844,0.335980,0.514481,0.328040,0.522421,0.335980,0.522421
			 ,0.674963,0.234285,0.674963,0.226345,0.667023,0.234285,0.319031,0.539370,0.319031,0.531430,0.311091,0.539370,0.335980,0.531430
			 ,0.335980,0.539370,0.328040,0.539370,0.463633,0.488522,0.471573,0.480582,0.471573,0.488522,0.302082,0.514481,0.294142,0.522421
			 ,0.302082,0.522421,0.671960,0.223342,0.664020,0.231282,0.664020,0.223342,0.302082,0.531430,0.302082,0.539370,0.294142,0.539370
			 ,0.613172,0.214333,0.613172,0.206393,0.621113,0.206393,0.633125,0.217336,0.641065,0.209396,0.641065,0.217336,0.302082,0.480582
			 ,0.302082,0.488522,0.294142,0.488522,0.335980,0.505472,0.335980,0.497531,0.328040,0.505472,0.277192,0.488522,0.285133,0.480582
			 ,0.285133,0.488522,0.319031,0.497531,0.311091,0.505472,0.319031,0.505472,0.573268,0.053850,0.562325,0.053850,0.562325,0.064794
			 ,0.573268,0.064794,0.630122,0.206393,0.630122,0.214333,0.638062,0.206393,0.556319,0.053850,0.545376,0.053850,0.545376,0.064794
			 ,0.556319,0.064794,0.573268,0.036901,0.562325,0.036901,0.562325,0.047844,0.573268,0.047844,0.302082,0.497531,0.294142,0.505472
			 ,0.302082,0.505472,0.556319,0.036901,0.545376,0.036901,0.545376,0.047844,0.556319,0.047844,0.132590,0.369878,0.132590,0.341986
			 ,0.003003,0.341986,0.003003,0.369878,0.335980,0.003003,0.274189,0.003003,0.274189,0.064794,0.335980,0.064794,0.335980,0.274189
			 ,0.308088,0.274189,0.308088,0.403777,0.335980,0.403777,0.138596,0.403777,0.268183,0.403777,0.268183,0.375884,0.138596,0.375884
			 ,0.369878,0.274189,0.341986,0.274189,0.341986,0.403777,0.369878,0.403777,0.539370,0.223342,0.528427,0.223342,0.528427,0.234285
			 ,0.539370,0.234285,0.522421,0.223342,0.511478,0.223342,0.511478,0.234285,0.522421,0.234285,0.539370,0.206393,0.528427,0.206393
			 ,0.528427,0.217336,0.539370,0.217336,0.522421,0.206393,0.511478,0.206393,0.511478,0.217336,0.522421,0.217336,0.573268,0.223342
			 ,0.562325,0.223342,0.562325,0.234285,0.573268,0.234285,0.556319,0.223342,0.545376,0.223342,0.545376,0.234285,0.556319,0.234285
			 ,0.573268,0.206393,0.562325,0.206393,0.562325,0.217336,0.573268,0.217336,0.556319,0.206393,0.545376,0.206393,0.545376,0.217336
			 ,0.556319,0.217336,0.539370,0.257240,0.528427,0.257240,0.528427,0.268183,0.539370,0.268183,0.522421,0.257240,0.511478,0.257240
			 ,0.511478,0.268183,0.522421,0.268183,0.539370,0.240291,0.528427,0.240291,0.528427,0.251234,0.539370,0.251234,0.522421,0.240291
			 ,0.511478,0.240291,0.511478,0.251234,0.522421,0.251234,0.573268,0.257240,0.562325,0.257240,0.562325,0.268183,0.573268,0.268183
			 ,0.556319,0.257240,0.545376,0.257240,0.545376,0.268183,0.556319,0.268183,0.573268,0.240291,0.562325,0.240291,0.562325,0.251234
			 ,0.573268,0.251234,0.556319,0.240291,0.545376,0.240291,0.545376,0.251234,0.556319,0.251234,0.539370,0.426732,0.528427,0.426732
			 ,0.528427,0.437675,0.539370,0.437675,0.522421,0.426732,0.511478,0.426732,0.511478,0.437675,0.522421,0.437675,0.539370,0.409783
			 ,0.528427,0.409783,0.528427,0.420726,0.539370,0.420726,0.522421,0.409783,0.511478,0.409783,0.511478,0.420726,0.522421,0.420726
			 ,0.573268,0.426732,0.562325,0.426732,0.562325,0.437675,0.573268,0.437675,0.556319,0.426732,0.545376,0.426732,0.545376,0.437675
			 ,0.556319,0.437675,0.573268,0.409783,0.562325,0.409783,0.562325,0.420726,0.573268,0.420726,0.556319,0.409783,0.545376,0.409783
			 ,0.545376,0.420726,0.556319,0.420726,0.539370,0.460630,0.528427,0.460630,0.528427,0.471573,0.539370,0.471573,0.522421,0.460630
			 ,0.511478,0.460630,0.511478,0.471573,0.522421,0.471573,0.539370,0.443681,0.528427,0.443681,0.528427,0.454624,0.539370,0.454624
			 ,0.522421,0.443681,0.511478,0.443681,0.511478,0.454624,0.522421,0.454624,0.420726,0.480582,0.412786,0.488522,0.420726,0.488522
			 ,0.613172,0.223342,0.613172,0.231282,0.621113,0.223342,0.630122,0.223342,0.630122,0.231282,0.638062,0.223342,0.352929,0.531430
			 ,0.352929,0.539370,0.344989,0.539370,0.361938,0.539370,0.369878,0.531430,0.369878,0.539370,0.386827,0.480582,0.378887,0.488522
			 ,0.386827,0.488522,0.451621,0.511478,0.443681,0.519418,0.443681,0.511478,0.460630,0.519418,0.460630,0.511478,0.468570,0.511478
			 ,0.403777,0.480582,0.403777,0.488522,0.395837,0.488522,0.451621,0.528427,0.443681,0.536367,0.443681,0.528427,0.437675,0.497531
			 ,0.437675,0.505472,0.429735,0.505472,0.460630,0.528427,0.460630,0.536367,0.468570,0.528427,0.395837,0.522421,0.403777,0.514481
			 ,0.403777,0.522421,0.409783,0.519418,0.417723,0.511478,0.409783,0.511478,0.573268,0.460630,0.562325,0.460630,0.562325,0.471573
			 ,0.573268,0.471573,0.426732,0.511478,0.426732,0.519418,0.434672,0.511478,0.556319,0.460630,0.545376,0.460630,0.545376,0.471573
			 ,0.556319,0.471573,0.573268,0.443681,0.562325,0.443681,0.562325,0.454624,0.573268,0.454624,0.409783,0.536367,0.417723,0.528427
			 ,0.409783,0.528427,0.556319,0.443681,0.545376,0.443681,0.545376,0.454624,0.556319,0.454624,0.132590,0.403777,0.132590,0.375884
			 ,0.003003,0.375884,0.003003,0.403777,0.437675,0.070800,0.375884,0.070800,0.375884,0.132590,0.437675,0.132590,0.403777,0.274189
			 ,0.375884,0.274189,0.375884,0.403777,0.403777,0.403777,0.138596,0.437675,0.268183,0.437675,0.268183,0.409783,0.138596,0.409783
			 ,0.437675,0.274189,0.409783,0.274189,0.409783,0.403777,0.437675,0.403777,0.539370,0.291139,0.528427,0.291139,0.528427,0.302082
			 ,0.539370,0.302082,0.522421,0.291139,0.511478,0.291139,0.511478,0.302082,0.522421,0.302082,0.539370,0.274189,0.528427,0.274189
			 ,0.528427,0.285133,0.539370,0.285133,0.522421,0.274189,0.511478,0.274189,0.511478,0.285133,0.522421,0.285133,0.573268,0.291139
			 ,0.562325,0.291139,0.562325,0.302082,0.573268,0.302082,0.556319,0.291139,0.545376,0.291139,0.545376,0.302082,0.556319,0.302082
			 ,0.573268,0.274189,0.562325,0.274189,0.562325,0.285133,0.573268,0.285133,0.556319,0.274189,0.545376,0.274189,0.545376,0.285133
			 ,0.556319,0.285133,0.539370,0.325037,0.528427,0.325037,0.528427,0.335980,0.539370,0.335980,0.522421,0.325037,0.511478,0.325037
			 ,0.511478,0.335980,0.522421,0.335980,0.539370,0.308088,0.528427,0.308088,0.528427,0.319031,0.539370,0.319031,0.522421,0.308088
			 ,0.511478,0.308088,0.511478,0.319031,0.522421,0.319031,0.573268,0.325037,0.562325,0.325037,0.562325,0.335980,0.573268,0.335980
			 ,0.556319,0.325037,0.545376,0.325037,0.545376,0.335980,0.556319,0.335980,0.573268,0.308088,0.562325,0.308088,0.562325,0.319031
			 ,0.573268,0.319031,0.556319,0.308088,0.545376,0.308088,0.545376,0.319031,0.556319,0.319031,0.539370,0.358935,0.528427,0.358935
			 ,0.528427,0.369878,0.539370,0.369878,0.522421,0.358935,0.511478,0.358935,0.511478,0.369878,0.522421,0.369878,0.539370,0.341986
			 ,0.528427,0.341986,0.528427,0.352929,0.539370,0.352929,0.522421,0.341986,0.511478,0.341986,0.511478,0.352929,0.522421,0.352929
			 ,0.573268,0.358935,0.562325,0.358935,0.562325,0.369878,0.573268,0.369878,0.556319,0.358935,0.545376,0.358935,0.545376,0.369878
			 ,0.556319,0.369878,0.573268,0.341986,0.562325,0.341986,0.562325,0.352929,0.573268,0.352929,0.556319,0.341986,0.545376,0.341986
			 ,0.545376,0.352929,0.556319,0.352929,0.539370,0.392834,0.528427,0.392834,0.528427,0.403777,0.539370,0.403777,0.522421,0.392834
			 ,0.511478,0.392834,0.511478,0.403777,0.522421,0.403777,0.539370,0.375884,0.528427,0.375884,0.528427,0.386827,0.539370,0.386827
			 ,0.522421,0.375884,0.511478,0.375884,0.511478,0.386827,0.522421,0.386827,0.403777,0.531430,0.395837,0.539370,0.403777,0.539370
			 ,0.426732,0.528427,0.426732,0.536367,0.434672,0.528427,0.369878,0.522421,0.369878,0.514481,0.361938,0.522421,0.443681,0.485519
			 ,0.443681,0.477579,0.451621,0.477579,0.468570,0.477579,0.460630,0.485519,0.460630,0.477579,0.443681,0.502469,0.451621,0.494528
			 ,0.443681,0.494528,0.468570,0.494528,0.460630,0.502469,0.460630,0.494528,0.409783,0.485519,0.409783,0.477579,0.417723,0.477579
			 ,0.426732,0.485519,0.426732,0.477579,0.434672,0.477579,0.417723,0.494528,0.409783,0.502469,0.409783,0.494528,0.426732,0.502469
			 ,0.426732,0.494528,0.434672,0.494528,0.375884,0.511478,0.375884,0.519418,0.383824,0.511478,0.400774,0.511478,0.392834,0.519418
			 ,0.392834,0.511478,0.369878,0.497531,0.361938,0.505472,0.369878,0.505472,0.573268,0.392834,0.562325,0.392834,0.562325,0.403777
			 ,0.573268,0.403777,0.375884,0.528427,0.375884,0.536367,0.383824,0.528427,0.556319,0.392834,0.545376,0.392834,0.545376,0.403777
			 ,0.556319,0.403777,0.573268,0.375884,0.562325,0.375884,0.562325,0.386827,0.573268,0.386827,0.319031,0.514481,0.311091,0.522421
			 ,0.319031,0.522421,0.556319,0.375884,0.545376,0.375884,0.545376,0.386827,0.556319,0.386827,0.403777,0.437675,0.403777,0.409783
			 ,0.274189,0.409783,0.274189,0.437675,0.437675,0.003003,0.375884,0.003003,0.375884,0.064794,0.437675,0.064794,0.437675,0.138596
			 ,0.409783,0.138596,0.409783,0.268183,0.437675,0.268183,0.003003,0.437675,0.132590,0.437675,0.132590,0.409783,0.003003,0.409783
			 ,0.471573,0.070800,0.443681,0.070800,0.443681,0.200387,0.471573,0.200387,0.505472,0.155545,0.494528,0.155545,0.494528,0.166489
			 ,0.505472,0.166489,0.488522,0.155545,0.477579,0.155545,0.477579,0.166489,0.488522,0.166489,0.505472,0.138596,0.494528,0.138596
			 ,0.494528,0.149539,0.505472,0.149539,0.488522,0.138596,0.477579,0.138596,0.477579,0.149539,0.488522,0.149539,0.539370,0.155545
			 ,0.528427,0.155545,0.528427,0.166489,0.539370,0.166489,0.522421,0.155545,0.511478,0.155545,0.511478,0.166489,0.522421,0.166489
			 ,0.539370,0.138596,0.528427,0.138596,0.528427,0.149539,0.539370,0.149539,0.522421,0.138596,0.511478,0.138596,0.511478,0.149539
			 ,0.522421,0.149539,0.505472,0.189444,0.494528,0.189444,0.494528,0.200387,0.505472,0.200387,0.488522,0.189444,0.477579,0.189444
			 ,0.477579,0.200387,0.488522,0.200387,0.505472,0.172495,0.494528,0.172495,0.494528,0.183438,0.505472,0.183438,0.488522,0.172495
			 ,0.477579,0.172495,0.477579,0.183438,0.488522,0.183438,0.539370,0.189444,0.528427,0.189444,0.528427,0.200387,0.539370,0.200387
			 ,0.522421,0.189444,0.511478,0.189444,0.511478,0.200387,0.522421,0.200387,0.539370,0.172495,0.528427,0.172495,0.528427,0.183438
			 ,0.539370,0.183438,0.522421,0.172495,0.511478,0.172495,0.511478,0.183438,0.522421,0.183438,0.505472,0.087749,0.494528,0.087749
			 ,0.494528,0.098692,0.505472,0.098692,0.488522,0.087749,0.477579,0.087749,0.477579,0.098692,0.488522,0.098692,0.505472,0.070800
			 ,0.494528,0.070800,0.494528,0.081743,0.505472,0.081743,0.488522,0.070800,0.477579,0.070800,0.477579,0.081743,0.488522,0.081743
			 ,0.539370,0.087749,0.528427,0.087749,0.528427,0.098692,0.539370,0.098692,0.522421,0.087749,0.511478,0.087749,0.511478,0.098692
			 ,0.522421,0.098692,0.539370,0.070800,0.528427,0.070800,0.528427,0.081743,0.539370,0.081743,0.522421,0.070800,0.511478,0.070800
			 ,0.511478,0.081743,0.522421,0.081743,0.505472,0.121647,0.494528,0.121647,0.494528,0.132590,0.505472,0.132590,0.488522,0.121647
			 ,0.477579,0.121647,0.477579,0.132590,0.488522,0.132590,0.505472,0.104698,0.494528,0.104698,0.494528,0.115641,0.505472,0.115641
			 ,0.488522,0.104698,0.477579,0.104698,0.477579,0.115641,0.488522,0.115641,0.392834,0.536367,0.400774,0.528427,0.392834,0.528427
			 ,0.341986,0.511478,0.341986,0.519418,0.349926,0.511478,0.358935,0.511478,0.358935,0.519418,0.366875,0.511478,0.341986,0.536367
			 ,0.341986,0.528427,0.349926,0.528427,0.366875,0.528427,0.358935,0.536367,0.358935,0.528427,0.375884,0.485519,0.383824,0.477579
			 ,0.375884,0.477579,0.400774,0.477579,0.392834,0.485519,0.392834,0.477579,0.375884,0.502469,0.375884,0.494528,0.383824,0.494528
			 ,0.319031,0.480582,0.319031,0.488522,0.311091,0.488522,0.400774,0.494528,0.392834,0.502469,0.392834,0.494528,0.341986,0.485519
			 ,0.341986,0.477579,0.349926,0.477579,0.358935,0.477579,0.358935,0.485519,0.366875,0.477579,0.349926,0.494528,0.341986,0.502469
			 ,0.341986,0.494528,0.358935,0.502469,0.366875,0.494528,0.358935,0.494528,0.539370,0.121647,0.528427,0.121647,0.528427,0.132590
			 ,0.539370,0.132590,0.285133,0.505472,0.285133,0.497531,0.277192,0.505472,0.522421,0.121647,0.511478,0.121647,0.511478,0.132590
			 ,0.522421,0.132590,0.539370,0.104698,0.528427,0.104698,0.528427,0.115641,0.539370,0.115641,0.308088,0.519418,0.316028,0.511478
			 ,0.308088,0.511478,0.522421,0.104698,0.511478,0.104698,0.511478,0.115641,0.522421,0.115641,0.403777,0.471573,0.403777,0.443681
			 ,0.274189,0.443681,0.274189,0.471573,0.471573,0.409783,0.409783,0.409783,0.409783,0.471573,0.471573,0.471573,0.471573,0.274189
			 ,0.443681,0.274189,0.443681,0.403777,0.471573,0.403777,0.003003,0.471573,0.132590,0.471573,0.132590,0.443681,0.003003,0.443681
			 ,0.505472,0.206393,0.477579,0.206393,0.477579,0.335980,0.505472,0.335980,0.505472,0.494528,0.494528,0.494528,0.494528,0.505472
			 ,0.505472,0.505472,0.488522,0.494528,0.477579,0.494528,0.477579,0.505472,0.488522,0.505472,0.505472,0.477579,0.494528,0.477579
			 ,0.494528,0.488522,0.505472,0.488522,0.488522,0.477579,0.477579,0.477579,0.477579,0.488522,0.488522,0.488522,0.539370,0.494528
			 ,0.528427,0.494528,0.528427,0.505472,0.539370,0.505472,0.522421,0.494528,0.511478,0.494528,0.511478,0.505472,0.522421,0.505472
			 ,0.539370,0.477579,0.528427,0.477579,0.528427,0.488522,0.539370,0.488522,0.522421,0.477579,0.511478,0.477579,0.511478,0.488522
			 ,0.522421,0.488522,0.505472,0.528427,0.494528,0.528427,0.494528,0.539370,0.505472,0.539370,0.488522,0.528427,0.477579,0.528427
			 ,0.477579,0.539370,0.488522,0.539370,0.505472,0.511478,0.494528,0.511478,0.494528,0.522421,0.505472,0.522421,0.488522,0.511478
			 ,0.477579,0.511478,0.477579,0.522421,0.488522,0.522421,0.539370,0.528427,0.528427,0.528427,0.528427,0.539370,0.539370,0.539370
			 ,0.522421,0.528427,0.511478,0.528427,0.511478,0.539370,0.522421,0.539370,0.539370,0.511478,0.528427,0.511478,0.528427,0.522421
			 ,0.539370,0.522421,0.522421,0.511478,0.511478,0.511478,0.511478,0.522421,0.522421,0.522421,0.166489,0.494528,0.155545,0.494528
			 ,0.155545,0.505472,0.166489,0.505472,0.149539,0.494528,0.138596,0.494528,0.138596,0.505472,0.149539,0.505472,0.166489,0.477579
			 ,0.155545,0.477579,0.155545,0.488522,0.166489,0.488522,0.149539,0.477579,0.138596,0.477579,0.138596,0.488522,0.149539,0.488522
			 ,0.200387,0.494528,0.189444,0.494528,0.189444,0.505472,0.200387,0.505472,0.183438,0.494528,0.172495,0.494528,0.172495,0.505472
			 ,0.183438,0.505472,0.200387,0.477579,0.189444,0.477579,0.189444,0.488522,0.200387,0.488522,0.183438,0.477579,0.172495,0.477579
			 ,0.172495,0.488522,0.183438,0.488522,0.166489,0.528427,0.155545,0.528427,0.155545,0.539370,0.166489,0.539370,0.149539,0.528427
			 ,0.138596,0.528427,0.138596,0.539370,0.149539,0.539370,0.166489,0.511478,0.155545,0.511478,0.155545,0.522421,0.166489,0.522421
			 ,0.149539,0.511478,0.138596,0.511478,0.138596,0.522421,0.149539,0.522421,0.325037,0.519418,0.332977,0.511478,0.325037,0.511478
			 ,0.285133,0.539370,0.285133,0.531430,0.277192,0.539370,0.308088,0.528427,0.308088,0.536367,0.316028,0.528427,0.325037,0.536367
			 ,0.325037,0.528427,0.332977,0.528427,0.282130,0.511478,0.274189,0.519418,0.274189,0.511478,0.291139,0.519418,0.299079,0.511478
			 ,0.291139,0.511478,0.282130,0.528427,0.274189,0.536367,0.274189,0.528427,0.291139,0.536367,0.291139,0.528427,0.299079,0.528427
			 ,0.308088,0.485519,0.308088,0.477579,0.316028,0.477579,0.332977,0.477579,0.325037,0.485519,0.325037,0.477579,0.308088,0.502469
			 ,0.308088,0.494528,0.316028,0.494528,0.325037,0.494528,0.325037,0.502469,0.332977,0.494528,0.282130,0.477579,0.274189,0.485519
			 ,0.274189,0.477579,0.291139,0.485519,0.299079,0.477579,0.291139,0.477579,0.200387,0.528427,0.189444,0.528427,0.189444,0.539370
			 ,0.200387,0.539370,0.274189,0.494528,0.274189,0.502469,0.282130,0.494528,0.183438,0.528427,0.172495,0.528427,0.172495,0.539370
			 ,0.183438,0.539370,0.200387,0.511478,0.189444,0.511478,0.189444,0.522421,0.200387,0.522421,0.291139,0.502469,0.299079,0.494528
			 ,0.291139,0.494528,0.183438,0.511478,0.172495,0.511478,0.172495,0.522421,0.183438,0.522421,0.132590,0.641065,0.132590,0.613172
			 ,0.003003,0.613172,0.003003,0.641065,0.505472,0.003003,0.443681,0.003003,0.443681,0.064794,0.505472,0.064794,0.505472,0.341986
			 ,0.477579,0.341986,0.477579,0.471573,0.505472,0.471573,0.003003,0.505472,0.132590,0.505472,0.132590,0.477579,0.003003,0.477579
			 ,0.996997,0.206393,0.986054,0.206393,0.986054,0.268183,0.996997,0.268183,0.138596,0.980048,0.200387,0.980048,0.200387,0.969105
			 ,0.138596,0.969105,0.996997,0.613172,0.986054,0.613172,0.986054,0.674963,0.996997,0.674963,0.003003,0.980048,0.064794,0.980048
			 ,0.064794,0.969105,0.003003,0.969105,0.996997,0.748766,0.986054,0.748766,0.986054,0.810556,0.996997,0.810556,0.748766,0.980048
			 ,0.810556,0.980048,0.810556,0.969105,0.748766,0.969105,0.996997,0.680969,0.986054,0.680969,0.986054,0.742760,0.996997,0.742760
			 ,0.816562,0.980048,0.878353,0.980048,0.878353,0.969105,0.816562,0.969105,0.980048,0.003003,0.969105,0.003003,0.969105,0.064794
			 ,0.980048,0.064794,0.884359,0.980048,0.946150,0.980048,0.946150,0.969105,0.884359,0.969105,0.980048,0.901308,0.969105,0.901308
			 ,0.969105,0.963099,0.980048,0.963099,0.680969,0.980048,0.742760,0.980048,0.742760,0.969105,0.680969,0.969105,0.980048,0.680969
			 ,0.969105,0.680969,0.969105,0.742760,0.980048,0.742760,0.274189,0.980048,0.335980,0.980048,0.335980,0.969105,0.274189,0.969105
			 ,0.980048,0.613172,0.969105,0.613172,0.969105,0.674963,0.980048,0.674963,0.409783,0.980048,0.471573,0.980048,0.471573,0.969105
			 ,0.409783,0.969105,0.980048,0.471573,0.980048,0.409783,0.969105,0.409783,0.969105,0.471573,0.070800,0.980048,0.132590,0.980048
			 ,0.132590,0.969105,0.070800,0.969105,0.980048,0.607166,0.980048,0.545376,0.969105,0.545376,0.969105,0.607166,0.341986,0.980048
			 ,0.403777,0.980048,0.403777,0.969105,0.341986,0.969105,0.980048,0.403777,0.980048,0.341986,0.969105,0.341986,0.969105,0.403777
			 ,0.545376,0.980048,0.607166,0.980048,0.607166,0.969105,0.545376,0.969105,0.980048,0.748766,0.969105,0.748766,0.969105,0.810556
			 ,0.980048,0.810556,0.539370,0.980048,0.539370,0.969105,0.477579,0.969105,0.477579,0.980048,0.980048,0.816562,0.969105,0.816562
			 ,0.969105,0.878353,0.980048,0.878353,0.674963,0.980048,0.674963,0.969105,0.613172,0.969105,0.613172,0.980048,0.980048,0.070800
			 ,0.969105,0.070800,0.969105,0.132590,0.980048,0.132590,0.471573,0.963099,0.471573,0.952156,0.409783,0.952156,0.409783,0.963099
			 ,0.980048,0.200387,0.980048,0.138596,0.969105,0.138596,0.969105,0.200387,0.816562,0.963099,0.878353,0.963099,0.878353,0.952156
			 ,0.816562,0.952156,0.980048,0.477579,0.969105,0.477579,0.969105,0.539370,0.980048,0.539370,0.946150,0.963099,0.946150,0.952156
			 ,0.884359,0.952156,0.884359,0.963099,0.980048,0.268183,0.980048,0.206393,0.969105,0.206393,0.969105,0.268183,0.132590,0.963099
			 ,0.132590,0.952156,0.070800,0.952156,0.070800,0.963099,0.827505,0.064794,0.827505,0.003003,0.816562,0.003003,0.816562,0.064794
			 ,0.539370,0.963099,0.539370,0.952156,0.477579,0.952156,0.477579,0.963099,0.963099,0.268183,0.963099,0.206393,0.952156,0.206393
			 ,0.952156,0.268183,0.064794,0.963099,0.064794,0.952156,0.003003,0.952156,0.003003,0.963099,0.963099,0.403777,0.963099,0.341986
			 ,0.952156,0.341986,0.952156,0.403777,0.742760,0.963099,0.742760,0.952156,0.680969,0.952156,0.680969,0.963099,0.963099,0.674963
			 ,0.963099,0.613172,0.952156,0.613172,0.952156,0.674963,0.268183,0.963099,0.268183,0.952156,0.206393,0.952156,0.206393,0.963099
			 ,0.963099,0.878353,0.963099,0.816562,0.952156,0.816562,0.952156,0.878353,0.963099,0.895302,0.963099,0.884359,0.901308,0.884359
			 ,0.901308,0.895302,0.963099,0.064794,0.963099,0.003003,0.952156,0.003003,0.952156,0.064794,0.064794,0.946150,0.064794,0.935206
			 ,0.003003,0.935206,0.003003,0.946150,0.963099,0.132590,0.963099,0.070800,0.952156,0.070800,0.952156,0.132590,0.810556,0.946150
			 ,0.810556,0.935206,0.748766,0.935206,0.748766,0.946150,0.946150,0.132590,0.946150,0.070800,0.935206,0.070800,0.935206,0.132590
			 ,0.274189,0.946150,0.335980,0.946150,0.335980,0.935206,0.274189,0.935206,0.946150,0.003003,0.935206,0.003003,0.935206,0.064794
			 ,0.946150,0.064794,0.132590,0.946150,0.132590,0.935206,0.070800,0.935206,0.070800,0.946150,0.946150,0.268183,0.946150,0.206393
			 ,0.935206,0.206393,0.935206,0.268183,0.539370,0.946150,0.539370,0.935206,0.477579,0.935206,0.477579,0.946150,0.946150,0.471573
			 ,0.946150,0.409783,0.935206,0.409783,0.935206,0.471573,0.206393,0.946150,0.268183,0.946150,0.268183,0.935206,0.206393,0.935206
			 ,0.946150,0.341986,0.935206,0.341986,0.935206,0.403777,0.946150,0.403777,0.545376,0.946150,0.607166,0.946150,0.607166,0.935206
			 ,0.545376,0.935206,0.946150,0.680969,0.935206,0.680969,0.935206,0.742760,0.946150,0.742760,0.946150,0.929200,0.946150,0.918257
			 ,0.884359,0.918257,0.884359,0.929200,0.946150,0.674963,0.946150,0.613172,0.935206,0.613172,0.935206,0.674963,0.674963,0.929200
			 ,0.674963,0.918257,0.613172,0.918257,0.613172,0.929200,0.929200,0.274189,0.918257,0.274189,0.918257,0.335980,0.929200,0.335980
			 ,0.138596,0.929200,0.200387,0.929200,0.200387,0.918257,0.138596,0.918257,0.929200,0.613172,0.918257,0.613172,0.918257,0.674963
			 ,0.929200,0.674963,0.680969,0.929200,0.742760,0.929200,0.742760,0.918257,0.680969,0.918257,0.929200,0.409783,0.918257,0.409783
			 ,0.918257,0.471573,0.929200,0.471573,0.545376,0.929200,0.607166,0.929200,0.607166,0.918257,0.545376,0.918257,0.929200,0.545376
			 ,0.918257,0.545376,0.918257,0.607166,0.929200,0.607166,0.341986,0.929200,0.403777,0.929200,0.403777,0.918257,0.341986,0.918257
			 ,0.912251,0.070800,0.901308,0.070800,0.901308,0.132590,0.912251,0.132590,0.335980,0.912251,0.335980,0.901308,0.274189,0.901308
			 ,0.274189,0.912251,0.912251,0.064794,0.912251,0.003003,0.901308,0.003003,0.901308,0.064794,0.268183,0.912251,0.268183,0.901308
			 ,0.206393,0.901308,0.206393,0.912251,0.912251,0.335980,0.912251,0.274189,0.901308,0.274189,0.901308,0.335980,0.878353,0.912251
			 ,0.878353,0.901308,0.816562,0.901308,0.816562,0.912251,0.912251,0.607166,0.912251,0.545376,0.901308,0.545376,0.901308,0.607166
			 ,0.742760,0.912251,0.742760,0.901308,0.680969,0.901308,0.680969,0.912251,0.912251,0.810556,0.912251,0.748766,0.901308,0.748766
			 ,0.901308,0.810556,0.545376,0.895302,0.607166,0.895302,0.607166,0.884359,0.545376,0.884359,0.895302,0.816562,0.884359,0.816562
			 ,0.884359,0.878353,0.895302,0.878353,0.471573,0.895302,0.471573,0.884359,0.409783,0.884359,0.409783,0.895302,0.844455,0.477579
			 ,0.833511,0.477579,0.833511,0.539370,0.844455,0.539370,0.274189,0.708861,0.335980,0.708861,0.335980,0.697918,0.274189,0.697918
			 ,0.725811,0.003003,0.714867,0.003003,0.714867,0.064794,0.725811,0.064794,0.477579,0.708861,0.539370,0.708861,0.539370,0.697918
			 ,0.477579,0.697918,0.725811,0.132590,0.725811,0.070800,0.714867,0.070800,0.714867,0.132590,0.132590,0.725811,0.132590,0.714867
			 ,0.070800,0.714867,0.070800,0.725811,0.725811,0.138596,0.714867,0.138596,0.714867,0.200387,0.725811,0.200387,0.539370,0.725811
			 ,0.539370,0.714867,0.477579,0.714867,0.477579,0.725811,0.725811,0.471573,0.725811,0.409783,0.714867,0.409783,0.714867,0.471573
			 ,0.064794,0.725811,0.064794,0.714867,0.003003,0.714867,0.003003,0.725811,0.725811,0.403777,0.725811,0.341986,0.714867,0.341986
			 ,0.714867,0.403777,0.674963,0.725811,0.674963,0.714867,0.613172,0.714867,0.613172,0.725811,0.725811,0.613172,0.714867,0.613172
			 ,0.714867,0.674963,0.725811,0.674963,0.545376,0.725811,0.607166,0.725811,0.607166,0.714867,0.545376,0.714867,0.691912,0.680969
			 ,0.680969,0.680969,0.680969,0.742760,0.691912,0.742760,0.138596,0.725811,0.200387,0.725811,0.200387,0.714867,0.138596,0.714867
			 ,0.742760,0.335980,0.742760,0.274189,0.731817,0.274189,0.731817,0.335980,0.206393,0.725811,0.268183,0.725811,0.268183,0.714867
			 ,0.206393,0.714867,0.725811,0.680969,0.714867,0.680969,0.714867,0.742760,0.725811,0.742760,0.335980,0.725811,0.335980,0.714867
			 ,0.274189,0.714867,0.274189,0.725811,0.708861,0.680969,0.697918,0.680969,0.697918,0.742760,0.708861,0.742760,0.539370,0.742760
			 ,0.539370,0.731817,0.477579,0.731817,0.477579,0.742760,0.742760,0.064794,0.742760,0.003003,0.731817,0.003003,0.731817,0.064794
			 ,0.200387,0.742760,0.200387,0.731817,0.138596,0.731817,0.138596,0.742760,0.742760,0.403777,0.742760,0.341986,0.731817,0.341986
			 ,0.731817,0.403777,0.335980,0.742760,0.335980,0.731817,0.274189,0.731817,0.274189,0.742760,0.742760,0.268183,0.742760,0.206393
			 ,0.731817,0.206393,0.731817,0.268183,0.471573,0.742760,0.471573,0.731817,0.409783,0.731817,0.409783,0.742760,0.742760,0.674963
			 ,0.742760,0.613172,0.731817,0.613172,0.731817,0.674963,0.403777,0.742760,0.403777,0.731817,0.341986,0.731817,0.341986,0.742760
			 ,0.742760,0.742760,0.742760,0.680969,0.731817,0.680969,0.731817,0.742760,0.674963,0.742760,0.674963,0.731817,0.613172,0.731817
			 ,0.613172,0.742760,0.742760,0.200387,0.742760,0.138596,0.731817,0.138596,0.731817,0.200387,0.607166,0.742760,0.607166,0.731817
			 ,0.545376,0.731817,0.545376,0.742760,0.742760,0.070800,0.731817,0.070800,0.731817,0.132590,0.742760,0.132590,0.064794,0.742760
			 ,0.064794,0.731817,0.003003,0.731817,0.003003,0.742760,0.742760,0.607166,0.742760,0.545376,0.731817,0.545376,0.731817,0.607166
			 ,0.132590,0.742760,0.132590,0.731817,0.070800,0.731817,0.070800,0.742760,0.742760,0.539370,0.742760,0.477579,0.731817,0.477579
			 ,0.731817,0.539370,0.206393,0.742760,0.268183,0.742760,0.268183,0.731817,0.206393,0.731817,0.742760,0.471573,0.742760,0.409783
			 ,0.731817,0.409783,0.731817,0.471573,0.471573,0.759709,0.471573,0.748766,0.409783,0.748766,0.409783,0.759709,0.759709,0.471573
			 ,0.759709,0.409783,0.748766,0.409783,0.748766,0.471573,0.607166,0.759709,0.607166,0.748766,0.545376,0.748766,0.545376,0.759709
			 ,0.759709,0.539370,0.759709,0.477579,0.748766,0.477579,0.748766,0.539370,0.742760,0.759709,0.742760,0.748766,0.680969,0.748766
			 ,0.680969,0.759709,0.759709,0.545376,0.748766,0.545376,0.748766,0.607166,0.759709,0.607166,0.613172,0.759709,0.674963,0.759709
			 ,0.674963,0.748766,0.613172,0.748766,0.759709,0.403777,0.759709,0.341986,0.748766,0.341986,0.748766,0.403777,0.132590,0.759709
			 ,0.132590,0.748766,0.070800,0.748766,0.070800,0.759709,0.759709,0.274189,0.748766,0.274189,0.748766,0.335980,0.759709,0.335980
			 ,0.477579,0.759709,0.539370,0.759709,0.539370,0.748766,0.477579,0.748766,0.759709,0.742760,0.759709,0.680969,0.748766,0.680969
			 ,0.748766,0.742760,0.206393,0.759709,0.268183,0.759709,0.268183,0.748766,0.206393,0.748766,0.759709,0.674963,0.759709,0.613172
			 ,0.748766,0.613172,0.748766,0.674963,0.335980,0.759709,0.335980,0.748766,0.274189,0.748766,0.274189,0.759709,0.759709,0.268183
			 ,0.759709,0.206393,0.748766,0.206393,0.748766,0.268183,0.341986,0.759709,0.403777,0.759709,0.403777,0.748766,0.341986,0.748766
			 ,0.759709,0.138596,0.748766,0.138596,0.748766,0.200387,0.759709,0.200387,0.138596,0.759709,0.200387,0.759709,0.200387,0.748766
			 ,0.138596,0.748766,0.759709,0.132590,0.759709,0.070800,0.748766,0.070800,0.748766,0.132590,0.064794,0.759709,0.064794,0.748766
			 ,0.003003,0.748766,0.003003,0.759709,0.759709,0.003003,0.748766,0.003003,0.748766,0.064794,0.759709,0.064794,0.070800,0.776658
			 ,0.132590,0.776658,0.132590,0.765715,0.070800,0.765715,0.776658,0.003003,0.765715,0.003003,0.765715,0.064794,0.776658,0.064794
			 ,0.409783,0.776658,0.471573,0.776658,0.471573,0.765715,0.409783,0.765715,0.776658,0.268183,0.776658,0.206393,0.765715,0.206393
			 ,0.765715,0.268183,0.403777,0.776658,0.403777,0.765715,0.341986,0.765715,0.341986,0.776658,0.776658,0.274189,0.765715,0.274189
			 ,0.765715,0.335980,0.776658,0.335980,0.274189,0.776658,0.335980,0.776658,0.335980,0.765715,0.274189,0.765715,0.776658,0.138596
			 ,0.765715,0.138596,0.765715,0.200387,0.776658,0.200387,0.607166,0.776658,0.607166,0.765715,0.545376,0.765715,0.545376,0.776658
			 ,0.776658,0.403777,0.776658,0.341986,0.765715,0.341986,0.765715,0.403777,0.674963,0.776658,0.674963,0.765715,0.613172,0.765715
			 ,0.613172,0.776658,0.776658,0.132590,0.776658,0.070800,0.765715,0.070800,0.765715,0.132590,0.742760,0.776658,0.742760,0.765715
			 ,0.680969,0.765715,0.680969,0.776658,0.776658,0.607166,0.776658,0.545376,0.765715,0.545376,0.765715,0.607166,0.206393,0.776658
			 ,0.268183,0.776658,0.268183,0.765715,0.206393,0.765715,0.776658,0.680969,0.765715,0.680969,0.765715,0.742760,0.776658,0.742760
			 ,0.138596,0.776658,0.200387,0.776658,0.200387,0.765715,0.138596,0.765715,0.776658,0.613172,0.765715,0.613172,0.765715,0.674963
			 ,0.776658,0.674963,0.064794,0.776658,0.064794,0.765715,0.003003,0.765715,0.003003,0.776658,0.776658,0.539370,0.776658,0.477579
			 ,0.765715,0.477579,0.765715,0.539370,0.539370,0.776658,0.539370,0.765715,0.477579,0.765715,0.477579,0.776658,0.776658,0.471573
			 ,0.776658,0.409783,0.765715,0.409783,0.765715,0.471573,0.477579,0.793607,0.539370,0.793607,0.539370,0.782664,0.477579,0.782664
			 ,0.793607,0.409783,0.782664,0.409783,0.782664,0.471573,0.793607,0.471573,0.742760,0.793607,0.742760,0.782664,0.680969,0.782664
			 ,0.680969,0.793607,0.793607,0.132590,0.793607,0.070800,0.782664,0.070800,0.782664,0.132590,0.403777,0.793607,0.403777,0.782664
			 ,0.341986,0.782664,0.341986,0.793607,0.793607,0.138596,0.782664,0.138596,0.782664,0.200387,0.793607,0.200387,0.274189,0.793607
			 ,0.335980,0.793607,0.335980,0.782664,0.274189,0.782664,0.793607,0.003003,0.782664,0.003003,0.782664,0.064794,0.793607,0.064794
			 ,0.206393,0.793607,0.268183,0.793607,0.268183,0.782664,0.206393,0.782664,0.793607,0.341986,0.782664,0.341986,0.782664,0.403777
			 ,0.793607,0.403777,0.200387,0.793607,0.200387,0.782664,0.138596,0.782664,0.138596,0.793607,0.793607,0.335980,0.793607,0.274189
			 ,0.782664,0.274189,0.782664,0.335980,0.471573,0.793607,0.471573,0.782664,0.409783,0.782664,0.409783,0.793607,0.793607,0.539370
			 ,0.793607,0.477579,0.782664,0.477579,0.782664,0.539370,0.545376,0.793607,0.607166,0.793607,0.607166,0.782664,0.545376,0.782664
			 ,0.793607,0.206393,0.782664,0.206393,0.782664,0.268183,0.793607,0.268183,0.064794,0.793607,0.064794,0.782664,0.003003,0.782664
			 ,0.003003,0.793607,0.793607,0.607166,0.793607,0.545376,0.782664,0.545376,0.782664,0.607166,0.674963,0.793607,0.674963,0.782664
			 ,0.613172,0.782664,0.613172,0.793607,0.793607,0.674963,0.793607,0.613172,0.782664,0.613172,0.782664,0.674963,0.132590,0.793607
			 ,0.132590,0.782664,0.070800,0.782664,0.070800,0.793607,0.793607,0.742760,0.793607,0.680969,0.782664,0.680969,0.782664,0.742760
			 ,0.748766,0.810556,0.810556,0.810556,0.810556,0.799613,0.748766,0.799613,0.810556,0.680969,0.799613,0.680969,0.799613,0.742760
			 ,0.810556,0.742760,0.613172,0.810556,0.674963,0.810556,0.674963,0.799613,0.613172,0.799613,0.810556,0.545376,0.799613,0.545376
			 ,0.799613,0.607166,0.810556,0.607166,0.409783,0.810556,0.471573,0.810556,0.471573,0.799613,0.409783,0.799613,0.810556,0.138596
			 ,0.799613,0.138596,0.799613,0.200387,0.810556,0.200387,0.748766,0.776658,0.810556,0.776658,0.810556,0.765715,0.748766,0.765715
			 ,0.810556,0.477579,0.799613,0.477579,0.799613,0.539370,0.810556,0.539370,0.341986,0.810556,0.403777,0.810556,0.403777,0.799613
			 ,0.341986,0.799613,0.810556,0.341986,0.799613,0.341986,0.799613,0.403777,0.810556,0.403777,0.274189,0.810556,0.335980,0.810556
			 ,0.335980,0.799613,0.274189,0.799613,0.810556,0.674963,0.810556,0.613172,0.799613,0.613172,0.799613,0.674963,0.132590,0.810556
			 ,0.132590,0.799613,0.070800,0.799613,0.070800,0.810556,0.810556,0.003003,0.799613,0.003003,0.799613,0.064794,0.810556,0.064794
			 ,0.748766,0.793607,0.810556,0.793607,0.810556,0.782664,0.748766,0.782664,0.810556,0.471573,0.810556,0.409783,0.799613,0.409783
			 ,0.799613,0.471573,0.680969,0.810556,0.742760,0.810556,0.742760,0.799613,0.680969,0.799613,0.810556,0.070800,0.799613,0.070800
			 ,0.799613,0.132590,0.810556,0.132590,0.200387,0.810556,0.200387,0.799613,0.138596,0.799613,0.138596,0.810556,0.810556,0.335980
			 ,0.810556,0.274189,0.799613,0.274189,0.799613,0.335980,0.268183,0.810556,0.268183,0.799613,0.206393,0.799613,0.206393,0.810556
			 ,0.810556,0.206393,0.799613,0.206393,0.799613,0.268183,0.810556,0.268183,0.810556,0.759709,0.810556,0.748766,0.748766,0.748766
			 ,0.748766,0.759709,0.827505,0.810556,0.827505,0.748766,0.816562,0.748766,0.816562,0.810556,0.607166,0.810556,0.607166,0.799613
			 ,0.545376,0.799613,0.545376,0.810556,0.827505,0.138596,0.816562,0.138596,0.816562,0.200387,0.827505,0.200387,0.477579,0.810556
			 ,0.539370,0.810556,0.539370,0.799613,0.477579,0.799613,0.827505,0.613172,0.816562,0.613172,0.816562,0.674963,0.827505,0.674963
			 ,0.064794,0.810556,0.064794,0.799613,0.003003,0.799613,0.003003,0.810556,0.827505,0.742760,0.827505,0.680969,0.816562,0.680969
			 ,0.816562,0.742760,0.613172,0.827505,0.674963,0.827505,0.674963,0.816562,0.613172,0.816562,0.827505,0.132590,0.827505,0.070800
			 ,0.816562,0.070800,0.816562,0.132590,0.206393,0.980048,0.268183,0.980048,0.268183,0.969105,0.206393,0.969105,0.827505,0.545376
			 ,0.816562,0.545376,0.816562,0.607166,0.827505,0.607166,0.274189,0.827505,0.335980,0.827505,0.335980,0.816562,0.274189,0.816562
			 ,0.827505,0.268183,0.827505,0.206393,0.816562,0.206393,0.816562,0.268183,0.341986,0.827505,0.403777,0.827505,0.403777,0.816562
			 ,0.341986,0.816562,0.827505,0.477579,0.816562,0.477579,0.816562,0.539370,0.827505,0.539370,0.810556,0.827505,0.810556,0.816562
			 ,0.748766,0.816562,0.748766,0.827505,0.827505,0.274189,0.816562,0.274189,0.816562,0.335980,0.827505,0.335980,0.545376,0.827505
			 ,0.607166,0.827505,0.607166,0.816562,0.545376,0.816562,0.827505,0.341986,0.816562,0.341986,0.816562,0.403777,0.827505,0.403777
			 ,0.539370,0.827505,0.539370,0.816562,0.477579,0.816562,0.477579,0.827505,0.827505,0.409783,0.816562,0.409783,0.816562,0.471573
			 ,0.827505,0.471573,0.206393,0.827505,0.268183,0.827505,0.268183,0.816562,0.206393,0.816562,0.844455,0.341986,0.833511,0.341986
			 ,0.833511,0.403777,0.844455,0.403777,0.132590,0.827505,0.132590,0.816562,0.070800,0.816562,0.070800,0.827505,0.844455,0.810556
			 ,0.844455,0.748766,0.833511,0.748766,0.833511,0.810556,0.409783,0.827505,0.471573,0.827505,0.471573,0.816562,0.409783,0.816562
			 ,0.844455,0.680969,0.833511,0.680969,0.833511,0.742760,0.844455,0.742760,0.138596,0.827505,0.200387,0.827505,0.200387,0.816562
			 ,0.138596,0.816562,0.980048,0.335980,0.980048,0.274189,0.969105,0.274189,0.969105,0.335980,0.003003,0.827505,0.064794,0.827505
			 ,0.064794,0.816562,0.003003,0.816562,0.844455,0.409783,0.833511,0.409783,0.833511,0.471573,0.844455,0.471573,0.742760,0.827505
			 ,0.742760,0.816562,0.680969,0.816562,0.680969,0.827505,0.844455,0.274189,0.833511,0.274189,0.833511,0.335980,0.844455,0.335980
			 ,0.138596,0.844455,0.200387,0.844455,0.200387,0.833511,0.138596,0.833511,0.844455,0.064794,0.844455,0.003003,0.833511,0.003003
			 ,0.833511,0.064794,0.274189,0.844455,0.335980,0.844455,0.335980,0.833511,0.274189,0.833511,0.844455,0.613172,0.833511,0.613172
			 ,0.833511,0.674963,0.844455,0.674963,0.471573,0.844455,0.471573,0.833511,0.409783,0.833511,0.409783,0.844455,0.844455,0.206393
			 ,0.833511,0.206393,0.833511,0.268183,0.844455,0.268183,0.341986,0.844455,0.403777,0.844455,0.403777,0.833511,0.341986,0.833511
			 ,0.844455,0.545376,0.833511,0.545376,0.833511,0.607166,0.844455,0.607166,0.810556,0.844455,0.810556,0.833511,0.748766,0.833511
			 ,0.748766,0.844455,0.844455,0.200387,0.844455,0.138596,0.833511,0.138596,0.833511,0.200387,0.206393,0.844455,0.268183,0.844455
			 ,0.268183,0.833511,0.206393,0.833511,0.844455,0.070800,0.833511,0.070800,0.833511,0.132590,0.844455,0.132590,0.070800,0.844455
			 ,0.132590,0.844455,0.132590,0.833511,0.070800,0.833511,0.861404,0.070800,0.850461,0.070800,0.850461,0.132590,0.861404,0.132590
			 ,0.477579,0.844455,0.539370,0.844455,0.539370,0.833511,0.477579,0.833511,0.861404,0.003003,0.850461,0.003003,0.850461,0.064794
			 ,0.861404,0.064794,0.680969,0.844455,0.742760,0.844455,0.742760,0.833511,0.680969,0.833511,0.861404,0.545376,0.850461,0.545376
			 ,0.850461,0.607166,0.861404,0.607166,0.613172,0.844455,0.674963,0.844455,0.674963,0.833511,0.613172,0.833511,0.861404,0.477579
			 ,0.850461,0.477579,0.850461,0.539370,0.861404,0.539370,0.545376,0.844455,0.607166,0.844455,0.607166,0.833511,0.545376,0.833511
			 ,0.861404,0.138596,0.850461,0.138596,0.850461,0.200387,0.861404,0.200387,0.003003,0.844455,0.064794,0.844455,0.064794,0.833511
			 ,0.003003,0.833511,0.861404,0.409783,0.850461,0.409783,0.850461,0.471573,0.861404,0.471573,0.206393,0.861404,0.268183,0.861404
			 ,0.268183,0.850461,0.206393,0.850461,0.861404,0.680969,0.850461,0.680969,0.850461,0.742760,0.861404,0.742760,0.274189,0.861404
			 ,0.335980,0.861404,0.335980,0.850461,0.274189,0.850461,0.861404,0.613172,0.850461,0.613172,0.850461,0.674963,0.861404,0.674963
			 ,0.471573,0.861404,0.471573,0.850461,0.409783,0.850461,0.409783,0.861404,0.861404,0.335980,0.861404,0.274189,0.850461,0.274189
			 ,0.850461,0.335980,0.680969,0.861404,0.742760,0.861404,0.742760,0.850461,0.680969,0.850461,0.861404,0.810556,0.861404,0.748766
			 ,0.850461,0.748766,0.850461,0.810556,0.064794,0.861404,0.064794,0.850461,0.003003,0.850461,0.003003,0.861404,0.861404,0.206393
			 ,0.850461,0.206393,0.850461,0.268183,0.861404,0.268183,0.810556,0.861404,0.810556,0.850461,0.748766,0.850461,0.748766,0.861404
			 ,0.861404,0.403777,0.861404,0.341986,0.850461,0.341986,0.850461,0.403777,0.341986,0.861404,0.403777,0.861404,0.403777,0.850461
			 ,0.341986,0.850461,0.861404,0.816562,0.850461,0.816562,0.850461,0.878353,0.861404,0.878353,0.539370,0.861404,0.539370,0.850461
			 ,0.477579,0.850461,0.477579,0.861404,0.878353,0.268183,0.878353,0.206393,0.867410,0.206393,0.867410,0.268183,0.613172,0.861404
			 ,0.674963,0.861404,0.674963,0.850461,0.613172,0.850461,0.878353,0.138596,0.867410,0.138596,0.867410,0.200387,0.878353,0.200387
			 ,0.545376,0.861404,0.607166,0.861404,0.607166,0.850461,0.545376,0.850461,0.844455,0.878353,0.844455,0.816562,0.833511,0.816562
			 ,0.833511,0.878353,0.200387,0.861404,0.200387,0.850461,0.138596,0.850461,0.138596,0.861404,0.878353,0.816562,0.867410,0.816562
			 ,0.867410,0.878353,0.878353,0.878353,0.132590,0.861404,0.132590,0.850461,0.070800,0.850461,0.070800,0.861404,0.878353,0.613172
			 ,0.867410,0.613172,0.867410,0.674963,0.878353,0.674963,0.409783,0.878353,0.471573,0.878353,0.471573,0.867410,0.409783,0.867410
			 ,0.878353,0.742760,0.878353,0.680969,0.867410,0.680969,0.867410,0.742760,0.545376,0.878353,0.607166,0.878353,0.607166,0.867410
			 ,0.545376,0.867410,0.878353,0.070800,0.867410,0.070800,0.867410,0.132590,0.878353,0.132590,0.268183,0.878353,0.268183,0.867410
			 ,0.206393,0.867410,0.206393,0.878353,0.827505,0.878353,0.827505,0.816562,0.816562,0.816562,0.816562,0.878353,0.274189,0.878353
			 ,0.335980,0.878353,0.335980,0.867410,0.274189,0.867410,0.878353,0.471573,0.878353,0.409783,0.867410,0.409783,0.867410,0.471573
			 ,0.810556,0.878353,0.810556,0.867410,0.748766,0.867410,0.748766,0.878353,0.878353,0.545376,0.867410,0.545376,0.867410,0.607166
			 ,0.878353,0.607166,0.477579,0.878353,0.539370,0.878353,0.539370,0.867410,0.477579,0.867410,0.878353,0.335980,0.878353,0.274189
			 ,0.867410,0.274189,0.867410,0.335980,0.200387,0.878353,0.200387,0.867410,0.138596,0.867410,0.138596,0.878353,0.878353,0.810556
			 ,0.878353,0.748766,0.867410,0.748766,0.867410,0.810556,0.674963,0.878353,0.674963,0.867410,0.613172,0.867410,0.613172,0.878353
			 ,0.878353,0.539370,0.878353,0.477579,0.867410,0.477579,0.867410,0.539370,0.132590,0.878353,0.132590,0.867410,0.070800,0.867410
			 ,0.070800,0.878353,0.878353,0.403777,0.878353,0.341986,0.867410,0.341986,0.867410,0.403777,0.680969,0.878353,0.742760,0.878353
			 ,0.742760,0.867410,0.680969,0.867410,0.878353,0.003003,0.867410,0.003003,0.867410,0.064794,0.878353,0.064794,0.341986,0.878353
			 ,0.403777,0.878353,0.403777,0.867410,0.341986,0.867410,0.895302,0.477579,0.884359,0.477579,0.884359,0.539370,0.895302,0.539370
			 ,0.209396,0.132590,0.268183,0.132590,0.268183,0.006006,0.268183,0.268183,0.141599,0.268183,0.268183,0.209396,0.073803,0.335980
			 ,0.132590,0.335980,0.132590,0.209396,0.268183,0.335980,0.141599,0.335980,0.268183,0.277192,0.006006,0.335980,0.064794,0.335980
			 ,0.064794,0.209396,0.403777,0.268183,0.277192,0.268183,0.403777,0.209396,0.471573,0.607166,0.471573,0.548379,0.412786,0.607166
			 ,0.409783,0.545376,0.468570,0.545376,0.409783,0.604163,0.274189,0.206393,0.274189,0.265180,0.400774,0.206393,0.061791,0.206393
			 ,0.003003,0.332977,0.003003,0.206393,0.138596,0.274189,0.138596,0.332977,0.265180,0.274189,0.129587,0.206393,0.070800,0.332977
			 ,0.070800,0.206393,0.138596,0.206393,0.138596,0.265180,0.265180,0.206393,0.265180,0.003003,0.206393,0.129587,0.206393,0.003003
			 ,0.003003,0.878353,0.064794,0.878353,0.064794,0.867410,0.003003,0.867410,0.895302,0.274189,0.884359,0.274189,0.884359,0.335980
			 ,0.895302,0.335980,0.070800,0.895302,0.132590,0.895302,0.132590,0.884359,0.070800,0.884359,0.895302,0.471573,0.895302,0.409783
			 ,0.884359,0.409783,0.884359,0.471573,0.003003,0.895302,0.064794,0.895302,0.064794,0.884359,0.003003,0.884359,0.895302,0.200387
			 ,0.895302,0.138596,0.884359,0.138596,0.884359,0.200387,0.206393,0.895302,0.268183,0.895302,0.268183,0.884359,0.206393,0.884359
			 ,0.895302,0.403777,0.895302,0.341986,0.884359,0.341986,0.884359,0.403777,0.335980,0.895302,0.335980,0.884359,0.274189,0.884359
			 ,0.274189,0.895302,0.895302,0.613172,0.884359,0.613172,0.884359,0.674963,0.895302,0.674963,0.403777,0.895302,0.403777,0.884359
			 ,0.341986,0.884359,0.341986,0.895302,0.895302,0.607166,0.895302,0.545376,0.884359,0.545376,0.884359,0.607166,0.833511,0.895302
			 ,0.895302,0.895302,0.895302,0.884359,0.833511,0.884359,0.895302,0.268183,0.895302,0.206393,0.884359,0.206393,0.884359,0.268183
			 ,0.138596,0.895302,0.200387,0.895302,0.200387,0.884359,0.138596,0.884359,0.895302,0.748766,0.884359,0.748766,0.884359,0.810556
			 ,0.895302,0.810556,0.748766,0.895302,0.810556,0.895302,0.810556,0.884359,0.748766,0.884359,0.895302,0.680969,0.884359,0.680969
			 ,0.884359,0.742760,0.895302,0.742760,0.680969,0.895302,0.742760,0.895302,0.742760,0.884359,0.680969,0.884359,0.895302,0.070800
			 ,0.884359,0.070800,0.884359,0.132590,0.895302,0.132590,0.403777,0.725811,0.403777,0.697918,0.341986,0.697918,0.341986,0.725811
			 ,0.725811,0.545376,0.697918,0.545376,0.697918,0.607166,0.725811,0.607166,0.613172,0.895302,0.674963,0.895302,0.674963,0.884359
			 ,0.613172,0.884359,0.895302,0.064794,0.895302,0.003003,0.884359,0.003003,0.884359,0.064794,0.471573,0.725811,0.471573,0.697918
			 ,0.409783,0.697918,0.409783,0.725811,0.912251,0.742760,0.912251,0.680969,0.901308,0.680969,0.901308,0.742760,0.477579,0.895302
			 ,0.539370,0.895302,0.539370,0.884359,0.477579,0.884359,0.912251,0.341986,0.901308,0.341986,0.901308,0.403777,0.912251,0.403777
			 ,0.607166,0.912251,0.607166,0.901308,0.545376,0.901308,0.545376,0.912251,0.725811,0.335980,0.725811,0.274189,0.697918,0.274189
			 ,0.697918,0.335980,0.477579,0.912251,0.539370,0.912251,0.539370,0.901308,0.477579,0.901308,0.725811,0.206393,0.697918,0.206393
			 ,0.697918,0.268183,0.725811,0.268183,0.674963,0.912251,0.674963,0.901308,0.613172,0.901308,0.613172,0.912251,0.912251,0.200387
			 ,0.912251,0.138596,0.901308,0.138596,0.901308,0.200387,0.810556,0.912251,0.810556,0.901308,0.748766,0.901308,0.748766,0.912251
			 ,0.912251,0.409783,0.901308,0.409783,0.901308,0.471573,0.912251,0.471573,0.409783,0.912251,0.471573,0.912251,0.471573,0.901308
			 ,0.409783,0.901308,0.912251,0.477579,0.901308,0.477579,0.901308,0.539370,0.912251,0.539370,0.613172,0.708861,0.674963,0.708861
			 ,0.674963,0.680969,0.613172,0.680969,0.912251,0.268183,0.912251,0.206393,0.901308,0.206393,0.901308,0.268183,0.545376,0.708861
			 ,0.607166,0.708861,0.607166,0.680969,0.545376,0.680969,0.725811,0.477579,0.697918,0.477579,0.697918,0.539370,0.725811,0.539370
			 ,0.200387,0.912251,0.200387,0.901308,0.138596,0.901308,0.138596,0.912251,0.912251,0.613172,0.901308,0.613172,0.901308,0.674963
			 ,0.912251,0.674963,0.070800,0.912251,0.132590,0.912251,0.132590,0.901308,0.070800,0.901308,0.708861,0.674963,0.708861,0.613172
			 ,0.680969,0.613172,0.680969,0.674963,0.064794,0.912251,0.064794,0.901308,0.003003,0.901308,0.003003,0.912251,0.912251,0.878353
			 ,0.912251,0.816562,0.901308,0.816562,0.901308,0.878353,0.403777,0.912251,0.403777,0.901308,0.341986,0.901308,0.341986,0.912251
			 ,0.708861,0.064794,0.708861,0.003003,0.680969,0.003003,0.680969,0.064794,0.070800,0.708861,0.132590,0.708861,0.132590,0.680969
			 ,0.070800,0.680969,0.674963,0.064794,0.674963,0.003003,0.647071,0.003003,0.647071,0.064794,0.064794,0.708861,0.064794,0.680969
			 ,0.003003,0.680969,0.003003,0.708861,0.929200,0.003003,0.918257,0.003003,0.918257,0.064794,0.929200,0.064794,0.471573,0.929200
			 ,0.471573,0.918257,0.409783,0.918257,0.409783,0.929200,0.929200,0.132590,0.929200,0.070800,0.918257,0.070800,0.918257,0.132590
			 ,0.674963,0.302082,0.674963,0.274189,0.613172,0.274189,0.613172,0.302082,0.929200,0.539370,0.929200,0.477579,0.918257,0.477579
			 ,0.918257,0.539370,0.070800,0.929200,0.132590,0.929200,0.132590,0.918257,0.070800,0.918257,0.929200,0.816562,0.918257,0.816562
			 ,0.918257,0.878353,0.929200,0.878353,0.674963,0.335980,0.674963,0.308088,0.613172,0.308088,0.613172,0.335980,0.471573,0.268183
			 ,0.471573,0.206393,0.443681,0.206393,0.443681,0.268183,0.064794,0.929200,0.064794,0.918257,0.003003,0.918257,0.003003,0.929200
			 ,0.929200,0.341986,0.918257,0.341986,0.918257,0.403777,0.929200,0.403777,0.816562,0.929200,0.878353,0.929200,0.878353,0.918257
			 ,0.816562,0.918257,0.929200,0.680969,0.918257,0.680969,0.918257,0.742760,0.929200,0.742760,0.335980,0.929200,0.335980,0.918257
			 ,0.274189,0.918257,0.274189,0.929200,0.929200,0.810556,0.929200,0.748766,0.918257,0.748766,0.918257,0.810556,0.477579,0.929200
			 ,0.539370,0.929200,0.539370,0.918257,0.477579,0.918257,0.251234,0.488522,0.251234,0.480582,0.243294,0.488522,0.260243,0.488522
			 ,0.268183,0.480582,0.268183,0.488522,0.217336,0.539370,0.209396,0.539370,0.217336,0.531430,0.268183,0.497531,0.260243,0.505472
			 ,0.268183,0.505472,0.217336,0.488522,0.217336,0.480582,0.209396,0.488522,0.226345,0.522421,0.234285,0.514481,0.234285,0.522421
			 ,0.217336,0.505472,0.209396,0.505472,0.217336,0.497531,0.234285,0.497531,0.226345,0.505472,0.234285,0.505472,0.251234,0.522421
			 ,0.251234,0.514481,0.243294,0.522421,0.260243,0.522421,0.268183,0.514481,0.268183,0.522421,0.251234,0.539370,0.243294,0.539370
			 ,0.251234,0.531430,0.268183,0.531430,0.260243,0.539370,0.268183,0.539370,0.217336,0.522421,0.217336,0.514481,0.209396,0.522421
			 ,0.226345,0.488522,0.234285,0.480582,0.234285,0.488522,0.251234,0.505472,0.243294,0.505472,0.251234,0.497531,0.234285,0.531430
			 ,0.226345,0.539370,0.234285,0.539370,0.240291,0.511478,0.240291,0.519418,0.248231,0.511478,0.265180,0.511478,0.257240,0.519418
			 ,0.257240,0.511478,0.240291,0.528427,0.248231,0.528427,0.240291,0.536367,0.257240,0.536367,0.265180,0.528427,0.257240,0.528427
			 ,0.206393,0.511478,0.206393,0.519418,0.214333,0.511478,0.231282,0.511478,0.223342,0.519418,0.223342,0.511478,0.206393,0.528427
			 ,0.214333,0.528427,0.206393,0.536367,0.223342,0.536367,0.231282,0.528427,0.223342,0.528427,0.240291,0.477579,0.240291,0.485519
			 ,0.248231,0.477579,0.265180,0.477579,0.257240,0.485519,0.257240,0.477579,0.240291,0.494528,0.248231,0.494528,0.240291,0.502469
			 ,0.257240,0.502469,0.265180,0.494528,0.257240,0.494528,0.206393,0.477579,0.206393,0.485519,0.214333,0.477579,0.231282,0.477579
			 ,0.223342,0.485519,0.223342,0.477579,0.206393,0.494528,0.214333,0.494528,0.206393,0.502469,0.223342,0.502469,0.231282,0.494528
			 ,0.223342,0.494528,0.708861,0.471573,0.708861,0.341986,0.697918,0.341986,0.697918,0.471573,0.138596,0.691912,0.268183,0.691912
			 ,0.268183,0.680969,0.138596,0.680969,0.929200,0.200387,0.929200,0.138596,0.918257,0.138596,0.918257,0.200387,0.748766,0.929200
			 ,0.810556,0.929200,0.810556,0.918257,0.748766,0.918257,0.929200,0.268183,0.929200,0.206393,0.918257,0.206393,0.918257,0.268183
			 ,0.409783,0.691912,0.539370,0.691912,0.539370,0.680969,0.409783,0.680969,0.708861,0.200387,0.708861,0.070800,0.697918,0.070800
			 ,0.697918,0.200387,0.206393,0.929200,0.268183,0.929200,0.268183,0.918257,0.206393,0.918257,0.691912,0.471573,0.691912,0.341986
			 ,0.680969,0.341986,0.680969,0.471573,0.274189,0.691912,0.403777,0.691912,0.403777,0.680969,0.274189,0.680969,0.946150,0.607166
			 ,0.946150,0.545376,0.935206,0.545376,0.935206,0.607166,0.816562,0.946150,0.878353,0.946150,0.878353,0.935206,0.816562,0.935206
			 ,0.946150,0.539370,0.946150,0.477579,0.935206,0.477579,0.935206,0.539370,0.274189,0.674963,0.403777,0.674963,0.403777,0.664020
			 ,0.274189,0.664020,0.691912,0.607166,0.691912,0.477579,0.680969,0.477579,0.680969,0.607166,0.613172,0.946150,0.674963,0.946150
			 ,0.674963,0.935206,0.613172,0.935206,0.691912,0.200387,0.691912,0.070800,0.680969,0.070800,0.680969,0.200387,0.409783,0.674963
			 ,0.539370,0.674963,0.539370,0.664020,0.409783,0.664020,0.946150,0.335980,0.946150,0.274189,0.935206,0.274189,0.935206,0.335980
			 ,0.884359,0.912251,0.946150,0.912251,0.946150,0.901308,0.884359,0.901308,0.946150,0.878353,0.946150,0.816562,0.935206,0.816562
			 ,0.935206,0.878353,0.545376,0.674963,0.674963,0.674963,0.674963,0.664020,0.545376,0.664020,0.691912,0.335980,0.691912,0.206393
			 ,0.680969,0.206393,0.680969,0.335980,0.680969,0.946150,0.742760,0.946150,0.742760,0.935206,0.680969,0.935206,0.674963,0.607166
			 ,0.674963,0.477579,0.664020,0.477579,0.664020,0.607166,0.545376,0.641065,0.674963,0.641065,0.674963,0.630122,0.545376,0.630122
			 ,0.946150,0.200387,0.946150,0.138596,0.935206,0.138596,0.935206,0.200387,0.138596,0.946150,0.200387,0.946150,0.200387,0.935206
			 ,0.138596,0.935206,0.946150,0.810556,0.946150,0.748766,0.935206,0.748766,0.935206,0.810556,0.545376,0.658014,0.674963,0.658014
			 ,0.674963,0.647071,0.545376,0.647071,0.674963,0.471573,0.674963,0.341986,0.664020,0.341986,0.664020,0.471573,0.884359,0.946150
			 ,0.946150,0.946150,0.946150,0.935206,0.884359,0.935206,0.674963,0.200387,0.674963,0.070800,0.664020,0.070800,0.664020,0.200387
			 ,0.003003,0.674963,0.132590,0.674963,0.132590,0.664020,0.003003,0.664020,0.963099,0.607166,0.963099,0.545376,0.952156,0.545376
			 ,0.952156,0.607166,0.341986,0.946150,0.403777,0.946150,0.403777,0.935206,0.341986,0.935206,0.963099,0.539370,0.963099,0.477579
			 ,0.952156,0.477579,0.952156,0.539370,0.138596,0.674963,0.268183,0.674963,0.268183,0.664020,0.138596,0.664020,0.658014,0.607166
			 ,0.658014,0.477579,0.647071,0.477579,0.647071,0.607166,0.409783,0.946150,0.471573,0.946150,0.471573,0.935206,0.409783,0.935206
			 ,0.658014,0.471573,0.658014,0.341986,0.647071,0.341986,0.647071,0.471573,0.545376,0.624116,0.674963,0.624116,0.674963,0.613172
			 ,0.545376,0.613172,0.963099,0.742760,0.963099,0.680969,0.952156,0.680969,0.952156,0.742760,0.341986,0.963099,0.403777,0.963099
			 ,0.403777,0.952156,0.341986,0.952156,0.963099,0.200387,0.963099,0.138596,0.952156,0.138596,0.952156,0.200387,0.003003,0.658014
			 ,0.132590,0.658014,0.132590,0.647071,0.003003,0.647071,0.658014,0.200387,0.658014,0.070800,0.647071,0.070800,0.647071,0.200387
			 ,0.274189,0.963099,0.335980,0.963099,0.335980,0.952156,0.274189,0.952156,0.641065,0.471573,0.641065,0.341986,0.630122,0.341986
			 ,0.630122,0.471573,0.138596,0.658014,0.268183,0.658014,0.268183,0.647071,0.138596,0.647071,0.963099,0.471573,0.963099,0.409783
			 ,0.952156,0.409783,0.952156,0.471573,0.138596,0.963099,0.200387,0.963099,0.200387,0.952156,0.138596,0.952156,0.963099,0.810556
			 ,0.963099,0.748766,0.952156,0.748766,0.952156,0.810556,0.409783,0.658014,0.539370,0.658014,0.539370,0.647071,0.409783,0.647071
			 ,0.641065,0.607166,0.641065,0.477579,0.630122,0.477579,0.630122,0.607166,0.613172,0.963099,0.674963,0.963099,0.674963,0.952156
			 ,0.613172,0.952156,0.624116,0.607166,0.624116,0.477579,0.613172,0.477579,0.613172,0.607166,0.274189,0.658014,0.403777,0.658014
			 ,0.403777,0.647071,0.274189,0.647071,0.963099,0.335980,0.963099,0.274189,0.952156,0.274189,0.952156,0.335980,0.545376,0.963099
			 ,0.607166,0.963099,0.607166,0.952156,0.545376,0.952156,0.963099,0.963099,0.963099,0.901308,0.952156,0.901308,0.952156,0.963099
			 ,0.138596,0.708861,0.268183,0.708861,0.268183,0.697918,0.138596,0.697918,0.624116,0.471573,0.624116,0.341986,0.613172,0.341986
			 ,0.613172,0.471573,0.748766,0.963099,0.810556,0.963099,0.810556,0.952156,0.748766,0.952156,0.064794,0.132590,0.006006,0.132590
			 ,0.064794,0.006006,0.403777,0.141599,0.403777,0.200387,0.277192,0.200387,0.132590,0.132590,0.073803,0.132590,0.132590,0.006006
			 ,0.582277,0.064794,0.641065,0.064794,0.641065,0.006006,0.132590,0.200387,0.132590,0.141599,0.006006,0.200387,0.141599,0.132590
			 ,0.200387,0.132590,0.200387,0.006006,0.268183,0.141599,0.268183,0.200387,0.141599,0.200387,0.138596,0.138596,0.138596,0.197384
			 ,0.265180,0.138596,0.138596,0.003003,0.197384,0.003003,0.138596,0.129587,0.003003,0.197384,0.003003,0.138596,0.129587,0.138596
			 ,0.579274,0.003003,0.579274,0.061791,0.638062,0.003003,0.129587,0.003003,0.070800,0.003003,0.070800,0.129587,0.274189,0.138596
			 ,0.274189,0.197384,0.400774,0.138596,0.061791,0.003003,0.003003,0.003003,0.003003,0.129587
			UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54
				,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109
				,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164
				,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219
				,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274
				,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329
				,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384
				,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439
				,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494
				,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549
				,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604
				,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659
				,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714
				,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769
				,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824
				,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879
				,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934
				,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989
				,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044
				,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099
				,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154
				,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209
				,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264
				,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319
				,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374
				,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429
				,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484
				,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539
				,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594
				,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649
				,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704
				,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759
				,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814
				,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869
				,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924
				,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979
				,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034
				,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089
				,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144
				,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199
				,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254
				,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309
				,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364
				,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419
				,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474
				,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529
				,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584
				,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639
				,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694
				,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749
				,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804
				,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859
				,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914
				,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969
				,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024
				,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079
				,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134
				,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189
				,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244
				,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299
				,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354
				,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409
				,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464
				,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519
				,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539
		}
		LayerElementTexture: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
		}
		LayerElementMaterial: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			Materials: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		Layer: 0 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementNormal"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementMaterial"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementSmoothing"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 0
			}
		}
		Layer: 1 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 1
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 1
			}
		}
	}
	Material: "Material::None__ao", "" {
		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", "",0.0000,0.0000,0.0000
			Property: "AmbientFactor", "double", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			Property: "Emissive", "ColorRGB", "",0,0,0
			Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
			Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
			Property: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",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", "",0.0000,0.0000,0.0000
			Property: "AmbientFactor", "double", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			Property: "Emissive", "ColorRGB", "",0,0,0
			Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
			Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
			Property: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",0
		}
	}
	Video: "Video::ao", "Clip" {
		Type: "Clip"
		Properties60:  {
			Property: "FrameRate", "double", "",0
			Property: "LastFrame", "int", "",0
			Property: "Width", "int", "",0
			Property: "Height", "int", "",0
			Property: "Path", "charptr", "", "queen-ao.jpg"
			Property: "StartFrame", "int", "",0
			Property: "StopFrame", "int", "",0
			Property: "PlaySpeed", "double", "",1
			Property: "Offset", "KTime", "",0
			Property: "InterlaceMode", "enum", "",0
			Property: "FreeRunning", "bool", "",0
			Property: "Loop", "bool", "",0
			Property: "AccessMode", "enum", "",0
		}
		UseMipMap: 0
		Filename: "queen-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\queen-ao.jpg"
	}
	Texture: "Texture::ao", "TextureVideoClip" {
		Type: "TextureVideoClip"
		Version: 202
		TextureName: "Texture::ao"
		Properties60:  {
			Property: "Translation", "Vector", "A+",0,0,0
			Property: "Rotation", "Vector", "A+",0,0,0
			Property: "Scaling", "Vector", "A+",1,1,1
			Property: "Texture alpha", "Number", "A+",0
			Property: "TextureTypeUse", "enum", "",0
			Property: "CurrentTextureBlendMode", "enum", "",1
			Property: "UseMaterial", "bool", "",0
			Property: "UseMipMap", "bool", "",0
			Property: "CurrentMappingType", "enum", "",0
			Property: "UVSwap", "bool", "",0
			Property: "WrapModeU", "enum", "",0
			Property: "WrapModeV", "enum", "",0
			Property: "TextureRotationPivot", "Vector3D", "",0,0,0
			Property: "TextureScalingPivot", "Vector3D", "",0,0,0
			Property: "VideoProperty", "object", ""
		}
		Media: "Video::ao"
		FileName: "queen-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\queen-ao.jpg"
		ModelUVTranslation: 0,0
		ModelUVScaling: 1,1
		Texture_Alpha_Source: "None"
		Cropping: 0,0,0,0
	}
	Pose: "Pose::BIND_POSES", "BindPose" {
		Type: "BindPose"
		Version: 100
		Properties60:  {
		}
		NbPoseNodes: 1
		PoseNode:  {
			Node: "Model::Cylinder"
			Matrix: 0.000000052848531,0.000000000000000,-0.699999988079071,0.000000000000000,-0.699999988079071,0.000000000000000,-0.000000052848531,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
		}
	}
	GlobalSettings:  {
		Version: 1000
		Properties60:  {
			Property: "UpAxis", "int", "",1
			Property: "UpAxisSign", "int", "",1
			Property: "FrontAxis", "int", "",2
			Property: "FrontAxisSign", "int", "",1
			Property: "CoordAxis", "int", "",0
			Property: "CoordAxisSign", "int", "",1
			Property: "UnitScaleFactor", "double", "",1
		}
	}
}

; Object relations
;------------------------------------------------------------------

Relations:  {
	Model: "Model::Cylinder", "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::None__ao", "" {
	}
	Material: "Material::unnamed", "" {
	}
	Texture: "Texture::ao", "TextureVideoClip" {
	}
	Video: "Video::ao", "Clip" {
	}
}

; Object connections
;------------------------------------------------------------------

Connections:  {
	Connect: "OO", "Model::Cylinder", "Model::Scene"
	Connect: "OO", "Material::unnamed", "Model::Cylinder"
	Connect: "OO", "Material::None__ao", "Model::Cylinder"
	Connect: "OO", "Texture::ao", "Model::Cylinder"
	Connect: "OO", "Video::ao", "Texture::ao"
}
;Takes and animation section
;----------------------------------------------------

Takes:  {
	Current: ""
}
;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
	}
}