aboutsummaryrefslogtreecommitdiff
path: root/Core/JointMover/controls/proxy_Sphere.ma
blob: f98a8b9c14ec615ce0eb1c293220a5d7f1c92358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
//Maya ASCII 2015 scene
//Name: proxy_sphere.ma
//Last modified: Mon, Dec 14, 2015 06:32:20 PM
//Codeset: 1252
requires maya "2015";
currentUnit -l centimeter -a degree -t film;
fileInfo "application" "maya";
fileInfo "product" "Maya 2015";
fileInfo "version" "2015";
fileInfo "cutIdentifier" "201402282131-909040";
fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n";
createNode transform -s -n "persp";
	setAttr ".v" no;
	setAttr ".t" -type "double3" 74.887572273614083 31.04352314441693 30.987970519185808 ;
	setAttr ".r" -type "double3" 70.282924915516844 -3.1805546814635164e-015 -612.00508600351077 ;
createNode camera -s -n "perspShape" -p "persp";
	setAttr -k off ".v" no;
	setAttr ".fl" 34.999999999999993;
	setAttr ".coi" 68.494964309730847;
	setAttr ".imn" -type "string" "persp";
	setAttr ".den" -type "string" "persp_depth";
	setAttr ".man" -type "string" "persp_mask";
	setAttr ".tp" -type "double3" 33.360682289829668 -28.821603513469952 18.921067177677358 ;
	setAttr ".hc" -type "string" "viewSet -p %camera";
createNode transform -s -n "top";
	setAttr ".v" no;
	setAttr ".t" -type "double3" 0.10861427912343019 0.82116884637755128 100.1 ;
createNode camera -s -n "topShape" -p "top";
	setAttr -k off ".v" no;
	setAttr ".rnd" no;
	setAttr ".coi" 100.1;
	setAttr ".ow" 51.90821448584547;
	setAttr ".imn" -type "string" "top";
	setAttr ".den" -type "string" "top_depth";
	setAttr ".man" -type "string" "top_mask";
	setAttr ".hc" -type "string" "viewSet -t %camera";
	setAttr ".o" yes;
createNode transform -s -n "front";
	setAttr ".v" no;
	setAttr ".t" -type "double3" -1.397627689242678 -100.1 1.9167790339450828 ;
	setAttr ".r" -type "double3" 89.999999999999986 0 0 ;
createNode camera -s -n "frontShape" -p "front";
	setAttr -k off ".v" no;
	setAttr ".rnd" no;
	setAttr ".coi" 100.1;
	setAttr ".ow" 79.022208622408968;
	setAttr ".imn" -type "string" "front";
	setAttr ".den" -type "string" "front_depth";
	setAttr ".man" -type "string" "front_mask";
	setAttr ".hc" -type "string" "viewSet -f %camera";
	setAttr ".o" yes;
createNode transform -s -n "side";
	setAttr ".v" no;
	setAttr ".t" -type "double3" 100.1 0 0 ;
	setAttr ".r" -type "double3" 90 4.7708320221952799e-014 89.999999999999986 ;
createNode camera -s -n "sideShape" -p "side";
	setAttr -k off ".v" no;
	setAttr ".rnd" no;
	setAttr ".coi" 100.1;
	setAttr ".ow" 44.047265376664832;
	setAttr ".imn" -type "string" "side";
	setAttr ".den" -type "string" "side_depth";
	setAttr ".man" -type "string" "side_mask";
	setAttr ".hc" -type "string" "viewSet -s %camera";
	setAttr ".o" yes;
