Socialify

Folder ..

Viewing pawn.fbx
1117 lines (1106 loc) • 106.9 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
; 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: 01
		Second: 39
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-06-05 04:01:39: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::pawn", "Mesh" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
			Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
			Property: "RotationOffset", "Vector3D", "",0,0,0
			Property: "RotationPivot", "Vector3D", "",0,0,0
			Property: "ScalingOffset", "Vector3D", "",0,0,0
			Property: "ScalingPivot", "Vector3D", "",0,0,0
			Property: "TranslationActive", "bool", "",0
			Property: "TranslationMin", "Vector3D", "",0,0,0
			Property: "TranslationMax", "Vector3D", "",0,0,0
			Property: "TranslationMinX", "bool", "",0
			Property: "TranslationMinY", "bool", "",0
			Property: "TranslationMinZ", "bool", "",0
			Property: "TranslationMaxX", "bool", "",0
			Property: "TranslationMaxY", "bool", "",0
			Property: "TranslationMaxZ", "bool", "",0
			Property: "RotationOrder", "enum", "",0
			Property: "RotationSpaceForLimitOnly", "bool", "",0
			Property: "AxisLen", "double", "",10
			Property: "PreRotation", "Vector3D", "",0,0,0
			Property: "PostRotation", "Vector3D", "",0,0,0
			Property: "RotationActive", "bool", "",0
			Property: "RotationMin", "Vector3D", "",0,0,0
			Property: "RotationMax", "Vector3D", "",0,0,0
			Property: "RotationMinX", "bool", "",0
			Property: "RotationMinY", "bool", "",0
			Property: "RotationMinZ", "bool", "",0
			Property: "RotationMaxX", "bool", "",0
			Property: "RotationMaxY", "bool", "",0
			Property: "RotationMaxZ", "bool", "",0
			Property: "RotationStiffnessX", "double", "",0
			Property: "RotationStiffnessY", "double", "",0
			Property: "RotationStiffnessZ", "double", "",0
			Property: "MinDampRangeX", "double", "",0
			Property: "MinDampRangeY", "double", "",0
			Property: "MinDampRangeZ", "double", "",0
			Property: "MaxDampRangeX", "double", "",0
			Property: "MaxDampRangeY", "double", "",0
			Property: "MaxDampRangeZ", "double", "",0
			Property: "MinDampStrengthX", "double", "",0
			Property: "MinDampStrengthY", "double", "",0
			Property: "MinDampStrengthZ", "double", "",0
			Property: "MaxDampStrengthX", "double", "",0
			Property: "MaxDampStrengthY", "double", "",0
			Property: "MaxDampStrengthZ", "double", "",0
			Property: "PreferedAngleX", "double", "",0
			Property: "PreferedAngleY", "double", "",0
			Property: "PreferedAngleZ", "double", "",0
			Property: "InheritType", "enum", "",0
			Property: "ScalingActive", "bool", "",0
			Property: "ScalingMin", "Vector3D", "",1,1,1
			Property: "ScalingMax", "Vector3D", "",1,1,1
			Property: "ScalingMinX", "bool", "",0
			Property: "ScalingMinY", "bool", "",0
			Property: "ScalingMinZ", "bool", "",0
			Property: "ScalingMaxX", "bool", "",0
			Property: "ScalingMaxY", "bool", "",0
			Property: "ScalingMaxZ", "bool", "",0
			Property: "GeometricTranslation", "Vector3D", "",0,0,0
			Property: "GeometricRotation", "Vector3D", "",0,0,0
			Property: "GeometricScaling", "Vector3D", "",1,1,1
			Property: "LookAtProperty", "object", ""
			Property: "UpVectorProperty", "object", ""
			Property: "Show", "bool", "",1
			Property: "NegativePercentShapeSupport", "bool", "",1
			Property: "DefaultAttributeIndex", "int", "",0
			Property: "Color", "Color", "A",0.8,0.8,0.8
			Property: "Size", "double", "",100
			Property: "Look", "enum", "",1
		}
		MultiLayer: 0
		MultiTake: 1
		Shading: Y
		Culling: "CullingOff"
		Vertices: -0.259228,0.107376,0.994344,-0.198405,0.082182,0.686344,-0.151852,0.151852,0.686344,-0.214752,0.214752,0.886189,-0.000000,0.118477,0.620014,-0.000000,0.280586,0.994344,-0.000000,0.214752,0.686344
		,-0.000000,0.214752,1.086034,0.107376,0.259228,0.994344,0.082182,0.198405,1.086034,0.082182,0.198405,0.686344,0.259228,0.107376,0.778034,0.280586,-0.000000,0.994344,0.214751,-0.000000,0.686344
		,0.303704,-0.000000,0.886189,0.198404,-0.198405,0.994344,0.198404,-0.198405,0.778034,-0.000000,-0.214752,1.086034,-0.000000,-0.280586,0.778034,-0.000000,-0.303705,0.886189,-0.083776,-0.083776,0.620014
		,-0.151852,-0.151852,0.686344,-0.198405,-0.082182,0.686344,-0.259228,-0.107376,0.778034,-0.280587,0.000000,0.994344,-0.517908,0.000000,0.003786,-0.450832,-0.000000,0.346156,-0.318787,0.318787,0.346156
		,-0.260999,0.260999,0.486475,-0.366216,0.366216,0.003786,0.000000,0.517908,0.003786,0.366216,0.366216,0.003786,0.515653,-0.000000,0.063566,0.260827,-0.260949,0.486514,0.318787,-0.318787,0.346156
		,0.000000,-0.515653,0.063566,0.000000,-0.517908,0.003786,0.197866,-0.477692,0.003786,0.197005,-0.475612,0.063566,-0.000000,-0.369885,0.486271,0.172240,-0.415825,0.346156,-0.140742,-0.340830,0.486408
		,-0.172240,-0.415825,0.346156,-0.197005,-0.475612,0.063566,-0.190096,0.190096,0.592999,0.268836,-0.000000,0.592999,0.099947,-0.251204,0.592521,-0.475612,-0.197005,0.063566,-0.000000,-0.512101,-0.000000
		,-0.512101,0.000000,0.000000,-0.362110,0.362110,0.000000,-0.000000,0.512101,0.000000,-0.462109,-0.191412,0.189645,-0.354269,-0.354269,0.189645,-0.191412,-0.462108,0.189645,0.191412,-0.462109,0.189645
		,0.354269,0.354269,0.189645,0.000000,0.501012,0.189645,-0.195648,-0.472336,-0.000000,0.195648,-0.472336,-0.000000,-0.099948,-0.251204,0.592521,-0.129893,0.053804,1.185467,-0.099416,0.099416,1.296667
		,-0.058237,0.140595,1.241067,-0.000000,0.140595,1.296667,0.041179,0.099416,1.343803,0.058236,0.140595,1.241067,0.099415,0.099416,1.296667,0.099415,0.099416,1.185467,0.099415,0.041179,1.343803
		,0.140595,-0.058236,1.241067,0.042037,-0.042037,1.375063,0.099415,-0.099416,1.296667,0.053803,-0.129893,1.296667,-0.053804,-0.129893,1.296667,-0.042037,-0.042037,1.375063,-0.129893,-0.053803,1.296667
		,-0.059450,0.000000,1.375063,0.054924,0.022750,1.375063,-0.022751,-0.054924,1.375063,-0.054924,-0.022750,1.375063,-0.214752,0.000000,1.086034,-0.303705,0.000000,0.886189,-0.109459,0.045339,1.152364
		,-0.259228,0.107376,0.778034,-0.151852,0.151852,1.086034,-0.083776,0.083776,0.620014,-0.198405,0.198405,0.778034,-0.082182,0.198405,0.686344,-0.082182,0.198405,1.086034,-0.045339,0.109459,1.152364
		,-0.000000,0.303705,0.886189,0.045339,0.109459,1.152364,0.116223,0.280586,0.886189,0.151852,0.151852,1.086034,0.214752,0.214752,0.886189,0.107376,0.259228,0.778034,0.259228,0.107376,0.994344
		,0.083776,0.083776,0.620014,0.198405,0.198405,0.778034,0.198405,0.082182,0.686344,0.198405,0.082182,1.086034,0.280586,-0.116223,0.886189,0.118477,-0.000000,0.620014,0.118477,-0.000000,1.152364
		,0.214751,-0.214752,0.886189,0.083776,-0.083776,0.620014,0.259228,-0.107376,0.778034,0.082182,-0.198405,1.086034,0.107376,-0.259228,0.994344,0.107376,-0.259228,0.778034,0.083776,-0.083776,1.152364
		,0.045339,-0.109459,0.620014,0.082182,-0.198405,0.686344,0.045339,-0.109459,1.152364,0.116223,-0.280586,0.886189,-0.107376,-0.259228,0.994344,-0.000000,-0.118477,0.620014,-0.000000,-0.214752,0.686344
		,-0.214752,-0.214751,0.886189,-0.198405,-0.198404,0.778034,-0.280586,-0.116223,0.886189,-0.109459,-0.045339,0.620014,-0.259228,-0.107376,0.994344,-0.198405,-0.082182,1.086034,-0.109459,-0.045339,1.152364
		,-0.118477,0.000000,0.620014,-0.214752,0.000000,0.686344,-0.280587,0.000000,0.778034,-0.118477,0.000000,1.152364,-0.195648,0.472336,0.000000,0.000000,0.450832,0.346156,0.000000,-0.501012,0.189645
		,0.362110,0.362110,0.000000,0.415825,0.172240,0.346156,-0.000000,-0.273088,0.592090,0.141172,0.340820,0.486349,-0.251689,0.104253,0.591746,-0.172240,0.415825,0.346156,0.477692,-0.197866,0.003786
		,0.450832,-0.000000,0.346156,0.000000,0.159373,0.656317,0.260999,0.260999,0.486475,0.366216,-0.366216,0.003786,0.062550,-0.169522,0.647925,-0.188374,-0.189591,0.593390,0.108222,-0.110992,0.657327
		,-0.462109,0.191412,0.189645,-0.318787,-0.318787,0.346156,-0.340803,-0.141168,0.486353,0.000000,0.369109,0.486475,-0.197866,-0.477692,0.003786,0.000000,0.002114,0.691045,0.475612,-0.197005,0.063566
		,-0.000000,-0.000000,0.000000,0.512101,-0.000000,-0.000000,-0.112528,0.112762,0.656317,0.190096,0.190096,0.592999,-0.268836,-0.000000,0.592999,0.318787,0.318787,0.346156,0.364622,-0.364622,0.063566
		,-0.477692,-0.197866,0.003786,-0.362111,-0.362110,-0.000000,-0.364622,0.364622,0.063566,0.251689,0.104253,0.591745,-0.000000,-0.157219,0.658024,-0.472336,0.195648,0.000000,-0.062550,-0.169522,0.647925
		,-0.251517,-0.104203,0.591785,0.188373,-0.189591,0.593390,0.364622,0.364622,0.063566,0.517907,0.000000,0.003786,-0.475612,0.197005,0.063566,0.340803,-0.141167,0.486353,-0.472337,-0.195648,-0.000000
		,-0.354269,0.354269,0.189645,-0.515653,-0.000000,0.063566,-0.197005,0.475612,0.063566,0.000000,0.515653,0.063566,0.172240,0.415825,0.346156,0.000000,0.268836,0.592999,-0.141172,0.340820,0.486349
		,0.197866,0.477692,0.003786,0.112528,0.112762,0.656317,-0.260827,-0.260949,0.486514,-0.477692,0.197866,0.003786,0.462108,0.191412,0.189645,-0.366216,-0.366216,0.003786,-0.171606,-0.071105,0.645822
		,0.477692,0.197866,0.003786,-0.197866,0.477692,0.003786,-0.107607,0.000000,1.343803,-0.099416,0.041179,1.343803,-0.129893,0.053804,1.296667,-0.140595,0.000000,1.296667,-0.076090,0.076090,1.343803
		,-0.022751,0.054924,1.375063,-0.053804,0.129893,1.185467,-0.077566,0.077566,1.136338,-0.000000,0.140595,1.185467,-0.053804,0.129893,1.296667,-0.041180,0.099416,1.343803,0.022750,0.054924,1.375063
		,0.053803,0.129893,1.185467,-0.000000,0.152179,1.241067,-0.000000,0.109694,1.136338,-0.000000,0.107607,1.343803,0.042037,0.042037,1.375063,0.053803,0.129893,1.296667,0.129893,0.053804,1.296667
		,0.076089,0.076090,1.343803,0.140595,0.000000,1.296667,0.140595,0.000000,1.185467,0.101344,0.041978,1.136338,0.129893,0.053804,1.185467,0.054924,-0.022750,1.375063,0.099415,-0.041179,1.343803
		,0.129893,-0.053803,1.185467,0.101344,-0.041978,1.136338,0.107606,-0.107607,1.241067,0.099415,-0.099416,1.185467,0.076089,-0.076089,1.343803,0.041978,-0.101344,1.136338,0.053803,-0.129893,1.185467
		,0.058236,-0.140595,1.241067,-0.000000,-0.152179,1.241067,-0.000000,-0.140595,1.185467,-0.000000,-0.107607,1.343803,-0.053804,-0.129893,1.185467,-0.041979,-0.101344,1.136338,-0.041180,-0.099416,1.343803
		,-0.058237,-0.140595,1.241067,-0.099416,-0.041179,1.343803,-0.140595,-0.058236,1.241067,-0.054924,0.022750,1.375063,-0.042037,0.042037,1.375063,-0.000000,0.059449,1.375063,0.059449,0.000000,1.375063
		,0.022750,-0.054924,1.375063,-0.000000,-0.059449,1.375063,-0.109695,0.000000,1.136338,-0.140595,0.000000,1.185467,-0.198405,0.082182,1.086034,-0.280587,0.116223,0.886189,-0.109459,0.045339,0.620014
		,-0.083776,0.083776,1.152364,-0.198405,0.198405,0.994344,-0.107376,0.259228,0.994344,-0.116223,0.280586,0.886189,-0.107376,0.259228,0.778034,-0.045339,0.109459,0.620014,-0.000000,0.118477,1.152364
		,-0.000000,0.280586,0.778034,0.045339,0.109459,0.620014,0.083776,0.083776,1.152364,0.198405,0.198405,0.994344,0.151852,0.151852,0.686344,0.109459,0.045339,1.152364,0.280586,0.116223,0.886189
		,0.109459,0.045339,0.620014,0.214751,-0.000000,1.086034,0.280586,-0.000000,0.778034,0.109459,-0.045339,1.152364,0.198404,-0.082182,1.086034,0.259228,-0.107376,0.994344,0.198404,-0.082182,0.686344
		,0.109459,-0.045339,0.620014,0.151852,-0.151852,1.086034,0.151852,-0.151852,0.686344,-0.000000,-0.118477,1.152364,-0.000000,-0.280586,0.994344,-0.045339,-0.109459,1.152364,-0.082182,-0.198405,1.086034
		,-0.116223,-0.280586,0.886189,-0.107376,-0.259228,0.778034,-0.082182,-0.198405,0.686344,-0.045339,-0.109459,0.620014,-0.083776,-0.083776,1.152364,-0.151852,-0.151852,1.086034,-0.198405,-0.198404,0.994344
		,-0.340820,0.141172,0.486349,-0.415825,0.172240,0.346156,-0.369109,-0.000000,0.486475,-0.104253,0.251689,0.591746,0.197005,0.475612,0.063566,0.104253,0.251689,0.591746,0.475612,0.197005,0.063566
		,0.340820,0.141172,0.486349,0.369108,-0.000000,0.486475,0.362110,-0.362110,-0.000000,0.251517,-0.104203,0.591785,0.415825,-0.172240,0.346156,0.140742,-0.340830,0.486408,0.000000,-0.450832,0.346156
		,-0.364622,-0.364622,0.063566,-0.172371,0.071468,0.645648,-0.159069,0.000254,0.656332,-0.071398,0.172440,0.645648,0.071398,0.172440,0.645648,0.172371,0.071468,0.645648,0.159069,0.000254,0.656333
		,0.171606,-0.071105,0.645822,-0.108222,-0.110992,0.657327,-0.415825,-0.172240,0.346156,0.472336,0.195648,0.000000,0.195648,0.472336,0.000000,0.472336,-0.195648,-0.000000,-0.501012,-0.000000,0.189645
		,0.354269,-0.354269,0.189645,0.462108,-0.191412,0.189645,0.501012,-0.000000,0.189645,0.191412,0.462108,0.189645,-0.191412,0.462108,0.189645,-0.152179,0.000000,1.241067,-0.140595,0.058237,1.241067
		,-0.101345,0.041978,1.136338,-0.107607,0.107607,1.241067,-0.099416,0.099416,1.185467,-0.041979,0.101344,1.136338,-0.000000,0.000000,1.388002,0.041978,0.101344,1.136338,0.107606,0.107607,1.241067
		,0.077565,0.077566,1.136338,0.140595,0.058236,1.241067,0.107606,0.000000,1.343803,0.152179,0.000000,1.241067,0.109694,0.000000,1.136338,0.129893,-0.053803,1.296667,0.077565,-0.077565,1.136338
		,0.041179,-0.099416,1.343803,-0.000000,-0.140595,1.296667,-0.000000,-0.109694,1.136338,-0.076090,-0.076089,1.343803,-0.099416,-0.099416,1.296667,-0.107607,-0.107607,1.241067,-0.099416,-0.099416,1.185467
		,-0.077566,-0.077565,1.136338,-0.129893,-0.053803,1.185467,-0.101345,-0.041978,1.136338
		PolygonVertexIndex: 33,173,290,-170,282,158,137,-281,293,40,292,-40,60,167,302,-146,310,140,291,-310,27,281,280,-29,167,165,152,-303,157,183,299,-165,135,46,144,-166,52,303,26,-308,28,280,137,-45,56,311,179,-160,310,186,134,-141
		,175,147,281,-28,56,159,134,-187,159,179,136,-143,131,150,136,-180,152,146,301,-301,180,141,298,-286,142,157,164,-288,157,285,298,-184,132,55,40,-294,36,37,38,-36,152,141,297,-157,288,287,164,-46,54,132,293,-43
		,45,300,301,-291,307,26,281,-148,27,28,181,-139,150,180,285,-137,14,12,264,-103,187,294,47,-162,48,154,-60,292,33,169,-47,124,278,277,-126,123,279,278,-125,118,18,274,-276,20,276,275,-22,57,312,138,-132
		,59,154,-290,152,156,295,-297,308,309,291,-35,42,293,39,-42,288,45,290,-174,151,43,294,-188,29,190,130,-51,140,288,173,-292,150,181,283,-181,40,34,33,-293,303,149,282,-27,89,85,245,-91,30,190,177,-179
		,131,138,181,-151,151,58,48,-37,26,282,280,-282,171,139,306,-156,46,169,146,-145,151,36,35,-44,142,136,285,-158,294,53,52,-48,103,13,265,-267,91,248,247,-6,55,308,34,-41,51,154,-131,28,44,283,-182
		,143,289,306,-140,171,155,304,-190,32,286,186,-311,37,143,160,-39,31,133,305,-183,165,144,146,-153,174,49,-155,53,148,303,-53,140,134,287,-289,29,50,166,-186,60,135,165,-168,30,51,130,-191,163,172,147,-176
		,149,168,158,-283,44,156,297,-284,133,154,-306,170,56,186,-287,133,304,-155,36,48,59,-38,50,130,-155,170,284,311,-57,31,182,284,-171,169,290,301,-147,159,142,287,-135,180,283,297,-142,178,177,312,-58
		,41,39,135,-61,50,154,-167,34,291,173,-34,29,163,177,-191,176,307,147,-173,143,139,153,-161,171,32,153,-140,18,19,273,-275,45,164,299,-301,37,59,289,-144,152,183,298,-142,41,60,145,-185,178,57,311,-285
		,25,176,172,-186,145,302,188,-169,44,137,295,-157,51,305,-155,152,300,299,-184,302,152,296,-189,58,162,-155,175,27,138,-313,39,292,46,-136,117,118,275,-277,241,240,338,-338,71,221,216,-216,76,233,334,-334
		,214,212,326,-214,221,72,327,-217,74,231,225,-331,77,80,-320,226,331,222,-224,191,194,76,-233,63,204,199,-198,68,214,213,-323,206,65,208,-65,210,69,209,-68,220,328,218,-218,78,319,-238,191,192,193,-195
		,230,74,330,-228,223,222,328,-221,330,225,224,-74,64,208,66,-205,73,224,219,-73,219,220,217,-71,334,335,228,-232,231,228,226,-226,313,241,337,-234,224,223,220,-220,236,319,-203,200,64,204,-64,197,199,205,-319
		,72,219,70,-328,317,197,318,-199,335,336,229,-229,329,73,72,-222,332,333,74,-231,61,317,198,-316,208,67,321,-67,225,226,223,-225,337,338,336,-336,313,314,61,-242,193,62,316,-315,67,209,323,-322,204,66,203,-200
		,199,203,320,-206,70,217,212,-326,241,61,315,-241,314,316,317,-62,316,63,197,-318,77,319,-235,321,323,214,-69,195,201,200,-63,327,70,325,-212,227,330,73,-330,69,324,211,-210,333,334,231,-75,239,238,-320
		,62,200,63,-317,233,337,335,-335,209,211,325,-324,194,193,314,-314,65,210,67,-209,194,313,233,-77,201,206,64,-201,323,325,212,-215,234,319,-236,228,229,331,-227,192,195,62,-194,217,218,326,-213,203,68,322,-321
		,216,327,211,-325,232,76,333,-333,66,321,68,-204,79,239,-320,120,274,273,-120,11,258,14,-262,259,100,13,-104,266,265,268,-107,4,250,88,-7,93,8,255,-96,84,128,82,-244,252,249,248,-92,102,264,15,-106
		,112,113,118,-118,10,96,99,-257,7,89,90,-252,115,109,270,-20,246,0,242,-86,260,104,262,-264,119,273,116,-280,253,4,6,-11,96,93,95,-100,242,81,129,-84,24,123,124,-82,15,267,108,-110,247,246,85,-90
		,244,126,127,-2,278,272,271,-278,19,270,116,-274,270,17,272,-117,8,5,7,-10,255,94,101,-98,0,246,3,-244,94,254,257,-102,264,263,267,-16,93,91,5,-9,250,86,2,-89,101,257,104,-261,5,247,89,-8
		,81,124,125,-130,85,242,83,-246,10,6,252,-97,106,268,113,-113,107,102,105,-17,21,275,274,-121,16,105,115,-111,279,116,272,-279,97,101,260,-13,122,20,21,-23,256,99,11,-101,249,87,3,-249,121,119,279,-124
		,9,92,254,-95,22,21,120,-24,86,244,1,-3,0,24,81,-243,9,7,251,-93,253,10,256,-99,110,115,19,-19,263,262,111,-268,88,2,87,-250,126,122,22,-128,258,97,12,-15,265,107,16,-269,100,11,261,-14
		,108,114,269,-18,13,261,107,-266,127,22,23,-129,12,260,263,-265,24,0,243,-83,6,88,249,-253,87,84,243,-4,98,256,100,-260,2,1,84,-88,113,110,18,-119,268,16,110,-114,82,121,123,-25,105,15,109,-116
		,99,95,258,-12,95,255,97,-259,248,3,246,-248,261,14,102,-108,1,127,128,-85,267,111,114,-109,109,108,17,-271,17,269,271,-273,23,120,119,-122,8,9,94,-256,96,252,91,-94,128,23,121,-83,58,154,-49
		,35,38,55,-133,29,185,172,-164,30,178,284,-183,31,189,304,-134,289,154,-307,49,166,-155,158,296,295,-138,163,175,312,-178,42,41,184,-149,32,310,309,-154,57,131,179,-312,151,187,162,-59,38,160,308,-56
		,54,42,148,-54,43,35,132,-55,25,185,166,-50,168,188,296,-159,148,184,149,-304,47,52,307,-177,31,170,286,-190,160,153,309,-309,184,145,168,-150,162,174,-155,187,161,174,-163,43,54,53,-295,161,47,176,-26
		,171,189,286,-33,30,182,305,-52,235,319,-197,80,75,-320,215,216,324,-238,75,332,230,-80,78,237,324,-70,238,329,221,-72,79,230,227,-240,75,79,-320,235,196,201,-196,196,236,206,-202,207,78,69,-211
		,80,232,332,-76,71,215,-320,239,227,329,-239,77,234,192,-192,215,237,-320,202,207,210,-66,77,191,232,-81,207,319,-79,238,71,-320,202,319,-208,236,202,65,-207,196,319,-237,234,235,195,-193
		,161,25,49,-175,155,306,-155,155,154,-305
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: -0.848506093025208,0.351451158523560,0.395550400018692,-0.656666755676270,0.271980941295624,-0.703390598297119
			 ,-0.502578794956207,0.502578794956207,-0.703390598297119,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.000000000000000,0.567339062690735,-0.823450446128845,0.000000000000000,0.918424010276794,0.395550400018692
			 ,0.000000000000000,0.710776090621948,-0.703390598297119,0.000000000000000,0.710776090621948,0.703390598297119
			 ,0.351451158523560,0.848506093025208,0.395550400018692,0.271980941295624,0.656666755676270,0.703390598297119
			 ,0.271980941295624,0.656666755676270,-0.703390598297119,0.848506093025208,0.351451158523560,-0.395550400018692
			 ,0.918424010276794,0.000000000000000,0.395550400018692,0.710776090621948,0.000000000000000,-0.703390598297119
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.649403333663940,-0.649403333663940,0.395550400018692
			 ,0.649403333663940,-0.649403333663940,-0.395550400018692,0.000000000000000,-0.710776090621948,0.703390598297119
			 ,0.000000000000000,-0.918424010276794,-0.395550400018692,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,-0.401165813207626,-0.401165813207626,-0.823450446128845,-0.502578794956207,-0.502578794956207,-0.703390598297119
			 ,-0.656666755676270,-0.271980941295624,-0.703390598297119,-0.848506093025208,-0.351451158523560,-0.395550400018692
			 ,-0.918424010276794,0.000000000000000,0.395550400018692,-0.899960339069366,0.000000000000000,-0.435895860195160
			 ,-0.915952026844025,0.000000000000000,0.401257365942001,-0.647663831710815,0.647663831710815,0.401226848363876
			 ,-0.571794807910919,0.571794807910919,0.588274776935577,-0.636371970176697,0.636371970176697,-0.435895860195160
			 ,0.000000000000000,0.899960339069366,-0.435895860195160,0.636371970176697,0.636371970176697,-0.435895860195160
			 ,0.997070193290710,0.000000000000000,0.076174199581146,0.569536447525024,-0.571703255176544,0.590502619743347
			 ,0.647511243820190,-0.647663831710815,0.401501506567001,0.000000000000000,-0.997070193290710,0.076174199581146
			 ,0.000000000000000,-0.899960339069366,-0.435895860195160,0.344279319047928,-0.831171631813049,-0.436536759138107
			 ,0.381572932004929,-0.921170711517334,0.076082646846771,0.000000000000000,-0.810327470302582,0.585955381393433
			 ,0.351023882627487,-0.846247732639313,0.400769054889679,-0.312417984008789,-0.745689272880554,0.588488399982452
			 ,-0.351023882627487,-0.846247732639313,0.400769054889679,-0.381572932004929,-0.921170711517334,0.076082646846771
			 ,-0.452528446912766,0.452528446912766,0.768364489078522,0.639545857906342,-0.000549333170056,0.768730759620667
			 ,0.246528521180153,-0.586687803268433,0.771355330944061,-0.921170711517334,-0.381572932004929,0.076082646846771
			 ,0.000000000000000,-0.317575603723526,-0.948210060596466,-0.317575603723526,0.000000000000000,-0.948210060596466
			 ,-0.224555194377899,0.224555194377899,-0.948210060596466,0.000000000000000,0.317575603723526,-0.948210060596466
			 ,-0.903531014919281,-0.374248474836349,0.208594009280205,-0.691488385200500,-0.691488385200500,0.208807647228241
			 ,-0.374248474836349,-0.903531014919281,0.208594009280205,0.374248474836349,-0.903531014919281,0.208594009280205
			 ,0.691488385200500,0.691488385200500,0.208807647228241,0.000000000000000,0.977935135364532,0.208807647228241
			 ,-0.121158480644226,-0.292550444602966,-0.948515295982361,0.121158480644226,-0.292550444602966,-0.948515295982361
			 ,-0.246528521180153,-0.586687803268433,0.771355330944061,-0.859523296356201,0.356028944253922,-0.366649359464645
			 ,-0.651722788810730,0.651722788810730,0.387951284646988,-0.382671594619751,0.923856317996979,0.000000000000000
			 ,0.000000000000000,0.921658992767334,0.387951284646988,0.270393997430801,0.652790904045105,0.707602143287659
			 ,0.382671594619751,0.923856317996979,0.000000000000000,0.651722788810730,0.651722788810730,0.387951284646988
			 ,0.657826483249664,0.657826483249664,-0.366649359464645,0.652790904045105,0.270393997430801,0.707602143287659
			 ,0.923856317996979,-0.382671594619751,0.000000000000000,0.285378575325012,-0.285378575325012,0.914914369583130
			 ,0.651722788810730,-0.651722788810730,0.387951284646988,0.352702409029007,-0.851496934890747,0.387951284646988
			 ,-0.352702409029007,-0.851496934890747,0.387951284646988,-0.285378575325012,-0.285378575325012,0.914914369583130
			 ,-0.851496934890747,-0.352702409029007,0.387951284646988,-0.403607279062271,0.000000000000000,0.914914369583130
			 ,0.372875154018402,0.154454171657562,0.914914369583130,-0.154454171657562,-0.372875154018402,0.914914369583130
			 ,-0.372875154018402,-0.154454171657562,0.914914369583130,-0.710776090621948,0.000000000000000,0.703390598297119
			 ,-0.999969482421875,0.000000000000000,0.000000000000000,-0.524155378341675,0.217108681797981,0.823450446128845
			 ,-0.848506093025208,0.351451158523560,-0.395550400018692,-0.502578794956207,0.502578794956207,0.703390598297119
			 ,-0.401165813207626,0.401165813207626,-0.823450446128845,-0.649403333663940,0.649403333663940,-0.395550400018692
			 ,-0.271980941295624,0.656666755676270,-0.703390598297119,-0.271980941295624,0.656666755676270,0.703390598297119
			 ,-0.217108681797981,0.524155378341675,0.823450446128845,0.000000000000000,1.000000000000000,0.000000000000000
			 ,0.217108681797981,0.524155378341675,0.823450446128845,0.382671594619751,0.923856317996979,0.000000000000000
			 ,0.502578794956207,0.502578794956207,0.703390598297119,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.351451158523560,0.848506093025208,-0.395550400018692,0.848506093025208,0.351451158523560,0.395550400018692
			 ,0.401165813207626,0.401165813207626,-0.823450446128845,0.649403333663940,0.649403333663940,-0.395550400018692
			 ,0.656666755676270,0.271980941295624,-0.703390598297119,0.656666755676270,0.271980941295624,0.703390598297119
			 ,0.923856317996979,-0.382671594619751,0.000000000000000,0.567339062690735,0.000000000000000,-0.823450446128845
			 ,0.567339062690735,0.000000000000000,0.823450446128845,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.401165813207626,-0.401165813207626,-0.823450446128845,0.848506093025208,-0.351451158523560,-0.395550400018692
			 ,0.271980941295624,-0.656666755676270,0.703390598297119,0.351451158523560,-0.848506093025208,0.395550400018692
			 ,0.351451158523560,-0.848506093025208,-0.395550400018692,0.401165813207626,-0.401165813207626,0.823450446128845
			 ,0.217108681797981,-0.524155378341675,-0.823450446128845,0.271980941295624,-0.656666755676270,-0.703390598297119
			 ,0.217108681797981,-0.524155378341675,0.823450446128845,0.382671594619751,-0.923856317996979,0.000000000000000
			 ,-0.351451158523560,-0.848506093025208,0.395550400018692,0.000000000000000,-0.567339062690735,-0.823450446128845
			 ,0.000000000000000,-0.710776090621948,-0.703390598297119,-0.707083344459534,-0.707083344459534,0.000000000000000
			 ,-0.649403333663940,-0.649403333663940,-0.395550400018692,-0.923856317996979,-0.382671594619751,0.000000000000000
			 ,-0.524155378341675,-0.217108681797981,-0.823450446128845,-0.848506093025208,-0.351451158523560,0.395550400018692
			 ,-0.656666755676270,-0.271980941295624,0.703390598297119,-0.524155378341675,-0.217108681797981,0.823450446128845
			 ,-0.567339062690735,0.000000000000000,-0.823450446128845,-0.710776090621948,0.000000000000000,-0.703390598297119
			 ,-0.918424010276794,0.000000000000000,-0.395550400018692,-0.567339062690735,0.000000000000000,0.823450446128845
			 ,-0.121158480644226,0.292550444602966,-0.948515295982361,0.000000000000000,0.915952026844025,0.401226848363876
			 ,0.000000000000000,-0.977935135364532,0.208807647228241,0.224555194377899,0.224555194377899,-0.948210060596466
			 ,0.846339285373688,0.350566118955612,0.400982707738876,0.000000000000000,-0.642384111881256,0.766350269317627
			 ,0.309335619211197,0.746848940849304,0.588610470294952,-0.591387689113617,0.244880527257919,0.768272936344147
			 ,-0.350566118955612,0.846339285373688,0.400982707738876,0.831171631813049,-0.344279319047928,-0.436536759138107
			 ,0.915952026844025,0.000000000000000,0.401257365942001,0.000000000000000,0.353984177112579,0.935239732265472
			 ,0.571794807910919,0.571794807910919,0.588274776935577,0.636371970176697,-0.636371970176697,-0.435895860195160
			 ,0.161748096346855,-0.387676626443863,0.907467901706696,-0.445081949234009,-0.453535556793213,0.772118270397186
			 ,0.246467486023903,-0.248542740941048,0.936735153198242,-0.903531014919281,0.374248474836349,0.208594009280205
			 ,-0.647511243820190,-0.647663831710815,0.401501506567001,-0.745872378349304,-0.310037523508072,0.589495539665222
			 ,0.000000000000000,0.808648943901062,0.588274776935577,-0.344279319047928,-0.831171631813049,-0.436536759138107
			 ,0.000000000000000,0.004638813436031,0.999969482421875,0.921170711517334,-0.381572932004929,0.076082646846771
			 ,0.000000000000000,0.000000000000000,-1.000000000000000,0.317575603723526,0.000000000000000,-0.948210060596466
			 ,-0.249977111816406,0.249916076660156,0.935422837734222,0.452528446912766,0.452528446912766,0.768364489078522
			 ,-0.639545857906342,-0.000549333170056,0.768730759620667,0.647663831710815,0.647663831710815,0.401226848363876
			 ,0.705038607120514,-0.705038607120514,0.076174199581146,-0.831171631813049,-0.344279319047928,-0.436536759138107
			 ,-0.224555194377899,-0.224555194377899,-0.948210060596466,-0.705038607120514,0.705038607120514,0.076174199581146
			 ,0.591387689113617,0.244880527257919,0.768272936344147,0.000000000000000,-0.343333244323730,0.939207136631012
			 ,-0.292550444602966,0.121158480644226,-0.948515295982361,-0.161748096346855,-0.387676626443863,0.907467901706696
			 ,-0.588549435138702,-0.247230440378189,0.769707322120667,0.445081949234009,-0.453535556793213,0.772118270397186
			 ,0.705038607120514,0.705038607120514,0.076174199581146,0.899960339069366,0.000000000000000,-0.435895860195160
			 ,-0.921170711517334,0.381572932004929,0.076082646846771,0.745872378349304,-0.310037523508072,0.589495539665222
			 ,-0.292550444602966,-0.121158480644226,-0.948515295982361,-0.691488385200500,0.691488385200500,0.208807647228241
			 ,-0.997070193290710,0.000000000000000,0.076174199581146,-0.381572932004929,0.921170711517334,0.076082646846771
			 ,0.000000000000000,0.997070193290710,0.076204717159271,0.350566118955612,0.846339285373688,0.400982707738876
			 ,0.000000000000000,0.640034198760986,0.768303453922272,-0.309335619211197,0.746848940849304,0.588610470294952
			 ,0.344279319047928,0.831171631813049,-0.436536759138107,0.249977111816406,0.249916076660156,0.935422837734222
			 ,-0.569536447525024,-0.571703255176544,0.590502619743347,-0.831171631813049,0.344279319047928,-0.436536759138107
			 ,0.903531014919281,0.374248474836349,0.208594009280205,-0.636371970176697,-0.636371970176697,-0.435895860195160
			 ,-0.391369372606277,-0.166936248540878,0.904934823513031,0.831171631813049,0.344279319047928,-0.436536759138107
			 ,-0.344279319047928,0.831171631813049,-0.436536759138107,-0.706595063209534,0.000000000000000,0.707602143287659
			 ,-0.652790904045105,0.270393997430801,0.707602143287659,-0.851496934890747,0.352702409029007,0.387951284646988
			 ,-0.921658992767334,0.000000000000000,0.387951284646988,-0.499618530273438,0.499618530273438,0.707602143287659
			 ,-0.154454171657562,0.372875154018402,0.914914369583130,-0.356028944253922,0.859523296356201,-0.366649359464645
			 ,-0.598528981208801,0.598528981208801,-0.532395422458649,0.000000000000000,0.930326223373413,-0.366649359464645
			 ,-0.352702409029007,0.851496934890747,0.387951284646988,-0.270393997430801,0.652790904045105,0.707602143287659
			 ,0.154454171657562,0.372875154018402,0.914914369583130,0.356028944253922,0.859523296356201,-0.366649359464645
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.846461355686188,-0.532395422458649
			 ,0.000000000000000,0.706595063209534,0.707602143287659,0.285378575325012,0.285378575325012,0.914914369583130
			 ,0.352702409029007,0.851496934890747,0.387951284646988,0.851496934890747,0.352702409029007,0.387951284646988
			 ,0.499618530273438,0.499618530273438,0.707602143287659,0.921658992767334,0.000000000000000,0.387951284646988
			 ,0.930326223373413,0.000000000000000,-0.366649359464645,0.782036781311035,0.323923468589783,-0.532395422458649
			 ,0.859523296356201,0.355998426675797,-0.366649359464645,0.372875154018402,-0.154454171657562,0.914914369583130
			 ,0.652790904045105,-0.270393997430801,0.707602143287659,0.859523296356201,-0.356028944253922,-0.366649359464645
			 ,0.782036781311035,-0.323923468589783,-0.532395422458649,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.657826483249664,-0.657826483249664,-0.366649359464645,0.499618530273438,-0.499618530273438,0.707602143287659
			 ,0.323923468589783,-0.782036781311035,-0.532395422458649,0.356028944253922,-0.859523296356201,-0.366649359464645
			 ,0.382671594619751,-0.923856317996979,0.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,0.000000000000000,-0.930326223373413,-0.366649359464645,0.000000000000000,-0.706595063209534,0.707602143287659
			 ,-0.356028944253922,-0.859523296356201,-0.366649359464645,-0.323923468589783,-0.782036781311035,-0.532395422458649
			 ,-0.270393997430801,-0.652790904045105,0.707602143287659,-0.382671594619751,-0.923856317996979,0.000000000000000
			 ,-0.652790904045105,-0.270393997430801,0.707602143287659,-0.923856317996979,-0.382671594619751,0.000000000000000
			 ,-0.372875154018402,0.154454171657562,0.914914369583130,-0.285378575325012,0.285378575325012,0.914914369583130
			 ,0.000000000000000,0.403607279062271,0.914914369583130,0.403607279062271,0.000000000000000,0.914914369583130
			 ,0.154454171657562,-0.372875154018402,0.914914369583130,0.000000000000000,-0.403607279062271,0.914914369583130
			 ,-0.846461355686188,0.000000000000000,-0.532395422458649,-0.930326223373413,0.000000000000000,-0.366649359464645
			 ,-0.656666755676270,0.271980941295624,0.703390598297119,-0.923856317996979,0.382671594619751,0.000000000000000
			 ,-0.524155378341675,0.217108681797981,-0.823450446128845,-0.401165813207626,0.401165813207626,0.823450446128845
			 ,-0.649403333663940,0.649403333663940,0.395550400018692,-0.351451158523560,0.848506093025208,0.395550400018692
			 ,-0.382671594619751,0.923856317996979,0.000000000000000,-0.351451158523560,0.848506093025208,-0.395550400018692
			 ,-0.217108681797981,0.524155378341675,-0.823450446128845,0.000000000000000,0.567339062690735,0.823450446128845
			 ,0.000000000000000,0.918424010276794,-0.395550400018692,0.217108681797981,0.524155378341675,-0.823450446128845
			 ,0.401165813207626,0.401165813207626,0.823450446128845,0.649403333663940,0.649403333663940,0.395550400018692
			 ,0.502578794956207,0.502578794956207,-0.703390598297119,0.524155378341675,0.217108681797981,0.823450446128845
			 ,0.923856317996979,0.382671594619751,0.000000000000000,0.524155378341675,0.217108681797981,-0.823450446128845
			 ,0.710776090621948,0.000000000000000,0.703390598297119,0.918424010276794,0.000000000000000,-0.395550400018692
			 ,0.524155378341675,-0.217108681797981,0.823450446128845,0.656666755676270,-0.271980941295624,0.703390598297119
			 ,0.848506093025208,-0.351451158523560,0.395550400018692,0.656666755676270,-0.271980941295624,-0.703390598297119
			 ,0.524155378341675,-0.217108681797981,-0.823450446128845,0.502578794956207,-0.502578794956207,0.703390598297119
			 ,0.502578794956207,-0.502578794956207,-0.703390598297119,0.000000000000000,-0.567339062690735,0.823450446128845
			 ,0.000000000000000,-0.918424010276794,0.395550400018692,-0.217108681797981,-0.524155378341675,0.823450446128845
			 ,-0.271980941295624,-0.656666755676270,0.703390598297119,-0.382671594619751,-0.923856317996979,0.000000000000000
			 ,-0.351451158523560,-0.848506093025208,-0.395550400018692,-0.271980941295624,-0.656666755676270,-0.703390598297119
			 ,-0.217108681797981,-0.524155378341675,-0.823450446128845,-0.401165813207626,-0.401165813207626,0.823450446128845
			 ,-0.502578794956207,-0.502578794956207,0.703390598297119,-0.649403333663940,-0.649403333663940,0.395550400018692
			 ,-0.746848940849304,0.309335619211197,0.588610470294952,-0.846339285373688,0.350566118955612,0.400982707738876
			 ,-0.808587908744812,-0.000091555528343,0.588335812091827,-0.245033115148544,0.591509759426117,0.768150866031647
			 ,0.381572932004929,0.921170711517334,0.076082646846771,0.245033115148544,0.591509759426117,0.768150866031647
			 ,0.921170711517334,0.381572932004929,0.076082646846771,0.746848940849304,0.309335619211197,0.588610470294952
			 ,0.808587908744812,-0.000091555528343,0.588335812091827,0.224555194377899,-0.224555194377899,-0.948210060596466
			 ,0.588549435138702,-0.247230440378189,0.769707322120667,0.846247732639313,-0.350627154111862,0.401074260473251
			 ,0.312417984008789,-0.745689272880554,0.588488399982452,0.000000000000000,-0.916226685047150,0.400616466999054
			 ,-0.705038607120514,-0.705038607120514,0.076174199581146,-0.394543290138245,0.163304537534714,0.904232919216156
			 ,-0.352427750825882,-0.000549333170056,0.935819566249847,-0.163640245795250,0.395031571388245,0.903958261013031
			 ,0.163640245795250,0.395031571388245,0.903958261013031,0.394543290138245,0.163304537534714,0.904232919216156
			 ,0.352427750825882,-0.000549333170056,0.935819566249847,0.391369372606277,-0.166936248540878,0.904934823513031
			 ,-0.246467486023903,-0.248542740941048,0.936735153198242,-0.846247732639313,-0.350627154111862,0.401074260473251
			 ,0.292550444602966,0.121158480644226,-0.948515295982361,0.121158480644226,0.292550444602966,-0.948515295982361
			 ,0.292550444602966,-0.121158480644226,-0.948515295982361,-0.977935135364532,0.000000000000000,0.208807647228241
			 ,0.691488385200500,-0.691488385200500,0.208807647228241,0.903531014919281,-0.374248474836349,0.208594009280205
			 ,0.977935135364532,0.000000000000000,0.208807647228241,0.374248474836349,0.903531014919281,0.208594009280205
			 ,-0.374248474836349,0.903531014919281,0.208594009280205,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.923856317996979,0.382671594619751,0.000000000000000,-0.782036781311035,0.323923468589783,-0.532395422458649
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,-0.657826483249664,0.657826483249664,-0.366649359464645
			 ,-0.323923468589783,0.782036781311035,-0.532395422458649,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.323923468589783,0.782036781311035,-0.532395422458649,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.598528981208801,0.598528981208801,-0.532395422458649,0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.706595063209534,0.000000000000000,0.707602143287659,1.000000000000000,0.000000000000000,0.000000000000000
			 ,0.846461355686188,0.000000000000000,-0.532395422458649,0.851496934890747,-0.352702409029007,0.387951284646988
			 ,0.598528981208801,-0.598528981208801,-0.532395422458649,0.270393997430801,-0.652790904045105,0.707602143287659
			 ,0.000000000000000,-0.921658992767334,0.387951284646988,0.000000000000000,-0.846461355686188,-0.532395422458649
			 ,-0.499618530273438,-0.499618530273438,0.707602143287659,-0.651722788810730,-0.651722788810730,0.387951284646988
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.657826483249664,-0.657826483249664,-0.366649359464645
			 ,-0.598528981208801,-0.598528981208801,-0.532395422458649,-0.859523296356201,-0.356028944253922,-0.366649359464645
			 ,-0.782036781311035,-0.323923468589783,-0.532395422458649
		}
		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
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.196636,0.187099,0.243830,0.175297,0.251157,0.222207,0.216493,0.235347,0.306221,0.492307,0.309755,0.444553,0.345172,0.443951
			 ,0.352574,0.490793,0.055263,0.190315,0.120023,0.155943,0.149701,0.210518,0.100931,0.249134,0.211632,0.394460,0.244464,0.367470
			 ,0.271182,0.381379,0.242488,0.420535,0.297928,0.068477,0.293987,0.121814,0.237444,0.123245,0.232686,0.069154,0.416665,0.532593
			 ,0.358913,0.542875,0.352574,0.490793,0.399978,0.478946,0.244464,0.367470,0.245042,0.339374,0.318790,0.333319,0.271182,0.381379
			 ,0.353869,0.244910,0.325627,0.283105,0.309530,0.260652,0.321510,0.227368,0.152974,0.289261,0.182122,0.256574,0.210603,0.288121
			 ,0.207022,0.315993,0.233937,0.587297,0.246638,0.534503,0.302349,0.544277,0.298363,0.597611,0.399978,0.478946,0.352574,0.490793
			 ,0.345172,0.443951,0.379770,0.431385,0.426463,0.097566,0.491626,0.126680,0.460985,0.180915,0.405320,0.150267,0.297928,0.068477
			 ,0.362353,0.078749,0.349722,0.131562,0.293987,0.121814,0.429785,0.587841,0.363599,0.596974,0.358913,0.542875,0.416665,0.532593
			 ,0.426463,0.097566,0.405320,0.150267,0.349722,0.131562,0.362353,0.078749,0.405320,0.150267,0.460985,0.180915,0.423586,0.230314
			 ,0.380886,0.200858,0.520077,0.224278,0.466267,0.276067,0.423586,0.230314,0.460985,0.180915,0.279064,0.332884,0.239083,0.278315
			 ,0.258121,0.257073,0.283319,0.266075,0.407482,0.309200,0.352332,0.326863,0.352489,0.294993,0.384612,0.270156,0.380886,0.200858
			 ,0.353869,0.244910,0.321510,0.227368,0.335754,0.182134,0.353869,0.244910,0.384612,0.270156,0.352489,0.294993,0.325627,0.283105
			 ,0.022742,0.124211,0.097607,0.097731,0.120023,0.155943,0.055263,0.190315,0.000369,0.046332,0.078783,0.028726,0.084222,0.051148
			 ,0.006386,0.071475,0.318790,0.333319,0.390364,0.350105,0.385808,0.381648,0.357484,0.389435,0.290135,0.173785,0.335754,0.182134
			 ,0.321510,0.227368,0.286571,0.221537,0.104565,0.539068,0.034437,0.501813,0.076371,0.441241,0.135340,0.484808,0.286571,0.221537
			 ,0.283319,0.266075,0.258121,0.257073,0.251157,0.222207,0.298363,0.597611,0.302349,0.544277,0.358913,0.542875,0.363599,0.596974
			 ,0.416665,0.532593,0.399978,0.478946,0.446563,0.456127,0.476248,0.510510,0.466267,0.276067,0.407482,0.309200,0.384612,0.270156
			 ,0.423586,0.230314,0.152628,0.836830,0.137757,0.863151,0.110169,0.849243,0.124317,0.821615,0.147514,0.632659,0.154763,0.610846
			 ,0.224433,0.630755,0.219883,0.652328,0.819584,0.704853,0.781827,0.519086,0.887624,0.676004,0.149701,0.210518,0.196636,0.187099
			 ,0.216493,0.235347,0.182122,0.256574,0.756959,0.104685,0.734041,0.086568,0.769240,0.052339,0.785944,0.065567,0.737117,0.134405
			 ,0.709774,0.115861,0.734041,0.086568,0.756959,0.104685,0.596132,0.206220,0.596132,0.152069,0.641665,0.162688,0.633235,0.206311
			 ,0.654789,0.261778,0.632804,0.259907,0.633235,0.206311,0.665286,0.212401,0.573344,0.542434,0.498535,0.568679,0.476248,0.510510
			 ,0.541100,0.476359,0.887624,0.676004,0.781827,0.519086,0.939882,0.623746,0.318790,0.333319,0.357484,0.389435,0.338244,0.409261
			 ,0.313123,0.400023,0.166460,0.078381,0.232686,0.069154,0.237444,0.123245,0.179728,0.133604,0.135340,0.484808,0.076371,0.441241
			 ,0.130233,0.389818,0.172759,0.435219,0.290135,0.173785,0.286571,0.221537,0.251157,0.222207,0.243830,0.175297,0.075749,0.604532
			 ,0.084442,0.583160,0.154763,0.610846,0.147514,0.632659,0.442207,0.654637,0.517201,0.637584,0.517771,0.640185,0.442667,0.657340
			 ,0.293987,0.121814,0.290135,0.173785,0.243830,0.175297,0.237444,0.123245,0.495538,0.417186,0.446563,0.456127,0.413906,0.410961
			 ,0.442297,0.375727,0.120023,0.155943,0.179728,0.133604,0.196636,0.187099,0.149701,0.210518,0.246638,0.534503,0.260648,0.483968
			 ,0.306221,0.492307,0.302349,0.544277,0.869324,0.149204,0.835865,0.141976,0.847508,0.089689,0.871018,0.091727,0.595481,0.620188
			 ,0.517201,0.637584,0.511815,0.615200,0.589534,0.595089,0.541100,0.476359,0.476248,0.510510,0.446563,0.456127,0.495538,0.417186
			 ,0.075749,0.604532,0.074794,0.607024,0.000218,0.578395,0.000799,0.575529,0.302349,0.544277,0.306221,0.492307,0.352574,0.490793
			 ,0.358913,0.542875,0.302788,0.002904,0.228399,0.002760,0.228255,0.000218,0.302988,0.000218,0.182122,0.256574,0.216493,0.235347
			 ,0.239083,0.278315,0.210603,0.288121,0.075749,0.604532,0.000799,0.575529,0.010465,0.551552,0.084442,0.583160,0.380886,0.200858
			 ,0.423586,0.230314,0.384612,0.270156,0.353869,0.244910,0.154763,0.610846,0.169802,0.568383,0.233937,0.587297,0.224433,0.630755
			 ,0.209247,0.736486,0.184931,0.779461,0.160733,0.763950,0.191494,0.723284,0.882199,0.260314,0.840274,0.231897,0.858538,0.194643
			 ,0.905761,0.210318,0.097607,0.097731,0.166460,0.078381,0.179728,0.133604,0.120023,0.155943,0.744071,0.333319,0.781827,0.519086
			 ,0.676030,0.362169,0.399978,0.478946,0.379770,0.431385,0.413906,0.410961,0.446563,0.456127,0.153918,0.011517,0.153455,0.008809
			 ,0.228255,0.000218,0.228399,0.002760,0.302788,0.002904,0.302988,0.000218,0.376861,0.011258,0.376345,0.013749,0.301128,0.025258
			 ,0.371810,0.035306,0.362353,0.078749,0.297928,0.068477,0.078783,0.028726,0.153918,0.011517,0.157863,0.034161,0.084222,0.051148
			 ,0.448622,0.033339,0.449476,0.030733,0.521221,0.058801,0.520273,0.061290,0.207022,0.315993,0.210603,0.288121,0.239083,0.278315
			 ,0.279064,0.332884,0.624910,0.624883,0.596060,0.556843,0.781827,0.519086,0.169802,0.568383,0.191088,0.515727,0.246638,0.534503
			 ,0.233937,0.587297,0.293987,0.121814,0.349722,0.131562,0.335754,0.182134,0.290135,0.173785,0.442207,0.654637,0.442667,0.657340
			 ,0.367972,0.665868,0.367829,0.663328,0.211632,0.394460,0.187636,0.357824,0.245042,0.339374,0.244464,0.367470,0.595481,0.620188
			 ,0.595625,0.623102,0.517771,0.640185,0.517201,0.637584,0.438297,0.632025,0.366531,0.641338,0.363599,0.596974,0.429785,0.587841
			 ,0.260648,0.483968,0.274829,0.438655,0.309755,0.444553,0.306221,0.492307,0.379770,0.431385,0.357484,0.389435,0.385808,0.381648
			 ,0.413906,0.410961,0.886487,0.361031,0.781827,0.519086,0.817975,0.333319,0.441412,0.055124,0.426463,0.097566,0.362353,0.078749
			 ,0.371810,0.035306,0.886487,0.361031,0.938745,0.413289,0.781827,0.519086,0.000369,0.046332,0.000218,0.043413,0.078207,0.026120
			 ,0.078783,0.028726,0.623772,0.414427,0.676030,0.362169,0.781827,0.519086,0.441412,0.055124,0.511637,0.082632,0.491626,0.126680
			 ,0.426463,0.097566,0.448622,0.033339,0.520273,0.061290,0.511637,0.082632,0.441412,0.055124,0.216493,0.235347,0.251157,0.222207
			 ,0.258121,0.257073,0.239083,0.278315,0.405320,0.150267,0.380886,0.200858,0.335754,0.182134,0.349722,0.131562,0.442297,0.375727
			 ,0.413906,0.410961,0.385808,0.381648,0.390364,0.350105,0.589534,0.595089,0.511815,0.615200,0.498535,0.568679,0.573344,0.542434
			 ,0.172759,0.435219,0.130233,0.389818,0.187636,0.357824,0.211632,0.394460,0.623772,0.414427,0.781827,0.519086,0.596060,0.482939
			 ,0.179728,0.133604,0.237444,0.123245,0.243830,0.175297,0.196636,0.187099,0.442207,0.654637,0.438297,0.632025,0.511815,0.615200
			 ,0.517201,0.637584,0.295139,0.640828,0.298363,0.597611,0.363599,0.596974,0.366531,0.641338,0.153918,0.011517,0.228399,0.002760
			 ,0.229710,0.024769,0.157863,0.034161,0.302788,0.002904,0.301128,0.025258,0.229710,0.024769,0.228399,0.002760,0.596132,0.152069
			 ,0.613114,0.101872,0.657473,0.125307,0.641665,0.162688,0.286571,0.221537,0.321510,0.227368,0.309530,0.260652,0.283319,0.266075
			 ,0.078783,0.028726,0.078207,0.026120,0.153455,0.008809,0.153918,0.011517,0.279064,0.332884,0.325627,0.283105,0.352489,0.294993
			 ,0.352332,0.326863,0.172759,0.435219,0.211632,0.394460,0.242488,0.420535,0.215717,0.465318,0.585531,0.114011,0.561734,0.163696
			 ,0.491626,0.126680,0.511637,0.082632,0.293477,0.663181,0.295139,0.640828,0.366531,0.641338,0.367829,0.663328,0.242488,0.420535
			 ,0.271182,0.381379,0.286871,0.405201,0.274829,0.438655,0.379770,0.431385,0.345172,0.443951,0.338244,0.409261,0.357484,0.389435
			 ,0.744071,0.333319,0.817975,0.333319,0.781827,0.519086,0.279064,0.332884,0.283319,0.266075,0.309530,0.260652,0.325627,0.283105
			 ,0.271182,0.381379,0.318790,0.333319,0.313123,0.400023,0.286871,0.405201,0.745680,0.704853,0.677168,0.677141,0.781827,0.519086
			 ,0.429785,0.587841,0.416665,0.532593,0.476248,0.510510,0.498535,0.568679,0.100931,0.249134,0.149701,0.210518,0.182122,0.256574
			 ,0.152974,0.289261,0.610196,0.261861,0.596132,0.206220,0.633235,0.206311,0.632804,0.259907,0.388346,0.691612,0.390037,0.666304
			 ,0.410602,0.669434,0.407517,0.693548,0.667342,0.800768,0.657645,0.784516,0.669682,0.780157,0.674361,0.797427,0.401629,0.728368
			 ,0.404771,0.711903,0.422873,0.715487,0.417674,0.732758,0.700439,0.729272,0.681790,0.728665,0.681788,0.705805,0.701347,0.705289
			 ,0.657645,0.784516,0.650876,0.768000,0.666555,0.763909,0.669682,0.780157,0.434957,0.740006,0.442482,0.720667,0.465779,0.727437
			 ,0.455046,0.751471,0.383660,0.761771,0.391693,0.763555,0.381980,0.786931,0.596060,0.736855,0.598128,0.706388,0.620383,0.706419
			 ,0.621842,0.733845,0.384914,0.742979,0.386020,0.726421,0.401629,0.728368,0.397560,0.745086,0.330824,0.713208,0.306832,0.716820
			 ,0.306832,0.691515,0.329314,0.692092,0.720097,0.731019,0.700439,0.729272,0.701347,0.705289,0.721821,0.705614,0.728776,0.805173
			 ,0.717772,0.792437,0.729464,0.775520,0.748299,0.788241,0.705943,0.784512,0.693906,0.780155,0.697030,0.763907,0.712709,0.767996
			 ,0.643484,0.731024,0.641756,0.705620,0.662230,0.705291,0.663141,0.729275,0.689231,0.797426,0.681799,0.818529,0.681796,0.796367
			 ,0.384914,0.742979,0.372101,0.743385,0.370291,0.726275,0.386020,0.726421,0.423058,0.758329,0.434957,0.740006,0.455046,0.751471
			 ,0.435991,0.771654,0.621842,0.733845,0.620383,0.706419,0.641756,0.705620,0.643484,0.731024,0.615288,0.788252,0.601755,0.764857
			 ,0.626233,0.756187,0.634122,0.775528,0.748299,0.788241,0.729464,0.775520,0.737351,0.756180,0.761828,0.764845,0.634122,0.775528
			 ,0.626233,0.756187,0.646353,0.750685,0.650876,0.768000,0.646353,0.750685,0.643484,0.731024,0.663141,0.729275,0.664499,0.747580
			 ,0.422873,0.715487,0.426722,0.696585,0.446787,0.699940,0.442482,0.720667,0.442482,0.720667,0.446787,0.699940,0.469145,0.702359
			 ,0.465779,0.727437,0.387110,0.710108,0.388346,0.691612,0.407517,0.693548,0.404771,0.711903,0.626233,0.756187,0.621842,0.733845
			 ,0.643484,0.731024,0.646353,0.750685,0.706399,0.814698,0.681799,0.818529,0.702284,0.806512,0.335711,0.733377,0.314274,0.742069
			 ,0.306832,0.716820,0.330824,0.713208,0.329314,0.692092,0.306832,0.691515,0.311595,0.666602,0.330232,0.668187,0.650876,0.768000
			 ,0.646353,0.750685,0.664499,0.747580,0.666555,0.763909,0.349649,0.691435,0.329314,0.692092,0.330232,0.668187,0.349403,0.667665
			 ,0.426722,0.696585,0.430128,0.673059,0.449057,0.676127,0.446787,0.699940,0.645818,0.792444,0.634122,0.775528,0.650876,0.768000
			 ,0.657645,0.784516,0.410238,0.749984,0.417674,0.732758,0.434957,0.740006,0.423058,0.758329,0.369087,0.690980,0.349649,0.691435
			 ,0.349403,0.667665,0.369238,0.666670,0.729464,0.775520,0.712709,0.767996,0.717230,0.750680,0.737351,0.756180,0.601755,0.764857
			 ,0.596060,0.736855,0.621842,0.733845,0.626233,0.756187,0.407517,0.693548,0.410602,0.669434,0.430128,0.673059,0.426722,0.696585
			 ,0.387110,0.710108,0.369367,0.709538,0.369087,0.690980,0.388346,0.691612,0.370291,0.726275,0.353804,0.728492,0.350949,0.710682
			 ,0.369367,0.709538,0.712709,0.767996,0.697030,0.763907,0.699084,0.747577,0.717230,0.750680,0.761828,0.764845,0.737351,0.756180
			 ,0.741739,0.733837,0.767520,0.736844,0.767520,0.736844,0.741739,0.733837,0.743194,0.706411,0.765448,0.706377,0.664499,0.747580
			 ,0.663141,0.729275,0.681790,0.728665,0.681791,0.746398,0.388346,0.691612,0.369087,0.690980,0.369238,0.666670,0.390037,0.666304
			 ,0.369367,0.709538,0.350949,0.710682,0.349649,0.691435,0.369087,0.690980,0.350949,0.710682,0.330824,0.713208,0.329314,0.692092
			 ,0.349649,0.691435,0.383660,0.761771,0.381980,0.786931,0.375460,0.762471,0.717230,0.750680,0.699084,0.747577,0.700439,0.729272
			 ,0.720097,0.731019,0.358884,0.746554,0.345067,0.753121,0.335711,0.733377,0.353804,0.728492,0.666555,0.763909,0.664499,0.747580
			 ,0.681791,0.746398,0.681793,0.762457,0.634815,0.805182,0.615288,0.788252,0.634122,0.775528,0.645818,0.792444,0.693906,0.780155
			 ,0.681794,0.778722,0.681793,0.762457,0.697030,0.763907,0.417674,0.732758,0.422873,0.715487,0.442482,0.720667,0.434957,0.740006
			 ,0.657196,0.814705,0.661309,0.806516,0.681799,0.818529,0.353804,0.728492,0.335711,0.733377,0.330824,0.713208,0.350949,0.710682
			 ,0.404771,0.711903,0.407517,0.693548,0.426722,0.696585,0.422873,0.715487,0.697030,0.763907,0.681793,0.762457,0.681791,0.746398
			 ,0.699084,0.747577,0.386020,0.726421,0.370291,0.726275,0.369367,0.709538,0.387110,0.710108,0.717772,0.792437,0.705943,0.784512
			 ,0.712709,0.767996,0.729464,0.775520,0.386020,0.726421,0.387110,0.710108,0.404771,0.711903,0.401629,0.728368,0.345067,0.753121
			 ,0.330476,0.764608,0.314274,0.742069,0.335711,0.733377,0.699084,0.747577,0.681791,0.746398,0.681790,0.728665,0.700439,0.729272
			 ,0.375460,0.762471,0.381980,0.786931,0.367438,0.765546,0.446787,0.699940,0.449057,0.676127,0.467739,0.677036,0.469145,0.702359
			 ,0.372101,0.743385,0.358884,0.746554,0.353804,0.728492,0.370291,0.726275,0.663141,0.729275,0.662230,0.705291,0.681788,0.705805
			 ,0.681790,0.728665,0.741739,0.733837,0.720097,0.731019,0.721821,0.705614,0.743194,0.706411,0.669682,0.780157,0.666555,0.763909
			 ,0.681793,0.762457,0.681794,0.778722,0.397560,0.745086,0.401629,0.728368,0.417674,0.732758,0.410238,0.749984,0.737351,0.756180
			 ,0.717230,0.750680,0.720097,0.731019,0.741739,0.733837,0.405810,0.774339,0.410580,0.783898,0.381980,0.786931,0.677247,0.175748
			 ,0.641665,0.162688,0.657473,0.125307,0.691664,0.144713,0.195489,0.824703,0.180774,0.852259,0.152628,0.836830,0.167660,0.810296
			 ,0.228177,0.746894,0.210256,0.792162,0.184931,0.779461,0.209247,0.736486,0.191494,0.723284,0.160733,0.763950,0.136929,0.744833
			 ,0.175190,0.707342,0.749730,0.332884,0.741583,0.314135,0.783269,0.289721,0.799841,0.320164,0.245261,0.887542,0.221859,0.920701
			 ,0.191983,0.897377,0.210730,0.868748,0.761317,0.219822,0.734941,0.203734,0.749445,0.177209,0.777313,0.193221,0.845132,0.297185
			 ,0.815413,0.263131,0.840274,0.231897,0.882199,0.260314,0.124317,0.821615,0.110169,0.849243,0.080035,0.836804,0.093824,0.805841
			 ,0.161047,0.688451,0.113127,0.720232,0.089828,0.686069,0.150560,0.666304,0.268793,0.808221,0.260877,0.850580,0.225673,0.838136
			 ,0.237741,0.802062,0.910638,0.150957,0.869324,0.149204,0.871018,0.091727,0.895364,0.088943,0.058232,0.788559,0.044829,0.826163
			 ,0.000218,0.818900,0.011964,0.767955,0.822497,0.179746,0.791929,0.165252,0.807064,0.131851,0.835865,0.141976,0.121064,0.893232
			 ,0.098238,0.934450,0.079985,0.924761,0.096335,0.881219,0.691664,0.144713,0.657473,0.125307,0.680621,0.092531,0.709774,0.115861
			 ,0.269352,0.757211,0.290824,0.754127,0.306397,0.808200,0.268793,0.808221,0.260877,0.850580,0.245261,0.887542,0.210730,0.868748
			 ,0.225673,0.838136,0.807064,0.131851,0.781115,0.119489,0.804777,0.076151,0.825361,0.084259,0.764045,0.150435,0.737117,0.134405
			 ,0.756959,0.104685,0.781115,0.119489,0.080035,0.836804,0.069435,0.872287,0.039216,0.867500,0.044829,0.826163,0.858538,0.194643
			 ,0.822497,0.179746,0.835865,0.141976,0.869324,0.149204,0.713114,0.285325,0.695249,0.274937,0.718206,0.233792,0.741463,0.248452
			 ,0.734041,0.086568,0.712417,0.063447,0.755446,0.036044,0.769240,0.052339,0.613114,0.101872,0.646287,0.060276,0.680621,0.092531
			 ,0.657473,0.125307,0.646287,0.060276,0.692584,0.031498,0.712417,0.063447,0.680621,0.092531,0.221859,0.920701,0.254915,0.953767
			 ,0.208925,0.982354,0.189261,0.950890,0.191983,0.897377,0.167168,0.926884,0.144487,0.908228,0.164527,0.878872,0.791929,0.165252
			 ,0.822497,0.179746,0.806807,0.210791,0.777313,0.193221,0.167168,0.926884,0.130774,0.961866,0.115281,0.946862,0.144487,0.908228
			 ,0.110169,0.849243,0.096335,0.881219,0.069435,0.872287,0.080035,0.836804,0.245261,0.887542,0.288582,0.912845,0.254915,0.953767
			 ,0.221859,0.920701,0.741583,0.314135,0.728842,0.298290,0.763250,0.266582,0.783269,0.289721,0.144487,0.908228,0.115281,0.946862
			 ,0.098238,0.934450,0.121064,0.893232,0.905761,0.210318,0.858538,0.194643,0.869324,0.149204,0.910638,0.150957,0.781115,0.119489
			 ,0.756959,0.104685,0.785944,0.065567,0.804777,0.076151,0.835865,0.141976,0.807064,0.131851,0.825361,0.084259,0.847508,0.089689
			 ,0.268793,0.808221,0.306397,0.808200,0.306397,0.862712,0.260877,0.850580,0.175190,0.707342,0.136929,0.744833,0.113127,0.720232
			 ,0.161047,0.688451,0.140355,0.794436,0.124317,0.821615,0.093824,0.805841,0.111908,0.776126,0.665286,0.212401,0.633235,0.206311
			 ,0.641665,0.162688,0.677247,0.175748,0.111908,0.776126,0.093824,0.805841,0.058232,0.788559,0.080230,0.753381,0.709774,0.115861
			 ,0.680621,0.092531,0.712417,0.063447,0.734041,0.086568,0.164527,0.878872,0.144487,0.908228,0.121064,0.893232,0.137757,0.863151
			 ,0.675711,0.267015,0.654789,0.261778,0.665286,0.212401,0.693105,0.221815,0.237741,0.802062,0.225673,0.838136,0.195489,0.824703
			 ,0.210256,0.792162,0.815413,0.263131,0.787790,0.238848,0.806807,0.210791,0.840274,0.231897,0.721483,0.161449,0.691664,0.144713
			 ,0.709774,0.115861,0.737117,0.134405,0.189261,0.950890,0.143969,0.979550,0.130774,0.961866,0.167168,0.926884,0.693105,0.221815
			 ,0.665286,0.212401,0.677247,0.175748,0.707457,0.189298,0.728842,0.298290,0.713114,0.285325,0.741463,0.248452,0.763250,0.266582
			 ,0.791929,0.165252,0.764045,0.150435,0.781115,0.119489,0.807064,0.131851,0.189261,0.950890,0.208925,0.982354,0.154245,0.999782
			 ,0.143969,0.979550,0.269352,0.757211,0.268793,0.808221,0.237741,0.802062,0.248230,0.754098,0.080230,0.753381,0.058232,0.788559
			 ,0.011964,0.767955,0.041988,0.721549,0.096335,0.881219,0.079985,0.924761,0.060671,0.918248,0.069435,0.872287,0.783269,0.289721
			 ,0.763250,0.266582,0.787790,0.238848,0.815413,0.263131,0.695249,0.274937,0.675711,0.267015,0.693105,0.221815,0.718206,0.233792
			 ,0.180774,0.852259,0.164527,0.878872,0.137757,0.863151,0.152628,0.836830,0.160733,0.763950,0.140355,0.794436,0.111908,0.776126
			 ,0.136929,0.744833,0.210256,0.792162,0.195489,0.824703,0.167660,0.810296,0.184931,0.779461,0.039216,0.867500,0.040487,0.915793
			 ,0.020263,0.918771,0.004612,0.869497,0.184931,0.779461,0.167660,0.810296,0.140355,0.794436,0.160733,0.763950,0.718206,0.233792
			 ,0.693105,0.221815,0.707457,0.189298,0.734941,0.203734,0.137757,0.863151,0.121064,0.893232,0.096335,0.881219,0.110169,0.849243
			 ,0.764045,0.150435,0.791929,0.165252,0.777313,0.193221,0.749445,0.177209,0.799841,0.320164,0.783269,0.289721,0.815413,0.263131
			 ,0.845132,0.297185,0.787790,0.238848,0.761317,0.219822,0.777313,0.193221,0.806807,0.210791,0.248230,0.754098,0.237741,0.802062
			 ,0.210256,0.792162,0.228177,0.746894,0.763250,0.266582,0.741463,0.248452,0.761317,0.219822,0.787790,0.238848,0.113127,0.720232
			 ,0.080230,0.753381,0.041988,0.721549,0.089828,0.686069,0.136929,0.744833,0.111908,0.776126,0.080230,0.753381,0.113127,0.720232
			 ,0.749445,0.177209,0.721483,0.161449,0.737117,0.134405,0.764045,0.150435,0.093824,0.805841,0.080035,0.836804,0.044829,0.826163
			 ,0.058232,0.788559,0.225673,0.838136,0.210730,0.868748,0.180774,0.852259,0.195489,0.824703,0.210730,0.868748,0.191983,0.897377
			 ,0.164527,0.878872,0.180774,0.852259,0.840274,0.231897,0.806807,0.210791,0.822497,0.179746,0.858538,0.194643,0.167660,0.810296
			 ,0.152628,0.836830,0.124317,0.821615,0.140355,0.794436,0.741463,0.248452,0.718206,0.233792,0.734941,0.203734,0.761317,0.219822
			 ,0.069435,0.872287,0.060671,0.918248,0.040487,0.915793,0.039216,0.867500,0.044829,0.826163,0.039216,0.867500,0.004612,0.869497
			 ,0.000218,0.818900,0.692584,0.031498,0.746730,0.016179,0.755446,0.036044,0.712417,0.063447,0.707457,0.189298,0.677247,0.175748
			 ,0.691664,0.144713,0.721483,0.161449,0.221859,0.920701,0.189261,0.950890,0.167168,0.926884,0.191983,0.897377,0.260877,0.850580
			 ,0.306397,0.862712,0.288582,0.912845,0.245261,0.887542,0.734941,0.203734,0.707457,0.189298,0.721483,0.161449,0.749445,0.177209
			 ,0.745680,0.704853,0.781827,0.519086,0.819584,0.704853,0.006386,0.071475,0.084222,0.051148,0.097607,0.097731,0.022742,0.124211
			 ,0.442207,0.654637,0.367829,0.663328,0.366531,0.641338,0.438297,0.632025,0.595123,0.090066,0.585531,0.114011,0.511637,0.082632
			 ,0.520273,0.061290,0.448622,0.033339,0.376345,0.013749,0.376861,0.011258,0.449476,0.030733,0.939882,0.623746,0.781827,0.519086
			 ,0.967594,0.555234,0.596060,0.556843,0.596060,0.482939,0.781827,0.519086,0.309755,0.444553,0.313123,0.400023,0.338244,0.409261
			 ,0.345172,0.443951,0.438297,0.632025,0.429785,0.587841,0.498535,0.568679,0.511815,0.615200,0.135340,0.484808,0.172759,0.435219
			 ,0.215717,0.465318,0.191088,0.515727,0.301128,0.025258,0.297928,0.068477,0.232686,0.069154,0.229710,0.024769,0.561734,0.163696
			 ,0.520077,0.224278,0.460985,0.180915,0.491626,0.126680,0.075749,0.604532,0.147514,0.632659,0.146656,0.635268,0.074794,0.607024
			 ,0.084222,0.051148,0.157863,0.034161,0.166460,0.078381,0.097607,0.097731,0.104565,0.539068,0.135340,0.484808,0.191088,0.515727
			 ,0.169802,0.568383,0.084442,0.583160,0.010465,0.551552,0.034437,0.501813,0.104565,0.539068,0.293477,0.663181,0.367829,0.663328
			 ,0.367972,0.665868,0.293277,0.665868,0.274829,0.438655,0.286871,0.405201,0.313123,0.400023,0.309755,0.444553,0.191088,0.515727
			 ,0.215717,0.465318,0.260648,0.483968,0.246638,0.534503,0.224433,0.630755,0.233937,0.587297,0.298363,0.597611,0.295139,0.640828
			 ,0.448622,0.033339,0.441412,0.055124,0.371810,0.035306,0.376345,0.013749,0.157863,0.034161,0.229710,0.024769,0.232686,0.069154
			 ,0.166460,0.078381,0.215717,0.465318,0.242488,0.420535,0.274829,0.438655,0.260648,0.483968,0.677168,0.677141,0.624910,0.624883
			 ,0.781827,0.519086,0.147514,0.632659,0.219883,0.652328,0.219365,0.654822,0.146656,0.635268,0.084442,0.583160,0.104565,0.539068
			 ,0.169802,0.568383,0.154763,0.610846,0.219883,0.652328,0.224433,0.630755,0.295139,0.640828,0.293477,0.663181,0.302788,0.002904
			 ,0.376345,0.013749,0.371810,0.035306,0.301128,0.025258,0.595123,0.090066,0.520273,0.061290,0.521221,0.058801,0.595696,0.087206
			 ,0.367438,0.765546,0.381980,0.786931,0.360035,0.771283,0.391693,0.763555,0.399235,0.767669,0.381980,0.786931,0.674361,0.797427
			 ,0.669682,0.780157,0.681794,0.778722,0.681796,0.796367,0.399235,0.767669,0.410238,0.749984,0.423058,0.758329,0.405810,0.774339
			 ,0.689231,0.797426,0.681796,0.796367,0.681794,0.778722,0.693906,0.780155,0.661309,0.806516,0.645818,0.792444,0.657645,0.784516
			 ,0.667342,0.800768,0.405810,0.774339,0.423058,0.758329,0.435991,0.771654,0.410580,0.783898,0.399235,0.767669,0.405810,0.774339
			 ,0.381980,0.786931,0.367438,0.765546,0.360035,0.771283,0.345067,0.753121,0.358884,0.746554,0.360035,0.771283,0.354036,0.780123
			 ,0.330476,0.764608,0.345067,0.753121,0.696250,0.800765,0.689231,0.797426,0.693906,0.780155,0.705943,0.784512,0.391693,0.763555
			 ,0.397560,0.745086,0.410238,0.749984,0.399235,0.767669,0.667342,0.800768,0.674361,0.797427,0.681799,0.818529,0.657196,0.814705
			 ,0.634815,0.805182,0.645818,0.792444,0.661309,0.806516,0.383660,0.761771,0.375460,0.762471,0.372101,0.743385,0.384914,0.742979
			 ,0.674361,0.797427,0.681796,0.796367,0.681799,0.818529,0.702284,0.806512,0.696250,0.800765,0.705943,0.784512,0.717772,0.792437
			 ,0.383660,0.761771,0.384914,0.742979,0.397560,0.745086,0.391693,0.763555,0.696250,0.800765,0.681799,0.818529,0.689231,0.797426
			 ,0.661309,0.806516,0.667342,0.800768,0.681799,0.818529,0.702284,0.806512,0.681799,0.818529,0.696250,0.800765,0.706399,0.814698
			 ,0.702284,0.806512,0.717772,0.792437,0.728776,0.805173,0.360035,0.771283,0.381980,0.786931,0.354036,0.780123,0.375460,0.762471
			 ,0.367438,0.765546,0.358884,0.746554,0.372101,0.743385,0.219883,0.652328,0.293477,0.663181,0.293277,0.665868,0.219365,0.654822
			 ,0.967594,0.481330,0.967594,0.555234,0.781827,0.519086,0.967594,0.481330,0.781827,0.519086,0.938745,0.413289
			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
		}
		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
		}
		LayerElementUV: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.952221,0.898525,0.898525,0.898525,0.898525,0.952221,0.952221,0.952221,0.952221,0.600018,0.898525,0.600018,0.898525,0.653713
			 ,0.952221,0.653713,0.116400,0.062704,0.062704,0.062704,0.062704,0.116400,0.116400,0.116400,0.056698,0.062704,0.003003,0.062704
			 ,0.003003,0.116400,0.056698,0.116400,0.773116,0.600018,0.719421,0.600018,0.719421,0.713415,0.773116,0.713415,0.116400,0.003003
			 ,0.062704,0.003003,0.062704,0.056698,0.116400,0.056698,0.056698,0.003003,0.003003,0.003003,0.003003,0.056698,0.056698,0.056698
			 ,0.116400,0.540316,0.062704,0.540316,0.062704,0.594012,0.116400,0.594012,0.594012,0.182107,0.570167,0.182107,0.570167,0.235803
			 ,0.594012,0.235803,0.713415,0.773116,0.713415,0.719421,0.600018,0.719421,0.600018,0.773116,0.056698,0.540316,0.003003,0.540316
			 ,0.003003,0.594012,0.056698,0.594012,0.892519,0.594012,0.892519,0.480615,0.838824,0.480615,0.838824,0.594012,0.122406,0.892519
			 ,0.235803,0.892519,0.235803,0.838824,0.122406,0.838824,0.892519,0.474609,0.892519,0.361212,0.838824,0.361212,0.838824,0.474609
			 ,0.474609,0.892519,0.474609,0.838824,0.361212,0.838824,0.361212,0.892519,0.116400,0.480615,0.062704,0.480615,0.062704,0.534310
			 ,0.116400,0.534310,0.056698,0.480615,0.003003,0.480615,0.003003,0.534310,0.056698,0.534310,0.235803,0.540316,0.182107,0.540316
			 ,0.182107,0.594012,0.235803,0.594012,0.176101,0.540316,0.122406,0.540316,0.122406,0.594012,0.176101,0.594012,0.235803,0.480615
			 ,0.182107,0.480615,0.182107,0.534310,0.235803,0.534310,0.176101,0.480615,0.122406,0.480615,0.122406,0.534310,0.176101,0.534310
			 ,0.892519,0.235803,0.892519,0.122406,0.838824,0.122406,0.838824,0.235803,0.361212,0.982072,0.474609,0.982072,0.474609,0.958227
			 ,0.361212,0.958227,0.594012,0.301510,0.540316,0.301510,0.540316,0.355206,0.594012,0.355206,0.534310,0.301510,0.480615,0.301510
			 ,0.480615,0.355206,0.534310,0.355206,0.892519,0.355206,0.892519,0.241809,0.838824,0.241809,0.838824,0.355206,0.594012,0.241809
			 ,0.540316,0.241809,0.540316,0.295504,0.594012,0.295504,0.116400,0.892519,0.116400,0.838824,0.003003,0.838824,0.003003,0.892519
			 ,0.534310,0.241809,0.480615,0.241809,0.480615,0.295504,0.534310,0.295504,0.594012,0.420913,0.540316,0.420913,0.540316,0.474609
			 ,0.594012,0.474609,0.534310,0.420913,0.480615,0.420913,0.480615,0.474609,0.534310,0.474609,0.952221,0.779122,0.928376,0.779122
			 ,0.928376,0.892519,0.952221,0.892519,0.006006,0.832818,0.116400,0.722424,0.116400,0.832818,0.594012,0.361212,0.540316,0.361212
			 ,0.540316,0.414907,0.594012,0.414907,0.564161,0.182107,0.540316,0.182107,0.540316,0.235803,0.564161,0.235803,0.534310,0.361212
			 ,0.480615,0.361212,0.480615,0.414907,0.534310,0.414907,0.594012,0.540316,0.540316,0.540316,0.540316,0.594012,0.594012,0.594012
			 ,0.295504,0.480615,0.271660,0.480615,0.271660,0.534310,0.295504,0.534310,0.003003,0.952221,0.116400,0.952221,0.116400,0.898525
			 ,0.003003,0.898525,0.355206,0.713415,0.355206,0.603021,0.244812,0.713415,0.534310,0.540316,0.480615,0.540316,0.480615,0.594012
			 ,0.534310,0.594012,0.952221,0.474609,0.952221,0.361212,0.898525,0.361212,0.898525,0.474609,0.594012,0.480615,0.540316,0.480615
			 ,0.540316,0.534310,0.594012,0.534310,0.534310,0.480615,0.480615,0.480615,0.480615,0.534310,0.534310,0.534310,0.355206,0.922370
			 ,0.355206,0.898525,0.241809,0.898525,0.241809,0.922370,0.996997,0.773116,0.996997,0.659719,0.988078,0.659719,0.988078,0.773116
			 ,0.235803,0.659719,0.182107,0.659719,0.182107,0.713415,0.235803,0.713415,0.176101,0.659719,0.122406,0.659719,0.122406,0.713415
			 ,0.176101,0.713415,0.235803,0.600018,0.182107,0.600018,0.182107,0.653713,0.235803,0.653713,0.176101,0.600018,0.122406,0.600018
			 ,0.122406,0.653713,0.176101,0.653713,0.265654,0.480615,0.241809,0.480615,0.241809,0.534310,0.265654,0.534310,0.361212,0.922370
			 ,0.474609,0.922370,0.474609,0.898525,0.361212,0.898525,0.713415,0.182107,0.659719,0.182107,0.659719,0.235803,0.713415,0.235803
			 ,0.996997,0.779122,0.988078,0.779122,0.988078,0.892519,0.996997,0.892519,0.653713,0.182107,0.600018,0.182107,0.600018,0.235803
			 ,0.653713,0.235803,0.241809,0.996997,0.355206,0.996997,0.355206,0.988078,0.241809,0.988078,0.713415,0.122406,0.659719,0.122406
			 ,0.659719,0.176101,0.713415,0.176101,0.922370,0.892519,0.922370,0.779122,0.898525,0.779122,0.898525,0.892519,0.653713,0.122406
			 ,0.600018,0.122406,0.600018,0.176101,0.653713,0.176101,0.892519,0.952221,0.892519,0.898525,0.779122,0.898525,0.779122,0.952221
			 ,0.355206,0.534310,0.355206,0.480615,0.331361,0.480615,0.331361,0.534310,0.474609,0.659719,0.420913,0.659719,0.420913,0.713415
			 ,0.474609,0.713415,0.952221,0.773116,0.952221,0.659719,0.898525,0.659719,0.898525,0.773116,0.722424,0.594012,0.832818,0.483618
			 ,0.832818,0.594012,0.414907,0.659719,0.361212,0.659719,0.361212,0.713415,0.414907,0.713415,0.474609,0.996997,0.474609,0.988078
			 ,0.361212,0.988078,0.361212,0.996997,0.996997,0.241809,0.988078,0.241809,0.988078,0.355206,0.996997,0.355206,0.659719,0.952221
			 ,0.773116,0.952221,0.773116,0.898525,0.659719,0.898525,0.982072,0.235803,0.982072,0.122406,0.958227,0.122406,0.958227,0.235803
			 ,0.594012,0.996997,0.594012,0.988078,0.480615,0.988078,0.480615,0.996997,0.474609,0.600018,0.420913,0.600018,0.420913,0.653713
			 ,0.474609,0.653713,0.713415,0.713415,0.603021,0.713415,0.713415,0.603021,0.952221,0.003003,0.898525,0.003003,0.898525,0.116400
			 ,0.952221,0.116400,0.414907,0.600018,0.361212,0.600018,0.361212,0.653713,0.414907,0.653713,0.235803,0.982072,0.235803,0.973152
			 ,0.122406,0.973152,0.122406,0.982072,0.325355,0.480615,0.301510,0.480615,0.301510,0.534310,0.325355,0.534310,0.996997,0.361212
			 ,0.988078,0.361212,0.988078,0.474609,0.996997,0.474609,0.122406,0.952221,0.235803,0.952221,0.235803,0.898525,0.122406,0.898525
			 ,0.594012,0.659719,0.540316,0.659719,0.540316,0.713415,0.594012,0.713415,0.534310,0.659719,0.480615,0.659719,0.480615,0.713415
			 ,0.534310,0.713415,0.006006,0.713415,0.116400,0.603021,0.116400,0.713415,0.952221,0.122406,0.898525,0.122406,0.898525,0.235803
			 ,0.952221,0.235803,0.113397,0.600018,0.003003,0.600018,0.003003,0.710412,0.773116,0.982072,0.773116,0.973152,0.659719,0.973152
			 ,0.659719,0.982072,0.603021,0.594012,0.713415,0.594012,0.713415,0.483618,0.952221,0.355206,0.952221,0.241809,0.898525,0.241809
			 ,0.898525,0.355206,0.361212,0.952221,0.474609,0.952221,0.474609,0.928376,0.361212,0.928376,0.594012,0.600018,0.540316,0.600018
			 ,0.540316,0.653713,0.594012,0.653713,0.534310,0.600018,0.480615,0.600018,0.480615,0.653713,0.534310,0.653713,0.832818,0.301510
			 ,0.779122,0.301510,0.779122,0.355206,0.832818,0.355206,0.952221,0.594012,0.952221,0.480615,0.898525,0.480615,0.898525,0.594012
			 ,0.773116,0.301510,0.719421,0.301510,0.719421,0.355206,0.773116,0.355206,0.352203,0.600018,0.241809,0.710412,0.241809,0.600018
			 ,0.832818,0.241809,0.779122,0.241809,0.779122,0.295504,0.832818,0.295504,0.355206,0.952221,0.355206,0.928376,0.241809,0.928376
			 ,0.241809,0.952221,0.534310,0.838824,0.480615,0.838824,0.480615,0.952221,0.534310,0.952221,0.003003,0.982072,0.116400,0.982072
			 ,0.116400,0.958227,0.003003,0.958227,0.982072,0.361212,0.958227,0.361212,0.958227,0.474609,0.982072,0.474609,0.773116,0.241809
			 ,0.719421,0.241809,0.719421,0.295504,0.773116,0.295504,0.594012,0.779122,0.540316,0.779122,0.540316,0.832818,0.594012,0.832818
			 ,0.773116,0.967146,0.773116,0.958227,0.659719,0.958227,0.659719,0.967146,0.534310,0.779122,0.480615,0.779122,0.480615,0.832818
			 ,0.534310,0.832818,0.594012,0.719421,0.540316,0.719421,0.540316,0.773116,0.594012,0.773116,0.892519,0.003003,0.838824,0.003003
			 ,0.838824,0.116400,0.892519,0.116400,0.594012,0.982072,0.594012,0.958227,0.480615,0.958227,0.480615,0.982072,0.534310,0.719421
			 ,0.480615,0.719421,0.480615,0.773116,0.534310,0.773116,0.832818,0.062704,0.779122,0.062704,0.779122,0.116400,0.832818,0.116400
			 ,0.722424,0.474609,0.832818,0.474609,0.832818,0.364215,0.773116,0.062704,0.719421,0.062704,0.719421,0.116400,0.773116,0.116400
			 ,0.832818,0.003003,0.779122,0.003003,0.779122,0.056698,0.832818,0.056698,0.713415,0.116400,0.603021,0.116400,0.713415,0.006006
			 ,0.773116,0.719421,0.719421,0.719421,0.719421,0.832818,0.773116,0.832818,0.773116,0.003003,0.719421,0.003003,0.719421,0.056698
			 ,0.773116,0.056698,0.295504,0.594012,0.295504,0.540316,0.271660,0.540316,0.271660,0.594012,0.653713,0.271660,0.629869,0.271660
			 ,0.629869,0.295504,0.653713,0.295504,0.504460,0.205952,0.504460,0.182107,0.495540,0.182107,0.495540,0.205952,0.623863,0.271660
			 ,0.600018,0.271660,0.600018,0.295504,0.623863,0.295504,0.653713,0.241809,0.629869,0.241809,0.629869,0.265654,0.653713,0.265654
			 ,0.623863,0.241809,0.600018,0.241809,0.600018,0.265654,0.623863,0.265654,0.713415,0.271660,0.689570,0.271660,0.689570,0.295504
			 ,0.713415,0.295504,0.498543,0.176101,0.504460,0.176101,0.504460,0.155260,0.683564,0.271660,0.659719,0.271660,0.659719,0.295504
			 ,0.683564,0.295504,0.713415,0.241809,0.689570,0.241809,0.689570,0.265654,0.713415,0.265654,0.683564,0.241809,0.659719,0.241809
			 ,0.659719,0.265654,0.683564,0.265654,0.653713,0.331361,0.629869,0.331361,0.629869,0.355206,0.653713,0.355206,0.623863,0.331361
			 ,0.600018,0.331361,0.600018,0.355206,0.623863,0.355206,0.653713,0.301510,0.629869,0.301510,0.629869,0.325355,0.653713,0.325355
			 ,0.623863,0.301510,0.600018,0.301510,0.600018,0.325355,0.623863,0.325355,0.513469,0.176101,0.519385,0.155260,0.519385,0.176101
			 ,0.713415,0.331361,0.689570,0.331361,0.689570,0.355206,0.713415,0.355206,0.683564,0.331361,0.659719,0.331361,0.659719,0.355206
			 ,0.683564,0.355206,0.713415,0.301510,0.689570,0.301510,0.689570,0.325355,0.713415,0.325355,0.683564,0.301510,0.659719,0.301510
			 ,0.659719,0.325355,0.683564,0.325355,0.653713,0.391063,0.629869,0.391063,0.629869,0.414907,0.653713,0.414907,0.623863,0.391063
			 ,0.600018,0.391063,0.600018,0.414907,0.623863,0.414907,0.653713,0.361212,0.629869,0.361212,0.629869,0.385057,0.653713,0.385057
			 ,0.623863,0.361212,0.600018,0.361212,0.600018,0.385057,0.623863,0.385057,0.713415,0.391063,0.689570,0.391063,0.689570,0.414907
			 ,0.713415,0.414907,0.683564,0.391063,0.659719,0.391063,0.659719,0.414907,0.683564,0.414907,0.713415,0.361212,0.689570,0.361212
			 ,0.689570,0.385057,0.713415,0.385057,0.504460,0.146251,0.504460,0.125409,0.498543,0.146251,0.683564,0.361212,0.659719,0.361212
			 ,0.659719,0.385057,0.683564,0.385057,0.653713,0.450764,0.629869,0.450764,0.629869,0.474609,0.653713,0.474609,0.623863,0.450764
			 ,0.600018,0.450764,0.600018,0.474609,0.623863,0.474609,0.653713,0.420913,0.629869,0.420913,0.629869,0.444758,0.653713,0.444758
			 ,0.623863,0.420913,0.600018,0.420913,0.600018,0.444758,0.623863,0.444758,0.713415,0.450764,0.689570,0.450764,0.689570,0.474609
			 ,0.713415,0.474609,0.683564,0.450764,0.659719,0.450764,0.659719,0.474609,0.683564,0.474609,0.713415,0.420913,0.689570,0.420913
			 ,0.689570,0.444758,0.713415,0.444758,0.683564,0.420913,0.659719,0.420913,0.659719,0.444758,0.683564,0.444758,0.414907,0.510466
			 ,0.391063,0.510466,0.391063,0.534310,0.414907,0.534310,0.385057,0.510466,0.361212,0.510466,0.361212,0.534310,0.385057,0.534310
			 ,0.414907,0.480615,0.391063,0.480615,0.391063,0.504460,0.414907,0.504460,0.385057,0.480615,0.361212,0.480615,0.361212,0.504460
			 ,0.385057,0.504460,0.474609,0.510466,0.450764,0.510466,0.450764,0.534310,0.474609,0.534310,0.444758,0.510466,0.420913,0.510466
			 ,0.420913,0.534310,0.444758,0.534310,0.474609,0.480615,0.450764,0.480615,0.450764,0.504460,0.474609,0.504460,0.444758,0.480615
			 ,0.420913,0.480615,0.420913,0.504460,0.444758,0.504460,0.414907,0.570167,0.391063,0.570167,0.391063,0.594012,0.414907,0.594012
			 ,0.385057,0.570167,0.361212,0.570167,0.361212,0.594012,0.385057,0.594012,0.414907,0.540316,0.391063,0.540316,0.391063,0.564161
			 ,0.414907,0.564161,0.510466,0.152257,0.510466,0.173098,0.516382,0.152257,0.385057,0.540316,0.361212,0.540316,0.361212,0.564161
			 ,0.385057,0.564161,0.474609,0.570167,0.450764,0.570167,0.450764,0.594012,0.474609,0.594012,0.444758,0.570167,0.420913,0.570167
			 ,0.420913,0.594012,0.444758,0.594012,0.474609,0.540316,0.450764,0.540316,0.450764,0.564161,0.474609,0.564161,0.444758,0.540316
			 ,0.420913,0.540316,0.420913,0.564161,0.444758,0.564161,0.534310,0.032854,0.510466,0.032854,0.510466,0.056698,0.534310,0.056698
			 ,0.534310,0.146251,0.528394,0.146251,0.534310,0.125409,0.504460,0.032854,0.480615,0.032854,0.480615,0.056698,0.504460,0.056698
			 ,0.534310,0.003003,0.510466,0.003003,0.510466,0.026848,0.534310,0.026848,0.504460,0.003003,0.480615,0.003003,0.480615,0.026848
			 ,0.504460,0.026848,0.594012,0.032854,0.570167,0.032854,0.570167,0.056698,0.594012,0.056698,0.564161,0.032854,0.540316,0.032854
			 ,0.540316,0.056698,0.564161,0.056698,0.594012,0.003003,0.570167,0.003003,0.570167,0.026848,0.594012,0.026848,0.564161,0.003003
			 ,0.540316,0.003003,0.540316,0.026848,0.564161,0.026848,0.534310,0.092555,0.510466,0.092555,0.510466,0.116400,0.534310,0.116400
			 ,0.519385,0.146251,0.519385,0.125409,0.513469,0.146251,0.504460,0.092555,0.480615,0.092555,0.480615,0.116400,0.504460,0.116400
			 ,0.534310,0.062704,0.510466,0.062704,0.510466,0.086549,0.534310,0.086549,0.504460,0.062704,0.480615,0.062704,0.480615,0.086549
			 ,0.504460,0.086549,0.594012,0.092555,0.570167,0.092555,0.570167,0.116400,0.594012,0.116400,0.564161,0.092555,0.540316,0.092555
			 ,0.540316,0.116400,0.564161,0.116400,0.594012,0.062704,0.570167,0.062704,0.570167,0.086549,0.594012,0.086549,0.564161,0.062704
			 ,0.540316,0.062704,0.540316,0.086549,0.564161,0.086549,0.534310,0.176101,0.528394,0.176101,0.534310,0.155260,0.832818,0.182107
			 ,0.779122,0.182107,0.779122,0.235803,0.832818,0.235803,0.773116,0.182107,0.719421,0.182107,0.719421,0.235803,0.773116,0.235803
			 ,0.265654,0.594012,0.265654,0.540316,0.241809,0.540316,0.241809,0.594012,0.355206,0.594012,0.355206,0.540316,0.331361,0.540316
			 ,0.331361,0.594012,0.325355,0.540316,0.301510,0.540316,0.301510,0.594012,0.325355,0.594012,0.832818,0.122406,0.779122,0.122406
			 ,0.779122,0.176101,0.832818,0.176101,0.773116,0.122406,0.719421,0.122406,0.719421,0.176101,0.773116,0.176101,0.235803,0.779122
			 ,0.182107,0.779122,0.182107,0.832818,0.235803,0.832818,0.176101,0.779122,0.122406,0.779122,0.122406,0.832818,0.176101,0.832818
			 ,0.414907,0.414907,0.414907,0.361212,0.391063,0.361212,0.391063,0.414907,0.235803,0.719421,0.182107,0.719421,0.182107,0.773116
			 ,0.235803,0.773116,0.385057,0.361212,0.361212,0.361212,0.361212,0.414907,0.385057,0.414907,0.176101,0.719421,0.122406,0.719421
			 ,0.122406,0.773116,0.176101,0.773116,0.355206,0.779122,0.301510,0.779122,0.301510,0.832818,0.355206,0.832818,0.474609,0.414907
			 ,0.474609,0.361212,0.450764,0.361212,0.450764,0.414907,0.295504,0.779122,0.241809,0.779122,0.241809,0.832818,0.295504,0.832818
			 ,0.444758,0.361212,0.420913,0.361212,0.420913,0.414907,0.444758,0.414907,0.355206,0.719421,0.301510,0.719421,0.301510,0.773116
			 ,0.355206,0.773116,0.414907,0.420913,0.391063,0.420913,0.391063,0.474609,0.414907,0.474609,0.295504,0.719421,0.241809,0.719421
			 ,0.241809,0.773116,0.295504,0.773116,0.474609,0.779122,0.420913,0.779122,0.420913,0.832818,0.474609,0.832818,0.414907,0.779122
			 ,0.361212,0.779122,0.361212,0.832818,0.414907,0.832818,0.385057,0.420913,0.361212,0.420913,0.361212,0.474609,0.385057,0.474609
			 ,0.474609,0.420913,0.450764,0.420913,0.450764,0.474609,0.474609,0.474609,0.474609,0.719421,0.420913,0.719421,0.420913,0.773116
			 ,0.474609,0.773116,0.414907,0.719421,0.361212,0.719421,0.361212,0.773116,0.414907,0.773116,0.116400,0.182107,0.062704,0.182107
			 ,0.062704,0.235803,0.116400,0.235803,0.056698,0.182107,0.003003,0.182107,0.003003,0.235803,0.056698,0.235803,0.062704,0.176101
			 ,0.116400,0.176101,0.116400,0.122406,0.062704,0.122406,0.444758,0.474609,0.444758,0.420913,0.420913,0.420913,0.420913,0.474609
			 ,0.056698,0.122406,0.003003,0.122406,0.003003,0.176101,0.056698,0.176101,0.235803,0.062704,0.182107,0.062704,0.182107,0.116400
			 ,0.235803,0.116400,0.414907,0.241809,0.391063,0.241809,0.391063,0.295504,0.414907,0.295504,0.385057,0.295504,0.385057,0.241809
			 ,0.361212,0.241809,0.361212,0.295504,0.176101,0.062704,0.122406,0.062704,0.122406,0.116400,0.176101,0.116400,0.474609,0.241809
			 ,0.450764,0.241809,0.450764,0.295504,0.474609,0.295504,0.444758,0.241809,0.420913,0.241809,0.420913,0.295504,0.444758,0.295504
			 ,0.235803,0.003003,0.182107,0.003003,0.182107,0.056698,0.235803,0.056698,0.414907,0.355206,0.414907,0.301510,0.391063,0.301510
			 ,0.391063,0.355206,0.176101,0.003003,0.122406,0.003003,0.122406,0.056698,0.176101,0.056698,0.235803,0.182107,0.182107,0.182107
			 ,0.182107,0.235803,0.235803,0.235803,0.176101,0.182107,0.122406,0.182107,0.122406,0.235803,0.176101,0.235803,0.235803,0.122406
			 ,0.182107,0.122406,0.182107,0.176101,0.235803,0.176101,0.176101,0.122406,0.122406,0.122406,0.122406,0.176101,0.176101,0.176101
			 ,0.385057,0.301510,0.361212,0.301510,0.361212,0.355206,0.385057,0.355206,0.355206,0.182107,0.301510,0.182107,0.301510,0.235803
			 ,0.355206,0.235803,0.295504,0.182107,0.241809,0.182107,0.241809,0.235803,0.295504,0.235803,0.355206,0.122406,0.301510,0.122406
			 ,0.301510,0.176101,0.355206,0.176101,0.474609,0.355206,0.474609,0.301510,0.450764,0.301510,0.450764,0.355206,0.295504,0.122406
			 ,0.241809,0.122406,0.241809,0.176101,0.295504,0.176101,0.444758,0.301510,0.420913,0.301510,0.420913,0.355206,0.444758,0.355206
			 ,0.355206,0.062704,0.301510,0.062704,0.301510,0.116400,0.355206,0.116400,0.414907,0.003003,0.391063,0.003003,0.391063,0.056698
			 ,0.414907,0.056698,0.385057,0.056698,0.385057,0.003003,0.361212,0.003003,0.361212,0.056698,0.295504,0.062704,0.241809,0.062704
			 ,0.241809,0.116400,0.295504,0.116400,0.474609,0.056698,0.474609,0.003003,0.450764,0.003003,0.450764,0.056698,0.355206,0.003003
			 ,0.301510,0.003003,0.301510,0.056698,0.355206,0.056698,0.444758,0.003003,0.420913,0.003003,0.420913,0.056698,0.444758,0.056698
			 ,0.295504,0.003003,0.241809,0.003003,0.241809,0.056698,0.295504,0.056698,0.235803,0.301510,0.182107,0.301510,0.182107,0.355206
			 ,0.235803,0.355206,0.176101,0.301510,0.122406,0.301510,0.122406,0.355206,0.176101,0.355206,0.414907,0.116400,0.414907,0.062704
			 ,0.391063,0.062704,0.391063,0.116400,0.235803,0.241809,0.182107,0.241809,0.182107,0.295504,0.235803,0.295504,0.176101,0.241809
			 ,0.122406,0.241809,0.122406,0.295504,0.176101,0.295504,0.116400,0.301510,0.062704,0.301510,0.062704,0.355206,0.116400,0.355206
			 ,0.003003,0.355206,0.056698,0.355206,0.056698,0.301510,0.003003,0.301510,0.116400,0.241809,0.062704,0.241809,0.062704,0.295504
			 ,0.116400,0.295504,0.056698,0.241809,0.003003,0.241809,0.003003,0.295504,0.056698,0.295504,0.385057,0.116400,0.385057,0.062704
			 ,0.361212,0.062704,0.361212,0.116400,0.355206,0.301510,0.301510,0.301510,0.301510,0.355206,0.355206,0.355206,0.295504,0.301510
			 ,0.241809,0.301510,0.241809,0.355206,0.295504,0.355206,0.355206,0.241809,0.301510,0.241809,0.301510,0.295504,0.355206,0.295504
			 ,0.295504,0.241809,0.241809,0.241809,0.241809,0.295504,0.295504,0.295504,0.355206,0.420913,0.301510,0.420913,0.301510,0.474609
			 ,0.355206,0.474609,0.295504,0.420913,0.241809,0.420913,0.241809,0.474609,0.295504,0.474609,0.355206,0.361212,0.301510,0.361212
			 ,0.301510,0.414907,0.355206,0.414907,0.295504,0.361212,0.241809,0.361212,0.241809,0.414907,0.295504,0.414907,0.235803,0.420913
			 ,0.182107,0.420913,0.182107,0.474609,0.235803,0.474609,0.176101,0.420913,0.122406,0.420913,0.122406,0.474609,0.176101,0.474609
			 ,0.474609,0.116400,0.474609,0.062704,0.450764,0.062704,0.450764,0.116400,0.235803,0.361212,0.182107,0.361212,0.182107,0.414907
			 ,0.235803,0.414907,0.444758,0.116400,0.444758,0.062704,0.420913,0.062704,0.420913,0.116400,0.176101,0.361212,0.122406,0.361212
			 ,0.122406,0.414907,0.176101,0.414907,0.116400,0.420913,0.062704,0.420913,0.062704,0.474609,0.116400,0.474609,0.056698,0.420913
			 ,0.003003,0.420913,0.003003,0.474609,0.056698,0.474609,0.116400,0.361212,0.062704,0.361212,0.062704,0.414907,0.116400,0.414907
			 ,0.600018,0.003003,0.600018,0.113397,0.710412,0.003003,0.540316,0.952221,0.653713,0.952221,0.653713,0.898525,0.540316,0.898525
			 ,0.982072,0.594012,0.982072,0.480615,0.958227,0.480615,0.958227,0.594012,0.892519,0.982072,0.892519,0.958227,0.779122,0.958227
			 ,0.779122,0.982072,0.982072,0.116400,0.982072,0.003003,0.973152,0.003003,0.973152,0.116400,0.710412,0.480615,0.600018,0.591009
			 ,0.600018,0.480615,0.710412,0.600018,0.600018,0.600018,0.600018,0.710412,0.056698,0.361212,0.003003,0.361212,0.003003,0.414907
			 ,0.056698,0.414907,0.713415,0.832818,0.713415,0.779122,0.600018,0.779122,0.600018,0.832818,0.474609,0.182107,0.420913,0.182107
			 ,0.420913,0.235803,0.474609,0.235803,0.832818,0.719421,0.779122,0.719421,0.779122,0.832818,0.832818,0.832818,0.892519,0.713415
			 ,0.892519,0.659719,0.779122,0.659719,0.779122,0.713415,0.982072,0.355206,0.982072,0.241809,0.973152,0.241809,0.973152,0.355206
			 ,0.779122,0.653713,0.892519,0.653713,0.892519,0.600018,0.779122,0.600018,0.892519,0.719421,0.838824,0.719421,0.838824,0.832818
			 ,0.892519,0.832818,0.241809,0.892519,0.355206,0.892519,0.355206,0.838824,0.241809,0.838824,0.996997,0.594012,0.996997,0.480615
			 ,0.988078,0.480615,0.988078,0.594012,0.414907,0.182107,0.361212,0.182107,0.361212,0.235803,0.414907,0.235803,0.474609,0.122406
			 ,0.420913,0.122406,0.420913,0.176101,0.474609,0.176101,0.892519,0.892519,0.892519,0.838824,0.779122,0.838824,0.779122,0.892519
			 ,0.982072,0.659719,0.958227,0.659719,0.958227,0.773116,0.982072,0.773116,0.659719,0.892519,0.773116,0.892519,0.773116,0.838824
			 ,0.659719,0.838824,0.414907,0.122406,0.361212,0.122406,0.361212,0.176101,0.414907,0.176101,0.113397,0.719421,0.003003,0.719421
			 ,0.003003,0.829815,0.967146,0.116400,0.967146,0.003003,0.958227,0.003003,0.958227,0.116400,0.653713,0.892519,0.653713,0.838824
			 ,0.540316,0.838824,0.540316,0.892519,0.982072,0.779122,0.958227,0.779122,0.958227,0.892519,0.982072,0.892519,0.241809,0.982072
			 ,0.355206,0.982072,0.355206,0.958227,0.241809,0.958227,0.967146,0.355206,0.967146,0.241809,0.958227,0.241809,0.958227,0.355206
			 ,0.489534,0.146251,0.489534,0.125409,0.483618,0.146251,0.483618,0.176101,0.489534,0.176101,0.489534,0.155260,0.489534,0.205952
			 ,0.489534,0.182107,0.480615,0.182107,0.480615,0.205952,0.534310,0.205952,0.534310,0.182107,0.525391,0.182107,0.525391,0.205952
			 ,0.519385,0.182107,0.510466,0.182107,0.510466,0.205952,0.519385,0.205952,0.504460,0.235803,0.504460,0.211958,0.495540,0.211958
			 ,0.495540,0.235803,0.489534,0.235803,0.489534,0.211958,0.480615,0.211958,0.480615,0.235803,0.531307,0.152257,0.525391,0.152257
			 ,0.525391,0.173098,0.534310,0.211958,0.525391,0.211958,0.525391,0.235803,0.534310,0.235803,0.519385,0.211958,0.510466,0.211958
			 ,0.510466,0.235803,0.519385,0.235803,0.564161,0.122406,0.555242,0.122406,0.555242,0.146251,0.564161,0.146251,0.549236,0.146251
			 ,0.549236,0.122406,0.540316,0.122406,0.540316,0.146251,0.480615,0.152257,0.486531,0.152257,0.480615,0.173098,0.594012,0.146251
			 ,0.594012,0.122406,0.585093,0.122406,0.585093,0.146251,0.579087,0.122406,0.570167,0.122406,0.570167,0.146251,0.579087,0.146251
			 ,0.495540,0.152257,0.501457,0.152257,0.495540,0.173098,0.564161,0.152257,0.555242,0.152257,0.555242,0.176101,0.564161,0.176101
			 ,0.549236,0.176101,0.549236,0.152257,0.540316,0.152257,0.540316,0.176101,0.516382,0.122406,0.510466,0.143248,0.510466,0.122406
			 ,0.525391,0.122406,0.531307,0.122406,0.525391,0.143248,0.486531,0.122406,0.480615,0.143248,0.480615,0.122406,0.594012,0.152257
			 ,0.585093,0.152257,0.585093,0.176101,0.594012,0.176101,0.495540,0.122406,0.495540,0.143248,0.501457,0.122406,0.579087,0.152257
			 ,0.570167,0.152257,0.570167,0.176101,0.579087,0.176101,0.122406,0.967146,0.235803,0.967146,0.235803,0.958227,0.122406,0.958227
			 ,0.829815,0.480615,0.719421,0.480615,0.719421,0.591009,0.829815,0.361212,0.719421,0.471606,0.719421,0.361212
			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
		}
		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
		}
		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
		}
		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", "", "pawn-ao.png"
			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: "pawn-ao.png"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\pawn-ao.png"
	}
	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: "pawn-ao.png"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\pawn-ao.png"
		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::pawn"
			Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
		}
	}
	GlobalSettings:  {
		Version: 1000
		Properties60:  {
			Property: "UpAxis", "int", "",1
			Property: "UpAxisSign", "int", "",1
			Property: "FrontAxis", "int", "",2
			Property: "FrontAxisSign", "int", "",1
			Property: "CoordAxis", "int", "",0
			Property: "CoordAxisSign", "int", "",1
			Property: "UnitScaleFactor", "double", "",1
		}
	}
}

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

Relations:  {
	Model: "Model::pawn", "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::pawn", "Model::Scene"
	Connect: "OO", "Material::unnamed", "Model::pawn"
	Connect: "OO", "Material::None__ao", "Model::pawn"
	Connect: "OO", "Texture::ao", "Model::pawn"
	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
	}
}