aboutsummaryrefslogtreecommitdiff
path: root/Core/JointMover/controls/proxy_Capsule.ma
blob: 3b4d207d3004c15c8b2f48275805696907d4f149 (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
//Maya ASCII 2015 scene
//Name: proxy_capsule.ma
//Last modified: Mon, Dec 14, 2015 06:33:39 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" 72.7448273259009 47.52577854723846 71.585381288568001 ;
	setAttr ".r" -type "double3" 47.482924915516932 0 -598.40508600351177 ;
createNode camera -s -n "perspShape" -p "persp";
	setAttr -k off ".v" no;
	setAttr ".fl" 34.999999999999993;
	setAttr ".coi" 94.26608795879585;
	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.7708320221952805e-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:279]" "f[300:379]";
	setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[280:299]";
	setAttr ".vir" yes;
	setAttr ".vif" yes;
	setAttr ".pv" -type "double2" 0.49999988079071045 0.49405370652675629 ;
	setAttr ".uvst[0].uvsn" -type "string" "map1";
	setAttr -s 408 ".uvst[0].uvsp";
	setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.52122897 0.1493523 0.51805842
		 0.14312978 0.51312023 0.13819158 0.50689769 0.13502105 0.5 0.13392857 0.49310228
		 0.13502105 0.4868798 0.13819158 0.48194158 0.1431298 0.47877106 0.1493523 0.47767857
		 0.15625 0.47877106 0.1631477 0.48194158 0.1693702 0.4868798 0.17430842 0.49310231
		 0.17747894 0.5 0.17857143 0.50689769 0.17747894 0.51312023 0.17430842 0.51805842
		 0.1693702 0.52122897 0.1631477 0.5223214 0.15625 0.54245794 0.14245459 0.53611684
		 0.13000958 0.52624041 0.12013315 0.51379544 0.11379209 0.5 0.11160712 0.48620459
		 0.1137921 0.47375959 0.12013315 0.46388316 0.13000958 0.45754212 0.14245459 0.45535713
		 0.15625 0.45754212 0.17004541 0.46388316 0.18249042 0.47375959 0.19236684 0.48620459
		 0.19870788 0.5 0.20089287 0.51379538 0.19870788 0.52624041 0.19236684 0.53611684
		 0.18249041 0.54245788 0.17004541 0.54464287 0.15625 0.56368685 0.13555691 0.55417526
		 0.11688937 0.53936064 0.10207474 0.52069312 0.09256316 0.5 0.089285702 0.47930688
		 0.092563167 0.46063936 0.10207475 0.44582474 0.11688939 0.43631315 0.13555691 0.4330357
		 0.15625001 0.43631315 0.17694312 0.44582474 0.19561064 0.46063936 0.21042526 0.47930691
		 0.21993685 0.5 0.2232143 0.52069312 0.21993685 0.53936064 0.21042526 0.55417526 0.19561064
		 0.56368685 0.17694312 0.56696427 0.15625001 0.58491582 0.12865917 0.57223374 0.10376914
		 0.55248088 0.084016293 0.52759081 0.071334191 0.5 0.066964239 0.47240919 0.071334198
		 0.44751915 0.084016308 0.42776632 0.10376915 0.41508421 0.12865919 0.41071427 0.15625
		 0.41508421 0.18384081 0.42776632 0.20873083 0.44751915 0.22848368 0.47240919 0.24116577
		 0.5 0.24553573 0.52759081 0.24116577 0.55248082 0.22848368 0.57223368 0.20873083
		 0.58491576 0.18384081 0.58928573 0.15625 0.60614479 0.12176147 0.59029216 0.090648927
		 0.56560105 0.065957867 0.5344885 0.050105236 0.5 0.044642799 0.46551147 0.050105244
		 0.43439895 0.065957889 0.4097079 0.090648942 0.39385527 0.12176149 0.38839281 0.15625
		 0.39385527 0.19073851 0.4097079 0.22185105 0.43439895 0.2465421 0.4655115 0.26239473
		 0.5 0.26785716 0.5344885 0.26239473 0.56560105 0.2465421 0.5902921 0.22185105 0.60614473
		 0.1907385 0.61160713 0.15625 0.62737375 0.11486377 0.60835057 0.077528708 0.57872128
		 0.047899432 0.54138625 0.028876275 0.5 0.022321358 0.45861378 0.02887629 0.42127872
		 0.047899462 0.39164948 0.07752873 0.3726263 0.11486378 0.3660714 0.15625 0.3726263
		 0.19763622 0.39164948 0.23497126 0.42127874 0.26460052 0.45861378 0.28362367 0.5
		 0.2901786 0.54138619 0.28362367 0.57872123 0.26460052 0.60835052 0.23497126 0.62737364
		 0.19763622 0.6339286 0.15625 0.64860272 0.10796605 0.62640899 0.064408474 0.59184152
		 0.029840991 0.54828393 0.0076473057 0.5 -1.0430813e-007 0.45171607 0.0076473206 0.40815851
		 0.029841021 0.37359107 0.064408503 0.35139737 0.10796607 0.34374994 0.15624999 0.35139737
		 0.2045339 0.37359107 0.24809146 0.40815854 0.28265893 0.45171607 0.3048526 0.5 0.3125
		 0.54828393 0.3048526 0.59184146 0.28265893 0.62640893 0.24809144 0.6486026 0.2045339
		 0.65625 0.15624999 0.64860272 0.79546607 0.62640899 0.75190848 0.59184152 0.71734101
		 0.54828393 0.69514728 0.5 0.68749988 0.45171607 0.69514734 0.40815851 0.71734101
		 0.37359107 0.75190848 0.35139737 0.79546607 0.34374994 0.84375 0.35139737 0.89203393
		 0.37359107 0.93559146 0.40815854 0.97015893 0.45171607 0.9923526 0.5 1 0.54828393
		 0.9923526 0.59184146 0.97015893 0.62640893 0.93559146 0.6486026 0.89203393 0.65625
		 0.84375 0.62737375 0.80236375 0.60835057 0.76502872 0.57872128 0.73539943 0.54138625
		 0.7163763 0.5 0.70982134 0.45861378 0.7163763 0.42127872 0.73539948 0.39164948 0.76502872
		 0.3726263 0.80236375 0.3660714 0.84375 0.3726263 0.88513625 0.39164948 0.92247128
		 0.42127874 0.95210052 0.45861378 0.9711237 0.5 0.9776786 0.54138619 0.9711237 0.57872123
		 0.95210052 0.60835052 0.92247128 0.62737364 0.88513625 0.6339286 0.84375 0.60614479
		 0.80926144 0.59029216 0.77814895 0.56560105 0.75345784 0.5344885 0.73760521 0.5 0.73214281
		 0.46551147 0.73760521 0.43439895 0.7534579 0.4097079 0.77814895 0.39385527 0.8092615
		 0.38839281 0.84375 0.39385527 0.8782385 0.4097079 0.90935105 0.43439895 0.9340421
		 0.4655115 0.94989473 0.5 0.95535719 0.5344885 0.94989473 0.56560105 0.9340421 0.5902921
		 0.90935105 0.60614473 0.8782385 0.61160713 0.84375 0.58491582 0.81615919 0.57223374
		 0.79126912 0.55248088 0.77151632 0.52759081 0.75883418 0.5 0.75446427 0.47240919
		 0.75883418 0.44751915 0.77151632 0.42776632 0.79126918 0.41508421 0.81615919 0.41071427
		 0.84375 0.41508421 0.87134081 0.42776632 0.89623082 0.44751915 0.91598368 0.47240919
		 0.92866576 0.5 0.93303573 0.52759081 0.92866576 0.55248082 0.91598368 0.57223368
		 0.89623082 0.58491576 0.87134081 0.58928573 0.84375 0.56368685 0.82305694 0.55417526
		 0.80438936 0.53936064 0.78957474 0.52069312 0.78006315 0.5 0.77678573 0.47930688
		 0.78006315 0.46063936 0.78957474 0.44582474 0.80438936 0.43631315 0.82305694 0.4330357
		 0.84375 0.43631315 0.86444312 0.44582474 0.88311064 0.46063936 0.89792526 0.47930691
		 0.90743685 0.5 0.91071427 0.52069312 0.90743685 0.53936064 0.89792526 0.55417526
		 0.88311064 0.56368685 0.86444312 0.56696427 0.84375 0.54245794 0.82995462 0.53611684
		 0.81750959 0.52624041 0.80763316 0.51379544 0.80129206 0.5 0.79910713 0.48620459
		 0.80129212 0.47375959 0.80763316 0.46388316 0.81750959 0.45754212 0.82995462 0.45535713
		 0.84375;
	setAttr ".uvst[0].uvsp[250:407]" 0.45754212 0.85754538 0.46388316 0.86999041
		 0.47375959 0.87986684 0.48620459 0.88620788 0.5 0.88839287 0.51379538 0.88620788
		 0.52624041 0.87986684 0.53611684 0.86999041 0.54245788 0.85754538 0.54464287 0.84375
		 0.52122897 0.83685231 0.51805842 0.83062977 0.51312023 0.82569158 0.50689769 0.82252103
		 0.5 0.82142854 0.49310228 0.82252103 0.4868798 0.82569158 0.48194158 0.83062983 0.47877106
		 0.83685231 0.47767857 0.84375 0.47877106 0.85064769 0.48194158 0.85687017 0.4868798
		 0.86180842 0.49310231 0.86497891 0.5 0.86607146 0.50689769 0.86497891 0.51312023
		 0.86180842 0.51805842 0.85687017 0.52122897 0.85064769 0.5223214 0.84375 0.5 0.15000001
		 0.5 0.83749998 0.375 0.50313038 0.62499976 0.48497683 0.375 0.3125 0.38749999 0.3125
		 0.375 0.48497683 0.39999998 0.31250003 0.38749999 0.48497683 0.41249996 0.3125 0.39999998
		 0.48497683 0.42499995 0.3125 0.41249996 0.48497683 0.43749994 0.3125 0.42499995 0.48497683
		 0.44999993 0.3125 0.43749994 0.48497683 0.46249992 0.3125 0.44999993 0.48497683 0.4749999
		 0.31250003 0.46249992 0.48497683 0.48749989 0.3125 0.4749999 0.48497683 0.49999988
		 0.3125 0.48749989 0.48497683 0.51249981 0.31250003 0.49999988 0.48497683 0.52499986
		 0.3125 0.51249993 0.48497683 0.53749985 0.3125 0.52499986 0.48497683 0.54999983 0.3125
		 0.5374999 0.48497683 0.56249982 0.3125 0.54999983 0.48497683 0.57499981 0.3125 0.56249988
		 0.48497683 0.5874998 0.3125 0.57499981 0.48497683 0.59999979 0.3125 0.58749986 0.48497683
		 0.61249977 0.3125 0.59999979 0.48497683 0.62499976 0.3125 0.61249971 0.4849768 0.54999983
		 0.50313038 0.53749985 0.68843979 0.5374999 0.50313038 0.52499986 0.68843979 0.52499986
		 0.50313038 0.51249981 0.68843979 0.51249993 0.50313038 0.49999988 0.68843985 0.49999988
		 0.50313038 0.48749989 0.68843985 0.48749989 0.50313038 0.4749999 0.68843979 0.4749999
		 0.50313038 0.46249992 0.68843979 0.46249992 0.50313038 0.44999993 0.68843979 0.44999993
		 0.50313038 0.43749994 0.68843979 0.43749994 0.50313038 0.42499995 0.68843985 0.42499995
		 0.50313038 0.41249996 0.68843979 0.41249996 0.50313038 0.39999998 0.68843979 0.39999998
		 0.50313038 0.38749999 0.68843985 0.38749999 0.50313038 0.375 0.68843985 0.62499976
		 0.50313038 0.62499976 0.68843979 0.61249977 0.68843985 0.61249977 0.50313038 0.59999979
		 0.68843979 0.59999979 0.50313038 0.5874998 0.68843979 0.58749986 0.50313038 0.57499981
		 0.68843979 0.57499981 0.50313038 0.56249982 0.68843979 0.56249988 0.50313061 0.54999983
		 0.68843985 0.54999983 0.48497683 0.56249988 0.48497683 0.56249988 0.50313061 0.54999983
		 0.50313038 0.5374999 0.50313038 0.5374999 0.48497683 0.52499986 0.50313038 0.52499986
		 0.48497683 0.51249993 0.50313038 0.51249993 0.48497683 0.49999988 0.50313038 0.49999988
		 0.48497683 0.48749989 0.50313038 0.48749989 0.48497683 0.4749999 0.50313038 0.4749999
		 0.48497683 0.46249992 0.50313038 0.46249992 0.48497683 0.44999993 0.50313038 0.44999993
		 0.48497683 0.43749994 0.50313038 0.43749994 0.48497683 0.42499995 0.50313038 0.42499995
		 0.48497683 0.41249996 0.50313038 0.41249996 0.48497683 0.39999998 0.50313038 0.39999998
		 0.48497683 0.38749999 0.50313038 0.38749999 0.48497683 0.375 0.50313038 0.375 0.48497683
		 0.62499976 0.50313038 0.61249977 0.50313038 0.61249971 0.4849768 0.62499976 0.48497683
		 0.59999979 0.50313038 0.59999979 0.48497683 0.58749986 0.50313038 0.58749986 0.48497683
		 0.57499981 0.50313038 0.57499981 0.48497683;
	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 362 ".vt";
	setAttr ".vt[0:165]"  1.43553185 0.46643266 -13.39636326 1.22113633 0.88720763 -13.39636326
		 0.88720763 1.22113633 -13.39636326 0.46643266 1.43553185 -13.39636326 -2.7727369e-016 1.5094074 -13.39636326
		 -0.46643266 1.43553185 -13.39636326 -0.88720763 1.22113633 -13.39636326 -1.22113633 0.88720763 -13.39636326
		 -1.43553185 0.46643266 -13.39636326 -1.5094074 -3.1594397e-015 -13.39636326 -1.43553185 -0.46643266 -13.39636326
		 -1.22113633 -0.88720763 -13.39636326 -0.88720763 -1.22113633 -13.39636326 -0.46643266 -1.43553185 -13.39636326
		 9.2424576e-017 -1.5094074 -13.39636326 0.46643266 -1.43553185 -13.39636326 0.88720763 -1.22113633 -13.39636326
		 1.22113633 -0.88720763 -13.39636326 1.43553185 -0.46643266 -13.39636326 1.5094074 -2.9745906e-015 -13.39636326
		 2.79908013 0.9094764 -12.89468384 2.38104033 1.72992694 -12.89468384 1.72992694 2.38104033 -12.89468384
		 0.9094764 2.79908013 -12.89468384 -5.4064371e-016 2.94312716 -12.89468384 -0.9094764 2.79908013 -12.89468384
		 -1.72992694 2.38104033 -12.89468384 -2.38104033 1.72992694 -12.89468384 -2.79908013 0.9094764 -12.89468384
		 -2.94312716 -3.2236242e-015 -12.89468384 -2.79908013 -0.9094764 -12.89468384 -2.38104033 -1.72992694 -12.89468384
		 -1.72992694 -2.38104033 -12.89468384 -0.9094764 -2.79908013 -12.89468384 1.802146e-016 -2.94312716 -12.89468384
		 0.9094764 -2.79908013 -12.89468384 1.72992694 -2.38104033 -12.89468384 2.38104033 -1.72992694 -12.89468384
		 2.79908013 -0.9094764 -12.89468384 2.94312716 -2.8631954e-015 -12.89468384 4.022271156 1.30691528 -12.086549759
		 3.4215486 2.48590064 -12.086549759 2.48590064 3.4215486 -12.086549759 1.30691528 4.022271156 -12.086549759
		 -7.7690365e-016 4.22926664 -12.086549759 -1.30691528 4.022271156 -12.086549759 -2.48590064 3.4215486 -12.086549759
		 -3.4215486 2.48590064 -12.086549759 -4.022271156 1.30691528 -12.086549759 -4.22926664 -3.2016892e-015 -12.086549759
		 -4.022271156 -1.30691528 -12.086549759 -3.4215486 -2.48590064 -12.086549759 -2.48590064 -3.4215486 -12.086549759
		 -1.30691528 -4.022271156 -12.086549759 2.5896788e-016 -4.22926664 -12.086549759 1.30691528 -4.022271156 -12.086549759
		 2.48590064 -3.4215486 -12.086549759 3.4215486 -2.48590064 -12.086549759 4.022271156 -1.30691528 -12.086549759
		 4.22926664 -2.6837536e-015 -12.086549759 5.04376936 1.63882005 -11.012482643 4.29048634 3.11721992 -11.012482643
		 3.11721992 4.29048634 -11.012482643 1.63882005 5.04376936 -11.012482643 -9.7420626e-016 5.30333281 -11.012482643
		 -1.63882005 5.04376936 -11.012482643 -3.11721992 4.29048634 -11.012482643 -4.29048634 3.11721992 -11.012482643
		 -5.04376936 1.63882005 -11.012482643 -5.30333281 -3.0947329e-015 -11.012482643 -5.04376936 -1.63882005 -11.012482643
		 -4.29048634 -3.11721992 -11.012482643 -3.11721992 -4.29048634 -11.012482643 -1.63882005 -5.04376936 -11.012482643
		 3.2473544e-016 -5.30333281 -11.012482643 1.63882005 -5.04376936 -11.012482643 3.11721992 -4.29048634 -11.012482643
		 4.29048634 -3.11721992 -11.012482643 5.04376936 -1.63882005 -11.012482643 5.30333281 -2.4452626e-015 -11.012482643
		 5.81235027 1.8885473 -9.72634411 4.9442811 3.59223008 -9.72634411 3.59223008 4.9442811 -9.72634411
		 1.8885473 5.81235027 -9.72634411 -1.1226583e-015 6.11146736 -9.72634411 -1.8885473 5.81235027 -9.72634411
		 -3.59223008 4.9442811 -9.72634411 -4.9442811 3.59223008 -9.72634411 -5.81235027 1.8885473 -9.72634411
		 -6.11146736 -2.9081216e-015 -9.72634411 -5.81235027 -1.8885473 -9.72634411 -4.9442811 -3.59223008 -9.72634411
		 -3.59223008 -4.9442811 -9.72634411 -1.8885473 -5.81235027 -9.72634411 3.7421942e-016 -6.11146736 -9.72634411
		 1.8885473 -5.81235027 -9.72634411 3.59223008 -4.9442811 -9.72634411 4.9442811 -3.59223008 -9.72634411
		 5.81235027 -1.8885473 -9.72634411 6.11146736 -2.1596827e-015 -9.72634411 6.28947592 2.043575048 -8.29262447
		 5.35014772 3.88711047 -8.29262447 3.88711047 5.35014772 -8.29262447 2.043575048 6.28947592 -8.29262447
		 -1.2148152e-015 6.61314726 -8.29262447 -2.043575048 6.28947592 -8.29262447 -3.88711047 5.35014772 -8.29262447
		 -5.35014772 3.88711047 -8.29262447 -6.28947592 2.043575048 -8.29262447 -6.61314726 -2.6512097e-015 -8.29262447
		 -6.28947592 -2.043575048 -8.29262447 -5.35014772 -3.88711047 -8.29262447 -3.88711047 -5.35014772 -8.29262447
		 -2.043575048 -6.28947592 -8.29262447 4.0493853e-016 -6.61314726 -8.29262447 2.043575048 -6.28947592 -8.29262447
		 3.88711047 -5.35014772 -8.29262447 5.35014772 -3.88711047 -8.29262447 6.28947592 -2.043575048 -8.29262447
		 6.61314726 -1.8413327e-015 -8.29262447 6.45122671 2.09613061 -6.78321552 5.48774004 3.98707724 -6.78321552
		 3.98707724 5.48774004 -6.78321552 2.096130371 6.45122623 -6.78321552 0 6.78322029 -6.78321552
		 -2.096130371 6.45122576 -6.78321552 -3.98707652 5.48774004 -6.78321552 -5.48773956 3.98707604 -6.78321552
		 -6.45122385 2.096129894 -6.78321552 -6.78321791 -1.5061765e-015 -6.78321552 -6.45122385 -2.096129894 -6.78321552
		 -5.48773909 -3.98707533 -6.78321552 -3.98707533 -5.48773766 -6.78321552 -2.096129894 -6.45122385 -6.78321552
		 -2.0215558e-007 -6.78321791 -6.78321552 2.096129179 -6.45122337 -6.78321552 3.98707485 -5.48773766 -6.78321552
		 5.48773766 -3.98707533 -6.78321552 6.4512229 -2.096129417 -6.78321552 6.78321552 -1.5061765e-015 -6.78321552
		 6.45122671 2.09613061 6.78321552 5.48774004 3.98707724 6.78321552 3.98707724 5.48774004 6.78321552
		 2.096130371 6.45122623 6.78321552 0 6.78322029 6.78321552 -2.096130371 6.45122576 6.78321552
		 -3.98707652 5.48774004 6.78321552 -5.48773956 3.98707604 6.78321552 -6.45122385 2.096129894 6.78321552
		 -6.78321791 1.5061765e-015 6.78321552 -6.45122385 -2.096129894 6.78321552 -5.48773909 -3.98707533 6.78321552
		 -3.98707533 -5.48773766 6.78321552 -2.096129894 -6.45122385 6.78321552 -2.0215558e-007 -6.78321791 6.78321552
		 2.096129179 -6.45122337 6.78321552 3.98707485 -5.48773766 6.78321552 5.48773766 -3.98707533 6.78321552
		 6.4512229 -2.096129417 6.78321552 6.78321552 1.5061765e-015 6.78321552 6.28947592 2.043575048 8.29262447
		 5.35014772 3.88711047 8.29262447 3.88711047 5.35014772 8.29262447 2.043575048 6.28947592 8.29262447
		 -1.2148152e-015 6.61314726 8.29262447 -2.043575048 6.28947592 8.29262447;
	setAttr ".vt[166:331]" -3.88711047 5.35014772 8.29262447 -5.35014772 3.88711047 8.29262447
		 -6.28947592 2.043575048 8.29262447 -6.61314726 1.0314558e-015 8.29262447 -6.28947592 -2.043575048 8.29262447
		 -5.35014772 -3.88711047 8.29262447 -3.88711047 -5.35014772 8.29262447 -2.043575048 -6.28947592 8.29262447
		 4.0493853e-016 -6.61314726 8.29262447 2.043575048 -6.28947592 8.29262447 3.88711047 -5.35014772 8.29262447
		 5.35014772 -3.88711047 8.29262447 6.28947592 -2.043575048 8.29262447 6.61314726 1.8413327e-015 8.29262447
		 5.81235027 1.8885473 9.72634411 4.9442811 3.59223008 9.72634411 3.59223008 4.9442811 9.72634411
		 1.8885473 5.81235027 9.72634411 -1.1226583e-015 6.11146736 9.72634411 -1.8885473 5.81235027 9.72634411
		 -3.59223008 4.9442811 9.72634411 -4.9442811 3.59223008 9.72634411 -5.81235027 1.8885473 9.72634411
		 -6.11146736 1.4112436e-015 9.72634411 -5.81235027 -1.8885473 9.72634411 -4.9442811 -3.59223008 9.72634411
		 -3.59223008 -4.9442811 9.72634411 -1.8885473 -5.81235027 9.72634411 3.7421942e-016 -6.11146736 9.72634411
		 1.8885473 -5.81235027 9.72634411 3.59223008 -4.9442811 9.72634411 4.9442811 -3.59223008 9.72634411
		 5.81235027 -1.8885473 9.72634411 6.11146736 2.1596827e-015 9.72634411 5.04376936 1.63882005 11.012482643
		 4.29048634 3.11721992 11.012482643 3.11721992 4.29048634 11.012482643 1.63882005 5.04376936 11.012482643
		 -9.7420626e-016 5.30333281 11.012482643 -1.63882005 5.04376936 11.012482643 -3.11721992 4.29048634 11.012482643
		 -4.29048634 3.11721992 11.012482643 -5.04376936 1.63882005 11.012482643 -5.30333281 1.7957916e-015 11.012482643
		 -5.04376936 -1.63882005 11.012482643 -4.29048634 -3.11721992 11.012482643 -3.11721992 -4.29048634 11.012482643
		 -1.63882005 -5.04376936 11.012482643 3.2473544e-016 -5.30333281 11.012482643 1.63882005 -5.04376936 11.012482643
		 3.11721992 -4.29048634 11.012482643 4.29048634 -3.11721992 11.012482643 5.04376936 -1.63882005 11.012482643
		 5.30333281 2.4452626e-015 11.012482643 4.022271156 1.30691528 12.086549759 3.4215486 2.48590064 12.086549759
		 2.48590064 3.4215486 12.086549759 1.30691528 4.022271156 12.086549759 -7.7690365e-016 4.22926664 12.086549759
		 -1.30691528 4.022271156 12.086549759 -2.48590064 3.4215486 12.086549759 -3.4215486 2.48590064 12.086549759
		 -4.022271156 1.30691528 12.086549759 -4.22926664 2.1658179e-015 12.086549759 -4.022271156 -1.30691528 12.086549759
		 -3.4215486 -2.48590064 12.086549759 -2.48590064 -3.4215486 12.086549759 -1.30691528 -4.022271156 12.086549759
		 2.5896788e-016 -4.22926664 12.086549759 1.30691528 -4.022271156 12.086549759 2.48590064 -3.4215486 12.086549759
		 3.4215486 -2.48590064 12.086549759 4.022271156 -1.30691528 12.086549759 4.22926664 2.6837536e-015 12.086549759
		 2.79908013 0.9094764 12.89468384 2.38104033 1.72992694 12.89468384 1.72992694 2.38104033 12.89468384
		 0.9094764 2.79908013 12.89468384 -5.4064371e-016 2.94312716 12.89468384 -0.9094764 2.79908013 12.89468384
		 -1.72992694 2.38104033 12.89468384 -2.38104033 1.72992694 12.89468384 -2.79908013 0.9094764 12.89468384
		 -2.94312716 2.5027655e-015 12.89468384 -2.79908013 -0.9094764 12.89468384 -2.38104033 -1.72992694 12.89468384
		 -1.72992694 -2.38104033 12.89468384 -0.9094764 -2.79908013 12.89468384 1.802146e-016 -2.94312716 12.89468384
		 0.9094764 -2.79908013 12.89468384 1.72992694 -2.38104033 12.89468384 2.38104033 -1.72992694 12.89468384
		 2.79908013 -0.9094764 12.89468384 2.94312716 2.8631954e-015 12.89468384 1.43553185 0.46643266 13.39636326
		 1.22113633 0.88720763 13.39636326 0.88720763 1.22113633 13.39636326 0.46643266 1.43553185 13.39636326
		 -2.7727369e-016 1.5094074 13.39636326 -0.46643266 1.43553185 13.39636326 -0.88720763 1.22113633 13.39636326
		 -1.22113633 0.88720763 13.39636326 -1.43553185 0.46643266 13.39636326 -1.5094074 2.7897413e-015 13.39636326
		 -1.43553185 -0.46643266 13.39636326 -1.22113633 -0.88720763 13.39636326 -0.88720763 -1.22113633 13.39636326
		 -0.46643266 -1.43553185 13.39636326 9.2424576e-017 -1.5094074 13.39636326 0.46643266 -1.43553185 13.39636326
		 0.88720763 -1.22113633 13.39636326 1.22113633 -0.88720763 13.39636326 1.43553185 -0.46643266 13.39636326
		 1.5094074 2.9745906e-015 13.39636326 0 -3.012353e-015 -13.56643105 0 3.012353e-015 13.56643105
		 -2.0493881e-007 -6.78321791 0.096006878 -2.0513554e-007 -6.78321791 -0.55909485 -2.096129894 -6.45122385 -0.55909485
		 -2.096129894 -6.45122385 0.096006878 -3.98707533 -5.48773766 -0.55909485 -3.98707533 -5.48773766 0.096006878
		 -5.48773909 -3.98707533 -0.55909485 -5.48773909 -3.98707533 0.096006878 -6.45122385 -2.096129894 -0.55909485
		 -6.45122385 -2.096129894 0.096006878 -6.78321791 -5.1413107e-017 -0.55909485 -6.78321791 -5.14131e-017 0.096006878
		 -6.45122385 2.096129894 -0.55909485 -6.45122385 2.096129894 0.096006878 -5.48773956 3.98707652 -0.55909485
		 -5.48773956 3.98707652 0.096006878 -3.98707652 5.48774004 -0.55909485 -3.98707652 5.48774004 0.096006878
		 -2.09613061 6.45122576 -0.55909485 -2.09613061 6.45122576 0.096006878 -3.7629146e-008 6.78322029 -0.55909485
		 -3.5145018e-008 6.78322029 0.096006878 2.09613061 6.45122671 -0.55909485 2.09613061 6.45122671 0.096006878
		 3.98707724 5.48774004 -0.55909485 3.98707724 5.48774004 0.096006878 5.48774004 3.98707724 -0.55909485
		 5.48774004 3.98707724 0.096006878 6.45122671 2.09613061 -0.55909485 6.45122671 2.09613061 0.096006878
		 6.78321552 -5.4683468e-016 -0.55909485 6.78321552 4.7639738e-016 0.096006878 6.45122337 -2.096129417 -0.55909485
		 6.45122337 -2.096129417 0.096006878 5.48773766 -3.98707533 -0.55909485 5.48773766 -3.98707533 0.096006878
		 3.98707485 -5.48773766 -0.55909485 3.98707485 -5.48773766 0.096006878 2.096129417 -6.45122337 -0.55909485
		 2.096129417 -6.45122337 0.096006878 -2.3096798e-007 -6.58315468 0.096006878 -2.3096798e-007 -6.58315468 -0.55909485
		 2.034306526 -6.26095247 -0.55909485 2.034306526 -6.26095247 0.096006878 -2.034307003 -6.26095295 0.096006878
		 -2.034307003 -6.26095295 -0.55909485 -3.86948085 -5.32588339 0.096006878 -3.86948085 -5.32588339 -0.55909485
		 -5.32588387 -3.86948085 0.096006878 -5.32588387 -3.86948085 -0.55909485;
	setAttr ".vt[332:361]" -6.26095247 -2.034307003 0.096006878 -6.26095247 -2.034307003 -0.55909485
		 -6.58315468 0 0.096006878 -6.58315468 0 -0.55909485 -6.26095247 2.034307003 0.096006878
		 -6.26095247 2.034307003 -0.55909485 -5.32588482 3.86948204 0.096006878 -5.32588482 3.86948204 -0.55909485
		 -3.86948204 5.32588577 0.096006878 -3.86948204 5.32588577 -0.55909485 -2.03430748 6.2609539 0.096006878
		 -2.03430748 6.2609539 -0.55909485 7.4505802e-009 6.58315706 0.096006878 5.5879354e-009 6.58315706 -0.55909485
		 2.03430748 6.26095581 0.096006878 2.03430748 6.26095581 -0.55909485 3.86948299 5.32588577 0.096006878
		 3.86948299 5.32588577 -0.55909485 5.32588577 3.86948299 0.096006878 5.32588577 3.86948299 -0.55909485
		 6.26095533 2.034307957 0.096006878 6.26095533 2.034307957 -0.55909485 6.58315277 1.4342366e-007 0.096006878
		 6.58315277 1.4342366e-007 -0.55909485 6.26095247 -2.034306526 0.096006878 6.26095247 -2.034306526 -0.55909485
		 5.32588339 -3.86948085 0.096006878 5.32588339 -3.86948085 -0.55909485 3.86948061 -5.32588339 0.096006878
		 3.86948061 -5.32588339 -0.55909485;
	setAttr -s 740 ".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
		 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;
	setAttr ".ed[332:497]" 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 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 160 180 1 161 181 1 162 182 1 163 183 1
		 164 184 1 165 185 1 166 186 1 167 187 1 168 188 1 169 189 1 170 190 1 171 191 1 172 192 1
		 173 193 1 174 194 1 175 195 1 176 196 1 177 197 1 178 198 1 179 199 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;
	setAttr ".ed[498:663]" 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 280 0 1 280 1 1
		 280 2 1 280 3 1 280 4 1 280 5 1 280 6 1 280 7 1 280 8 1 280 9 1 280 10 1 280 11 1
		 280 12 1 280 13 1 280 14 1 280 15 1 280 16 1 280 17 1 280 18 1 280 19 1 260 281 1
		 261 281 1 262 281 1 263 281 1 264 281 1 265 281 1 266 281 1 267 281 1 268 281 1 269 281 1
		 270 281 1 271 281 1 272 281 1 273 281 1 274 281 1 275 281 1 276 281 1 277 281 1 278 281 1
		 279 281 1 283 320 0 321 282 0 282 285 0 284 283 0 285 287 0 286 284 0 287 289 0 288 286 0
		 289 291 0 290 288 0 291 293 0 292 290 0 293 295 0 294 292 0 295 297 0 296 294 0 297 299 0
		 298 296 0 299 301 0 300 298 0 301 303 0 302 300 0 303 305 0 304 302 0 305 307 0 306 304 0
		 307 309 0 308 306 0 309 311 0 310 308 0 311 313 0 312 310 0 313 315 0 314 312 0 315 317 0
		 316 314 0 317 319 0 318 316 0 319 321 0 320 318 0 121 308 1 310 120 1 122 306 1 123 304 1
		 124 302 1 125 300 1 126 298 1 127 296 1 128 294 1 129 292 1 130 290 1 131 288 1 132 286 1
		 133 284 1 134 283 1 135 320 1 136 318 1 137 316 1 138 314 1 139 312 1 282 154 1 153 285 1
		 152 287 1 151 289 1 150 291 1 149 293 1 148 295 1 147 297 1 146 299 1 145 301 1 144 303 1
		 143 305 1 142 307 1 141 309 1 140 311 1 159 313 1 158 315 1 157 317 1 156 319 1 155 321 1
		 282 322 1 283 323 1 322 323 1 320 324 1 323 324 0 321 325 1 324 325 1 325 322 0 285 326 1
		 322 326 0 284 327 1 326 327 1 327 323 0 287 328 1 326 328 0 286 329 1 328 329 1 329 327 0
		 289 330 1 328 330 0 288 331 1 330 331 1 331 329 0 291 332 1;
	setAttr ".ed[664:739]" 330 332 0 290 333 1 332 333 1 333 331 0 293 334 1 332 334 0
		 292 335 1 334 335 1 335 333 0 295 336 1 334 336 0 294 337 1 336 337 1 337 335 0 297 338 1
		 336 338 0 296 339 1 338 339 1 339 337 0 299 340 1 338 340 0 298 341 1 340 341 1 341 339 0
		 301 342 1 340 342 0 300 343 1 342 343 1 343 341 0 303 344 1 342 344 0 302 345 1 344 345 1
		 345 343 0 305 346 1 344 346 0 304 347 1 346 347 1 347 345 0 307 348 1 346 348 0 306 349 1
		 348 349 1 349 347 0 309 350 1 348 350 0 308 351 1 350 351 1 351 349 0 311 352 1 350 352 0
		 310 353 1 352 353 1 353 351 0 313 354 1 352 354 0 312 355 1 354 355 1 355 353 0 315 356 1
		 354 356 0 314 357 1 356 357 1 357 355 0 317 358 1 356 358 0 316 359 1 358 359 1 359 357 0
		 319 360 1 358 360 0 318 361 1 360 361 1 361 359 0 360 325 0 324 361 0;
	setAttr -s 380 -ch 1480 ".fc[0:379]" -type "polyFaces" 
		f 4 0 281 -21 -281
		mu 0 4 0 1 21 20
		f 4 1 282 -22 -282
		mu 0 4 1 2 22 21
		f 4 2 283 -23 -283
		mu 0 4 2 3 23 22
		f 4 3 284 -24 -284
		mu 0 4 3 4 24 23
		f 4 4 285 -25 -285
		mu 0 4 4 5 25 24
		f 4 5 286 -26 -286
		mu 0 4 5 6 26 25
		f 4 6 287 -27 -287
		mu 0 4 6 7 27 26
		f 4 7 288 -28 -288
		mu 0 4 7 8 28 27
		f 4 8 289 -29 -289
		mu 0 4 8 9 29 28
		f 4 9 290 -30 -290
		mu 0 4 9 10 30 29
		f 4 10 291 -31 -291
		mu 0 4 10 11 31 30
		f 4 11 292 -32 -292
		mu 0 4 11 12 32 31
		f 4 12 293 -33 -293
		mu 0 4 12 13 33 32
		f 4 13 294 -34 -294
		mu 0 4 13 14 34 33
		f 4 14 295 -35 -295
		mu 0 4 14 15 35 34
		f 4 15 296 -36 -296
		mu 0 4 15 16 36 35
		f 4 16 297 -37 -297
		mu 0 4 16 17 37 36
		f 4 17 298 -38 -298
		mu 0 4 17 18 38 37
		f 4 18 299 -39 -299
		mu 0 4 18 19 39 38
		f 4 19 280 -40 -300
		mu 0 4 19 0 20 39
		f 4 20 301 -41 -301
		mu 0 4 20 21 41 40
		f 4 21 302 -42 -302
		mu 0 4 21 22 42 41
		f 4 22 303 -43 -303
		mu 0 4 22 23 43 42
		f 4 23 304 -44 -304
		mu 0 4 23 24 44 43
		f 4 24 305 -45 -305
		mu 0 4 24 25 45 44
		f 4 25 306 -46 -306
		mu 0 4 25 26 46 45
		f 4 26 307 -47 -307
		mu 0 4 26 27 47 46
		f 4 27 308 -48 -308
		mu 0 4 27 28 48 47
		f 4 28 309 -49 -309
		mu 0 4 28 29 49 48
		f 4 29 310 -50 -310
		mu 0 4 29 30 50 49
		f 4 30 311 -51 -311
		mu 0 4 30 31 51 50
		f 4 31 312 -52 -312
		mu 0 4 31 32 52 51
		f 4 32 313 -53 -313
		mu 0 4 32 33 53 52
		f 4 33 314 -54 -314
		mu 0 4 33 34 54 53
		f 4 34 315 -55 -315
		mu 0 4 34 35 55 54
		f 4 35 316 -56 -316
		mu 0 4 35 36 56 55
		f 4 36 317 -57 -317
		mu 0 4 36 37 57 56
		f 4 37 318 -58 -318
		mu 0 4 37 38 58 57
		f 4 38 319 -59 -319
		mu 0 4 38 39 59 58
		f 4 39 300 -60 -320
		mu 0 4 39 20 40 59
		f 4 40 321 -61 -321
		mu 0 4 40 41 61 60
		f 4 41 322 -62 -322
		mu 0 4 41 42 62 61
		f 4 42 323 -63 -323
		mu 0 4 42 43 63 62
		f 4 43 324 -64 -324
		mu 0 4 43 44 64 63
		f 4 44 325 -65 -325
		mu 0 4 44 45 65 64
		f 4 45 326 -66 -326
		mu 0 4 45 46 66 65
		f 4 46 327 -67 -327
		mu 0 4 46 47 67 66
		f 4 47 328 -68 -328
		mu 0 4 47 48 68 67
		f 4 48 329 -69 -329
		mu 0 4 48 49 69 68
		f 4 49 330 -70 -330
		mu 0 4 49 50 70 69
		f 4 50 331 -71 -331
		mu 0 4 50 51 71 70
		f 4 51 332 -72 -332
		mu 0 4 51 52 72 71
		f 4 52 333 -73 -333
		mu 0 4 52 53 73 72
		f 4 53 334 -74 -334
		mu 0 4 53 54 74 73
		f 4 54 335 -75 -335
		mu 0 4 54 55 75 74
		f 4 55 336 -76 -336
		mu 0 4 55 56 76 75
		f 4 56 337 -77 -337
		mu 0 4 56 57 77 76
		f 4 57 338 -78 -338
		mu 0 4 57 58 78 77
		f 4 58 339 -79 -339
		mu 0 4 58 59 79 78
		f 4 59 320 -80 -340
		mu 0 4 59 40 60 79
		f 4 60 341 -81 -341
		mu 0 4 60 61 81 80
		f 4 61 342 -82 -342
		mu 0 4 61 62 82 81
		f 4 62 343 -83 -343
		mu 0 4 62 63 83 82
		f 4 63 344 -84 -344
		mu 0 4 63 64 84 83
		f 4 64 345 -85 -345
		mu 0 4 64 65 85 84
		f 4 65 346 -86 -346
		mu 0 4 65 66 86 85
		f 4 66 347 -87 -347
		mu 0 4 66 67 87 86
		f 4 67 348 -88 -348
		mu 0 4 67 68 88 87
		f 4 68 349 -89 -349
		mu 0 4 68 69 89 88
		f 4 69 350 -90 -350
		mu 0 4 69 70 90 89
		f 4 70 351 -91 -351
		mu 0 4 70 71 91 90
		f 4 71 352 -92 -352
		mu 0 4 71 72 92 91
		f 4 72 353 -93 -353
		mu 0 4 72 73 93 92
		f 4 73 354 -94 -354
		mu 0 4 73 74 94 93
		f 4 74 355 -95 -355
		mu 0 4 74 75 95 94
		f 4 75 356 -96 -356
		mu 0 4 75 76 96 95
		f 4 76 357 -97 -357
		mu 0 4 76 77 97 96
		f 4 77 358 -98 -358
		mu 0 4 77 78 98 97
		f 4 78 359 -99 -359
		mu 0 4 78 79 99 98
		f 4 79 340 -100 -360
		mu 0 4 79 60 80 99
		f 4 80 361 -101 -361
		mu 0 4 80 81 101 100
		f 4 81 362 -102 -362
		mu 0 4 81 82 102 101
		f 4 82 363 -103 -363
		mu 0 4 82 83 103 102
		f 4 83 364 -104 -364
		mu 0 4 83 84 104 103
		f 4 84 365 -105 -365
		mu 0 4 84 85 105 104
		f 4 85 366 -106 -366
		mu 0 4 85 86 106 105
		f 4 86 367 -107 -367
		mu 0 4 86 87 107 106
		f 4 87 368 -108 -368
		mu 0 4 87 88 108 107
		f 4 88 369 -109 -369
		mu 0 4 88 89 109 108
		f 4 89 370 -110 -370
		mu 0 4 89 90 110 109
		f 4 90 371 -111 -371
		mu 0 4 90 91 111 110
		f 4 91 372 -112 -372
		mu 0 4 91 92 112 111
		f 4 92 373 -113 -373
		mu 0 4 92 93 113 112
		f 4 93 374 -114 -374
		mu 0 4 93 94 114 113
		f 4 94 375 -115 -375
		mu 0 4 94 95 115 114
		f 4 95 376 -116 -376
		mu 0 4 95 96 116 115
		f 4 96 377 -117 -377
		mu 0 4 96 97 117 116
		f 4 97 378 -118 -378
		mu 0 4 97 98 118 117
		f 4 98 379 -119 -379
		mu 0 4 98 99 119 118
		f 4 99 360 -120 -380
		mu 0 4 99 80 100 119
		f 4 100 381 -121 -381
		mu 0 4 100 101 121 120
		f 4 101 382 -122 -382
		mu 0 4 101 102 122 121
		f 4 102 383 -123 -383
		mu 0 4 102 103 123 122
		f 4 103 384 -124 -384
		mu 0 4 103 104 124 123
		f 4 104 385 -125 -385
		mu 0 4 104 105 125 124
		f 4 105 386 -126 -386
		mu 0 4 105 106 126 125
		f 4 106 387 -127 -387
		mu 0 4 106 107 127 126
		f 4 107 388 -128 -388
		mu 0 4 107 108 128 127
		f 4 108 389 -129 -389
		mu 0 4 108 109 129 128
		f 4 109 390 -130 -390
		mu 0 4 109 110 130 129
		f 4 110 391 -131 -391
		mu 0 4 110 111 131 130
		f 4 111 392 -132 -392
		mu 0 4 111 112 132 131
		f 4 112 393 -133 -393
		mu 0 4 112 113 133 132
		f 4 113 394 -134 -394
		mu 0 4 113 114 134 133
		f 4 114 395 -135 -395
		mu 0 4 114 115 135 134
		f 4 115 396 -136 -396
		mu 0 4 115 116 136 135
		f 4 116 397 -137 -397
		mu 0 4 116 117 137 136
		f 4 117 398 -138 -398
		mu 0 4 117 118 138 137
		f 4 118 399 -139 -399
		mu 0 4 118 119 139 138
		f 4 119 380 -140 -400
		mu 0 4 119 100 120 139
		f 4 140 401 -161 -401
		mu 0 4 158 157 177 178
		f 4 141 402 -162 -402
		mu 0 4 157 156 176 177
		f 4 142 403 -163 -403
		mu 0 4 156 155 175 176
		f 4 143 404 -164 -404
		mu 0 4 155 154 174 175
		f 4 144 405 -165 -405
		mu 0 4 154 153 173 174
		f 4 145 406 -166 -406
		mu 0 4 153 152 172 173
		f 4 146 407 -167 -407
		mu 0 4 152 151 171 172
		f 4 147 408 -168 -408
		mu 0 4 151 150 170 171
		f 4 148 409 -169 -409
		mu 0 4 150 149 169 170
		f 4 149 410 -170 -410
		mu 0 4 149 148 168 169
		f 4 150 411 -171 -411
		mu 0 4 148 147 167 168
		f 4 151 412 -172 -412
		mu 0 4 147 146 166 167
		f 4 152 413 -173 -413
		mu 0 4 146 145 165 166
		f 4 153 414 -174 -414
		mu 0 4 145 144 164 165
		f 4 154 415 -175 -415
		mu 0 4 144 143 163 164
		f 4 155 416 -176 -416
		mu 0 4 143 142 162 163
		f 4 156 417 -177 -417
		mu 0 4 142 141 161 162
		f 4 157 418 -178 -418
		mu 0 4 141 140 160 161
		f 4 158 419 -179 -419
		mu 0 4 140 159 179 160
		f 4 159 400 -180 -420
		mu 0 4 159 158 178 179
		f 4 160 421 -181 -421
		mu 0 4 178 177 197 198
		f 4 161 422 -182 -422
		mu 0 4 177 176 196 197
		f 4 162 423 -183 -423
		mu 0 4 176 175 195 196
		f 4 163 424 -184 -424
		mu 0 4 175 174 194 195
		f 4 164 425 -185 -425
		mu 0 4 174 173 193 194
		f 4 165 426 -186 -426
		mu 0 4 173 172 192 193
		f 4 166 427 -187 -427
		mu 0 4 172 171 191 192
		f 4 167 428 -188 -428
		mu 0 4 171 170 190 191
		f 4 168 429 -189 -429
		mu 0 4 170 169 189 190
		f 4 169 430 -190 -430
		mu 0 4 169 168 188 189
		f 4 170 431 -191 -431
		mu 0 4 168 167 187 188
		f 4 171 432 -192 -432
		mu 0 4 167 166 186 187
		f 4 172 433 -193 -433
		mu 0 4 166 165 185 186
		f 4 173 434 -194 -434
		mu 0 4 165 164 184 185
		f 4 174 435 -195 -435
		mu 0 4 164 163 183 184
		f 4 175 436 -196 -436
		mu 0 4 163 162 182 183
		f 4 176 437 -197 -437
		mu 0 4 162 161 181 182
		f 4 177 438 -198 -438
		mu 0 4 161 160 180 181
		f 4 178 439 -199 -439
		mu 0 4 160 179 199 180
		f 4 179 420 -200 -440
		mu 0 4 179 178 198 199
		f 4 180 441 -201 -441
		mu 0 4 198 197 217 218
		f 4 181 442 -202 -442
		mu 0 4 197 196 216 217
		f 4 182 443 -203 -443
		mu 0 4 196 195 215 216
		f 4 183 444 -204 -444
		mu 0 4 195 194 214 215
		f 4 184 445 -205 -445
		mu 0 4 194 193 213 214
		f 4 185 446 -206 -446
		mu 0 4 193 192 212 213
		f 4 186 447 -207 -447
		mu 0 4 192 191 211 212
		f 4 187 448 -208 -448
		mu 0 4 191 190 210 211
		f 4 188 449 -209 -449
		mu 0 4 190 189 209 210
		f 4 189 450 -210 -450
		mu 0 4 189 188 208 209
		f 4 190 451 -211 -451
		mu 0 4 188 187 207 208
		f 4 191 452 -212 -452
		mu 0 4 187 186 206 207
		f 4 192 453 -213 -453
		mu 0 4 186 185 205 206
		f 4 193 454 -214 -454
		mu 0 4 185 184 204 205
		f 4 194 455 -215 -455
		mu 0 4 184 183 203 204
		f 4 195 456 -216 -456
		mu 0 4 183 182 202 203
		f 4 196 457 -217 -457
		mu 0 4 182 181 201 202
		f 4 197 458 -218 -458
		mu 0 4 181 180 200 201
		f 4 198 459 -219 -459
		mu 0 4 180 199 219 200
		f 4 199 440 -220 -460
		mu 0 4 199 198 218 219
		f 4 200 461 -221 -461
		mu 0 4 218 217 237 238
		f 4 201 462 -222 -462
		mu 0 4 217 216 236 237
		f 4 202 463 -223 -463
		mu 0 4 216 215 235 236
		f 4 203 464 -224 -464
		mu 0 4 215 214 234 235
		f 4 204 465 -225 -465
		mu 0 4 214 213 233 234
		f 4 205 466 -226 -466
		mu 0 4 213 212 232 233
		f 4 206 467 -227 -467
		mu 0 4 212 211 231 232
		f 4 207 468 -228 -468
		mu 0 4 211 210 230 231
		f 4 208 469 -229 -469
		mu 0 4 210 209 229 230
		f 4 209 470 -230 -470
		mu 0 4 209 208 228 229
		f 4 210 471 -231 -471
		mu 0 4 208 207 227 228
		f 4 211 472 -232 -472
		mu 0 4 207 206 226 227
		f 4 212 473 -233 -473
		mu 0 4 206 205 225 226
		f 4 213 474 -234 -474
		mu 0 4 205 204 224 225
		f 4 214 475 -235 -475
		mu 0 4 204 203 223 224
		f 4 215 476 -236 -476
		mu 0 4 203 202 222 223
		f 4 216 477 -237 -477
		mu 0 4 202 201 221 222
		f 4 217 478 -238 -478
		mu 0 4 201 200 220 221
		f 4 218 479 -239 -479
		mu 0 4 200 219 239 220
		f 4 219 460 -240 -480
		mu 0 4 219 218 238 239
		f 4 220 481 -241 -481
		mu 0 4 238 237 257 258
		f 4 221 482 -242 -482
		mu 0 4 237 236 256 257
		f 4 222 483 -243 -483
		mu 0 4 236 235 255 256
		f 4 223 484 -244 -484
		mu 0 4 235 234 254 255
		f 4 224 485 -245 -485
		mu 0 4 234 233 253 254
		f 4 225 486 -246 -486
		mu 0 4 233 232 252 253
		f 4 226 487 -247 -487
		mu 0 4 232 231 251 252
		f 4 227 488 -248 -488
		mu 0 4 231 230 250 251
		f 4 228 489 -249 -489
		mu 0 4 230 229 249 250
		f 4 229 490 -250 -490
		mu 0 4 229 228 248 249
		f 4 230 491 -251 -491
		mu 0 4 228 227 247 248
		f 4 231 492 -252 -492
		mu 0 4 227 226 246 247
		f 4 232 493 -253 -493
		mu 0 4 226 225 245 246
		f 4 233 494 -254 -494
		mu 0 4 225 224 244 245
		f 4 234 495 -255 -495
		mu 0 4 224 223 243 244
		f 4 235 496 -256 -496
		mu 0 4 223 222 242 243
		f 4 236 497 -257 -497
		mu 0 4 222 221 241 242
		f 4 237 498 -258 -498
		mu 0 4 221 220 240 241
		f 4 238 499 -259 -499
		mu 0 4 220 239 259 240
		f 4 239 480 -260 -500
		mu 0 4 239 238 258 259
		f 4 240 501 -261 -501
		mu 0 4 258 257 277 278
		f 4 241 502 -262 -502
		mu 0 4 257 256 276 277
		f 4 242 503 -263 -503
		mu 0 4 256 255 275 276
		f 4 243 504 -264 -504
		mu 0 4 255 254 274 275
		f 4 244 505 -265 -505
		mu 0 4 254 253 273 274
		f 4 245 506 -266 -506
		mu 0 4 253 252 272 273
		f 4 246 507 -267 -507
		mu 0 4 252 251 271 272
		f 4 247 508 -268 -508
		mu 0 4 251 250 270 271
		f 4 248 509 -269 -509
		mu 0 4 250 249 269 270
		f 4 249 510 -270 -510
		mu 0 4 249 248 268 269
		f 4 250 511 -271 -511
		mu 0 4 248 247 267 268
		f 4 251 512 -272 -512
		mu 0 4 247 246 266 267
		f 4 252 513 -273 -513
		mu 0 4 246 245 265 266
		f 4 253 514 -274 -514
		mu 0 4 245 244 264 265
		f 4 254 515 -275 -515
		mu 0 4 244 243 263 264
		f 4 255 516 -276 -516
		mu 0 4 243 242 262 263
		f 4 256 517 -277 -517
		mu 0 4 242 241 261 262
		f 4 257 518 -278 -518
		mu 0 4 241 240 260 261
		f 4 258 519 -279 -519
		mu 0 4 240 259 279 260
		f 4 259 500 -280 -520
		mu 0 4 259 258 278 279
		f 3 -1 -521 521
		mu 0 3 1 0 280
		f 3 -2 -522 522
		mu 0 3 2 1 280
		f 3 -3 -523 523
		mu 0 3 3 2 280
		f 3 -4 -524 524
		mu 0 3 4 3 280
		f 3 -5 -525 525
		mu 0 3 5 4 280
		f 3 -6 -526 526
		mu 0 3 6 5 280
		f 3 -7 -527 527
		mu 0 3 7 6 280
		f 3 -8 -528 528
		mu 0 3 8 7 280
		f 3 -9 -529 529
		mu 0 3 9 8 280
		f 3 -10 -530 530
		mu 0 3 10 9 280
		f 3 -11 -531 531
		mu 0 3 11 10 280
		f 3 -12 -532 532
		mu 0 3 12 11 280
		f 3 -13 -533 533
		mu 0 3 13 12 280
		f 3 -14 -534 534
		mu 0 3 14 13 280
		f 3 -15 -535 535
		mu 0 3 15 14 280
		f 3 -16 -536 536
		mu 0 3 16 15 280
		f 3 -17 -537 537
		mu 0 3 17 16 280
		f 3 -18 -538 538
		mu 0 3 18 17 280
		f 3 -19 -539 539
		mu 0 3 19 18 280
		f 3 -20 -540 520
		mu 0 3 0 19 280
		f 3 260 541 -541
		mu 0 3 278 277 281
		f 3 261 542 -542
		mu 0 3 277 276 281
		f 3 262 543 -543
		mu 0 3 276 275 281
		f 3 263 544 -544
		mu 0 3 275 274 281
		f 3 264 545 -545
		mu 0 3 274 273 281
		f 3 265 546 -546
		mu 0 3 273 272 281
		f 3 266 547 -547
		mu 0 3 272 271 281
		f 3 267 548 -548
		mu 0 3 271 270 281
		f 3 268 549 -549
		mu 0 3 270 269 281
		f 3 269 550 -550
		mu 0 3 269 268 281
		f 3 270 551 -551
		mu 0 3 268 267 281
		f 3 271 552 -552
		mu 0 3 267 266 281
		f 3 272 553 -553
		mu 0 3 266 265 281
		f 3 273 554 -554
		mu 0 3 265 264 281
		f 3 274 555 -555
		mu 0 3 264 263 281
		f 3 275 556 -556
		mu 0 3 263 262 281
		f 3 276 557 -557
		mu 0 3 262 261 281
		f 3 277 558 -558
		mu 0 3 261 260 281
		f 3 278 559 -559
		mu 0 3 260 279 281
		f 3 279 540 -560
		mu 0 3 279 278 281
		f 4 642 644 646 647
		mu 0 4 369 366 367 368
		f 4 -643 649 651 652
		mu 0 4 366 369 370 371
		f 4 -652 654 656 657
		mu 0 4 371 370 372 373
		f 4 -657 659 661 662
		mu 0 4 373 372 374 375
		f 4 -662 664 666 667
		mu 0 4 375 374 376 377
		f 4 -667 669 671 672
		mu 0 4 377 376 378 379
		f 4 -672 674 676 677
		mu 0 4 379 378 380 381
		f 4 -677 679 681 682
		mu 0 4 381 380 382 383
		f 4 -682 684 686 687
		mu 0 4 383 382 384 385
		f 4 -687 689 691 692
		mu 0 4 385 384 386 387
		f 4 -692 694 696 697
		mu 0 4 387 386 388 389
		f 4 -697 699 701 702
		mu 0 4 389 388 390 391
		f 4 -702 704 706 707
		mu 0 4 391 390 392 393
		f 4 -707 709 711 712
		mu 0 4 393 392 394 395
		f 4 -712 714 716 717
		mu 0 4 395 394 396 397
		f 4 -717 719 721 722
		mu 0 4 401 398 399 400
		f 4 -722 724 726 727
		mu 0 4 400 399 402 403
		f 4 -727 729 731 732
		mu 0 4 403 402 404 405
		f 4 -732 734 736 737
		mu 0 4 405 404 406 407
		f 4 -737 738 -647 739
		mu 0 4 407 406 368 367
		f 4 120 600 -590 601
		mu 0 4 284 285 288 286
		f 4 121 602 -588 -601
		mu 0 4 285 287 290 288
		f 4 122 603 -586 -603
		mu 0 4 287 289 292 290
		f 4 123 604 -584 -604
		mu 0 4 289 291 294 292
		f 4 124 605 -582 -605
		mu 0 4 291 293 296 294
		f 4 125 606 -580 -606
		mu 0 4 293 295 298 296
		f 4 126 607 -578 -607
		mu 0 4 295 297 300 298
		f 4 127 608 -576 -608
		mu 0 4 297 299 302 300
		f 4 128 609 -574 -609
		mu 0 4 299 301 304 302
		f 4 129 610 -572 -610
		mu 0 4 301 303 306 304
		f 4 130 611 -570 -611
		mu 0 4 303 305 308 306
		f 4 131 612 -568 -612
		mu 0 4 305 307 310 308
		f 4 132 613 -566 -613
		mu 0 4 307 309 312 310
		f 4 133 614 -564 -614
		mu 0 4 309 311 314 312
		f 4 134 615 -561 -615
		mu 0 4 311 313 316 314
		f 4 135 616 -600 -616
		mu 0 4 313 315 318 316
		f 4 136 617 -598 -617
		mu 0 4 315 317 320 318
		f 4 137 618 -596 -618
		mu 0 4 317 319 322 320
		f 4 138 619 -594 -619
		mu 0 4 319 321 324 322
		f 4 139 -602 -592 -620
		mu 0 4 321 323 283 324
		f 4 -563 620 -154 621
		mu 0 4 327 325 365 326
		f 4 -565 -622 -153 622
		mu 0 4 329 327 326 328
		f 4 -567 -623 -152 623
		mu 0 4 331 329 328 330
		f 4 -569 -624 -151 624
		mu 0 4 333 331 330 332
		f 4 -571 -625 -150 625
		mu 0 4 335 333 332 334
		f 4 -573 -626 -149 626
		mu 0 4 337 335 334 336
		f 4 -575 -627 -148 627
		mu 0 4 339 337 336 338
		f 4 -577 -628 -147 628
		mu 0 4 341 339 338 340
		f 4 -579 -629 -146 629
		mu 0 4 343 341 340 342
		f 4 -581 -630 -145 630
		mu 0 4 345 343 342 344
		f 4 -583 -631 -144 631
		mu 0 4 347 345 344 346
		f 4 -585 -632 -143 632
		mu 0 4 349 347 346 348
		f 4 -587 -633 -142 633
		mu 0 4 351 349 348 350
		f 4 -589 -634 -141 634
		mu 0 4 282 351 350 352
		f 4 -591 -635 -160 635
		mu 0 4 356 353 354 355
		f 4 -593 -636 -159 636
		mu 0 4 358 356 355 357
		f 4 -595 -637 -158 637
		mu 0 4 360 358 357 359
		f 4 -597 -638 -157 638
		mu 0 4 362 360 359 361
		f 4 -599 -639 -156 639
		mu 0 4 364 362 361 363
		f 4 -562 -640 -155 -621
		mu 0 4 325 364 363 365
		f 4 560 643 -645 -642
		mu 0 4 314 316 367 366
		f 4 561 640 -648 -646
		mu 0 4 364 325 369 368
		f 4 562 648 -650 -641
		mu 0 4 325 327 370 369
		f 4 563 641 -653 -651
		mu 0 4 312 314 366 371
		f 4 564 653 -655 -649
		mu 0 4 327 329 372 370
		f 4 565 650 -658 -656
		mu 0 4 310 312 371 373
		f 4 566 658 -660 -654
		mu 0 4 329 331 374 372
		f 4 567 655 -663 -661
		mu 0 4 308 310 373 375
		f 4 568 663 -665 -659
		mu 0 4 331 333 376 374
		f 4 569 660 -668 -666
		mu 0 4 306 308 375 377
		f 4 570 668 -670 -664
		mu 0 4 333 335 378 376
		f 4 571 665 -673 -671
		mu 0 4 304 306 377 379
		f 4 572 673 -675 -669
		mu 0 4 335 337 380 378
		f 4 573 670 -678 -676
		mu 0 4 302 304 379 381
		f 4 574 678 -680 -674
		mu 0 4 337 339 382 380
		f 4 575 675 -683 -681
		mu 0 4 300 302 381 383
		f 4 576 683 -685 -679
		mu 0 4 339 341 384 382
		f 4 577 680 -688 -686
		mu 0 4 298 300 383 385
		f 4 578 688 -690 -684
		mu 0 4 341 343 386 384
		f 4 579 685 -693 -691
		mu 0 4 296 298 385 387
		f 4 580 693 -695 -689
		mu 0 4 343 345 388 386
		f 4 581 690 -698 -696
		mu 0 4 294 296 387 389
		f 4 582 698 -700 -694
		mu 0 4 345 347 390 388
		f 4 583 695 -703 -701
		mu 0 4 292 294 389 391
		f 4 584 703 -705 -699
		mu 0 4 347 349 392 390
		f 4 585 700 -708 -706
		mu 0 4 290 292 391 393
		f 4 586 708 -710 -704
		mu 0 4 349 351 394 392
		f 4 587 705 -713 -711
		mu 0 4 288 290 393 395
		f 4 588 713 -715 -709
		mu 0 4 351 282 396 394
		f 4 589 710 -718 -716
		mu 0 4 286 288 395 397
		f 4 590 718 -720 -714
		mu 0 4 353 356 399 398
		f 4 591 715 -723 -721
		mu 0 4 324 283 401 400
		f 4 592 723 -725 -719
		mu 0 4 356 358 402 399
		f 4 593 720 -728 -726
		mu 0 4 322 324 400 403
		f 4 594 728 -730 -724
		mu 0 4 358 360 404 402
		f 4 595 725 -733 -731
		mu 0 4 320 322 403 405
		f 4 596 733 -735 -729
		mu 0 4 360 362 406 404
		f 4 597 730 -738 -736
		mu 0 4 318 320 405 407
		f 4 598 645 -739 -734
		mu 0 4 362 364 368 406
		f 4 599 735 -740 -644
		mu 0 4 316 318 407 367;
	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 4 ".lnk";
	setAttr -s 4 ".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 -s 2 ".dsm";
	setAttr ".ro" yes;
	setAttr -s 2 ".gn";
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" -31.547619047619055 -842.26190476190482 ;
	setAttr ".vh" -type "double2" 998.21428571428578 -0.59523809523809534 ;
	setAttr ".dag" no;