createNode transform -n "proxy_geo";
createNode mesh -n "proxy_geoShape" -p "proxy_geo";
	setAttr -k off ".v";
	setAttr -s 2 ".iog[0].og";
	setAttr ".iog[0].og[0].gcl" -type "componentList" 2 "f[0:359]" "f[380:459]";
	setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[360:379]";
	setAttr ".vir" yes;
	setAttr ".vif" yes;
	setAttr ".pv" -type "double2" 0.50000005960464478 0.5 ;
	setAttr ".uvst[0].uvsn" -type "string" "map1";
	setAttr -s 502 ".uvst[0].uvsp";
	setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0 0.050000001 0.050000001 0.050000001
		 0.1 0.050000001 0.15000001 0.050000001 0.2 0.050000001 0.25 0.050000001 0.30000001
		 0.050000001 0.35000002 0.050000001 0.40000004 0.050000001 0.45000005 0.050000001
		 0.50000006 0.050000001 0.55000007 0.050000001 0.60000008 0.050000001 0.6500001 0.050000001
		 0.70000011 0.050000001 0.75000012 0.050000001 0.80000013 0.050000001 0.85000014 0.050000001
		 0.90000015 0.050000001 0.95000017 0.050000001 1.000000119209 0.050000001 0 0.1 0.050000001
		 0.1 0.1 0.1 0.15000001 0.1 0.2 0.1 0.25 0.1 0.30000001 0.1 0.35000002 0.1 0.40000004
		 0.1 0.45000005 0.1 0.50000006 0.1 0.55000007 0.1 0.60000008 0.1 0.6500001 0.1 0.70000011
		 0.1 0.75000012 0.1 0.80000013 0.1 0.85000014 0.1 0.90000015 0.1 0.95000017 0.1 1.000000119209
		 0.1 0 0.15000001 0.050000001 0.15000001 0.1 0.15000001 0.15000001 0.15000001 0.2
		 0.15000001 0.25 0.15000001 0.30000001 0.15000001 0.35000002 0.15000001 0.40000004
		 0.15000001 0.45000005 0.15000001 0.50000006 0.15000001 0.55000007 0.15000001 0.60000008
		 0.15000001 0.6500001 0.15000001 0.70000011 0.15000001 0.75000012 0.15000001 0.80000013
		 0.15000001 0.85000014 0.15000001 0.90000015 0.15000001 0.95000017 0.15000001 1.000000119209
		 0.15000001 0 0.2 0.050000001 0.2 0.1 0.2 0.15000001 0.2 0.2 0.2 0.25 0.2 0.30000001
		 0.2 0.35000002 0.2 0.40000004 0.2 0.45000005 0.2 0.50000006 0.2 0.55000007 0.2 0.60000008
		 0.2 0.6500001 0.2 0.70000011 0.2 0.75000012 0.2 0.80000013 0.2 0.85000014 0.2 0.90000015
		 0.2 0.95000017 0.2 1.000000119209 0.2 0 0.25 0.050000001 0.25 0.1 0.25 0.15000001
		 0.25 0.2 0.25 0.25 0.25 0.30000001 0.25 0.35000002 0.25 0.40000004 0.25 0.45000005
		 0.25 0.50000006 0.25 0.55000007 0.25 0.60000008 0.25 0.6500001 0.25 0.70000011 0.25
		 0.75000012 0.25 0.80000013 0.25 0.85000014 0.25 0.90000015 0.25 0.95000017 0.25 1.000000119209
		 0.25 0 0.30000001 0.050000001 0.30000001 0.1 0.30000001 0.15000001 0.30000001 0.2
		 0.30000001 0.25 0.30000001 0.30000001 0.30000001 0.35000002 0.30000001 0.40000004
		 0.30000001 0.45000005 0.30000001 0.50000006 0.30000001 0.55000007 0.30000001 0.60000008
		 0.30000001 0.6500001 0.30000001 0.70000011 0.30000001 0.75000012 0.30000001 0.80000013
		 0.30000001 0.85000014 0.30000001 0.90000015 0.30000001 0.95000017 0.30000001 1.000000119209
		 0.30000001 0 0.35000002 0.050000001 0.35000002 0.1 0.35000002 0.15000001 0.35000002
		 0.2 0.35000002 0.25 0.35000002 0.30000001 0.35000002 0.35000002 0.35000002 0.40000004
		 0.35000002 0.45000005 0.35000002 0.50000006 0.35000002 0.55000007 0.35000002 0.60000008
		 0.35000002 0.6500001 0.35000002 0.70000011 0.35000002 0.75000012 0.35000002 0.80000013
		 0.35000002 0.85000014 0.35000002 0.90000015 0.35000002 0.95000017 0.35000002 1.000000119209
		 0.35000002 0 0.40000004 0.050000001 0.40000004 0.1 0.40000004 0.15000001 0.40000004
		 0.2 0.40000004 0.25 0.40000004 0.30000001 0.40000004 0.35000002 0.40000004 0.40000004
		 0.40000004 0.45000005 0.40000004 0.50000006 0.40000004 0.55000007 0.40000004 0.60000008
		 0.40000004 0.6500001 0.40000004 0.70000011 0.40000004 0.75000012 0.40000004 0.80000013
		 0.40000004 0.85000014 0.40000004 0.90000015 0.40000004 0.95000017 0.40000004 1.000000119209
		 0.40000004 0 0.45000005 1.000000119209 0.55000007 0 0.60000008 0.050000001 0.60000008
		 0.1 0.60000008 0.15000001 0.60000008 0.2 0.60000008 0.25 0.60000008 0.30000001 0.60000008
		 0.35000002 0.60000008 0.40000004 0.60000008 0.45000005 0.60000008 0.50000006 0.60000008
		 0.55000007 0.60000008 0.60000008 0.60000008 0.6500001 0.60000008 0.70000011 0.60000008
		 0.75000012 0.60000008 0.80000013 0.60000008 0.85000014 0.60000008 0.90000015 0.60000008
		 0.95000017 0.60000008 1.000000119209 0.60000008 0 0.6500001 0.050000001 0.6500001
		 0.1 0.6500001 0.15000001 0.6500001 0.2 0.6500001 0.25 0.6500001 0.30000001 0.6500001
		 0.35000002 0.6500001 0.40000004 0.6500001 0.45000005 0.6500001 0.50000006 0.6500001
		 0.55000007 0.6500001 0.60000008 0.6500001 0.6500001 0.6500001 0.70000011 0.6500001
		 0.75000012 0.6500001 0.80000013 0.6500001 0.85000014 0.6500001 0.90000015 0.6500001
		 0.95000017 0.6500001 1.000000119209 0.6500001 0 0.70000011 0.050000001 0.70000011
		 0.1 0.70000011 0.15000001 0.70000011 0.2 0.70000011 0.25 0.70000011 0.30000001 0.70000011
		 0.35000002 0.70000011 0.40000004 0.70000011 0.45000005 0.70000011 0.50000006 0.70000011
		 0.55000007 0.70000011 0.60000008 0.70000011 0.6500001 0.70000011 0.70000011 0.70000011
		 0.75000012 0.70000011 0.80000013 0.70000011 0.85000014 0.70000011 0.90000015 0.70000011
		 0.95000017 0.70000011 1.000000119209 0.70000011 0 0.75000012 0.050000001 0.75000012
		 0.1 0.75000012 0.15000001 0.75000012 0.2 0.75000012 0.25 0.75000012 0.30000001 0.75000012
		 0.35000002 0.75000012 0.40000004 0.75000012 0.45000005 0.75000012 0.50000006 0.75000012
		 0.55000007 0.75000012 0.60000008 0.75000012 0.6500001 0.75000012 0.70000011 0.75000012
		 0.75000012 0.75000012 0.80000013 0.75000012;
	setAttr ".uvst[0].uvsp[250:499]" 0.85000014 0.75000012 0.90000015 0.75000012
		 0.95000017 0.75000012 1.000000119209 0.75000012 0 0.80000013 0.050000001 0.80000013
		 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013 0.30000001 0.80000013
		 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013 0.50000006 0.80000013
		 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013 0.70000011 0.80000013
		 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013 0.90000015 0.80000013
		 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014 0.050000001 0.85000014
		 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014 0.30000001 0.85000014
		 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014 0.50000006 0.85000014
		 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014 0.70000011 0.85000014
		 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014 0.90000015 0.85000014
		 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015 0.050000001 0.90000015
		 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015 0.30000001 0.90000015
		 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015 0.50000006 0.90000015
		 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015 0.70000011 0.90000015
		 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015 0.90000015 0.90000015
		 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017 0.050000001 0.95000017
		 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017 0.30000001 0.95000017
		 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017 0.50000006 0.95000017
		 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017 0.70000011 0.95000017
		 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017 0.90000015 0.95000017
		 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 0 0.075000003 0 0.125 0 0.175
		 0 0.22500001 0 0.27500001 0 0.32500002 0 0.375 0 0.42500001 0 0.47499999 0 0.52500004
		 0 0.57499999 0 0.625 0 0.67500001 0 0.72500002 0 0.77500004 0 0.82499999 0 0.875
		 0 0.92500001 0 0.97500002 0 0.025 1 0.075000003 1 0.125 1 0.175 1 0.22500001 1 0.27500001
		 1 0.32500002 1 0.375 1 0.42500001 1 0.47499999 1 0.52500004 1 0.57499999 1 0.625
		 1 0.67500001 1 0.72500002 1 0.77500004 1 0.82499999 1 0.875 1 0.92500001 1 0.97500002
		 1 1 0.4865014 0 0.51349866 0.050000001 0.45000005 0 0.4865014 0.099999994 0.45000002
		 0.050000001 0.4865014 0.15000001 0.45000005 0.099999994 0.4865014 0.2 0.45000005
		 0.15000001 0.4865014 0.25 0.45000005 0.2 0.4865014 0.30000001 0.45000005 0.25 0.4865014
		 0.35000002 0.45000005 0.30000001 0.4865014 0.40000004 0.45000005 0.34999999 0.4865014
		 0.45000005 0.45000005 0.40000004 0.4865014 0.50000006 0.45000005 0.45000005 0.4865014
		 0.55000007 0.45000005 0.50000006 0.4865014 0.60000008 0.45000005 0.55000007 0.4865014
		 0.6500001 0.45000005 0.60000008 0.4865014 0.70000011 0.45000005 0.6500001 0.4865014
		 0.75000012 0.45000005 0.70000017 0.4865014 0.80000013 0.45000005 0.75000012 0.4865014
		 0.85000008 0.45000002 0.80000007 0.48650137 0.90000015 0.45000005 0.8500002 0.4865014
		 0.95000017 0.45000005 0.90000015 0.4865014 1.000000119209 0.45000005 0.95000017 0.4865014
		 0.050000001 0.51349866 0 0.55000007 0.1 0.51349866 0.050000001 0.55000007 0.15000001
		 0.51349872 0.1 0.55000007 0.2 0.51349872 0.15000001 0.55000007 0.25 0.51349866 0.2
		 0.55000007 0.30000001 0.51349866 0.25 0.55000007 0.34999999 0.51349872 0.30000001
		 0.55000007 0.40000004 0.51349866 0.35000002 0.55000007 0.45000005 0.51349872 0.40000004
		 0.55000007 0.50000006 0.51349866 0.45000005 0.55000007 0.55000007 0.51349866 0.50000006
		 0.55000007 0.60000008 0.51349866 0.55000007 0.55000007 0.6500001 0.51349866 0.60000008
		 0.55000007 0.70000011 0.51349866 0.6500001 0.55000007 0.75000012 0.51349866 0.70000011
		 0.55000007 0.80000013 0.51349866 0.75000012 0.55000007 0.85000014 0.51349866 0.80000013
		 0.55000007 0.90000015 0.51349866 0.85000014 0.55000007 0.95000017 0.51349866 0.90000015
		 0.55000007 1 0.51349872 0.95000017 0.55000007 1 0.51349872 0.95000017 0.51349866
		 0.95000017 0.4865014 1 0.4865014 0 0.4865014 0.050000001 0.4865014 0.050000001 0.51349866
		 0 0.51349866 0.099999994 0.4865014 0.1 0.51349866 0.15000001 0.4865014 0.15000001
		 0.51349872 0.2 0.4865014 0.2 0.51349872 0.25 0.4865014 0.25 0.51349866 0.30000001
		 0.4865014 0.30000001 0.51349866 0.34999999 0.4865014 0.34999999 0.51349872 0.40000004
		 0.4865014 0.40000004 0.51349866 0.45000005 0.4865014 0.45000005 0.51349872 0.50000006
		 0.4865014 0.50000006 0.51349866 0.55000007 0.4865014 0.55000007 0.51349866 0.60000008
		 0.4865014 0.60000008 0.51349866 0.6500001 0.4865014 0.6500001 0.51349866 0.70000017
		 0.4865014 0.70000011 0.51349866 0.75000012 0.4865014 0.75000012 0.51349866 0.80000007
		 0.48650137 0.80000013 0.51349866 0.8500002 0.4865014 0.85000014 0.51349866;
	setAttr ".uvst[0].uvsp[500:501]" 0.90000015 0.4865014 0.90000015 0.51349866;
	setAttr ".cuvs" -type "string" "map1";
	setAttr ".dcc" -type "string" "Ambient+Diffuse";
	setAttr ".covm[0]"  0 1 1;
	setAttr ".cdvm[0]"  0 1 1;
	setAttr -s 442 ".vt";
	setAttr ".vt[0:165]"  1.051152349 0.3415401 -6.97825003 0.89416361 0.64964777 -6.97825003
		 0.64964777 0.89416361 -6.97825003 0.34154004 1.051152229 -6.97825003 0 1.10524678 -6.97825003
		 -0.34154004 1.05115211 -6.97825003 -0.64964777 0.89416337 -6.97825003 -0.89416325 0.64964765 -6.97825003
		 -1.051151991 0.34153998 -6.97825003 -1.10524654 -1.5494828e-015 -6.97825003 -1.051151991 -0.34153998 -6.97825003
		 -0.89416325 -0.64964759 -6.97825003 -0.64964759 -0.89416319 -6.97825003 -0.34153998 -1.051151872 -6.97825003
		 -3.2938907e-008 -1.10524642 -6.97825003 0.34153986 -1.051151752 -6.97825003 0.64964747 -0.89416307 -6.97825003
		 0.89416307 -0.64964753 -6.97825003 1.051151752 -0.34153989 -6.97825003 1.10524631 -1.5494828e-015 -6.97825003
		 2.076421499 0.67467034 -6.7194376 1.76630998 1.28329909 -6.7194376 1.28329909 1.76630974 -6.7194376
		 0.67467022 2.076421499 -6.7194376 0 2.1832788 -6.7194376 -0.67467022 2.076421499 -6.7194376
		 -1.28329885 1.76630926 -6.7194376 -1.76630926 1.28329885 -6.7194376 -2.076421022 0.67466998 -6.7194376
		 -2.18327808 -1.4920149e-015 -6.7194376 -2.076421022 -0.67466998 -6.7194376 -1.76630914 -1.28329873 -6.7194376
		 -1.28329873 -1.76630914 -6.7194376 -0.67466998 -2.076420784 -6.7194376 -6.5066743e-008 -2.18327785 -6.7194376
		 0.67466986 -2.076420546 -6.7194376 1.28329837 -1.7663089 -6.7194376 1.76630867 -1.28329849 -6.7194376
		 2.076420546 -0.67466992 -6.7194376 2.18327761 -1.4920149e-015 -6.7194376 3.050562859 0.99118793 -6.29517031
		 2.59496355 1.88535154 -6.29517031 1.88535154 2.59496355 -6.29517031 0.99118781 3.050562143 -6.29517031
		 0 3.207551 -6.29517031 -0.99118781 3.050562143 -6.29517031 -1.88535106 2.59496307 -6.29517031
		 -2.59496284 1.88535094 -6.29517031 -3.050561905 0.99118751 -6.29517031 -3.20755029 -1.3978086e-015 -6.29517031
		 -3.050561905 -0.99118751 -6.29517031 -2.5949626 -1.8853507 -6.29517031 -1.8853507 -2.5949626 -6.29517031
		 -0.99118751 -3.050561428 -6.29517031 -9.5592426e-008 -3.20755005 -6.29517031 0.99118727 -3.05056119 -6.29517031
		 1.88535023 -2.59496236 -6.29517031 2.59496212 -1.88535047 -6.29517031 3.050560951 -0.99118739 -6.29517031
		 3.20754957 -1.3978086e-015 -6.29517031 3.94958878 1.28329909 -5.71589518 3.35972095 2.44097996 -5.71589518
		 2.44097996 3.35972071 -5.71589518 1.28329885 3.9495883 -5.71589518 0 4.152843 -5.71589518
		 -1.28329885 3.94958806 -5.71589518 -2.44097924 3.35971975 -5.71589518 -3.35971975 2.44097924 -5.71589518
		 -3.94958711 1.28329861 -5.71589518 -4.15284157 -1.2691837e-015 -5.71589518 -3.94958711 -1.28329861 -5.71589518
		 -3.35971951 -2.440979 -5.71589518 -2.440979 -3.35971928 -5.71589518 -1.28329861 -3.94958663 -5.71589518
		 -1.2376429e-007 -4.15284109 -5.71589518 1.28329825 -3.94958663 -5.71589518 2.44097853 -3.35971904 -5.71589518
		 3.3597188 -2.44097877 -5.71589518 3.94958639 -1.28329837 -5.71589518 4.15284061 -1.2691837e-015 -5.71589518
		 4.7513628 1.54381132 -4.99587536 4.041750908 2.93650365 -4.99587536 2.93650365 4.041750431 -4.99587536
		 1.5438112 4.75136232 -4.99587536 0 4.99587774 -4.99587536 -1.5438112 4.75136137 -4.99587536
		 -2.93650293 4.041749477 -4.99587536 -4.041749001 2.9365027 -4.99587536 -4.75136137 1.54381049 -4.99587536
		 -4.99587631 -1.1093072e-015 -4.99587536 -4.75136137 -1.54381049 -4.99587536 -4.041749001 -2.93650198 -4.99587536
		 -2.93650198 -4.041748524 -4.99587536 -1.54381049 -4.75136042 -4.99587536 -1.4888869e-007 -4.99587584 -4.99587536
		 1.54381025 -4.75136042 -4.99587536 2.93650174 -4.041748047 -4.99587536 4.041748047 -2.93650198 -4.99587536
		 4.75135994 -1.54381049 -4.99587536 4.99587536 -1.1093072e-015 -4.99587536 5.43614292 1.76630974 -4.15284061
		 4.62425947 3.35972071 -4.15284061 3.35972071 4.624259 -4.15284061 1.7663095 5.43614197 -4.15284061
		 0 5.71589756 -4.15284061 -1.7663095 5.43614149 -4.15284061 -3.35971975 4.62425804 -4.15284061
		 -4.62425756 3.35971975 -4.15284061 -5.43614054 1.76630914 -4.15284061 -5.71589613 -9.2211585e-016 -4.15284061
		 -5.43614054 -1.76630914 -4.15284061 -4.62425709 -3.35971951 -4.15284061 -3.35971951 -4.62425613 -4.15284061
		 -1.76630914 -5.43613958 -4.15284061 -1.7034695e-007 -5.71589518 -4.15284061 1.76630855 -5.43613958 -4.15284061
		 3.3597188 -4.62425613 -4.15284061 4.62425613 -3.35971904 -4.15284061 5.43613958 -1.76630867 -4.15284061
		 5.71589518 -9.2211585e-016 -4.15284061 5.98706579 1.94531572 -3.20754957 5.092903137 3.70021033 -3.20754957
		 3.70021033 5.09290266 -3.20754957 1.94531548 5.98706579 -3.20754957 0 6.29517317 -3.20754957
		 -1.94531548 5.98706579 -3.20754957 -3.70020962 5.092901707 -3.20754957 -5.09290123 3.70020914 -3.20754957
		 -5.98706436 1.94531488 -3.20754957 -6.29517126 -7.1221908e-016 -3.20754957 -5.98706436 -1.94531488 -3.20754957
		 -5.09290123 -3.70020914 -3.20754957 -3.70020914 -5.092900753 -3.20754957 -1.94531488 -5.98706341 -3.20754957
		 -1.8761069e-007 -6.29517126 -3.20754957 1.94531453 -5.98706245 -3.20754957 3.70020819 -5.092900276 -3.20754957
		 5.092899799 -3.70020866 -3.20754957 5.98706245 -1.94531465 -3.20754957 6.29517031 -7.1221908e-016 -3.20754957
		 6.39056921 2.076421499 -2.18327737 5.43614292 3.94958878 -2.18327737 3.94958878 5.43614244 -2.18327737
		 2.076421499 6.39056778 -2.18327737 0 6.71944094 -2.18327737 -2.076421499 6.39056778 -2.18327737
		 -3.94958806 5.43614149 -2.18327737 -5.43614101 3.94958758 -2.18327737 -6.39056683 2.076421022 -2.18327737
		 -6.71943951 -4.8478496e-016 -2.18327737 -6.39056683 -2.076421022 -2.18327737 -5.43614054 -3.94958711 -2.18327737
		 -3.94958711 -5.43613958 -2.18327737 -2.076421022 -6.39056587 -2.18327737 -2.0025485e-007 -6.71943855 -2.18327737
		 2.076420307 -6.3905654 -2.18327737 3.94958639 -5.43613958 -2.18327737 5.43613958 -3.94958663 -2.18327737
		 6.39056492 -2.076420546 -2.18327737 6.7194376 -4.8478496e-016 -2.18327737 6.63671446 2.15639925 -1.10524559
		 5.64552641 4.10171509 -1.10524559 4.10171509 5.64552546 -1.10524559 2.15639901 6.6367135 -1.10524559
		 0 6.97825336 -1.10524559 -2.15639901 6.63671303 -1.10524559;
	setAttr ".vt[166:331]" -4.10171413 5.64552498 -1.10524559 -5.6455245 4.10171366 -1.10524559
		 -6.6367116 2.1563983 -1.10524559 -6.97825193 -2.4541382e-016 -1.10524559 -6.6367116 -2.1563983 -1.10524559
		 -5.64552402 -4.10171318 -1.10524559 -4.10171318 -5.64552355 -1.10524559 -2.1563983 -6.63671112 -1.10524559
		 -2.0796806e-007 -6.97825098 -1.10524559 2.15639782 -6.63671112 -1.10524559 4.10171175 -5.64552307 -1.10524559
		 5.64552212 -4.1017127 -1.10524559 6.63671064 -2.15639782 -1.10524559 6.97825003 -2.4541382e-016 -1.10524559
		 6.63671446 2.15639925 1.10524559 5.64552641 4.10171509 1.10524559 4.10171509 5.64552546 1.10524559
		 2.15639901 6.6367135 1.10524559 0 6.97825336 1.10524559 -2.15639901 6.63671303 1.10524559
		 -4.10171413 5.64552498 1.10524559 -5.6455245 4.10171366 1.10524559 -6.6367116 2.1563983 1.10524559
		 -6.97825193 2.4541382e-016 1.10524559 -6.6367116 -2.1563983 1.10524559 -5.64552402 -4.10171318 1.10524559
		 -4.10171318 -5.64552355 1.10524559 -2.1563983 -6.63671112 1.10524559 -2.0796806e-007 -6.97825098 1.10524559
		 2.15639782 -6.63671112 1.10524559 4.10171175 -5.64552307 1.10524559 5.64552212 -4.1017127 1.10524559
		 6.63671064 -2.15639782 1.10524559 6.97825003 2.4541382e-016 1.10524559 6.39056921 2.076421499 2.18327737
		 5.43614292 3.94958878 2.18327737 3.94958878 5.43614244 2.18327737 2.076421499 6.39056778 2.18327737
		 0 6.71944094 2.18327737 -2.076421499 6.39056778 2.18327737 -3.94958806 5.43614149 2.18327737
		 -5.43614101 3.94958758 2.18327737 -6.39056683 2.076421022 2.18327737 -6.71943951 4.8478496e-016 2.18327737
		 -6.39056683 -2.076421022 2.18327737 -5.43614054 -3.94958711 2.18327737 -3.94958711 -5.43613958 2.18327737
		 -2.076421022 -6.39056587 2.18327737 -2.0025485e-007 -6.71943855 2.18327737 2.076420307 -6.3905654 2.18327737
		 3.94958639 -5.43613958 2.18327737 5.43613958 -3.94958663 2.18327737 6.39056492 -2.076420546 2.18327737
		 6.7194376 4.8478496e-016 2.18327737 5.98706579 1.94531572 3.20754957 5.092903137 3.70021033 3.20754957
		 3.70021033 5.09290266 3.20754957 1.94531548 5.98706579 3.20754957 0 6.29517317 3.20754957
		 -1.94531548 5.98706579 3.20754957 -3.70020962 5.092901707 3.20754957 -5.09290123 3.70020914 3.20754957
		 -5.98706436 1.94531488 3.20754957 -6.29517126 7.1221908e-016 3.20754957 -5.98706436 -1.94531488 3.20754957
		 -5.09290123 -3.70020914 3.20754957 -3.70020914 -5.092900753 3.20754957 -1.94531488 -5.98706341 3.20754957
		 -1.8761069e-007 -6.29517126 3.20754957 1.94531453 -5.98706245 3.20754957 3.70020819 -5.092900276 3.20754957
		 5.092899799 -3.70020866 3.20754957 5.98706245 -1.94531465 3.20754957 6.29517031 7.1221908e-016 3.20754957
		 5.43614292 1.76630974 4.15284061 4.62425947 3.35972071 4.15284061 3.35972071 4.624259 4.15284061
		 1.7663095 5.43614197 4.15284061 0 5.71589756 4.15284061 -1.7663095 5.43614149 4.15284061
		 -3.35971975 4.62425804 4.15284061 -4.62425756 3.35971975 4.15284061 -5.43614054 1.76630914 4.15284061
		 -5.71589613 9.2211585e-016 4.15284061 -5.43614054 -1.76630914 4.15284061 -4.62425709 -3.35971951 4.15284061
		 -3.35971951 -4.62425613 4.15284061 -1.76630914 -5.43613958 4.15284061 -1.7034695e-007 -5.71589518 4.15284061
		 1.76630855 -5.43613958 4.15284061 3.3597188 -4.62425613 4.15284061 4.62425613 -3.35971904 4.15284061
		 5.43613958 -1.76630867 4.15284061 5.71589518 9.2211585e-016 4.15284061 4.7513628 1.54381132 4.99587536
		 4.041750908 2.93650365 4.99587536 2.93650365 4.041750431 4.99587536 1.5438112 4.75136232 4.99587536
		 0 4.99587774 4.99587536 -1.5438112 4.75136137 4.99587536 -2.93650293 4.041749477 4.99587536
		 -4.041749001 2.9365027 4.99587536 -4.75136137 1.54381049 4.99587536 -4.99587631 1.1093072e-015 4.99587536
		 -4.75136137 -1.54381049 4.99587536 -4.041749001 -2.93650198 4.99587536 -2.93650198 -4.041748524 4.99587536
		 -1.54381049 -4.75136042 4.99587536 -1.4888869e-007 -4.99587584 4.99587536 1.54381025 -4.75136042 4.99587536
		 2.93650174 -4.041748047 4.99587536 4.041748047 -2.93650198 4.99587536 4.75135994 -1.54381049 4.99587536
		 4.99587536 1.1093072e-015 4.99587536 3.94958878 1.28329909 5.71589518 3.35972095 2.44097996 5.71589518
		 2.44097996 3.35972071 5.71589518 1.28329885 3.9495883 5.71589518 0 4.152843 5.71589518
		 -1.28329885 3.94958806 5.71589518 -2.44097924 3.35971975 5.71589518 -3.35971975 2.44097924 5.71589518
		 -3.94958711 1.28329861 5.71589518 -4.15284157 1.2691837e-015 5.71589518 -3.94958711 -1.28329861 5.71589518
		 -3.35971951 -2.440979 5.71589518 -2.440979 -3.35971928 5.71589518 -1.28329861 -3.94958663 5.71589518
		 -1.2376429e-007 -4.15284109 5.71589518 1.28329825 -3.94958663 5.71589518 2.44097853 -3.35971904 5.71589518
		 3.3597188 -2.44097877 5.71589518 3.94958639 -1.28329837 5.71589518 4.15284061 1.2691837e-015 5.71589518
		 3.050562859 0.99118793 6.29517031 2.59496355 1.88535154 6.29517031 1.88535154 2.59496355 6.29517031
		 0.99118781 3.050562143 6.29517031 0 3.207551 6.29517031 -0.99118781 3.050562143 6.29517031
		 -1.88535106 2.59496307 6.29517031 -2.59496284 1.88535094 6.29517031 -3.050561905 0.99118751 6.29517031
		 -3.20755029 1.3978086e-015 6.29517031 -3.050561905 -0.99118751 6.29517031 -2.5949626 -1.8853507 6.29517031
		 -1.8853507 -2.5949626 6.29517031 -0.99118751 -3.050561428 6.29517031 -9.5592426e-008 -3.20755005 6.29517031
		 0.99118727 -3.05056119 6.29517031 1.88535023 -2.59496236 6.29517031 2.59496212 -1.88535047 6.29517031
		 3.050560951 -0.99118739 6.29517031 3.20754957 1.3978086e-015 6.29517031 2.076421499 0.67467034 6.7194376
		 1.76630998 1.28329909 6.7194376 1.28329909 1.76630974 6.7194376 0.67467022 2.076421499 6.7194376
		 0 2.1832788 6.7194376 -0.67467022 2.076421499 6.7194376 -1.28329885 1.76630926 6.7194376
		 -1.76630926 1.28329885 6.7194376 -2.076421022 0.67466998 6.7194376 -2.18327808 1.4920149e-015 6.7194376
		 -2.076421022 -0.67466998 6.7194376 -1.76630914 -1.28329873 6.7194376;
	setAttr ".vt[332:441]" -1.28329873 -1.76630914 6.7194376 -0.67466998 -2.076420784 6.7194376
		 -6.5066743e-008 -2.18327785 6.7194376 0.67466986 -2.076420546 6.7194376 1.28329837 -1.7663089 6.7194376
		 1.76630867 -1.28329849 6.7194376 2.076420546 -0.67466992 6.7194376 2.18327761 1.4920149e-015 6.7194376
		 1.051152349 0.3415401 6.97825003 0.89416361 0.64964777 6.97825003 0.64964777 0.89416361 6.97825003
		 0.34154004 1.051152229 6.97825003 0 1.10524678 6.97825003 -0.34154004 1.05115211 6.97825003
		 -0.64964777 0.89416337 6.97825003 -0.89416325 0.64964765 6.97825003 -1.051151991 0.34153998 6.97825003
		 -1.10524654 1.5494828e-015 6.97825003 -1.051151991 -0.34153998 6.97825003 -0.89416325 -0.64964759 6.97825003
		 -0.64964759 -0.89416319 6.97825003 -0.34153998 -1.051151872 6.97825003 -3.2938907e-008 -1.10524642 6.97825003
		 0.34153986 -1.051151752 6.97825003 0.64964747 -0.89416307 6.97825003 0.89416307 -0.64964753 6.97825003
		 1.051151752 -0.34153989 6.97825003 1.10524631 1.5494828e-015 6.97825003 0 -1.5687972e-015 -7.065234661
		 0 1.5687972e-015 7.065234661 6.69710779 2.17602181 -0.29838645 6.69710779 2.17602181 0.29838645
		 5.69690037 4.13903999 -0.29838645 5.69690037 4.13903999 0.29838645 4.13903999 5.69689989 -0.29838645
		 4.13903999 5.69689989 0.29838645 2.17602181 6.69710684 -0.29838645 2.17602181 6.69710684 0.29838645
		 -1.3481346e-017 7.041754246 -0.29838645 5.8528911e-009 7.041754246 0.29838645 -2.17602181 6.69710636 -0.29838645
		 -2.17602205 6.69710636 0.29838645 -4.13903904 5.69689798 -0.29838645 -4.13903904 5.69689798 0.29838645
		 -5.69689798 4.13903904 -0.29838645 -5.69689798 4.13903904 0.29838645 -6.69710541 2.17602134 -0.29838645
		 -6.69710541 2.17602134 0.29838645 -7.041752338 5.8528911e-009 -0.29838645 -7.041752338 0 0.29838645
		 -6.69710541 -2.17602134 -0.29838645 -6.69710541 -2.17602134 0.29838645 -5.69689751 -4.13903856 -0.29838645
		 -5.69689751 -4.13903856 0.29838645 -4.13903809 -5.69689703 -0.29838645 -4.13903809 -5.69689703 0.29838645
		 -2.17602134 -6.69710445 -0.29838645 -2.17602134 -6.69710445 0.29838645 5.9966512e-009 -7.041752338 -0.29838645
		 1.1849544e-008 -7.041752338 0.29838645 2.17602062 -6.69710398 -0.29838645 2.17602062 -6.69710398 0.29838645
		 4.13903713 -5.69689703 -0.29838645 4.13903713 -5.69689703 0.29838645 5.69689655 -4.13903761 -0.29838645
		 5.69689655 -4.13903761 0.29838645 6.6971035 -2.17602062 -0.29838645 6.6971035 -2.17602062 0.29838645
		 7.041751385 -1.7233758e-007 -0.29838645 7.041751385 -1.6648465e-007 0.29838645 6.50683641 2.11419916 -0.29838645
		 6.50683641 2.11419916 0.29838645 6.84168863 4.4703484e-008 0.29838645 6.84168863 3.7252903e-008 -0.29838645
		 5.53504562 4.021445751 -0.29838645 5.53504562 4.021445751 0.29838645 4.021445751 5.53504515 -0.29838645
		 4.021445751 5.53504515 0.29838645 2.11419892 6.50683498 -0.29838645 2.11419892 6.50683498 0.29838645
		 1.6763806e-008 6.84169149 -0.29838645 2.2351742e-008 6.84169149 0.29838645 -2.11419892 6.50683498 -0.29838645
		 -2.11419916 6.50683498 0.29838645 -4.021444798 5.53504372 -0.29838645 -4.021444798 5.53504372 0.29838645
		 -5.53504276 4.021444798 -0.29838645 -5.53504276 4.021444798 0.29838645 -6.50683403 2.11419845 -0.29838645
		 -6.50683403 2.11419845 0.29838645 -6.84168959 5.5879354e-009 -0.29838645 -6.84168959 0 0.29838645
		 -6.50683403 -2.11419845 -0.29838645 -6.50683403 -2.11419845 0.29838645 -5.53504276 -4.021444321 -0.29838645
		 -5.53504276 -4.021444321 0.29838645 -4.021443844 -5.53504229 -0.29838645 -4.021443844 -5.53504229 0.29838645
		 -2.11419845 -6.50683308 -0.29838645 -2.11419845 -6.50683308 0.29838645 -2.2351742e-008 -6.84168959 -0.29838645
		 -1.6763806e-008 -6.84168959 0.29838645 2.11419773 -6.5068326 -0.29838645 2.11419773 -6.5068326 0.29838645
		 4.02144289 -5.53504229 -0.29838645 4.02144289 -5.53504229 0.29838645 5.53504181 -4.021443367 -0.29838645
		 5.53504181 -4.021443367 0.29838645 6.50683165 -2.11419773 -0.29838645 6.50683165 -2.11419773 0.29838645;
	setAttr -s 900 ".ed";
	setAttr ".ed[0:165]"  0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1
		 9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1
		 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1
		 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1
		 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1
		 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1
		 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1
		 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1
		 86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1
		 97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1
		 106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1
		 115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1
		 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1
		 133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1
		 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1
		 151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1
		 160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;
	setAttr ".ed[166:331]" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1
		 172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1
		 181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1
		 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1
		 199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1
		 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1
		 217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1
		 226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1
		 235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1
		 244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1
		 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1
		 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1
		 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1
		 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 286 287 1 287 288 1 288 289 1
		 289 290 1 290 291 1 291 292 1 292 293 1 293 294 1 294 295 1 295 296 1 296 297 1 297 298 1
		 298 299 1 299 280 1 300 301 1 301 302 1 302 303 1 303 304 1 304 305 1 305 306 1 306 307 1
		 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 312 313 1 313 314 1 314 315 1 315 316 1
		 316 317 1 317 318 1 318 319 1 319 300 1 320 321 1 321 322 1 322 323 1 323 324 1 324 325 1
		 325 326 1 326 327 1 327 328 1 328 329 1 329 330 1 330 331 1 331 332 1;
	setAttr ".ed[332:497]" 332 333 1 333 334 1 334 335 1 335 336 1 336 337 1 337 338 1
		 338 339 1 339 320 1 340 341 1 341 342 1 342 343 1 343 344 1 344 345 1 345 346 1 346 347 1
		 347 348 1 348 349 1 349 350 1 350 351 1 351 352 1 352 353 1 353 354 1 354 355 1 355 356 1
		 356 357 1 357 358 1 358 359 1 359 340 1 0 20 1 1 21 1 2 22 1 3 23 1 4 24 1 5 25 1
		 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1 14 34 1 15 35 1 16 36 1
		 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1 25 45 1 26 46 1 27 47 1
		 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1 36 56 1 37 57 1 38 58 1
		 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1 47 67 1 48 68 1 49 69 1
		 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1 58 78 1 59 79 1 60 80 1
		 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1 69 89 1 70 90 1 71 91 1
		 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1 80 100 1 81 101 1
		 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1 89 109 1 90 110 1
		 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1 98 118 1 99 119 1
		 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1 107 127 1 108 128 1
		 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1 116 136 1 117 137 1
		 118 138 1 119 139 1 120 140 1 121 141 1 122 142 1 123 143 1 124 144 1 125 145 1 126 146 1
		 127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1 133 153 1 134 154 1 135 155 1
		 136 156 1 137 157 1;
	setAttr ".ed[498:663]" 138 158 1 139 159 1 140 160 1 141 161 1 142 162 1 143 163 1
		 144 164 1 145 165 1 146 166 1 147 167 1 148 168 1 149 169 1 150 170 1 151 171 1 152 172 1
		 153 173 1 154 174 1 155 175 1 156 176 1 157 177 1 158 178 1 159 179 1 180 200 1 181 201 1
		 182 202 1 183 203 1 184 204 1 185 205 1 186 206 1 187 207 1 188 208 1 189 209 1 190 210 1
		 191 211 1 192 212 1 193 213 1 194 214 1 195 215 1 196 216 1 197 217 1 198 218 1 199 219 1
		 200 220 1 201 221 1 202 222 1 203 223 1 204 224 1 205 225 1 206 226 1 207 227 1 208 228 1
		 209 229 1 210 230 1 211 231 1 212 232 1 213 233 1 214 234 1 215 235 1 216 236 1 217 237 1
		 218 238 1 219 239 1 220 240 1 221 241 1 222 242 1 223 243 1 224 244 1 225 245 1 226 246 1
		 227 247 1 228 248 1 229 249 1 230 250 1 231 251 1 232 252 1 233 253 1 234 254 1 235 255 1
		 236 256 1 237 257 1 238 258 1 239 259 1 240 260 1 241 261 1 242 262 1 243 263 1 244 264 1
		 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1 250 270 1 251 271 1 252 272 1 253 273 1
		 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1 259 279 1 260 280 1 261 281 1 262 282 1
		 263 283 1 264 284 1 265 285 1 266 286 1 267 287 1 268 288 1 269 289 1 270 290 1 271 291 1
		 272 292 1 273 293 1 274 294 1 275 295 1 276 296 1 277 297 1 278 298 1 279 299 1 280 300 1
		 281 301 1 282 302 1 283 303 1 284 304 1 285 305 1 286 306 1 287 307 1 288 308 1 289 309 1
		 290 310 1 291 311 1 292 312 1 293 313 1 294 314 1 295 315 1 296 316 1 297 317 1 298 318 1
		 299 319 1 300 320 1 301 321 1 302 322 1 303 323 1 304 324 1 305 325 1 306 326 1 307 327 1
		 308 328 1 309 329 1 310 330 1 311 331 1 312 332 1 313 333 1 314 334 1 315 335 1 316 336 1
		 317 337 1 318 338 1 319 339 1 320 340 1 321 341 1 322 342 1 323 343 1;
	setAttr ".ed[664:829]" 324 344 1 325 345 1 326 346 1 327 347 1 328 348 1 329 349 1
		 330 350 1 331 351 1 332 352 1 333 353 1 334 354 1 335 355 1 336 356 1 337 357 1 338 358 1
		 339 359 1 360 0 1 360 1 1 360 2 1 360 3 1 360 4 1 360 5 1 360 6 1 360 7 1 360 8 1
		 360 9 1 360 10 1 360 11 1 360 12 1 360 13 1 360 14 1 360 15 1 360 16 1 360 17 1 360 18 1
		 360 19 1 340 361 1 341 361 1 342 361 1 343 361 1 344 361 1 345 361 1 346 361 1 347 361 1
		 348 361 1 349 361 1 350 361 1 351 361 1 352 361 1 353 361 1 354 361 1 355 361 1 356 361 1
		 357 361 1 358 361 1 359 361 1 363 401 0 400 362 0 362 364 0 365 363 0 364 366 0 367 365 0
		 366 368 0 369 367 0 368 370 0 371 369 0 370 372 0 373 371 0 372 374 0 375 373 0 374 376 0
		 377 375 0 376 378 0 379 377 0 378 380 0 381 379 0 380 382 0 383 381 0 382 384 0 385 383 0
		 384 386 0 387 385 0 386 388 0 389 387 0 388 390 0 391 389 0 390 392 0 393 391 0 392 394 0
		 395 393 0 394 396 0 397 395 0 396 398 0 399 397 0 398 400 0 401 399 0 161 364 1 362 160 1
		 162 366 1 163 368 1 164 370 1 165 372 1 166 374 1 167 376 1 168 378 1 169 380 1 170 382 1
		 171 384 1 172 386 1 173 388 1 174 390 1 175 392 1 176 394 1 177 396 1 178 398 1 179 400 1
		 365 181 1 180 363 1 367 182 1 369 183 1 371 184 1 373 185 1 375 186 1 377 187 1 379 188 1
		 381 189 1 383 190 1 385 191 1 387 192 1 389 193 1 391 194 1 393 195 1 395 196 1 397 197 1
		 399 198 1 401 199 1 362 402 1 363 403 1 402 403 1 401 404 1 403 404 0 400 405 1 404 405 1
		 405 402 0 364 406 1 402 406 0 365 407 1 406 407 1 407 403 0 366 408 1 406 408 0 367 409 1
		 408 409 1 409 407 0 368 410 1 408 410 0 369 411 1 410 411 1 411 409 0 370 412 1 410 412 0
		 371 413 1 412 413 1 413 411 0 372 414 1 412 414 0;
	setAttr ".ed[830:899]" 373 415 1 414 415 1 415 413 0 374 416 1 414 416 0 375 417 1
		 416 417 1 417 415 0 376 418 1 416 418 0 377 419 1 418 419 1 419 417 0 378 420 1 418 420 0
		 379 421 1 420 421 1 421 419 0 380 422 1 420 422 0 381 423 1 422 423 1 423 421 0 382 424 1
		 422 424 0 383 425 1 424 425 1 425 423 0 384 426 1 424 426 0 385 427 1 426 427 1 427 425 0
		 386 428 1 426 428 0 387 429 1 428 429 1 429 427 0 388 430 1 428 430 0 389 431 1 430 431 1
		 431 429 0 390 432 1 430 432 0 391 433 1 432 433 1 433 431 0 392 434 1 432 434 0 393 435 1
		 434 435 1 435 433 0 394 436 1 434 436 0 395 437 1 436 437 1 437 435 0 396 438 1 436 438 0
		 397 439 1 438 439 1 439 437 0 398 440 1 438 440 0 399 441 1 440 441 1 441 439 0 440 405 0
		 404 441 0;
	setAttr -s 460 -ch 1800 ".fc[0:459]" -type "polyFaces" 
		f 4 0 361 -21 -361
		mu 0 4 0 1 22 21
		f 4 1 362 -22 -362
		mu 0 4 1 2 23 22
		f 4 2 363 -23 -363
		mu 0 4 2 3 24 23
		f 4 3 364 -24 -364
		mu 0 4 3 4 25 24
		f 4 4 365 -25 -365
		mu 0 4 4 5 26 25
		f 4 5 366 -26 -366
		mu 0 4 5 6 27 26
		f 4 6 367 -27 -367
		mu 0 4 6 7 28 27
		f 4 7 368 -28 -368
		mu 0 4 7 8 29 28
		f 4 8 369 -29 -369
		mu 0 4 8 9 30 29
		f 4 9 370 -30 -370
		mu 0 4 9 10 31 30
		f 4 10 371 -31 -371
		mu 0 4 10 11 32 31
		f 4 11 372 -32 -372
		mu 0 4 11 12 33 32
		f 4 12 373 -33 -373
		mu 0 4 12 13 34 33
		f 4 13 374 -34 -374
		mu 0 4 13 14 35 34
		f 4 14 375 -35 -375
		mu 0 4 14 15 36 35
		f 4 15 376 -36 -376
		mu 0 4 15 16 37 36
		f 4 16 377 -37 -377
		mu 0 4 16 17 38 37
		f 4 17 378 -38 -378
		mu 0 4 17 18 39 38
		f 4 18 379 -39 -379
		mu 0 4 18 19 40 39
		f 4 19 360 -40 -380
		mu 0 4 19 20 41 40
		f 4 20 381 -41 -381
		mu 0 4 21 22 43 42
		f 4 21 382 -42 -382
		mu 0 4 22 23 44 43
		f 4 22 383 -43 -383
		mu 0 4 23 24 45 44
		f 4 23 384 -44 -384
		mu 0 4 24 25 46 45
		f 4 24 385 -45 -385
		mu 0 4 25 26 47 46
		f 4 25 386 -46 -386
		mu 0 4 26 27 48 47
		f 4 26 387 -47 -387
		mu 0 4 27 28 49 48
		f 4 27 388 -48 -388
		mu 0 4 28 29 50 49
		f 4 28 389 -49 -389
		mu 0 4 29 30 51 50
		f 4 29 390 -50 -390
		mu 0 4 30 31 52 51
		f 4 30 391 -51 -391
		mu 0 4 31 32 53 52
		f 4 31 392 -52 -392
		mu 0 4 32 33 54 53
		f 4 32 393 -53 -393
		mu 0 4 33 34 55 54
		f 4 33 394 -54 -394
		mu 0 4 34 35 56 55
		f 4 34 395 -55 -395
		mu 0 4 35 36 57 56
		f 4 35 396 -56 -396
		mu 0 4 36 37 58 57
		f 4 36 397 -57 -397
		mu 0 4 37 38 59 58
		f 4 37 398 -58 -398
		mu 0 4 38 39 60 59
		f 4 38 399 -59 -399
		mu 0 4 39 40 61 60
		f 4 39 380 -60 -400
		mu 0 4 40 41 62 61
		f 4 40 401 -61 -401
		mu 0 4 42 43 64 63
		f 4 41 402 -62 -402
		mu 0 4 43 44 65 64
		f 4 42 403 -63 -403
		mu 0 4 44 45 66 65
		f 4 43 404 -64 -404
		mu 0 4 45 46 67 66
		f 4 44 405 -65 -405
		mu 0 4 46 47 68 67
		f 4 45 406 -66 -406
		mu 0 4 47 48 69 68
		f 4 46 407 -67 -407
		mu 0 4 48 49 70 69
		f 4 47 408 -68 -408
		mu 0 4 49 50 71 70
		f 4 48 409 -69 -409
		mu 0 4 50 51 72 71
		f 4 49 410 -70 -410
		mu 0 4 51 52 73 72
		f 4 50 411 -71 -411
		mu 0 4 52 53 74 73
		f 4 51 412 -72 -412
		mu 0 4 53 54 75 74
		f 4 52 413 -73 -413
		mu 0 4 54 55 76 75
		f 4 53 414 -74 -414
		mu 0 4 55 56 77 76
		f 4 54 415 -75 -415
		mu 0 4 56 57 78 77
		f 4 55 416 -76 -416
		mu 0 4 57 58 79 78
		f 4 56 417 -77 -417
		mu 0 4 58 59 80 79
		f 4 57 418 -78 -418
		mu 0 4 59 60 81 80
		f 4 58 419 -79 -419
		mu 0 4 60 61 82 81
		f 4 59 400 -80 -420
		mu 0 4 61 62 83 82
		f 4 60 421 -81 -421
		mu 0 4 63 64 85 84
		f 4 61 422 -82 -422
		mu 0 4 64 65 86 85
		f 4 62 423 -83 -423
		mu 0 4 65 66 87 86
		f 4 63 424 -84 -424
		mu 0 4 66 67 88 87
		f 4 64 425 -85 -425
		mu 0 4 67 68 89 88
		f 4 65 426 -86 -426
		mu 0 4 68 69 90 89
		f 4 66 427 -87 -427
		mu 0 4 69 70 91 90
		f 4 67 428 -88 -428
		mu 0 4 70 71 92 91
		f 4 68 429 -89 -429
		mu 0 4 71 72 93 92
		f 4 69 430 -90 -430
		mu 0 4 72 73 94 93
		f 4 70 431 -91 -431
		mu 0 4 73 74 95 94
		f 4 71 432 -92 -432
		mu 0 4 74 75 96 95
		f 4 72 433 -93 -433
		mu 0 4 75 76 97 96
		f 4 73 434 -94 -434
		mu 0 4 76 77 98 97
		f 4 74 435 -95 -435
		mu 0 4 77 78 99 98
		f 4 75 436 -96 -436
		mu 0 4 78 79 100 99
		f 4 76 437 -97 -437
		mu 0 4 79 80 101 100
		f 4 77 438 -98 -438
		mu 0 4 80 81 102 101
		f 4 78 439 -99 -439
		mu 0 4 81 82 103 102
		f 4 79 420 -100 -440
		mu 0 4 82 83 104 103
		f 4 80 441 -101 -441
		mu 0 4 84 85 106 105
		f 4 81 442 -102 -442
		mu 0 4 85 86 107 106
		f 4 82 443 -103 -443
		mu 0 4 86 87 108 107
		f 4 83 444 -104 -444
		mu 0 4 87 88 109 108
		f 4 84 445 -105 -445
		mu 0 4 88 89 110 109
		f 4 85 446 -106 -446
		mu 0 4 89 90 111 110
		f 4 86 447 -107 -447
		mu 0 4 90 91 112 111
		f 4 87 448 -108 -448
		mu 0 4 91 92 113 112
		f 4 88 449 -109 -449
		mu 0 4 92 93 114 113
		f 4 89 450 -110 -450
		mu 0 4 93 94 115 114
		f 4 90 451 -111 -451
		mu 0 4 94 95 116 115
		f 4 91 452 -112 -452
		mu 0 4 95 96 117 116
		f 4 92 453 -113 -453
		mu 0 4 96 97 118 117
		f 4 93 454 -114 -454
		mu 0 4 97 98 119 118
		f 4 94 455 -115 -455
		mu 0 4 98 99 120 119
		f 4 95 456 -116 -456
		mu 0 4 99 100 121 120
		f 4 96 457 -117 -457
		mu 0 4 100 101 122 121
		f 4 97 458 -118 -458
		mu 0 4 101 102 123 122
		f 4 98 459 -119 -459
		mu 0 4 102 103 124 123
		f 4 99 440 -120 -460
		mu 0 4 103 104 125 124
		f 4 100 461 -121 -461
		mu 0 4 105 106 127 126
		f 4 101 462 -122 -462
		mu 0 4 106 107 128 127
		f 4 102 463 -123 -463
		mu 0 4 107 108 129 128
		f 4 103 464 -124 -464
		mu 0 4 108 109 130 129
		f 4 104 465 -125 -465
		mu 0 4 109 110 131 130
		f 4 105 466 -126 -466
		mu 0 4 110 111 132 131
		f 4 106 467 -127 -467
		mu 0 4 111 112 133 132
		f 4 107 468 -128 -468
		mu 0 4 112 113 134 133
		f 4 108 469 -129 -469
		mu 0 4 113 114 135 134
		f 4 109 470 -130 -470
		mu 0 4 114 115 136 135
		f 4 110 471 -131 -471
		mu 0 4 115 116 137 136
		f 4 111 472 -132 -472
		mu 0 4 116 117 138 137
		f 4 112 473 -133 -473
		mu 0 4 117 118 139 138
		f 4 113 474 -134 -474
		mu 0 4 118 119 140 139
		f 4 114 475 -135 -475
		mu 0 4 119 120 141 140
		f 4 115 476 -136 -476
		mu 0 4 120 121 142 141
		f 4 116 477 -137 -477
		mu 0 4 121 122 143 142
		f 4 117 478 -138 -478
		mu 0 4 122 123 144 143
		f 4 118 479 -139 -479
		mu 0 4 123 124 145 144
		f 4 119 460 -140 -480
		mu 0 4 124 125 146 145
		f 4 120 481 -141 -481
		mu 0 4 126 127 148 147
		f 4 121 482 -142 -482
		mu 0 4 127 128 149 148
		f 4 122 483 -143 -483
		mu 0 4 128 129 150 149
		f 4 123 484 -144 -484
		mu 0 4 129 130 151 150
		f 4 124 485 -145 -485
		mu 0 4 130 131 152 151
		f 4 125 486 -146 -486
		mu 0 4 131 132 153 152
		f 4 126 487 -147 -487
		mu 0 4 132 133 154 153
		f 4 127 488 -148 -488
		mu 0 4 133 134 155 154
		f 4 128 489 -149 -489
		mu 0 4 134 135 156 155
		f 4 129 490 -150 -490
		mu 0 4 135 136 157 156
		f 4 130 491 -151 -491
		mu 0 4 136 137 158 157
		f 4 131 492 -152 -492
		mu 0 4 137 138 159 158
		f 4 132 493 -153 -493
		mu 0 4 138 139 160 159
		f 4 133 494 -154 -494
		mu 0 4 139 140 161 160
		f 4 134 495 -155 -495
		mu 0 4 140 141 162 161
		f 4 135 496 -156 -496
		mu 0 4 141 142 163 162
		f 4 136 497 -157 -497
		mu 0 4 142 143 164 163
		f 4 137 498 -158 -498
		mu 0 4 143 144 165 164
		f 4 138 499 -159 -499
		mu 0 4 144 145 166 165
		f 4 139 480 -160 -500
		mu 0 4 145 146 167 166
		f 4 140 501 -161 -501
		mu 0 4 147 148 380 168
		f 4 141 502 -162 -502
		mu 0 4 148 149 382 380
		f 4 142 503 -163 -503
		mu 0 4 149 150 384 382
		f 4 143 504 -164 -504
		mu 0 4 150 151 386 384
		f 4 144 505 -165 -505
		mu 0 4 151 152 388 386
		f 4 145 506 -166 -506
		mu 0 4 152 153 390 388
		f 4 146 507 -167 -507
		mu 0 4 153 154 392 390
		f 4 147 508 -168 -508
		mu 0 4 154 155 394 392
		f 4 148 509 -169 -509
		mu 0 4 155 156 396 394
		f 4 149 510 -170 -510
		mu 0 4 156 157 398 396
		f 4 150 511 -171 -511
		mu 0 4 157 158 400 398
		f 4 151 512 -172 -512
		mu 0 4 158 159 402 400
		f 4 152 513 -173 -513
		mu 0 4 159 160 404 402
		f 4 153 514 -174 -514
		mu 0 4 160 161 406 404
		f 4 154 515 -175 -515
		mu 0 4 161 162 408 406
		f 4 155 516 -176 -516
		mu 0 4 162 163 410 408
		f 4 156 517 -177 -517
		mu 0 4 163 164 412 410
		f 4 157 518 -178 -518
		mu 0 4 164 165 414 412
		f 4 158 519 -179 -519
		mu 0 4 165 166 416 414
		f 4 159 500 -180 -520
		mu 0 4 166 167 418 416
		f 4 180 521 -201 -521
		mu 0 4 421 423 171 170
		f 4 181 522 -202 -522
		mu 0 4 423 425 172 171
		f 4 182 523 -203 -523
		mu 0 4 425 427 173 172
		f 4 183 524 -204 -524
		mu 0 4 427 429 174 173
		f 4 184 525 -205 -525
		mu 0 4 429 431 175 174
		f 4 185 526 -206 -526
		mu 0 4 431 433 176 175
		f 4 186 527 -207 -527
		mu 0 4 433 435 177 176
		f 4 187 528 -208 -528
		mu 0 4 435 437 178 177
		f 4 188 529 -209 -529
		mu 0 4 437 439 179 178
		f 4 189 530 -210 -530
		mu 0 4 439 441 180 179
		f 4 190 531 -211 -531
		mu 0 4 441 443 181 180
		f 4 191 532 -212 -532
		mu 0 4 443 445 182 181
		f 4 192 533 -213 -533
		mu 0 4 445 447 183 182
		f 4 193 534 -214 -534
		mu 0 4 447 449 184 183
		f 4 194 535 -215 -535
		mu 0 4 449 451 185 184
		f 4 195 536 -216 -536
		mu 0 4 451 453 186 185
		f 4 196 537 -217 -537
		mu 0 4 453 455 187 186
		f 4 197 538 -218 -538
		mu 0 4 455 457 188 187
		f 4 198 539 -219 -539
		mu 0 4 457 459 189 188
		f 4 199 520 -220 -540
		mu 0 4 459 169 190 189
		f 4 200 541 -221 -541
		mu 0 4 170 171 192 191
		f 4 201 542 -222 -542
		mu 0 4 171 172 193 192
		f 4 202 543 -223 -543
		mu 0 4 172 173 194 193
		f 4 203 544 -224 -544
		mu 0 4 173 174 195 194
		f 4 204 545 -225 -545
		mu 0 4 174 175 196 195
		f 4 205 546 -226 -546
		mu 0 4 175 176 197 196
		f 4 206 547 -227 -547
		mu 0 4 176 177 198 197
		f 4 207 548 -228 -548
		mu 0 4 177 178 199 198
		f 4 208 549 -229 -549
		mu 0 4 178 179 200 199
		f 4 209 550 -230 -550
		mu 0 4 179 180 201 200
		f 4 210 551 -231 -551
		mu 0 4 180 181 202 201
		f 4 211 552 -232 -552
		mu 0 4 181 182 203 202
		f 4 212 553 -233 -553
		mu 0 4 182 183 204 203
		f 4 213 554 -234 -554
		mu 0 4 183 184 205 204
		f 4 214 555 -235 -555
		mu 0 4 184 185 206 205
		f 4 215 556 -236 -556
		mu 0 4 185 186 207 206
		f 4 216 557 -237 -557
		mu 0 4 186 187 208 207
		f 4 217 558 -238 -558
		mu 0 4 187 188 209 208
		f 4 218 559 -239 -559
		mu 0 4 188 189 210 209
		f 4 219 540 -240 -560
		mu 0 4 189 190 211 210
		f 4 220 561 -241 -561
		mu 0 4 191 192 213 212
		f 4 221 562 -242 -562
		mu 0 4 192 193 214 213
		f 4 222 563 -243 -563
		mu 0 4 193 194 215 214
		f 4 223 564 -244 -564
		mu 0 4 194 195 216 215
		f 4 224 565 -245 -565
		mu 0 4 195 196 217 216
		f 4 225 566 -246 -566
		mu 0 4 196 197 218 217
		f 4 226 567 -247 -567
		mu 0 4 197 198 219 218
		f 4 227 568 -248 -568
		mu 0 4 198 199 220 219
		f 4 228 569 -249 -569
		mu 0 4 199 200 221 220
		f 4 229 570 -250 -570
		mu 0 4 200 201 222 221
		f 4 230 571 -251 -571
		mu 0 4 201 202 223 222
		f 4 231 572 -252 -572
		mu 0 4 202 203 224 223
		f 4 232 573 -253 -573
		mu 0 4 203 204 225 224
		f 4 233 574 -254 -574
		mu 0 4 204 205 226 225
		f 4 234 575 -255 -575
		mu 0 4 205 206 227 226
		f 4 235 576 -256 -576
		mu 0 4 206 207 228 227
		f 4 236 577 -257 -577
		mu 0 4 207 208 229 228
		f 4 237 578 -258 -578
		mu 0 4 208 209 230 229
		f 4 238 579 -259 -579
		mu 0 4 209 210 231 230
		f 4 239 560 -260 -580
		mu 0 4 210 211 232 231
		f 4 240 581 -261 -581
		mu 0 4 212 213 234 233
		f 4 241 582 -262 -582
		mu 0 4 213 214 235 234
		f 4 242 583 -263 -583
		mu 0 4 214 215 236 235
		f 4 243 584 -264 -584
		mu 0 4 215 216 237 236
		f 4 244 585 -265 -585
		mu 0 4 216 217 238 237
		f 4 245 586 -266 -586
		mu 0 4 217 218 239 238
		f 4 246 587 -267 -587
		mu 0 4 218 219 240 239
		f 4 247 588 -268 -588
		mu 0 4 219 220 241 240
		f 4 248 589 -269 -589
		mu 0 4 220 221 242 241
		f 4 249 590 -270 -590
		mu 0 4 221 222 243 242
		f 4 250 591 -271 -591
		mu 0 4 222 223 244 243
		f 4 251 592 -272 -592
		mu 0 4 223 224 245 244
		f 4 252 593 -273 -593
		mu 0 4 224 225 246 245
		f 4 253 594 -274 -594
		mu 0 4 225 226 247 246
		f 4 254 595 -275 -595
		mu 0 4 226 227 248 247
		f 4 255 596 -276 -596
		mu 0 4 227 228 249 248
		f 4 256 597 -277 -597
		mu 0 4 228 229 250 249
		f 4 257 598 -278 -598
		mu 0 4 229 230 251 250
		f 4 258 599 -279 -599
		mu 0 4 230 231 252 251
		f 4 259 580 -280 -600
		mu 0 4 231 232 253 252
		f 4 260 601 -281 -601
		mu 0 4 233 234 255 254
		f 4 261 602 -282 -602
		mu 0 4 234 235 256 255
		f 4 262 603 -283 -603
		mu 0 4 235 236 257 256
		f 4 263 604 -284 -604
		mu 0 4 236 237 258 257
		f 4 264 605 -285 -605
		mu 0 4 237 238 259 258
		f 4 265 606 -286 -606
		mu 0 4 238 239 260 259
		f 4 266 607 -287 -607
		mu 0 4 239 240 261 260
		f 4 267 608 -288 -608
		mu 0 4 240 241 262 261
		f 4 268 609 -289 -609
		mu 0 4 241 242 263 262
		f 4 269 610 -290 -610
		mu 0 4 242 243 264 263
		f 4 270 611 -291 -611
		mu 0 4 243 244 265 264
		f 4 271 612 -292 -612
		mu 0 4 244 245 266 265
		f 4 272 613 -293 -613
		mu 0 4 245 246 267 266
		f 4 273 614 -294 -614
		mu 0 4 246 247 268 267
		f 4 274 615 -295 -615
		mu 0 4 247 248 269 268
		f 4 275 616 -296 -616
		mu 0 4 248 249 270 269
		f 4 276 617 -297 -617
		mu 0 4 249 250 271 270
		f 4 277 618 -298 -618
		mu 0 4 250 251 272 271
		f 4 278 619 -299 -619
		mu 0 4 251 252 273 272
		f 4 279 600 -300 -620
		mu 0 4 252 253 274 273
		f 4 280 621 -301 -621
		mu 0 4 254 255 276 275
		f 4 281 622 -302 -622
		mu 0 4 255 256 277 276
		f 4 282 623 -303 -623
		mu 0 4 256 257 278 277
		f 4 283 624 -304 -624
		mu 0 4 257 258 279 278
		f 4 284 625 -305 -625
		mu 0 4 258 259 280 279
		f 4 285 626 -306 -626
		mu 0 4 259 260 281 280
		f 4 286 627 -307 -627
		mu 0 4 260 261 282 281
		f 4 287 628 -308 -628
		mu 0 4 261 262 283 282
		f 4 288 629 -309 -629
		mu 0 4 262 263 284 283
		f 4 289 630 -310 -630
		mu 0 4 263 264 285 284
		f 4 290 631 -311 -631
		mu 0 4 264 265 286 285
		f 4 291 632 -312 -632
		mu 0 4 265 266 287 286
		f 4 292 633 -313 -633
		mu 0 4 266 267 288 287
		f 4 293 634 -314 -634
		mu 0 4 267 268 289 288
		f 4 294 635 -315 -635
		mu 0 4 268 269 290 289
		f 4 295 636 -316 -636
		mu 0 4 269 270 291 290
		f 4 296 637 -317 -637
		mu 0 4 270 271 292 291
		f 4 297 638 -318 -638
		mu 0 4 271 272 293 292
		f 4 298 639 -319 -639
		mu 0 4 272 273 294 293
		f 4 299 620 -320 -640
		mu 0 4 273 274 295 294
		f 4 300 641 -321 -641
		mu 0 4 275 276 297 296
		f 4 301 642 -322 -642
		mu 0 4 276 277 298 297
		f 4 302 643 -323 -643
		mu 0 4 277 278 299 298
		f 4 303 644 -324 -644
		mu 0 4 278 279 300 299
		f 4 304 645 -325 -645
		mu 0 4 279 280 301 300
		f 4 305 646 -326 -646
		mu 0 4 280 281 302 301
		f 4 306 647 -327 -647
		mu 0 4 281 282 303 302
		f 4 307 648 -328 -648
		mu 0 4 282 283 304 303
		f 4 308 649 -329 -649
		mu 0 4 283 284 305 304
		f 4 309 650 -330 -650
		mu 0 4 284 285 306 305
		f 4 310 651 -331 -651
		mu 0 4 285 286 307 306
		f 4 311 652 -332 -652
		mu 0 4 286 287 308 307
		f 4 312 653 -333 -653
		mu 0 4 287 288 309 308
		f 4 313 654 -334 -654
		mu 0 4 288 289 310 309
		f 4 314 655 -335 -655
		mu 0 4 289 290 311 310
		f 4 315 656 -336 -656
		mu 0 4 290 291 312 311
		f 4 316 657 -337 -657
		mu 0 4 291 292 313 312
		f 4 317 658 -338 -658
		mu 0 4 292 293 314 313
		f 4 318 659 -339 -659
		mu 0 4 293 294 315 314
		f 4 319 640 -340 -660
		mu 0 4 294 295 316 315
		f 4 320 661 -341 -661
		mu 0 4 296 297 318 317
		f 4 321 662 -342 -662
		mu 0 4 297 298 319 318
		f 4 322 663 -343 -663
		mu 0 4 298 299 320 319
		f 4 323 664 -344 -664
		mu 0 4 299 300 321 320
		f 4 324 665 -345 -665
		mu 0 4 300 301 322 321
		f 4 325 666 -346 -666
		mu 0 4 301 302 323 322
		f 4 326 667 -347 -667
		mu 0 4 302 303 324 323
		f 4 327 668 -348 -668
		mu 0 4 303 304 325 324
		f 4 328 669 -349 -669
		mu 0 4 304 305 326 325
		f 4 329 670 -350 -670
		mu 0 4 305 306 327 326
		f 4 330 671 -351 -671
		mu 0 4 306 307 328 327
		f 4 331 672 -352 -672
		mu 0 4 307 308 329 328
		f 4 332 673 -353 -673
		mu 0 4 308 309 330 329
		f 4 333 674 -354 -674
		mu 0 4 309 310 331 330
		f 4 334 675 -355 -675
		mu 0 4 310 311 332 331
		f 4 335 676 -356 -676
		mu 0 4 311 312 333 332
		f 4 336 677 -357 -677
		mu 0 4 312 313 334 333
		f 4 337 678 -358 -678
		mu 0 4 313 314 335 334
		f 4 338 679 -359 -679
		mu 0 4 314 315 336 335
		f 4 339 660 -360 -680
		mu 0 4 315 316 337 336
		f 3 -1 -681 681
		mu 0 3 1 0 338
		f 3 -2 -682 682
		mu 0 3 2 1 339
		f 3 -3 -683 683
		mu 0 3 3 2 340
		f 3 -4 -684 684
		mu 0 3 4 3 341
		f 3 -5 -685 685
		mu 0 3 5 4 342
		f 3 -6 -686 686
		mu 0 3 6 5 343
		f 3 -7 -687 687
		mu 0 3 7 6 344
		f 3 -8 -688 688
		mu 0 3 8 7 345
		f 3 -9 -689 689
		mu 0 3 9 8 346
		f 3 -10 -690 690
		mu 0 3 10 9 347
		f 3 -11 -691 691
		mu 0 3 11 10 348
		f 3 -12 -692 692
		mu 0 3 12 11 349
		f 3 -13 -693 693
		mu 0 3 13 12 350
		f 3 -14 -694 694
		mu 0 3 14 13 351
		f 3 -15 -695 695
		mu 0 3 15 14 352
		f 3 -16 -696 696
		mu 0 3 16 15 353
		f 3 -17 -697 697
		mu 0 3 17 16 354
		f 3 -18 -698 698
		mu 0 3 18 17 355
		f 3 -19 -699 699
		mu 0 3 19 18 356
		f 3 -20 -700 680
		mu 0 3 20 19 357
		f 3 340 701 -701
		mu 0 3 317 318 358
		f 3 341 702 -702
		mu 0 3 318 319 359
		f 3 342 703 -703
		mu 0 3 319 320 360
		f 3 343 704 -704
		mu 0 3 320 321 361
		f 3 344 705 -705
		mu 0 3 321 322 362
		f 3 345 706 -706
		mu 0 3 322 323 363
		f 3 346 707 -707
		mu 0 3 323 324 364
		f 3 347 708 -708
		mu 0 3 324 325 365
		f 3 348 709 -709
		mu 0 3 325 326 366
		f 3 349 710 -710
		mu 0 3 326 327 367
		f 3 350 711 -711
		mu 0 3 327 328 368
		f 3 351 712 -712
		mu 0 3 328 329 369
		f 3 352 713 -713
		mu 0 3 329 330 370
		f 3 353 714 -714
		mu 0 3 330 331 371
		f 3 354 715 -715
		mu 0 3 331 332 372
		f 3 355 716 -716
		mu 0 3 332 333 373
		f 3 356 717 -717
		mu 0 3 333 334 374
		f 3 357 718 -718
		mu 0 3 334 335 375
		f 3 358 719 -719
		mu 0 3 335 336 376
		f 3 359 700 -720
		mu 0 3 336 337 377
		f 4 802 804 806 807
		mu 0 4 463 460 461 462
		f 4 -803 809 811 812
		mu 0 4 467 464 465 466
		f 4 -812 814 816 817
		mu 0 4 466 465 468 469
		f 4 -817 819 821 822
		mu 0 4 469 468 470 471
		f 4 -822 824 826 827
		mu 0 4 471 470 472 473
		f 4 -827 829 831 832
		mu 0 4 473 472 474 475
		f 4 -832 834 836 837
		mu 0 4 475 474 476 477
		f 4 -837 839 841 842
		mu 0 4 477 476 478 479
		f 4 -842 844 846 847
		mu 0 4 479 478 480 481
		f 4 -847 849 851 852
		mu 0 4 481 480 482 483
		f 4 -852 854 856 857
		mu 0 4 483 482 484 485
		f 4 -857 859 861 862
		mu 0 4 485 484 486 487
		f 4 -862 864 866 867
		mu 0 4 487 486 488 489
		f 4 -867 869 871 872
		mu 0 4 489 488 490 491
		f 4 -872 874 876 877
		mu 0 4 491 490 492 493
		f 4 -877 879 881 882
		mu 0 4 493 492 494 495
		f 4 -882 884 886 887
		mu 0 4 495 494 496 497
		f 4 -887 889 891 892
		mu 0 4 497 496 498 499
		f 4 -892 894 896 897
		mu 0 4 499 498 500 501
		f 4 -897 898 -807 899
		mu 0 4 501 500 462 461
		f 4 160 760 -723 761
		mu 0 4 168 380 383 381
		f 4 161 762 -725 -761
		mu 0 4 380 382 385 383
		f 4 162 763 -727 -763
		mu 0 4 382 384 387 385
		f 4 163 764 -729 -764
		mu 0 4 384 386 389 387
		f 4 164 765 -731 -765
		mu 0 4 386 388 391 389
		f 4 165 766 -733 -766
		mu 0 4 388 390 393 391
		f 4 166 767 -735 -767
		mu 0 4 390 392 395 393
		f 4 167 768 -737 -768
		mu 0 4 392 394 397 395
		f 4 168 769 -739 -769
		mu 0 4 394 396 399 397
		f 4 169 770 -741 -770
		mu 0 4 396 398 401 399
		f 4 170 771 -743 -771
		mu 0 4 398 400 403 401
		f 4 171 772 -745 -772
		mu 0 4 400 402 405 403
		f 4 172 773 -747 -773
		mu 0 4 402 404 407 405
		f 4 173 774 -749 -774
		mu 0 4 404 406 409 407
		f 4 174 775 -751 -775
		mu 0 4 406 408 411 409
		f 4 175 776 -753 -776
		mu 0 4 408 410 413 411
		f 4 176 777 -755 -777
		mu 0 4 410 412 415 413
		f 4 177 778 -757 -778
		mu 0 4 412 414 417 415
		f 4 178 779 -759 -779
		mu 0 4 414 416 419 417
		f 4 179 -762 -722 -780
		mu 0 4 416 418 378 419
		f 4 -724 780 -181 781
		mu 0 4 379 420 423 421
		f 4 -726 782 -182 -781
		mu 0 4 420 422 425 423
		f 4 -728 783 -183 -783
		mu 0 4 422 424 427 425
		f 4 -730 784 -184 -784
		mu 0 4 424 426 429 427
		f 4 -732 785 -185 -785
		mu 0 4 426 428 431 429
		f 4 -734 786 -186 -786
		mu 0 4 428 430 433 431
		f 4 -736 787 -187 -787
		mu 0 4 430 432 435 433
		f 4 -738 788 -188 -788
		mu 0 4 432 434 437 435
		f 4 -740 789 -189 -789
		mu 0 4 434 436 439 437
		f 4 -742 790 -190 -790
		mu 0 4 436 438 441 439
		f 4 -744 791 -191 -791
		mu 0 4 438 440 443 441
		f 4 -746 792 -192 -792
		mu 0 4 440 442 445 443
		f 4 -748 793 -193 -793
		mu 0 4 442 444 447 445
		f 4 -750 794 -194 -794
		mu 0 4 444 446 449 447
		f 4 -752 795 -195 -795
		mu 0 4 446 448 451 449
		f 4 -754 796 -196 -796
		mu 0 4 448 450 453 451
		f 4 -756 797 -197 -797
		mu 0 4 450 452 455 453
		f 4 -758 798 -198 -798
		mu 0 4 452 454 457 455
		f 4 -760 799 -199 -799
		mu 0 4 454 456 459 457
		f 4 -721 -782 -200 -800
		mu 0 4 456 458 169 459
		f 4 720 803 -805 -802
		mu 0 4 458 456 461 460
		f 4 721 800 -808 -806
		mu 0 4 419 378 463 462
		f 4 722 808 -810 -801
		mu 0 4 381 383 465 464
		f 4 723 801 -813 -811
		mu 0 4 420 379 467 466
		f 4 724 813 -815 -809
		mu 0 4 383 385 468 465
		f 4 725 810 -818 -816
		mu 0 4 422 420 466 469
		f 4 726 818 -820 -814
		mu 0 4 385 387 470 468
		f 4 727 815 -823 -821
		mu 0 4 424 422 469 471
		f 4 728 823 -825 -819
		mu 0 4 387 389 472 470
		f 4 729 820 -828 -826
		mu 0 4 426 424 471 473
		f 4 730 828 -830 -824
		mu 0 4 389 391 474 472
		f 4 731 825 -833 -831
		mu 0 4 428 426 473 475
		f 4 732 833 -835 -829
		mu 0 4 391 393 476 474
		f 4 733 830 -838 -836
		mu 0 4 430 428 475 477
		f 4 734 838 -840 -834
		mu 0 4 393 395 478 476
		f 4 735 835 -843 -841
		mu 0 4 432 430 477 479
		f 4 736 843 -845 -839
		mu 0 4 395 397 480 478
		f 4 737 840 -848 -846
		mu 0 4 434 432 479 481
		f 4 738 848 -850 -844
		mu 0 4 397 399 482 480
		f 4 739 845 -853 -851
		mu 0 4 436 434 481 483
		f 4 740 853 -855 -849
		mu 0 4 399 401 484 482
		f 4 741 850 -858 -856
		mu 0 4 438 436 483 485
		f 4 742 858 -860 -854
		mu 0 4 401 403 486 484
		f 4 743 855 -863 -861
		mu 0 4 440 438 485 487
		f 4 744 863 -865 -859
		mu 0 4 403 405 488 486
		f 4 745 860 -868 -866
		mu 0 4 442 440 487 489
		f 4 746 868 -870 -864
		mu 0 4 405 407 490 488
		f 4 747 865 -873 -871
		mu 0 4 444 442 489 491
		f 4 748 873 -875 -869
		mu 0 4 407 409 492 490
		f 4 749 870 -878 -876
		mu 0 4 446 444 491 493
		f 4 750 878 -880 -874
		mu 0 4 409 411 494 492
		f 4 751 875 -883 -881
		mu 0 4 448 446 493 495
		f 4 752 883 -885 -879
		mu 0 4 411 413 496 494
		f 4 753 880 -888 -886
		mu 0 4 450 448 495 497
		f 4 754 888 -890 -884
		mu 0 4 413 415 498 496
		f 4 755 885 -893 -891
		mu 0 4 452 450 497 499
		f 4 756 893 -895 -889
		mu 0 4 415 417 500 498
		f 4 757 890 -898 -896
		mu 0 4 454 452 499 501
		f 4 758 805 -899 -894
		mu 0 4 417 419 462 500
		f 4 759 895 -900 -804
		mu 0 4 456 454 501 461;
	setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
	setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
	setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
	setAttr ".bw" 4;
createNode lightLinker -s -n "lightLinker1";
	setAttr -s 47 ".lnk";
	setAttr -s 47 ".slnk";
createNode displayLayerManager -n "layerManager";
createNode displayLayer -n "defaultLayer";
createNode renderLayerManager -n "renderLayerManager";
createNode renderLayer -n "defaultRenderLayer";
	setAttr ".g" yes;
createNode phong -n "proxy_shader_tan";
	setAttr ".dc" 1;
	setAttr ".c" -type "float3" 0.64700001 0.64700001 0.58399999 ;
	setAttr ".ambc" -type "float3" 0.31442741 0.31442741 0.28377202 ;
	setAttr ".rfl" 1;
	setAttr ".cp" 10.555999755859375;
createNode phong -n "proxy_shader_black";
	setAttr ".dc" 1;
	setAttr ".c" -type "float3" 0 0 0 ;
	setAttr ".cp" 11.314000129699707;
createNode shadingEngine -n "proxy_shader_tanSG";
	setAttr ".ihi" 0;
	setAttr ".ro" yes;
createNode materialInfo -n "materialInfo1";
createNode shadingEngine -n "proxy_shader_blackSG";
	setAttr ".ihi" 0;
	setAttr ".ro" yes;
createNode materialInfo -n "materialInfo2";
createNode hyperGraphInfo -n "nodeEditorPanel1Info";
createNode hyperView -n "hyperView1";
	setAttr ".vl" -type "double2" 0 -841.66666666666686 ;
	setAttr ".vh" -type "double2" 1029.7619047619048 0 ;
	setAttr ".dag" no;