createNode hyperLayout -n "hyperLayout1";
	setAttr ".ihi" 0;
	setAttr -s 31 ".hyp";
	setAttr ".hyp[0].x" 1.4285714626312256;
	setAttr ".hyp[0].y" -172.85714721679687;
	setAttr ".hyp[0].nvs" 1920;
	setAttr ".hyp[1].x" 481.42855834960937;
	setAttr ".hyp[1].y" -172.85714721679687;
	setAttr ".hyp[1].nvs" 1920;
	setAttr ".hyp[2].x" 241.42857360839844;
	setAttr ".hyp[2].y" -72.857139587402344;
	setAttr ".hyp[2].nvs" 1920;
	setAttr ".hyp[3].x" 241.42857360839844;
	setAttr ".hyp[3].y" -272.85714721679687;
	setAttr ".hyp[3].nvs" 1920;
	setAttr ".hyp[4].x" 481.42855834960937;
	setAttr ".hyp[4].y" -315.71429443359375;
	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 "groupId5";
	setAttr ".ihi" 0;
createNode groupId -n "groupId6";
	setAttr ".ihi" 0;
createNode groupId -n "groupId7";
	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";
connectAttr "groupId6.id" "proxy_geoShape.iog.og[0].gid";
connectAttr "proxy_shader_tanSG.mwc" "proxy_geoShape.iog.og[0].gco";
connectAttr "groupId7.id" "proxy_geoShape.iog.og[1].gid";
connectAttr "proxy_shader_blackSG.mwc" "proxy_geoShape.iog.og[1].gco";
connectAttr "groupId5.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.ciog.cog[0]" "proxy_shader_tanSG.dsm" -na;
connectAttr "proxy_geoShape.iog.og[0]" "proxy_shader_tanSG.dsm" -na;
connectAttr "groupId5.msg" "proxy_shader_tanSG.gn" -na;
connectAttr "groupId6.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 "groupId7.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;
// End of proxy_capsule.ma