createNode hyperLayout -n "hyperLayout1";
	setAttr ".ihi" 0;
	setAttr -s 31 ".hyp";
	setAttr ".hyp[0].nvs" 1920;
	setAttr ".hyp[1].nvs" 1920;
	setAttr ".hyp[2].nvs" 1920;
	setAttr ".hyp[3].nvs" 1920;
	setAttr ".hyp[4].nvs" 1920;
	setAttr ".hyp[5].nvs" 1920;
	setAttr ".hyp[6].nvs" 1920;
	setAttr ".hyp[7].nvs" 1920;
	setAttr ".hyp[8].nvs" 1920;
	setAttr ".hyp[9].nvs" 1920;
	setAttr ".hyp[10].nvs" 1920;
	setAttr ".hyp[11].nvs" 1920;
	setAttr ".hyp[12].nvs" 1920;
	setAttr ".hyp[13].nvs" 1920;
	setAttr ".hyp[14].nvs" 1920;
	setAttr ".hyp[15].nvs" 1920;
	setAttr ".hyp[16].nvs" 1920;
	setAttr ".hyp[17].nvs" 1920;
	setAttr ".hyp[18].nvs" 1920;
	setAttr ".hyp[19].nvs" 1920;
	setAttr ".hyp[20].nvs" 1920;
	setAttr ".hyp[21].nvs" 1920;
	setAttr ".hyp[22].nvs" 1920;
	setAttr ".hyp[23].nvs" 1920;
	setAttr ".hyp[24].nvs" 1920;
	setAttr ".hyp[25].nvs" 1920;
	setAttr ".hyp[26].nvs" 1920;
	setAttr ".hyp[27].nvs" 1920;
	setAttr ".hyp[28].nvs" 1920;
	setAttr ".hyp[29].nvs" 1920;
	setAttr ".hyp[30].nvs" 1920;
	setAttr ".anf" yes;
createNode script -n "uiConfigurationScriptNode";
	setAttr ".b" -type "string" (
		"// Maya Mel UI Configuration File.\n//\n//  This script is machine generated.  Edit at your own risk.\n//\n//\n\nglobal string $gMainPane;\nif (`paneLayout -exists $gMainPane`) {\n\n\tglobal int $gUseScenePanelConfig;\n\tint    $useSceneConfig = $gUseScenePanelConfig;\n\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\n\tint    $nPanes = 0;\n\tstring $editorName;\n\tstring $panelName;\n\tstring $itemFilterName;\n\tstring $panelConfig;\n\n\t//\n\t//  get current state of the UI\n\t//\n\tsceneUIReplacement -update $gMainPane;\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Top View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Top View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n            modelEditor -e \n                -camera \"top\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n"
		+ "                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -rendererName \"vp2Renderer\" \n                -objectFilterShowInHUD 1\n"
		+ "                -isFiltered 0\n                -colorResolution 256 256 \n                -bumpResolution 512 512 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 1\n                -occlusionCulling 0\n                -shadingModel 0\n                -useBaseRenderer 0\n                -useReducedRenderer 0\n                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n"
		+ "                -joints 1\n                -ikHandles 1\n                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n                -dimensions 1\n                -handles 1\n                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                $editorName;\n            modelEditor -e -viewSelected 0 $editorName;\n            modelEditor -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Top View\")) -mbv $menusOkayInPanels  $panelName;\n"
		+ "\t\t$editorName = $panelName;\n        modelEditor -e \n            -camera \"top\" \n            -useInteractiveMode 0\n            -displayLights \"default\" \n            -displayAppearance \"smoothShaded\" \n            -activeOnly 0\n            -ignorePanZoom 0\n            -wireframeOnShaded 0\n            -headsUpDisplay 1\n            -selectionHiliteDisplay 1\n            -useDefaultMaterial 0\n            -bufferMode \"double\" \n            -twoSidedLighting 0\n            -backfaceCulling 0\n            -xray 0\n            -jointXray 0\n            -activeComponentsXray 0\n            -displayTextures 0\n            -smoothWireframe 0\n            -lineWidth 1\n            -textureAnisotropic 0\n            -textureHilight 1\n            -textureSampling 2\n            -textureDisplay \"modulate\" \n            -textureMaxSize 16384\n            -fogging 0\n            -fogSource \"fragment\" \n            -fogMode \"linear\" \n            -fogStart 0\n            -fogEnd 100\n            -fogDensity 0.1\n            -fogColor 0.5 0.5 0.5 1 \n            -maxConstantTransparency 1\n"
		+ "            -rendererName \"vp2Renderer\" \n            -objectFilterShowInHUD 1\n            -isFiltered 0\n            -colorResolution 256 256 \n            -bumpResolution 512 512 \n            -textureCompression 0\n            -transparencyAlgorithm \"frontAndBackCull\" \n            -transpInShadows 0\n            -cullingOverride \"none\" \n            -lowQualityLighting 0\n            -maximumNumHardwareLights 1\n            -occlusionCulling 0\n            -shadingModel 0\n            -useBaseRenderer 0\n            -useReducedRenderer 0\n            -smallObjectCulling 0\n            -smallObjectThreshold -1 \n            -interactiveDisableShadows 0\n            -interactiveBackFaceCull 0\n            -sortTransparent 1\n            -nurbsCurves 1\n            -nurbsSurfaces 1\n            -polymeshes 1\n            -subdivSurfaces 1\n            -planes 1\n            -lights 1\n            -cameras 1\n            -controlVertices 1\n            -hulls 1\n            -grid 1\n            -imagePlane 1\n            -joints 1\n            -ikHandles 1\n"
		+ "            -deformers 1\n            -dynamics 1\n            -particleInstancers 1\n            -fluids 1\n            -hairSystems 1\n            -follicles 1\n            -nCloths 1\n            -nParticles 1\n            -nRigids 1\n            -dynamicConstraints 1\n            -locators 1\n            -manipulators 1\n            -pluginShapes 1\n            -dimensions 1\n            -handles 1\n            -pivots 1\n            -textures 1\n            -strokes 1\n            -motionTrails 1\n            -clipGhosts 1\n            -greasePencils 1\n            -shadows 0\n            $editorName;\n        modelEditor -e -viewSelected 0 $editorName;\n        modelEditor -e \n            -pluginObjects \"gpuCacheDisplayFilter\" 1 \n            $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Side View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Side View\")) -mbv $menusOkayInPanels `;\n"
		+ "\t\t\t$editorName = $panelName;\n            modelEditor -e \n                -camera \"side\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n"
		+ "                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -rendererName \"vp2Renderer\" \n                -objectFilterShowInHUD 1\n                -isFiltered 0\n                -colorResolution 256 256 \n                -bumpResolution 512 512 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 1\n                -occlusionCulling 0\n                -shadingModel 0\n                -useBaseRenderer 0\n                -useReducedRenderer 0\n                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n"
		+ "                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n                -joints 1\n                -ikHandles 1\n                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n                -dimensions 1\n                -handles 1\n                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                $editorName;\n            modelEditor -e -viewSelected 0 $editorName;\n"
		+ "            modelEditor -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Side View\")) -mbv $menusOkayInPanels  $panelName;\n\t\t$editorName = $panelName;\n        modelEditor -e \n            -camera \"side\" \n            -useInteractiveMode 0\n            -displayLights \"default\" \n            -displayAppearance \"smoothShaded\" \n            -activeOnly 0\n            -ignorePanZoom 0\n            -wireframeOnShaded 0\n            -headsUpDisplay 1\n            -selectionHiliteDisplay 1\n            -useDefaultMaterial 0\n            -bufferMode \"double\" \n            -twoSidedLighting 0\n            -backfaceCulling 0\n            -xray 0\n            -jointXray 0\n            -activeComponentsXray 0\n            -displayTextures 0\n            -smoothWireframe 0\n            -lineWidth 1\n            -textureAnisotropic 0\n            -textureHilight 1\n            -textureSampling 2\n            -textureDisplay \"modulate\" \n"
		+ "            -textureMaxSize 16384\n            -fogging 0\n            -fogSource \"fragment\" \n            -fogMode \"linear\" \n            -fogStart 0\n            -fogEnd 100\n            -fogDensity 0.1\n            -fogColor 0.5 0.5 0.5 1 \n            -maxConstantTransparency 1\n            -rendererName \"vp2Renderer\" \n            -objectFilterShowInHUD 1\n            -isFiltered 0\n            -colorResolution 256 256 \n            -bumpResolution 512 512 \n            -textureCompression 0\n            -transparencyAlgorithm \"frontAndBackCull\" \n            -transpInShadows 0\n            -cullingOverride \"none\" \n            -lowQualityLighting 0\n            -maximumNumHardwareLights 1\n            -occlusionCulling 0\n            -shadingModel 0\n            -useBaseRenderer 0\n            -useReducedRenderer 0\n            -smallObjectCulling 0\n            -smallObjectThreshold -1 \n            -interactiveDisableShadows 0\n            -interactiveBackFaceCull 0\n            -sortTransparent 1\n            -nurbsCurves 1\n            -nurbsSurfaces 1\n"
		+ "            -polymeshes 1\n            -subdivSurfaces 1\n            -planes 1\n            -lights 1\n            -cameras 1\n            -controlVertices 1\n            -hulls 1\n            -grid 1\n            -imagePlane 1\n            -joints 1\n            -ikHandles 1\n            -deformers 1\n            -dynamics 1\n            -particleInstancers 1\n            -fluids 1\n            -hairSystems 1\n            -follicles 1\n            -nCloths 1\n            -nParticles 1\n            -nRigids 1\n            -dynamicConstraints 1\n            -locators 1\n            -manipulators 1\n            -pluginShapes 1\n            -dimensions 1\n            -handles 1\n            -pivots 1\n            -textures 1\n            -strokes 1\n            -motionTrails 1\n            -clipGhosts 1\n            -greasePencils 1\n            -shadows 0\n            $editorName;\n        modelEditor -e -viewSelected 0 $editorName;\n        modelEditor -e \n            -pluginObjects \"gpuCacheDisplayFilter\" 1 \n            $editorName;\n\t\tif (!$useSceneConfig) {\n"
		+ "\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Front View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Front View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n            modelEditor -e \n                -camera \"front\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n"
		+ "                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -rendererName \"vp2Renderer\" \n                -objectFilterShowInHUD 1\n                -isFiltered 0\n                -colorResolution 256 256 \n                -bumpResolution 512 512 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 1\n                -occlusionCulling 0\n                -shadingModel 0\n                -useBaseRenderer 0\n                -useReducedRenderer 0\n"
		+ "                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n                -joints 1\n                -ikHandles 1\n                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n                -dimensions 1\n                -handles 1\n"
		+ "                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                $editorName;\n            modelEditor -e -viewSelected 0 $editorName;\n            modelEditor -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Front View\")) -mbv $menusOkayInPanels  $panelName;\n\t\t$editorName = $panelName;\n        modelEditor -e \n            -camera \"front\" \n            -useInteractiveMode 0\n            -displayLights \"default\" \n            -displayAppearance \"smoothShaded\" \n            -activeOnly 0\n            -ignorePanZoom 0\n            -wireframeOnShaded 0\n            -headsUpDisplay 1\n            -selectionHiliteDisplay 1\n            -useDefaultMaterial 0\n            -bufferMode \"double\" \n            -twoSidedLighting 0\n            -backfaceCulling 0\n"
		+ "            -xray 0\n            -jointXray 0\n            -activeComponentsXray 0\n            -displayTextures 0\n            -smoothWireframe 0\n            -lineWidth 1\n            -textureAnisotropic 0\n            -textureHilight 1\n            -textureSampling 2\n            -textureDisplay \"modulate\" \n            -textureMaxSize 16384\n            -fogging 0\n            -fogSource \"fragment\" \n            -fogMode \"linear\" \n            -fogStart 0\n            -fogEnd 100\n            -fogDensity 0.1\n            -fogColor 0.5 0.5 0.5 1 \n            -maxConstantTransparency 1\n            -rendererName \"vp2Renderer\" \n            -objectFilterShowInHUD 1\n            -isFiltered 0\n            -colorResolution 256 256 \n            -bumpResolution 512 512 \n            -textureCompression 0\n            -transparencyAlgorithm \"frontAndBackCull\" \n            -transpInShadows 0\n            -cullingOverride \"none\" \n            -lowQualityLighting 0\n            -maximumNumHardwareLights 1\n            -occlusionCulling 0\n            -shadingModel 0\n"
		+ "            -useBaseRenderer 0\n            -useReducedRenderer 0\n            -smallObjectCulling 0\n            -smallObjectThreshold -1 \n            -interactiveDisableShadows 0\n            -interactiveBackFaceCull 0\n            -sortTransparent 1\n            -nurbsCurves 1\n            -nurbsSurfaces 1\n            -polymeshes 1\n            -subdivSurfaces 1\n            -planes 1\n            -lights 1\n            -cameras 1\n            -controlVertices 1\n            -hulls 1\n            -grid 1\n            -imagePlane 1\n            -joints 1\n            -ikHandles 1\n            -deformers 1\n            -dynamics 1\n            -particleInstancers 1\n            -fluids 1\n            -hairSystems 1\n            -follicles 1\n            -nCloths 1\n            -nParticles 1\n            -nRigids 1\n            -dynamicConstraints 1\n            -locators 1\n            -manipulators 1\n            -pluginShapes 1\n            -dimensions 1\n            -handles 1\n            -pivots 1\n            -textures 1\n            -strokes 1\n"
		+ "            -motionTrails 1\n            -clipGhosts 1\n            -greasePencils 1\n            -shadows 0\n            $editorName;\n        modelEditor -e -viewSelected 0 $editorName;\n        modelEditor -e \n            -pluginObjects \"gpuCacheDisplayFilter\" 1 \n            $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Persp View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Persp View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n            modelEditor -e \n                -camera \"persp\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n"
		+ "                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -rendererName \"vp2Renderer\" \n                -objectFilterShowInHUD 1\n                -isFiltered 0\n                -colorResolution 256 256 \n                -bumpResolution 512 512 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n"
		+ "                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 1\n                -occlusionCulling 0\n                -shadingModel 0\n                -useBaseRenderer 0\n                -useReducedRenderer 0\n                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n                -joints 1\n                -ikHandles 1\n                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n"
		+ "                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n                -dimensions 1\n                -handles 1\n                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                $editorName;\n            modelEditor -e -viewSelected 0 $editorName;\n            modelEditor -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Persp View\")) -mbv $menusOkayInPanels  $panelName;\n\t\t$editorName = $panelName;\n        modelEditor -e \n            -camera \"persp\" \n            -useInteractiveMode 0\n            -displayLights \"default\" \n            -displayAppearance \"smoothShaded\" \n"
		+ "            -activeOnly 0\n            -ignorePanZoom 0\n            -wireframeOnShaded 0\n            -headsUpDisplay 1\n            -selectionHiliteDisplay 1\n            -useDefaultMaterial 0\n            -bufferMode \"double\" \n            -twoSidedLighting 0\n            -backfaceCulling 0\n            -xray 0\n            -jointXray 0\n            -activeComponentsXray 0\n            -displayTextures 0\n            -smoothWireframe 0\n            -lineWidth 1\n            -textureAnisotropic 0\n            -textureHilight 1\n            -textureSampling 2\n            -textureDisplay \"modulate\" \n            -textureMaxSize 16384\n            -fogging 0\n            -fogSource \"fragment\" \n            -fogMode \"linear\" \n            -fogStart 0\n            -fogEnd 100\n            -fogDensity 0.1\n            -fogColor 0.5 0.5 0.5 1 \n            -maxConstantTransparency 1\n            -rendererName \"vp2Renderer\" \n            -objectFilterShowInHUD 1\n            -isFiltered 0\n            -colorResolution 256 256 \n            -bumpResolution 512 512 \n"
		+ "            -textureCompression 0\n            -transparencyAlgorithm \"frontAndBackCull\" \n            -transpInShadows 0\n            -cullingOverride \"none\" \n            -lowQualityLighting 0\n            -maximumNumHardwareLights 1\n            -occlusionCulling 0\n            -shadingModel 0\n            -useBaseRenderer 0\n            -useReducedRenderer 0\n            -smallObjectCulling 0\n            -smallObjectThreshold -1 \n            -interactiveDisableShadows 0\n            -interactiveBackFaceCull 0\n            -sortTransparent 1\n            -nurbsCurves 1\n            -nurbsSurfaces 1\n            -polymeshes 1\n            -subdivSurfaces 1\n            -planes 1\n            -lights 1\n            -cameras 1\n            -controlVertices 1\n            -hulls 1\n            -grid 1\n            -imagePlane 1\n            -joints 1\n            -ikHandles 1\n            -deformers 1\n            -dynamics 1\n            -particleInstancers 1\n            -fluids 1\n            -hairSystems 1\n            -follicles 1\n            -nCloths 1\n"
		+ "            -nParticles 1\n            -nRigids 1\n            -dynamicConstraints 1\n            -locators 1\n            -manipulators 1\n            -pluginShapes 1\n            -dimensions 1\n            -handles 1\n            -pivots 1\n            -textures 1\n            -strokes 1\n            -motionTrails 1\n            -clipGhosts 1\n            -greasePencils 1\n            -shadows 0\n            $editorName;\n        modelEditor -e -viewSelected 0 $editorName;\n        modelEditor -e \n            -pluginObjects \"gpuCacheDisplayFilter\" 1 \n            $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"outlinerPanel\" (localizedPanelLabel(\"Outliner\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `outlinerPanel -unParent -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n            outlinerEditor -e \n                -docTag \"isolOutln_fromSeln\" \n                -showShapes 0\n"
		+ "                -showReferenceNodes 1\n                -showReferenceMembers 1\n                -showAttributes 0\n                -showConnected 0\n                -showAnimCurvesOnly 0\n                -showMuteInfo 0\n                -organizeByLayer 1\n                -showAnimLayerWeight 1\n                -autoExpandLayers 1\n                -autoExpand 0\n                -showDagOnly 1\n                -showAssets 1\n                -showContainedOnly 1\n                -showPublishedAsConnected 0\n                -showContainerContents 1\n                -ignoreDagHierarchy 0\n                -expandConnections 0\n                -showUpstreamCurves 1\n                -showUnitlessCurves 1\n                -showCompounds 1\n                -showLeafs 1\n                -showNumericAttrsOnly 0\n                -highlightActive 1\n                -autoSelectNewObjects 0\n                -doNotSelectNewObjects 0\n                -dropIsParent 1\n                -transmitFilters 0\n                -setFilter \"defaultSetFilter\" \n                -showSetMembers 1\n"
		+ "                -allowMultiSelection 1\n                -alwaysToggleSelect 0\n                -directSelect 0\n                -displayMode \"DAG\" \n                -expandObjects 0\n                -setsIgnoreFilters 1\n                -containersIgnoreFilters 0\n                -editAttrName 0\n                -showAttrValues 0\n                -highlightSecondary 0\n                -showUVAttrsOnly 0\n                -showTextureNodesOnly 0\n                -attrAlphaOrder \"default\" \n                -animLayerFilterOptions \"allAffecting\" \n                -sortOrder \"none\" \n                -longNames 0\n                -niceNames 1\n                -showNamespace 1\n                -showPinIcons 0\n                -mapMotionTrails 0\n                -ignoreHiddenAttribute 0\n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\toutlinerPanel -edit -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels  $panelName;\n\t\t$editorName = $panelName;\n        outlinerEditor -e \n            -docTag \"isolOutln_fromSeln\" \n"
		+ "            -showShapes 0\n            -showReferenceNodes 1\n            -showReferenceMembers 1\n            -showAttributes 0\n            -showConnected 0\n            -showAnimCurvesOnly 0\n            -showMuteInfo 0\n            -organizeByLayer 1\n            -showAnimLayerWeight 1\n            -autoExpandLayers 1\n            -autoExpand 0\n            -showDagOnly 1\n            -showAssets 1\n            -showContainedOnly 1\n            -showPublishedAsConnected 0\n            -showContainerContents 1\n            -ignoreDagHierarchy 0\n            -expandConnections 0\n            -showUpstreamCurves 1\n            -showUnitlessCurves 1\n            -showCompounds 1\n            -showLeafs 1\n            -showNumericAttrsOnly 0\n            -highlightActive 1\n            -autoSelectNewObjects 0\n            -doNotSelectNewObjects 0\n            -dropIsParent 1\n            -transmitFilters 0\n            -setFilter \"defaultSetFilter\" \n            -showSetMembers 1\n            -allowMultiSelection 1\n            -alwaysToggleSelect 0\n"
		+ "            -directSelect 0\n            -displayMode \"DAG\" \n            -expandObjects 0\n            -setsIgnoreFilters 1\n            -containersIgnoreFilters 0\n            -editAttrName 0\n            -showAttrValues 0\n            -highlightSecondary 0\n            -showUVAttrsOnly 0\n            -showTextureNodesOnly 0\n            -attrAlphaOrder \"default\" \n            -animLayerFilterOptions \"allAffecting\" \n            -sortOrder \"none\" \n            -longNames 0\n            -niceNames 1\n            -showNamespace 1\n            -showPinIcons 0\n            -mapMotionTrails 0\n            -ignoreHiddenAttribute 0\n            $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"graphEditor\" (localizedPanelLabel(\"Graph Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"graphEditor\" -l (localizedPanelLabel(\"Graph Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n"
		+ "            outlinerEditor -e \n                -showShapes 1\n                -showReferenceNodes 0\n                -showReferenceMembers 0\n                -showAttributes 1\n                -showConnected 1\n                -showAnimCurvesOnly 1\n                -showMuteInfo 0\n                -organizeByLayer 1\n                -showAnimLayerWeight 1\n                -autoExpandLayers 1\n                -autoExpand 1\n                -showDagOnly 0\n                -showAssets 1\n                -showContainedOnly 0\n                -showPublishedAsConnected 0\n                -showContainerContents 0\n                -ignoreDagHierarchy 0\n                -expandConnections 1\n                -showUpstreamCurves 1\n                -showUnitlessCurves 1\n                -showCompounds 0\n                -showLeafs 1\n                -showNumericAttrsOnly 1\n                -highlightActive 0\n                -autoSelectNewObjects 1\n                -doNotSelectNewObjects 0\n                -dropIsParent 1\n                -transmitFilters 1\n"
		+ "                -setFilter \"0\" \n                -showSetMembers 0\n                -allowMultiSelection 1\n                -alwaysToggleSelect 0\n                -directSelect 0\n                -displayMode \"DAG\" \n                -expandObjects 0\n                -setsIgnoreFilters 1\n                -containersIgnoreFilters 0\n                -editAttrName 0\n                -showAttrValues 0\n                -highlightSecondary 0\n                -showUVAttrsOnly 0\n                -showTextureNodesOnly 0\n                -attrAlphaOrder \"default\" \n                -animLayerFilterOptions \"allAffecting\" \n                -sortOrder \"none\" \n                -longNames 0\n                -niceNames 1\n                -showNamespace 1\n                -showPinIcons 1\n                -mapMotionTrails 1\n                -ignoreHiddenAttribute 0\n                $editorName;\n\n\t\t\t$editorName = ($panelName+\"GraphEd\");\n            animCurveEditor -e \n                -displayKeys 1\n                -displayTangents 0\n                -displayActiveKeys 0\n"
		+ "                -displayActiveKeyTangents 1\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"integer\" \n                -snapValue \"none\" \n                -showResults \"off\" \n                -showBufferCurves \"off\" \n                -smoothness \"fine\" \n                -resultSamples 1\n                -resultScreenSamples 0\n                -resultUpdate \"delayed\" \n                -showUpstreamCurves 1\n                -stackedCurves 0\n                -stackedCurvesMin -1\n                -stackedCurvesMax 1\n                -stackedCurvesSpace 0.2\n                -displayNormalized 0\n                -preSelectionHighlight 0\n                -constrainDrag 0\n                -classicMode 1\n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Graph Editor\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n            outlinerEditor -e \n                -showShapes 1\n                -showReferenceNodes 0\n"
		+ "                -showReferenceMembers 0\n                -showAttributes 1\n                -showConnected 1\n                -showAnimCurvesOnly 1\n                -showMuteInfo 0\n                -organizeByLayer 1\n                -showAnimLayerWeight 1\n                -autoExpandLayers 1\n                -autoExpand 1\n                -showDagOnly 0\n                -showAssets 1\n                -showContainedOnly 0\n                -showPublishedAsConnected 0\n                -showContainerContents 0\n                -ignoreDagHierarchy 0\n                -expandConnections 1\n                -showUpstreamCurves 1\n                -showUnitlessCurves 1\n                -showCompounds 0\n                -showLeafs 1\n                -showNumericAttrsOnly 1\n                -highlightActive 0\n                -autoSelectNewObjects 1\n                -doNotSelectNewObjects 0\n                -dropIsParent 1\n                -transmitFilters 1\n                -setFilter \"0\" \n                -showSetMembers 0\n                -allowMultiSelection 1\n"
		+ "                -alwaysToggleSelect 0\n                -directSelect 0\n                -displayMode \"DAG\" \n                -expandObjects 0\n                -setsIgnoreFilters 1\n                -containersIgnoreFilters 0\n                -editAttrName 0\n                -showAttrValues 0\n                -highlightSecondary 0\n                -showUVAttrsOnly 0\n                -showTextureNodesOnly 0\n                -attrAlphaOrder \"default\" \n                -animLayerFilterOptions \"allAffecting\" \n                -sortOrder \"none\" \n                -longNames 0\n                -niceNames 1\n                -showNamespace 1\n                -showPinIcons 1\n                -mapMotionTrails 1\n                -ignoreHiddenAttribute 0\n                $editorName;\n\n\t\t\t$editorName = ($panelName+\"GraphEd\");\n            animCurveEditor -e \n                -displayKeys 1\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 1\n                -displayInfinities 0\n                -autoFit 0\n"
		+ "                -snapTime \"integer\" \n                -snapValue \"none\" \n                -showResults \"off\" \n                -showBufferCurves \"off\" \n                -smoothness \"fine\" \n                -resultSamples 1\n                -resultScreenSamples 0\n                -resultUpdate \"delayed\" \n                -showUpstreamCurves 1\n                -stackedCurves 0\n                -stackedCurvesMin -1\n                -stackedCurvesMax 1\n                -stackedCurvesSpace 0.2\n                -displayNormalized 0\n                -preSelectionHighlight 0\n                -constrainDrag 0\n                -classicMode 1\n                $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dopeSheetPanel\" (localizedPanelLabel(\"Dope Sheet\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"dopeSheetPanel\" -l (localizedPanelLabel(\"Dope Sheet\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n"
		+ "            outlinerEditor -e \n                -showShapes 1\n                -showReferenceNodes 0\n                -showReferenceMembers 0\n                -showAttributes 1\n                -showConnected 1\n                -showAnimCurvesOnly 1\n                -showMuteInfo 0\n                -organizeByLayer 1\n                -showAnimLayerWeight 1\n                -autoExpandLayers 1\n                -autoExpand 0\n                -showDagOnly 0\n                -showAssets 1\n                -showContainedOnly 0\n                -showPublishedAsConnected 0\n                -showContainerContents 0\n                -ignoreDagHierarchy 0\n                -expandConnections 1\n                -showUpstreamCurves 1\n                -showUnitlessCurves 0\n                -showCompounds 1\n                -showLeafs 1\n                -showNumericAttrsOnly 1\n                -highlightActive 0\n                -autoSelectNewObjects 0\n                -doNotSelectNewObjects 1\n                -dropIsParent 1\n                -transmitFilters 0\n"
		+ "                -setFilter \"0\" \n                -showSetMembers 0\n                -allowMultiSelection 1\n                -alwaysToggleSelect 0\n                -directSelect 0\n                -displayMode \"DAG\" \n                -expandObjects 0\n                -setsIgnoreFilters 1\n                -containersIgnoreFilters 0\n                -editAttrName 0\n                -showAttrValues 0\n                -highlightSecondary 0\n                -showUVAttrsOnly 0\n                -showTextureNodesOnly 0\n                -attrAlphaOrder \"default\" \n                -animLayerFilterOptions \"allAffecting\" \n                -sortOrder \"none\" \n                -longNames 0\n                -niceNames 1\n                -showNamespace 1\n                -showPinIcons 0\n                -mapMotionTrails 1\n                -ignoreHiddenAttribute 0\n                $editorName;\n\n\t\t\t$editorName = ($panelName+\"DopeSheetEd\");\n            dopeSheetEditor -e \n                -displayKeys 1\n                -displayTangents 0\n                -displayActiveKeys 0\n"
		+ "                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"integer\" \n                -snapValue \"none\" \n                -outliner \"dopeSheetPanel1OutlineEd\" \n                -showSummary 1\n                -showScene 0\n                -hierarchyBelow 0\n                -showTicks 1\n                -selectionWindow 0 0 0 0 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dope Sheet\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n            outlinerEditor -e \n                -showShapes 1\n                -showReferenceNodes 0\n                -showReferenceMembers 0\n                -showAttributes 1\n                -showConnected 1\n                -showAnimCurvesOnly 1\n                -showMuteInfo 0\n                -organizeByLayer 1\n                -showAnimLayerWeight 1\n                -autoExpandLayers 1\n                -autoExpand 0\n"
		+ "                -showDagOnly 0\n                -showAssets 1\n                -showContainedOnly 0\n                -showPublishedAsConnected 0\n                -showContainerContents 0\n                -ignoreDagHierarchy 0\n                -expandConnections 1\n                -showUpstreamCurves 1\n                -showUnitlessCurves 0\n                -showCompounds 1\n                -showLeafs 1\n                -showNumericAttrsOnly 1\n                -highlightActive 0\n                -autoSelectNewObjects 0\n                -doNotSelectNewObjects 1\n                -dropIsParent 1\n                -transmitFilters 0\n                -setFilter \"0\" \n                -showSetMembers 0\n                -allowMultiSelection 1\n                -alwaysToggleSelect 0\n                -directSelect 0\n                -displayMode \"DAG\" \n                -expandObjects 0\n                -setsIgnoreFilters 1\n                -containersIgnoreFilters 0\n                -editAttrName 0\n                -showAttrValues 0\n                -highlightSecondary 0\n"
		+ "                -showUVAttrsOnly 0\n                -showTextureNodesOnly 0\n                -attrAlphaOrder \"default\" \n                -animLayerFilterOptions \"allAffecting\" \n                -sortOrder \"none\" \n                -longNames 0\n                -niceNames 1\n                -showNamespace 1\n                -showPinIcons 0\n                -mapMotionTrails 1\n                -ignoreHiddenAttribute 0\n                $editorName;\n\n\t\t\t$editorName = ($panelName+\"DopeSheetEd\");\n            dopeSheetEditor -e \n                -displayKeys 1\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"integer\" \n                -snapValue \"none\" \n                -outliner \"dopeSheetPanel1OutlineEd\" \n                -showSummary 1\n                -showScene 0\n                -hierarchyBelow 0\n                -showTicks 1\n                -selectionWindow 0 0 0 0 \n                $editorName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"clipEditorPanel\" (localizedPanelLabel(\"Trax Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"clipEditorPanel\" -l (localizedPanelLabel(\"Trax Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = clipEditorNameFromPanel($panelName);\n            clipEditor -e \n                -displayKeys 0\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"none\" \n                -snapValue \"none\" \n                -manageSequencer 0 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Trax Editor\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = clipEditorNameFromPanel($panelName);\n            clipEditor -e \n"
		+ "                -displayKeys 0\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"none\" \n                -snapValue \"none\" \n                -manageSequencer 0 \n                $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"sequenceEditorPanel\" (localizedPanelLabel(\"Camera Sequencer\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"sequenceEditorPanel\" -l (localizedPanelLabel(\"Camera Sequencer\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = sequenceEditorNameFromPanel($panelName);\n            clipEditor -e \n                -displayKeys 0\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n"
		+ "                -snapTime \"none\" \n                -snapValue \"none\" \n                -manageSequencer 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Camera Sequencer\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = sequenceEditorNameFromPanel($panelName);\n            clipEditor -e \n                -displayKeys 0\n                -displayTangents 0\n                -displayActiveKeys 0\n                -displayActiveKeyTangents 0\n                -displayInfinities 0\n                -autoFit 0\n                -snapTime \"none\" \n                -snapValue \"none\" \n                -manageSequencer 1 \n                $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperGraphPanel\" (localizedPanelLabel(\"Hypergraph Hierarchy\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"hyperGraphPanel\" -l (localizedPanelLabel(\"Hypergraph Hierarchy\")) -mbv $menusOkayInPanels `;\n"
		+ "\t\t\t$editorName = ($panelName+\"HyperGraphEd\");\n            hyperGraph -e \n                -graphLayoutStyle \"hierarchicalLayout\" \n                -orientation \"horiz\" \n                -mergeConnections 0\n                -zoom 1\n                -animateTransition 0\n                -showRelationships 1\n                -showShapes 0\n                -showDeformers 0\n                -showExpressions 0\n                -showConstraints 0\n                -showConnectionFromSelected 0\n                -showConnectionToSelected 0\n                -showConstraintLabels 0\n                -showUnderworld 0\n                -showInvisible 0\n                -transitionFrames 1\n                -opaqueContainers 0\n                -freeform 0\n                -imagePosition 0 0 \n                -imageScale 1\n                -imageEnabled 0\n                -graphType \"DAG\" \n                -heatMapDisplay 0\n                -updateSelection 1\n                -updateNodeAdded 1\n                -useDrawOverrideColor 0\n                -limitGraphTraversal -1\n"
		+ "                -range 0 0 \n                -iconSize \"smallIcons\" \n                -showCachedConnections 0\n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypergraph Hierarchy\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = ($panelName+\"HyperGraphEd\");\n            hyperGraph -e \n                -graphLayoutStyle \"hierarchicalLayout\" \n                -orientation \"horiz\" \n                -mergeConnections 0\n                -zoom 1\n                -animateTransition 0\n                -showRelationships 1\n                -showShapes 0\n                -showDeformers 0\n                -showExpressions 0\n                -showConstraints 0\n                -showConnectionFromSelected 0\n                -showConnectionToSelected 0\n                -showConstraintLabels 0\n                -showUnderworld 0\n                -showInvisible 0\n                -transitionFrames 1\n                -opaqueContainers 0\n                -freeform 0\n"
		+ "                -imagePosition 0 0 \n                -imageScale 1\n                -imageEnabled 0\n                -graphType \"DAG\" \n                -heatMapDisplay 0\n                -updateSelection 1\n                -updateNodeAdded 1\n                -useDrawOverrideColor 0\n                -limitGraphTraversal -1\n                -range 0 0 \n                -iconSize \"smallIcons\" \n                -showCachedConnections 0\n                $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperShadePanel\" (localizedPanelLabel(\"Hypershade\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"hyperShadePanel\" -l (localizedPanelLabel(\"Hypershade\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypershade\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n"
		+ "\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"visorPanel\" (localizedPanelLabel(\"Visor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"visorPanel\" -l (localizedPanelLabel(\"Visor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Visor\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"nodeEditorPanel\" (localizedPanelLabel(\"Node Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"nodeEditorPanel\" -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n            nodeEditor -e \n                -allAttributes 0\n                -allNodes 0\n                -autoSizeNodes 1\n                -createNodeCommand \"nodeEdCreateNodeCommand\" \n"
		+ "                -defaultPinnedState 0\n                -ignoreAssets 1\n                -additiveGraphingMode 0\n                -settingsChangedCallback \"nodeEdSyncControls\" \n                -traversalDepthLimit -1\n                -keyPressCommand \"nodeEdKeyPressCommand\" \n                -keyReleaseCommand \"nodeEdKeyReleaseCommand\" \n                -nodeTitleMode \"name\" \n                -gridSnap 0\n                -gridVisibility 1\n                -popupMenuScript \"nodeEdBuildPanelMenus\" \n                -showNamespace 1\n                -showShapes 1\n                -showSGShapes 0\n                -showTransforms 1\n                -useAssets 1\n                -syncedSelection 1\n                -extendToShapes 1\n                $editorName;\n\t\t\tif (`objExists nodeEditorPanel1Info`) nodeEditor -e -restoreInfo nodeEditorPanel1Info $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels  $panelName;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n"
		+ "            nodeEditor -e \n                -allAttributes 0\n                -allNodes 0\n                -autoSizeNodes 1\n                -createNodeCommand \"nodeEdCreateNodeCommand\" \n                -defaultPinnedState 0\n                -ignoreAssets 1\n                -additiveGraphingMode 0\n                -settingsChangedCallback \"nodeEdSyncControls\" \n                -traversalDepthLimit -1\n                -keyPressCommand \"nodeEdKeyPressCommand\" \n                -keyReleaseCommand \"nodeEdKeyReleaseCommand\" \n                -nodeTitleMode \"name\" \n                -gridSnap 0\n                -gridVisibility 1\n                -popupMenuScript \"nodeEdBuildPanelMenus\" \n                -showNamespace 1\n                -showShapes 1\n                -showSGShapes 0\n                -showTransforms 1\n                -useAssets 1\n                -syncedSelection 1\n                -extendToShapes 1\n                $editorName;\n\t\t\tif (`objExists nodeEditorPanel1Info`) nodeEditor -e -restoreInfo nodeEditorPanel1Info $editorName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"createNodePanel\" (localizedPanelLabel(\"Create Node\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"createNodePanel\" -l (localizedPanelLabel(\"Create Node\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Create Node\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"polyTexturePlacementPanel\" (localizedPanelLabel(\"UV Texture Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"polyTexturePlacementPanel\" -l (localizedPanelLabel(\"UV Texture Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"UV Texture Editor\")) -mbv $menusOkayInPanels  $panelName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"renderWindowPanel\" (localizedPanelLabel(\"Render View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"renderWindowPanel\" -l (localizedPanelLabel(\"Render View\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Render View\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"blendShapePanel\" (localizedPanelLabel(\"Blend Shape\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\tblendShapePanel -unParent -l (localizedPanelLabel(\"Blend Shape\")) -mbv $menusOkayInPanels ;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tblendShapePanel -edit -l (localizedPanelLabel(\"Blend Shape\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n"
		+ "\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynRelEdPanel\" (localizedPanelLabel(\"Dynamic Relationships\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"dynRelEdPanel\" -l (localizedPanelLabel(\"Dynamic Relationships\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dynamic Relationships\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"relationshipPanel\" (localizedPanelLabel(\"Relationship Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"relationshipPanel\" -l (localizedPanelLabel(\"Relationship Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Relationship Editor\")) -mbv $menusOkayInPanels  $panelName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"referenceEditorPanel\" (localizedPanelLabel(\"Reference Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"referenceEditorPanel\" -l (localizedPanelLabel(\"Reference Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Reference Editor\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"componentEditorPanel\" (localizedPanelLabel(\"Component Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"componentEditorPanel\" -l (localizedPanelLabel(\"Component Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Component Editor\")) -mbv $menusOkayInPanels  $panelName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynPaintScriptedPanelType\" (localizedPanelLabel(\"Paint Effects\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"dynPaintScriptedPanelType\" -l (localizedPanelLabel(\"Paint Effects\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Paint Effects\")) -mbv $menusOkayInPanels  $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"scriptEditorPanel\" (localizedPanelLabel(\"Script Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"scriptEditorPanel\" -l (localizedPanelLabel(\"Script Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Script Editor\")) -mbv $menusOkayInPanels  $panelName;\n"
		+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"Stereo\" (localizedPanelLabel(\"Stereo\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent  -type \"Stereo\" -l (localizedPanelLabel(\"Stereo\")) -mbv $menusOkayInPanels `;\nstring $editorName = ($panelName+\"Editor\");\n            stereoCameraView -e \n                -editorChanged \"updateModelPanelBar\" \n                -camera \"persp\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n"
		+ "                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -objectFilterShowInHUD 1\n                -isFiltered 0\n                -colorResolution 4 4 \n                -bumpResolution 4 4 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 0\n                -occlusionCulling 0\n                -shadingModel 0\n"
		+ "                -useBaseRenderer 0\n                -useReducedRenderer 0\n                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n                -joints 1\n                -ikHandles 1\n                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n"
		+ "                -dimensions 1\n                -handles 1\n                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                -displayMode \"centerEye\" \n                -viewColor 0 0 0 1 \n                -useCustomBackground 1\n                $editorName;\n            stereoCameraView -e -viewSelected 0 $editorName;\n            stereoCameraView -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Stereo\")) -mbv $menusOkayInPanels  $panelName;\nstring $editorName = ($panelName+\"Editor\");\n            stereoCameraView -e \n                -editorChanged \"updateModelPanelBar\" \n                -camera \"persp\" \n                -useInteractiveMode 0\n                -displayLights \"default\" \n                -displayAppearance \"smoothShaded\" \n"
		+ "                -activeOnly 0\n                -ignorePanZoom 0\n                -wireframeOnShaded 0\n                -headsUpDisplay 1\n                -selectionHiliteDisplay 1\n                -useDefaultMaterial 0\n                -bufferMode \"double\" \n                -twoSidedLighting 0\n                -backfaceCulling 0\n                -xray 0\n                -jointXray 0\n                -activeComponentsXray 0\n                -displayTextures 0\n                -smoothWireframe 0\n                -lineWidth 1\n                -textureAnisotropic 0\n                -textureHilight 1\n                -textureSampling 2\n                -textureDisplay \"modulate\" \n                -textureMaxSize 16384\n                -fogging 0\n                -fogSource \"fragment\" \n                -fogMode \"linear\" \n                -fogStart 0\n                -fogEnd 100\n                -fogDensity 0.1\n                -fogColor 0.5 0.5 0.5 1 \n                -maxConstantTransparency 1\n                -objectFilterShowInHUD 1\n                -isFiltered 0\n"
		+ "                -colorResolution 4 4 \n                -bumpResolution 4 4 \n                -textureCompression 0\n                -transparencyAlgorithm \"frontAndBackCull\" \n                -transpInShadows 0\n                -cullingOverride \"none\" \n                -lowQualityLighting 0\n                -maximumNumHardwareLights 0\n                -occlusionCulling 0\n                -shadingModel 0\n                -useBaseRenderer 0\n                -useReducedRenderer 0\n                -smallObjectCulling 0\n                -smallObjectThreshold -1 \n                -interactiveDisableShadows 0\n                -interactiveBackFaceCull 0\n                -sortTransparent 1\n                -nurbsCurves 1\n                -nurbsSurfaces 1\n                -polymeshes 1\n                -subdivSurfaces 1\n                -planes 1\n                -lights 1\n                -cameras 1\n                -controlVertices 1\n                -hulls 1\n                -grid 1\n                -imagePlane 1\n                -joints 1\n                -ikHandles 1\n"
		+ "                -deformers 1\n                -dynamics 1\n                -particleInstancers 1\n                -fluids 1\n                -hairSystems 1\n                -follicles 1\n                -nCloths 1\n                -nParticles 1\n                -nRigids 1\n                -dynamicConstraints 1\n                -locators 1\n                -manipulators 1\n                -pluginShapes 1\n                -dimensions 1\n                -handles 1\n                -pivots 1\n                -textures 1\n                -strokes 1\n                -motionTrails 1\n                -clipGhosts 1\n                -greasePencils 1\n                -shadows 0\n                -displayMode \"centerEye\" \n                -viewColor 0 0 0 1 \n                -useCustomBackground 1\n                $editorName;\n            stereoCameraView -e -viewSelected 0 $editorName;\n            stereoCameraView -e \n                -pluginObjects \"gpuCacheDisplayFilter\" 1 \n                $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n"
		+ "\t\t}\n\t}\n\n\n\tif ($useSceneConfig) {\n        string $configName = `getPanel -cwl (localizedPanelLabel(\"Current Layout\"))`;\n        if (\"\" != $configName) {\n\t\t\tpanelConfiguration -edit -label (localizedPanelLabel(\"Current Layout\")) \n\t\t\t\t-defaultImage \"vacantCell.xP:/\"\n\t\t\t\t-image \"\"\n\t\t\t\t-sc false\n\t\t\t\t-configString \"global string $gMainPane; paneLayout -e -cn \\\"vertical2\\\" -ps 1 20 100 -ps 2 80 100 $gMainPane;\"\n\t\t\t\t-removeAllPanels\n\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Outliner\")) \n\t\t\t\t\t\"outlinerPanel\"\n\t\t\t\t\t\"$panelName = `outlinerPanel -unParent -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\noutlinerEditor -e \\n    -docTag \\\"isolOutln_fromSeln\\\" \\n    -showShapes 0\\n    -showReferenceNodes 1\\n    -showReferenceMembers 1\\n    -showAttributes 0\\n    -showConnected 0\\n    -showAnimCurvesOnly 0\\n    -showMuteInfo 0\\n    -organizeByLayer 1\\n    -showAnimLayerWeight 1\\n    -autoExpandLayers 1\\n    -autoExpand 0\\n    -showDagOnly 1\\n    -showAssets 1\\n    -showContainedOnly 1\\n    -showPublishedAsConnected 0\\n    -showContainerContents 1\\n    -ignoreDagHierarchy 0\\n    -expandConnections 0\\n    -showUpstreamCurves 1\\n    -showUnitlessCurves 1\\n    -showCompounds 1\\n    -showLeafs 1\\n    -showNumericAttrsOnly 0\\n    -highlightActive 1\\n    -autoSelectNewObjects 0\\n    -doNotSelectNewObjects 0\\n    -dropIsParent 1\\n    -transmitFilters 0\\n    -setFilter \\\"defaultSetFilter\\\" \\n    -showSetMembers 1\\n    -allowMultiSelection 1\\n    -alwaysToggleSelect 0\\n    -directSelect 0\\n    -displayMode \\\"DAG\\\" \\n    -expandObjects 0\\n    -setsIgnoreFilters 1\\n    -containersIgnoreFilters 0\\n    -editAttrName 0\\n    -showAttrValues 0\\n    -highlightSecondary 0\\n    -showUVAttrsOnly 0\\n    -showTextureNodesOnly 0\\n    -attrAlphaOrder \\\"default\\\" \\n    -animLayerFilterOptions \\\"allAffecting\\\" \\n    -sortOrder \\\"none\\\" \\n    -longNames 0\\n    -niceNames 1\\n    -showNamespace 1\\n    -showPinIcons 0\\n    -mapMotionTrails 0\\n    -ignoreHiddenAttribute 0\\n    $editorName\"\n"
		+ "\t\t\t\t\t\"outlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n$editorName = $panelName;\\noutlinerEditor -e \\n    -docTag \\\"isolOutln_fromSeln\\\" \\n    -showShapes 0\\n    -showReferenceNodes 1\\n    -showReferenceMembers 1\\n    -showAttributes 0\\n    -showConnected 0\\n    -showAnimCurvesOnly 0\\n    -showMuteInfo 0\\n    -organizeByLayer 1\\n    -showAnimLayerWeight 1\\n    -autoExpandLayers 1\\n    -autoExpand 0\\n    -showDagOnly 1\\n    -showAssets 1\\n    -showContainedOnly 1\\n    -showPublishedAsConnected 0\\n    -showContainerContents 1\\n    -ignoreDagHierarchy 0\\n    -expandConnections 0\\n    -showUpstreamCurves 1\\n    -showUnitlessCurves 1\\n    -showCompounds 1\\n    -showLeafs 1\\n    -showNumericAttrsOnly 0\\n    -highlightActive 1\\n    -autoSelectNewObjects 0\\n    -doNotSelectNewObjects 0\\n    -dropIsParent 1\\n    -transmitFilters 0\\n    -setFilter \\\"defaultSetFilter\\\" \\n    -showSetMembers 1\\n    -allowMultiSelection 1\\n    -alwaysToggleSelect 0\\n    -directSelect 0\\n    -displayMode \\\"DAG\\\" \\n    -expandObjects 0\\n    -setsIgnoreFilters 1\\n    -containersIgnoreFilters 0\\n    -editAttrName 0\\n    -showAttrValues 0\\n    -highlightSecondary 0\\n    -showUVAttrsOnly 0\\n    -showTextureNodesOnly 0\\n    -attrAlphaOrder \\\"default\\\" \\n    -animLayerFilterOptions \\\"allAffecting\\\" \\n    -sortOrder \\\"none\\\" \\n    -longNames 0\\n    -niceNames 1\\n    -showNamespace 1\\n    -showPinIcons 0\\n    -mapMotionTrails 0\\n    -ignoreHiddenAttribute 0\\n    $editorName\"\n"
		+ "\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Persp View\")) \n\t\t\t\t\t\"modelPanel\"\n"
		+ "\t\t\t\t\t\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\nmodelEditor -e \\n    -cam `findStartUpCamera persp` \\n    -useInteractiveMode 0\\n    -displayLights \\\"default\\\" \\n    -displayAppearance \\\"smoothShaded\\\" \\n    -activeOnly 0\\n    -ignorePanZoom 0\\n    -wireframeOnShaded 0\\n    -headsUpDisplay 1\\n    -selectionHiliteDisplay 1\\n    -useDefaultMaterial 0\\n    -bufferMode \\\"double\\\" \\n    -twoSidedLighting 0\\n    -backfaceCulling 0\\n    -xray 0\\n    -jointXray 0\\n    -activeComponentsXray 0\\n    -displayTextures 0\\n    -smoothWireframe 0\\n    -lineWidth 1\\n    -textureAnisotropic 0\\n    -textureHilight 1\\n    -textureSampling 2\\n    -textureDisplay \\\"modulate\\\" \\n    -textureMaxSize 16384\\n    -fogging 0\\n    -fogSource \\\"fragment\\\" \\n    -fogMode \\\"linear\\\" \\n    -fogStart 0\\n    -fogEnd 100\\n    -fogDensity 0.1\\n    -fogColor 0.5 0.5 0.5 1 \\n    -maxConstantTransparency 1\\n    -rendererName \\\"vp2Renderer\\\" \\n    -objectFilterShowInHUD 1\\n    -isFiltered 0\\n    -colorResolution 256 256 \\n    -bumpResolution 512 512 \\n    -textureCompression 0\\n    -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n    -transpInShadows 0\\n    -cullingOverride \\\"none\\\" \\n    -lowQualityLighting 0\\n    -maximumNumHardwareLights 1\\n    -occlusionCulling 0\\n    -shadingModel 0\\n    -useBaseRenderer 0\\n    -useReducedRenderer 0\\n    -smallObjectCulling 0\\n    -smallObjectThreshold -1 \\n    -interactiveDisableShadows 0\\n    -interactiveBackFaceCull 0\\n    -sortTransparent 1\\n    -nurbsCurves 1\\n    -nurbsSurfaces 1\\n    -polymeshes 1\\n    -subdivSurfaces 1\\n    -planes 1\\n    -lights 1\\n    -cameras 1\\n    -controlVertices 1\\n    -hulls 1\\n    -grid 1\\n    -imagePlane 1\\n    -joints 1\\n    -ikHandles 1\\n    -deformers 1\\n    -dynamics 1\\n    -particleInstancers 1\\n    -fluids 1\\n    -hairSystems 1\\n    -follicles 1\\n    -nCloths 1\\n    -nParticles 1\\n    -nRigids 1\\n    -dynamicConstraints 1\\n    -locators 1\\n    -manipulators 1\\n    -pluginShapes 1\\n    -dimensions 1\\n    -handles 1\\n    -pivots 1\\n    -textures 1\\n    -strokes 1\\n    -motionTrails 1\\n    -clipGhosts 1\\n    -greasePencils 1\\n    -shadows 0\\n    $editorName;\\nmodelEditor -e -viewSelected 0 $editorName;\\nmodelEditor -e \\n    -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n    $editorName\"\n"
		+ "\t\t\t\t\t\"modelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n$editorName = $panelName;\\nmodelEditor -e \\n    -cam `findStartUpCamera persp` \\n    -useInteractiveMode 0\\n    -displayLights \\\"default\\\" \\n    -displayAppearance \\\"smoothShaded\\\" \\n    -activeOnly 0\\n    -ignorePanZoom 0\\n    -wireframeOnShaded 0\\n    -headsUpDisplay 1\\n    -selectionHiliteDisplay 1\\n    -useDefaultMaterial 0\\n    -bufferMode \\\"double\\\" \\n    -twoSidedLighting 0\\n    -backfaceCulling 0\\n    -xray 0\\n    -jointXray 0\\n    -activeComponentsXray 0\\n    -displayTextures 0\\n    -smoothWireframe 0\\n    -lineWidth 1\\n    -textureAnisotropic 0\\n    -textureHilight 1\\n    -textureSampling 2\\n    -textureDisplay \\\"modulate\\\" \\n    -textureMaxSize 16384\\n    -fogging 0\\n    -fogSource \\\"fragment\\\" \\n    -fogMode \\\"linear\\\" \\n    -fogStart 0\\n    -fogEnd 100\\n    -fogDensity 0.1\\n    -fogColor 0.5 0.5 0.5 1 \\n    -maxConstantTransparency 1\\n    -rendererName \\\"vp2Renderer\\\" \\n    -objectFilterShowInHUD 1\\n    -isFiltered 0\\n    -colorResolution 256 256 \\n    -bumpResolution 512 512 \\n    -textureCompression 0\\n    -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n    -transpInShadows 0\\n    -cullingOverride \\\"none\\\" \\n    -lowQualityLighting 0\\n    -maximumNumHardwareLights 1\\n    -occlusionCulling 0\\n    -shadingModel 0\\n    -useBaseRenderer 0\\n    -useReducedRenderer 0\\n    -smallObjectCulling 0\\n    -smallObjectThreshold -1 \\n    -interactiveDisableShadows 0\\n    -interactiveBackFaceCull 0\\n    -sortTransparent 1\\n    -nurbsCurves 1\\n    -nurbsSurfaces 1\\n    -polymeshes 1\\n    -subdivSurfaces 1\\n    -planes 1\\n    -lights 1\\n    -cameras 1\\n    -controlVertices 1\\n    -hulls 1\\n    -grid 1\\n    -imagePlane 1\\n    -joints 1\\n    -ikHandles 1\\n    -deformers 1\\n    -dynamics 1\\n    -particleInstancers 1\\n    -fluids 1\\n    -hairSystems 1\\n    -follicles 1\\n    -nCloths 1\\n    -nParticles 1\\n    -nRigids 1\\n    -dynamicConstraints 1\\n    -locators 1\\n    -manipulators 1\\n    -pluginShapes 1\\n    -dimensions 1\\n    -handles 1\\n    -pivots 1\\n    -textures 1\\n    -strokes 1\\n    -motionTrails 1\\n    -clipGhosts 1\\n    -greasePencils 1\\n    -shadows 0\\n    $editorName;\\nmodelEditor -e -viewSelected 0 $editorName;\\nmodelEditor -e \\n    -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n    $editorName\"\n"
		+ "\t\t\t\t$configName;\n\n            setNamedPanelLayout (localizedPanelLabel(\"Current Layout\"));\n        }\n\n        panelHistory -e -clear mainPanelHistory;\n        setFocus `paneLayout -q -p1 $gMainPane`;\n        sceneUIReplacement -deleteRemaining;\n        sceneUIReplacement -clear;\n\t}\n\n\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\nviewManip -drawCompass 1 -compassAngle 0 -frontParameters \"\" -homeParameters \"\" -selectionLockParameters \"\";\n}\n");
	setAttr ".st" 3;
createNode script -n "sceneConfigurationScriptNode";
	setAttr ".b" -type "string" "playbackOptions -min 1 -max 120 -ast 1 -aet 200 ";
	setAttr ".st" 6;
createNode groupId -n "groupId9";
	setAttr ".ihi" 0;
createNode groupId -n "groupId10";
	setAttr ".ihi" 0;
createNode groupId -n "groupId11";
	setAttr ".ihi" 0;
select -ne :time1;
	setAttr -av -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -av -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr ".o" 1;
	setAttr -av ".unw" 1;
select -ne :renderPartition;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -s 4 ".st";
	setAttr -cb on ".an";
	setAttr -cb on ".pt";
select -ne :renderGlobalsList1;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
select -ne :defaultShaderList1;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -s 4 ".s";
select -ne :postProcessList1;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -s 2 ".p";
select -ne :defaultRenderingList1;
select -ne :initialShadingGroup;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -av -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -k on ".mwc";
	setAttr -cb on ".an";
	setAttr -cb on ".il";
	setAttr -cb on ".vo";
	setAttr -cb on ".eo";
	setAttr -cb on ".fo";
	setAttr -cb on ".epo";
	setAttr ".ro" yes;
select -ne :initialParticleSE;
	setAttr -av -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -av -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -k on ".mwc";
	setAttr -cb on ".an";
	setAttr -cb on ".il";
	setAttr -cb on ".vo";
	setAttr -cb on ".eo";
	setAttr -cb on ".fo";
	setAttr -cb on ".epo";
	setAttr ".ro" yes;
select -ne :defaultResolution;
	setAttr ".pa" 1;
select -ne :hardwareRenderGlobals;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr ".ctrs" 256;
	setAttr -av ".btrs" 512;
	setAttr -k off ".fbfm";
	setAttr -k off -cb on ".ehql";
	setAttr -k off -cb on ".eams";
	setAttr -k off -cb on ".eeaa";
	setAttr -k off -cb on ".engm";
	setAttr -k off -cb on ".mes";
	setAttr -k off -cb on ".emb";
	setAttr -av -k off -cb on ".mbbf";
	setAttr -k off -cb on ".mbs";
	setAttr -k off -cb on ".trm";
	setAttr -k off -cb on ".tshc";
	setAttr -k off ".enpt";
	setAttr -k off -cb on ".clmt";
	setAttr -k off -cb on ".tcov";
	setAttr -k off -cb on ".lith";
	setAttr -k off -cb on ".sobc";
	setAttr -k off -cb on ".cuth";
	setAttr -k off -cb on ".hgcd";
	setAttr -k off -cb on ".hgci";
	setAttr -k off -cb on ".mgcs";
	setAttr -k off -cb on ".twa";
	setAttr -k off -cb on ".twz";
	setAttr -k on ".hwcc";
	setAttr -k on ".hwdp";
	setAttr -k on ".hwql";
	setAttr -k on ".hwfr";
	setAttr -k on ".soll";
	setAttr -k on ".sosl";
	setAttr -k on ".bswa";
	setAttr -k on ".shml";
	setAttr -k on ".hwel";
select -ne :hardwareRenderingGlobals;
	setAttr ".otfna" -type "stringArray" 22 "NURBS Curves" "NURBS Surfaces" "Polygons" "Subdiv Surface" "Particles" "Particle Instance" "Fluids" "Strokes" "Image Planes" "UI" "Lights" "Cameras" "Locators" "Joints" "IK Handles" "Deformers" "Motion Trails" "Components" "Hair Systems" "Follicles" "Misc. UI" "Ornaments"  ;
	setAttr ".otfva" -type "Int32Array" 22 0 1 1 1 1 1
		 1 1 1 0 0 0 0 0 0 0 0 0
		 0 0 0 0 ;
select -ne :defaultHardwareRenderGlobals;
	setAttr -k on ".cch";
	setAttr -cb on ".ihi";
	setAttr -k on ".nds";
	setAttr -cb on ".bnm";
	setAttr -av -k on ".rp";
	setAttr -k on ".cai";
	setAttr -k on ".coi";
	setAttr -cb on ".bc";
	setAttr -av -k on ".bcb";
	setAttr -av -k on ".bcg";
	setAttr -av -k on ".bcr";
	setAttr -k on ".ei";
	setAttr -k on ".ex";
	setAttr -av -k on ".es";
	setAttr -av -k on ".ef";
	setAttr -av -k on ".bf";
	setAttr -k on ".fii";
	setAttr -av -k on ".sf";
	setAttr -k on ".gr";
	setAttr -k on ".li";
	setAttr -k on ".ls";
	setAttr -av -k on ".mb";
	setAttr -k on ".ti";
	setAttr -k on ".txt";
	setAttr -k on ".mpr";
	setAttr -k on ".wzd";
	setAttr -k on ".if";
	setAttr ".res" -type "string" "ntsc_4d 646 485 1.333";
	setAttr -k on ".as";
	setAttr -k on ".ds";
	setAttr -k on ".lm";
	setAttr -k on ".fir";
	setAttr -k on ".aap";
	setAttr -k on ".gh";
	setAttr -cb on ".sd";
select -ne :ikSystem;
	setAttr -s 4 ".sol";
connectAttr "groupId10.id" "proxy_geoShape.iog.og[0].gid";
connectAttr "proxy_shader_tanSG.mwc" "proxy_geoShape.iog.og[0].gco";
connectAttr "groupId11.id" "proxy_geoShape.iog.og[1].gid";
connectAttr "proxy_shader_blackSG.mwc" "proxy_geoShape.iog.og[1].gco";
connectAttr "groupId9.id" "proxy_geoShape.ciog.cog[0].cgid";
relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "proxy_shader_tanSG.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "proxy_shader_blackSG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "proxy_shader_tanSG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "proxy_shader_blackSG.message" ":defaultLightSet.message";
connectAttr "layerManager.dli[0]" "defaultLayer.id";
connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid";
connectAttr "proxy_shader_tan.oc" "proxy_shader_tanSG.ss";
connectAttr "proxy_geoShape.iog.og[0]" "proxy_shader_tanSG.dsm" -na;
connectAttr "groupId10.msg" "proxy_shader_tanSG.gn" -na;
connectAttr "proxy_shader_tanSG.msg" "materialInfo1.sg";
connectAttr "proxy_shader_tan.msg" "materialInfo1.m";
connectAttr "proxy_shader_black.oc" "proxy_shader_blackSG.ss";
connectAttr "groupId11.msg" "proxy_shader_blackSG.gn" -na;
connectAttr "proxy_geoShape.iog.og[1]" "proxy_shader_blackSG.dsm" -na;
connectAttr "proxy_shader_blackSG.msg" "materialInfo2.sg";
connectAttr "proxy_shader_black.msg" "materialInfo2.m";
connectAttr "hyperView1.msg" "nodeEditorPanel1Info.b[0]";
connectAttr "hyperLayout1.msg" "hyperView1.hl";
connectAttr "proxy_shader_tanSG.pa" ":renderPartition.st" -na;
connectAttr "proxy_shader_blackSG.pa" ":renderPartition.st" -na;
connectAttr "proxy_shader_tan.msg" ":defaultShaderList1.s" -na;
connectAttr "proxy_shader_black.msg" ":defaultShaderList1.s" -na;
connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na;
connectAttr "proxy_geoShape.ciog.cog[0]" ":initialShadingGroup.dsm" -na;
connectAttr "groupId9.msg" ":initialShadingGroup.gn" -na;
// End of proxy_sphere.ma