blob: 9381f60e262302a53f12535da96bec95a6b604b8 (
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
|
//Maya ASCII 2015 scene
//Name: proxy_cone.ma
//Last modified: Mon, Dec 14, 2015 06:34:00 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:95]" "f[112:207]";
setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[96:111]";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".pv" -type "double2" 0.49546381831169128 0.98205801844596863 ;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 251 ".uvst[0].uvsp";
setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.70833319 0.58333331 0.33333331
0.66666663 0.40000004 0.66666663 0.41666672 0.66666663 0.4333334 0.66666663 0.45000008
0.66666663 0.46666676 0.66666663 0.48333344 0.66666663 0.50000012 0.66666663 0.56666672
0.66666663 0.58333337 0.66666663 0.60000002 0.66666663 0.61666667 0.66666663 0.63333333
0.66666663 0.64999998 0.66666663 0.66666663 0.66666663 0.37499997 0.74999994 0.42499992
0.74999994 0.43749991 0.74999994 0.4499999 0.74999994 0.46249989 0.74999994 0.47499987
0.74999994 0.48749986 0.74999994 0.49999985 0.74999994 0.54999983 0.74999994 0.56249982
0.74999994 0.57499981 0.74999994 0.5874998 0.74999994 0.59999979 0.74999994 0.61249977
0.74999994 0.62499976 0.74999994 0.41666663 0.83333325 0.44999993 0.83333325 0.45833325
0.83333325 0.46666658 0.83333325 0.4749999 0.83333325 0.48333323 0.83333325 0.49166656
0.83333325 0.49999988 0.83333325 0.53333318 0.83333325 0.54166651 0.83333325 0.54999983
0.83333325 0.55833316 0.83333325 0.56666648 0.83333325 0.57499981 0.83333325 0.58333313
0.83333325 0.45833328 0.91666657 0.25999898 0.51999795 0.25533518 0.50885493 0.27807704
0.50885499 0.74466461 0.50885499 0.72192281 0.50885499 0.32900697 0.50885499 0.35174879
0.50885493 0.3535642 0.50885499 0.37630606 0.50885499 0.37812147 0.50885499 0.40086332
0.50885499 0.40267873 0.50885499 0.42542058 0.50885499 0.42723602 0.50885499 0.44997784
0.50885499 0.45179325 0.50885499 0.47453511 0.50885499 0.47635055 0.50885499 0.49909237
0.50885499 0.50090778 0.50885499 0.52364957 0.50885499 0.57457948 0.50885499 0.59732127
0.50885493 0.59913665 0.50885499 0.6218785 0.50885499 0.62369388 0.50885499 0.64643574
0.50885499 0.64825112 0.50885499 0.67099303 0.50885499 0.67280841 0.50885499 0.6955502
0.50885499 0.69736558 0.50885493 0.72010744 0.50885499 0.29166666 0.58333331 0.35599944
0.51999801 0.37999955 0.51999801 0.37500003 0.58333331 0.4039996 0.51999795 0.39583337
0.58333331 0.42799976 0.51999795 0.41666672 0.58333331 0.45199984 0.51999795 0.43750006
0.58333331 0.47599995 0.51999801 0.4583334 0.58333331 0.50000006 0.51999801 0.47916675
0.58333331 0.50000006 0.58333331 0.59600037 0.51999795 0.62000042 0.51999795 0.58333331
0.58333331 0.64400053 0.51999795 0.60416663 0.58333331 0.66800058 0.51999801 0.62499994
0.58333331 0.69200069 0.51999795 0.64583325 0.58333331 0.7160008 0.51999801 0.66666657
0.58333331 0.74000084 0.51999795 0.68749988 0.58333331 0.30729836 0.51854229 0.30040094
0.50885499 0.3026343 0.50885499 0.63250297 0.067625307 0.54802722 0.51854235 0.54597342
0.50885499 0.54820681 0.50885499 0.367497 0.43237472 0.3125 0.58333331 0.36426091
0.66622984 0.33538967 0.58289653 0.38333336 0.66666663 0.52083337 0.58333331 0.53114605
0.66622984 0.54394144 0.58289653 0.55000007 0.66666663 0.34999999 0.66666663 0.39759415
0.74956316 0.36872301 0.66622984 0.41249993 0.74999994 0.51666677 0.66666663 0.52281249
0.74956316 0.53560817 0.66622984 0.53749985 0.74999994 0.38749996 0.74999994 0.43092752
0.83289653 0.40205628 0.74956316 0.4416666 0.83333325 0.51249987 0.74999994 0.51447916
0.83289641 0.52727461 0.7495631 0.52499986 0.83333325 0.42499995 0.83333325 0.46426085
0.91622978 0.43538964 0.83289647 0.50833321 0.83333325 0.50614589 0.91622978 0.51894128
0.83289647 0.46249995 0.91666657 0.48754466 0.97508931 0.48820174 0.9737817 0.46872294
0.91622972 0.47083327 0.91666657 0.47499993 0.91666657 0.4791666 0.91666657 0.48333326
0.91666657 0.48749992 0.91666657 0.49166659 0.91666657 0.49583325 0.91666657 0.49999991
0.91666657 0.5041666 0.91666657 0.49855015 0.99033433 0.51060802 0.91622972 0.51249993
0.91666657 0.51666659 0.91666657 0.52083325 0.91666657 0.52499992 0.91666657 0.52916658
0.91666657 0.53333324 0.91666657 0.5374999 0.91666657 0.54166657 0.91666657 0.50338298
0.99033433 0.27989244 0.50885499 0.30576813 0.51999795 0.30668309 0.50885499 0.32719153
0.50885493 0.3319993 0.51999801 0.52546501 0.50885499 0.54576916 0.51999801 0.55225557
0.50885499 0.5727641 0.50885499 0.57200027 0.51999795 0.28399912 0.51999795 0.33092758
0.58289647 0.31023026 0.51999795 0.35416669 0.58333331 0.52400011 0.51999801 0.53947932
0.58289647 0.55023128 0.51999801 0.5625 0.58333331 0.71628773 0.17972387 0.638614
0.0709555 0.68398535 0.11632685 0.62744731 0.062842429 0.57027632 0.033712089 0.5
0.022581574 0.42972383 0.03371207 0.36632681 0.066014618 0.31601456 0.11632675 0.2837123
0.17972381 0.27258164 0.25 0.28371227 0.32027608 0.49436668 0.24590714 0.36138597
0.42904431 0.31601462 0.38367313 0.37255281 0.43715724 0.42972386 0.46628755 0.5
0.47741818 0.57027614 0.46628779 0.63367319 0.43398541 0.68398535 0.38367325 0.71628779
0.32027614 0.50563335 0.25409284 0.7274183 0.25 0.33092758 0.58289647 0.30576813
0.51999795 0.31023026 0.51999795 0.33538967 0.58289653 0.36872301 0.66622984 0.36426091
0.66622984 0.40205628 0.74956316 0.39759415 0.74956316 0.53947932 0.58289647 0.54576916
0.51999801 0.55023128 0.51999801 0.54394144 0.58289653 0.53560817 0.66622984 0.53114605
0.66622984 0.52727461 0.7495631 0.52281249 0.74956316 0.43538964 0.83289647 0.43092752
0.83289653 0.51894128 0.83289647 0.51447916 0.83289641 0.46872294 0.91622972 0.46426085
0.91622978 0.51060802 0.91622972 0.50614589 0.91622978 0.49855015 0.99033433 0.48820174
0.9737817 0.50338298 0.99033433 0.30040094 0.50885499 0.3026343 0.50885499 0.30729836
0.51854229 0.638614 0.0709555 0.50563335 0.25409284 0.49436668 0.24590714 0.63250297
0.067625307 0.54597342 0.50885499 0.54820681 0.50885499 0.54802722 0.51854235 0.36138597
0.42904431;
setAttr ".uvst[0].uvsp[250]" 0.367497 0.43237472;
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 190 ".pt";
setAttr ".pt[0:165]" -type "float3" 4.5360765 2.3980412 -4.2247601 3.8586171
3.9599373 -3.9924529 1.4738604 5.9952908 -3.6897266 0 6.2695122 -3.6489406 -1.4738604
5.9952893 -3.6897268 -2.8034484 5.1994638 -3.8080931 -3.8586161 3.9599361 -3.9924531
-4.5360742 2.3980408 -4.2247601 -4.7695112 0.66666663 -4.4822741 -4.5360742 -1.0647074
-4.7397885 -3.8586161 -2.6266029 -4.9720955 -1.4738598 -4.6619549 -5.2748213 -1.4214247e-007
-4.9361777 -5.3156075 1.4738594 -4.6619549 -5.2748213 2.8034472 -3.8661289 -5.156455
3.8586142 -2.6266022 -4.9720955 4.5360732 -1.064707 -4.7397885 4.7695098 0.66666663
-4.4822741 3.6288607 1.7184331 -2.0351255 3.0868933 2.9679499 -1.8492798 1.1790882
4.5962319 -1.6070988 0 4.8156095 -1.5744699 -1.1790882 4.5962319 -1.6070988 -2.2427588
3.9595706 -1.701792 -3.0868924 2.9679489 -1.84928 -3.6288593 1.7184325 -2.0351255
-3.815609 0.33333328 -2.2411368 -3.6288593 -1.0517659 -2.4471483 -3.0868919 -2.3012819
-2.6329937 -1.1790879 -3.9295635 -2.8751745 -1.1371397e-007 -4.1489415 -2.9078035
1.1790875 -3.929563 -2.8751745 2.2427578 -3.2929029 -2.7804816 3.0868912 -2.3012819
-2.6329937 3.6288586 -1.0517657 -2.4471483 3.8156075 0.33333328 -2.2411368 2.7216454
1.0388248 0.15450899 2.31517 1.975962 0.29389316 0.88431627 3.1971734 0.47552884
0 3.361707 0.5000006 -0.88431627 3.1971734 0.47552884 -1.6820689 2.7196777 0.40450898
-2.3151691 1.9759614 0.29389307 -2.7216444 1.0388243 0.15450892 -2.8617063 -5.9604645e-008
4.0074656e-007 -2.7216444 -1.0388244 -0.15450811 -2.3151691 -1.9759613 -0.29389226
-0.88431585 -3.1971724 -0.47552788 -8.5285471e-008 -3.361706 -0.49999961 0.88431579
-3.1971724 -0.47552788 1.6820683 -2.719677 -0.40450808 2.3151684 -1.9759611 -0.29389223
2.7216442 -1.0388243 -0.1545081 2.8617055 -5.9604645e-008 4.0074656e-007 1.8144304
0.3592163 2.3441436 1.5434464 0.98397446 2.4370663 0.589544 1.7981154 2.5581567 0
1.9078045 2.5744712 -0.589544 1.7981151 2.5581567 -1.1213793 1.4797848 2.5108104
-1.5434459 0.98397422 2.4370663 -1.8144293 0.35921603 2.3441436 -1.9078039 -0.33333343
2.241138 -1.8144293 -1.025883 2.1381323 -1.5434458 -1.6506408 2.0452094 -0.58954382
-2.4647815 1.9241191 -5.6856972e-008 -2.5744703 1.9078046 0.5895437 -2.4647815 1.9241191
1.1213787 -2.1464515 1.9714656 1.5434455 -1.6506407 2.0452094 1.8144293 -1.0258827
2.1381323 1.9078034 -0.33333343 2.241138 0.90721482 -0.32039192 4.5337777 0.77172297
-0.0080129169 4.5802393 0.29477191 0.39905733 4.6407843 0 0.4539018 4.6489415 -0.29477191
0.39905733 4.6407843 -0.56068945 0.23989221 4.6171112 -0.77172273 -0.0080131665 4.5802393
-0.90721464 -0.32039207 4.5337777 -0.95390171 -0.66666675 4.482275 -0.90721464 -1.0129414
4.4307723 -0.77172261 -1.3253202 4.3843107 -0.29477185 -1.7323904 4.3237658 -2.8428479e-008
-1.7872349 4.3156085 0.29477173 -1.7323904 4.3237658 0.56068921 -1.5732254 4.3474388
0.7717225 -1.3253202 4.3843107 0.90721422 -1.0129414 4.4307723 0.95390147 -0.66666675
4.482275 5.2255821 2.9145601 -5.8889351 4.9516168 2.8899829 -6.442307 4.4451451 4.7138715
-5.6213164 4.2120972 4.5949602 -6.1887188 1.6978943 7.0586076 -5.2725744 1.6088778
6.8167677 -5.8582606 0 7.3745131 -5.2255883 5.7873397e-008 7.1161118 -5.8137379 -1.6978943
7.0586071 -5.2725744 -1.6088777 6.8167672 -5.8582606 -3.2295861 6.1418118 -5.4089332
-3.0602667 5.9480376 -5.9874701 -4.4451437 4.7138705 -5.6213164 -4.2120953 4.5949597
-6.1887188 -5.2255797 2.9145594 -5.8889356 -4.9516149 2.8899817 -6.442307 -5.4944992
0.92000806 -6.1855931 -5.2064362 1 -6.7234116 -5.2255797 -1.0745435 -6.4822507 -4.9516149
-0.88998169 -7.0045161 -4.4451437 -2.8738542 -6.7498693 -4.2120948 -2.5949588 -7.2581043
-1.6978939 -5.2185898 -7.0986114 -1.6088772 -4.8167648 -7.5885625 -1.7057096e-007
-5.5344949 -7.145597 -2.2990707e-007 -5.1161089 -7.6330853 1.6978931 -5.2185884 -7.0986109
1.6088768 -4.8167648 -7.5885625 3.2295847 -4.3017955 -6.9622526 3.0602655 -3.948036
-7.459353 4.4451427 -2.8738532 -6.7498693 4.2120943 -2.5949583 -7.2581043 5.2255783
-1.0745426 -6.4822507 4.9516139 -0.88998133 -7.0045161 5.4944983 0.92000794 -6.1855931
5.2064352 1.0000006 -6.7234116 2.6640017 5.2911892 -3.8064578 2.9193869 5.0732217
-3.838877 2.3586967 3.8333282 -1.7325752 2.1033118 4.0512953 -1.700156 -2.6640005
-3.95436 -5.1815853 -2.9193857 -3.736392 -5.1491661 -2.3586957 -3.1631663 -2.7731919
-2.1033106 -3.3811336 -2.8056109 1.7980068 2.5934355 0.37372595 1.5426216 2.8114028
0.40614507 -1.7980059 -2.5899403 -0.39721835 -1.5426209 -2.8079076 -0.42963752 1.2373168
1.3535423 2.4800272 0.98193163 1.5715096 2.5124464 -1.2373164 -2.0167141 1.9787554
-0.98193121 -2.2346814 1.9463363 0.67662692 0.11364946 4.586328 0.42124182 0.33161658
4.6187472 -0.67662662 -1.4434882 4.3547287 -0.42124158 -1.6614555 4.3223095 -0.089510888
-0.88494104 6.4748287 0.089510888 -1.0377333 6.4521031 3.3425853 6.0090714 -5.4286761
3.0872004 6.2270393 -5.3962569 2.9177344 6.0333514 -5.974781 3.1733823 5.8151598
-6.0072336 -3.3425844 -4.1690536 -6.9425097 -3.087199 -4.3870211 -6.9749289 -2.9177332
-4.033349 -7.4720421 -3.1733813 -3.8151574 -7.4395895 -0.12896748 1.1100718 -6.7070403
0.12896748 0.88992822 -6.7397833 2.57335 5.1580911 -3.9188447 2.8287349 4.9401236
-3.9512639 3.2543688 5.8651509 -5.4412446 2.9989836 6.0831189 -5.4088254 2.01266
3.9181969 -1.8125423 2.2680449 3.7002301 -1.8449614 1.45197 2.6783044 0.29375863
1.7073551 2.4603372 0.26133952;
setAttr ".pt[166:189]" -2.5733488 -3.7943153 -5.250371 -2.8287339 -3.5763478
-5.2179518 -3.2543676 -4.0277047 -6.9126482 -2.998982 -4.2456727 -6.9450674 -2.0126588
-3.2210884 -2.8743968 -2.2680438 -3.0031214 -2.8419778 -1.4519693 -2.6478627 -0.49842361
-1.7073541 -2.4298954 -0.46600443 0.89128 1.4384112 2.4000599 1.1466651 1.2204441
2.3676407 -0.89127952 -2.0746365 1.8775502 -1.1466646 -1.8566693 1.9099694 0.33152205
0.20055257 4.503037 0.58690715 -0.017414436 4.4706178 -0.33152178 -1.5023897 4.2497516
-0.58690685 -1.2844224 4.2821708 -0.089510888 -0.87041235 6.3771467 0.089510895 -1.0232047
6.3544211 3.1304915 5.7227249 -5.8623304 2.8748436 5.9409165 -5.8298779 0.12896748
0.85980117 -6.5372267 -0.12896748 1.0799447 -6.5044837 -3.1304905 -3.7688949 -7.2740574
-2.8748426 -3.9870865 -7.30651;
setAttr -s 190 ".vt";
setAttr ".vt[0:165]" 0.79254764 -0.66666663 -0.2575143 0.67418128 -0.66666663 -0.48982137
0.2575143 -0.66666663 -0.79254764 0 -0.66666663 -0.83333373 -0.2575143 -0.66666663 -0.79254746
-0.48982123 -0.66666663 -0.6741811 -0.6741811 -0.66666663 -0.4898212 -0.79254729 -0.66666663 -0.25751421
-0.83333355 -0.66666663 0 -0.79254729 -0.66666663 0.25751421 -0.6741811 -0.66666663 0.4898212
-0.25751421 -0.66666663 0.79254729 -2.4835268e-008 -0.66666663 0.83333355 0.25751415 -0.66666663 0.79254729
0.48982102 -0.66666663 0.67418087 0.67418081 -0.66666663 0.48982108 0.79254711 -0.66666663 0.25751415
0.83333331 -0.66666663 0 0.63403803 -0.33333328 -0.20601146 0.53934497 -0.33333328 -0.39185709
0.20601143 -0.33333328 -0.63403803 0 -0.33333328 -0.66666692 -0.20601143 -0.33333328 -0.63403803
-0.39185697 -0.33333328 -0.53934485 -0.53934479 -0.33333328 -0.39185694 -0.63403779 -0.33333328 -0.20601137
-0.66666687 -0.33333328 0 -0.63403779 -0.33333328 0.20601137 -0.53934473 -0.33333328 0.39185691
-0.20601137 -0.33333328 0.63403773 -1.9868214e-008 -0.33333328 0.66666669 0.20601131 -0.33333328 0.63403767
0.39185682 -0.33333328 0.53934467 0.53934461 -0.33333328 0.39185691 0.63403767 -0.33333328 0.20601133
0.66666663 -0.33333328 0 0.47552851 5.9604645e-008 -0.15450859 0.40450874 5.9604645e-008 -0.29389277
0.15450859 5.9604645e-008 -0.47552845 0 5.9604645e-008 -0.50000018 -0.15450859 5.9604645e-008 -0.47552845
-0.29389271 5.9604645e-008 -0.40450859 -0.40450856 5.9604645e-008 -0.29389268 -0.47552833 5.9604645e-008 -0.15450852
-0.50000006 5.9604645e-008 0 -0.47552833 5.9604645e-008 0.15450852 -0.40450856 5.9604645e-008 0.29389265
-0.15450852 5.9604645e-008 0.47552827 -1.4901159e-008 5.9604645e-008 0.5 0.1545085 5.9604645e-008 0.47552827
0.29389259 5.9604645e-008 0.40450847 0.40450844 5.9604645e-008 0.29389262 0.47552827 5.9604645e-008 0.1545085
0.49999994 5.9604645e-008 0 0.31701902 0.33333343 -0.1030057 0.26967245 0.33333343 -0.19592848
0.10300569 0.33333343 -0.31701893 0 0.33333343 -0.33333343 -0.10300569 0.33333343 -0.3170189
-0.19592845 0.33333343 -0.26967236 -0.26967236 0.33333343 -0.19592845 -0.31701884 0.33333343 -0.10300566
-0.33333334 0.33333343 0 -0.31701884 0.33333343 0.10300566 -0.26967233 0.33333343 0.19592841
-0.10300566 0.33333343 0.31701884 -9.9341051e-009 0.33333343 0.33333328 0.10300564 0.33333343 0.31701884
0.19592836 0.33333343 0.2696723 0.26967227 0.33333343 0.19592839 0.31701884 0.33333343 0.10300564
0.33333325 0.33333343 0 0.15850945 0.66666675 -0.051502842 0.13483618 0.66666675 -0.097964227
0.051502831 0.66666675 -0.15850942 0 0.66666675 -0.16666666 -0.051502831 0.66666675 -0.15850942
-0.097964197 0.66666675 -0.13483615 -0.13483614 0.66666675 -0.09796419 -0.15850942 0.66666675 -0.05150282
-0.16666663 0.66666675 0 -0.15850942 0.66666675 0.05150282 -0.13483612 0.66666675 0.097964175
-0.05150282 0.66666675 0.15850936 -4.9670512e-009 0.66666675 0.1666666 0.051502801 0.66666675 0.15850936
0.09796416 0.66666675 0.13483611 0.13483609 0.66666675 0.097964175 0.15850934 0.66666675 0.051502809
0.16666658 0.66666675 0 0.9130187 -0.92000806 -0.29665774 0.86515129 -1 -0.28110474
0.77666003 -0.92000806 -0.56427652 0.73594165 -1 -0.53469288 0.29665774 -0.92000806 -0.91301852
0.28110468 -1 -0.86515117 0 -0.92000806 -0.96000445 1.0111695e-008 -1 -0.90967381
-0.29665774 -0.92000806 -0.91301847 -0.28110465 -1 -0.86515111 -0.5642764 -0.92000806 -0.77665985
-0.53469276 -1 -0.73594147 -0.77665979 -0.92000806 -0.5642764 -0.73594135 -1 -0.53469276
-0.91301835 -0.92000806 -0.29665762 -0.86515093 -1 -0.28110456 -0.96000415 -0.92000806 1.7761778e-017
-0.90967351 -1 0 -0.91301835 -0.92000806 0.29665765 -0.86515093 -1 0.28110456 -0.77665979 -0.92000806 0.56427634
-0.73594129 -1 0.53469265 -0.29665765 -0.92000806 0.91301829 -0.28110456 -1 0.86515081
-2.9802322e-008 -0.92000806 0.96000415 -4.0169585e-008 -1 0.90967345 0.29665753 -0.92000806 0.91301811
0.28110451 -1 0.86515075 0.56427616 -0.92000806 0.77665979 0.53469253 -1 0.73594123
0.77665961 -0.92000806 0.56427622 0.73594117 -1 0.53469259 0.91301805 -0.92000806 0.29665753
0.86515075 -1 0.28110451 0.96000403 -0.92000806 1.4105719e-008 0.90967339 -1 -9.5009113e-008
0.46545693 -0.66841388 -0.6875639 0.51007807 -0.66841388 -0.65514475 0.41211376 -0.33508042 -0.52030843
0.36749265 -0.33508042 -0.55272758 -0.46545675 -0.66841388 0.68756372 -0.51007789 -0.66841388 0.65514445
-0.41211358 -0.33508042 0.52030826 -0.36749247 -0.33508042 0.5527274 0.31414947 -0.0017470713 -0.38547224
0.26952833 -0.0017470779 -0.41789138 -0.31414932 -0.001747072 0.38547206 -0.26952821 -0.0017470748 0.4178912
0.21618518 0.3315863 -0.25063595 0.17156404 0.3315863 -0.2830551 -0.21618511 0.3315863 0.25063583
-0.17156397 0.3315863 0.28305498 0.11822091 0.66491961 -0.1157997 0.073599778 0.66491961 -0.14821883
-0.11822086 0.66491961 0.11579963 -0.073599733 0.66491961 0.14821878 -0.015639428 0.96133721 -0.01136271
0.015639428 0.96133721 0.011362707 0.58401972 -0.92000806 -0.75691682 0.53939861 -0.92000806 -0.78933609
0.50978935 -1 -0.74863058 0.55445641 -1 -0.71617806 -0.58401954 -0.92000806 0.75691652
-0.53939837 -0.92000806 0.78933573 -0.50978917 -1 0.74863023 -0.55445623 -1 0.7161777
-0.022533322 -1 -0.016371416 0.022533322 -1 0.016371416 0.44961816 -0.68188721 -0.6657638
0.4942393 -0.68188721 -0.63334459 0.56860644 -0.91872209 -0.73570222 0.52398533 -0.91872209 -0.76812148
0.3516539 -0.34855366 -0.53092736 0.39627501 -0.34855366 -0.49850827 0.25368959 -0.015220333 -0.39609119
0.29831073 -0.015220326 -0.36367205;
setAttr ".vt[166:189]" -0.44961798 -0.68188709 0.66576356 -0.49423912 -0.68188709 0.63334435
-0.56860626 -0.91872203 0.73570192 -0.52398503 -0.91872203 0.76812112 -0.3516537 -0.34855366 0.53092718
-0.39627481 -0.34855366 0.49850807 -0.25368947 -0.015220337 0.39609101 -0.29831055 -0.015220333 0.36367187
0.1557253 0.31811306 -0.26125491 0.20034644 0.31811306 -0.22883578 -0.15572521 0.31811306 0.26125479
-0.20034635 0.31811306 0.22883564 0.057923853 0.65091866 -0.12664273 0.10254499 0.65091866 -0.094223626
-0.057923805 0.65091866 0.1266427 -0.10254493 0.65091866 0.094223559 -0.015639428 0.94680858 -0.011362714
0.01563943 0.94680858 0.011362704 0.5469625 -0.97691387 -0.70586354 0.50229543 -0.97691387 -0.73831606
0.022533322 -0.96987295 0.016371416 -0.022533322 -0.96987295 -0.016371416 -0.54696232 -0.97691387 0.70586318
-0.50229526 -0.97691387 0.7383157;
setAttr -s 396 ".ed";
setAttr ".ed[0:165]" 0 1 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
11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 0 1 18 19 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 29 30 1 30 31 1 31 32 1 32 33 1 33 34 1 34 35 1
35 18 1 36 37 1 38 39 1 39 40 1 40 41 1 41 42 1 42 43 1 43 44 1 44 45 1 45 46 1 47 48 1
48 49 1 49 50 1 50 51 1 51 52 1 52 53 1 53 36 1 54 55 1 56 57 1 57 58 1 58 59 1 59 60 1
60 61 1 61 62 1 62 63 1 63 64 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 54 1
72 73 1 74 75 1 75 76 1 76 77 1 77 78 1 78 79 1 79 80 1 80 81 1 81 82 1 83 84 1 84 85 1
85 86 1 86 87 1 87 88 1 88 89 1 89 72 1 0 18 1 1 19 1 2 20 1 3 21 1 4 22 1 5 23 1
6 24 1 7 25 1 8 26 1 9 27 1 10 28 1 11 29 1 12 30 1 13 31 1 14 32 1 15 33 1 16 34 1
17 35 1 18 36 1 19 37 1 20 38 1 21 39 1 22 40 1 23 41 1 24 42 1 25 43 1 26 44 1 27 45 1
28 46 1 29 47 1 30 48 1 31 49 1 32 50 1 33 51 1 34 52 1 35 53 1 36 54 1 37 55 1 38 56 1
39 57 1 40 58 1 41 59 1 42 60 1 43 61 1 44 62 1 45 63 1 46 64 1 47 65 1 48 66 1 49 67 1
50 68 1 51 69 1 52 70 1 53 71 1 54 72 1 55 73 1 56 74 1 57 75 1 58 76 1 59 77 1 60 78 1
61 79 1 62 80 1 63 81 1 64 82 1 65 83 1 66 84 1 67 85 1 68 86 1 69 87 1 70 88 1 71 89 1
90 91 1 91 93 0 93 92 1 92 90 0 90 124 0 124 125 1 125 91 0 95 94 1 95 97 0 97 96 1
96 94 0 97 99 0 99 98 1 98 96 0;
setAttr ".ed[166:331]" 99 101 0 101 100 1 100 98 0 101 103 0 103 102 1 102 100 0
103 105 0 105 104 1 104 102 0 105 107 0 107 106 1 106 104 0 107 109 0 109 108 1 108 106 0
109 111 0 111 110 1 110 108 0 113 112 1 113 115 0 115 114 1 114 112 0 115 117 0 117 116 1
116 114 0 117 119 0 119 118 1 118 116 0 119 121 0 121 120 1 120 118 0 121 123 0 123 122 1
122 120 0 123 125 0 124 122 0 92 1 1 0 90 1 94 2 1 96 3 1 98 4 1 100 5 1 102 6 1
104 7 1 106 8 1 108 9 1 110 10 1 112 11 1 114 12 1 116 13 1 118 14 1 120 15 1 122 16 1
124 17 1 127 148 0 149 126 0 126 129 0 128 127 0 129 135 0 134 128 0 131 152 0 153 130 0
130 133 0 132 131 0 133 137 0 136 132 0 135 139 0 138 134 0 137 141 0 140 136 0 139 143 0
142 138 0 141 145 0 144 140 0 143 146 0 147 142 0 145 147 0 146 144 0 148 151 0 150 149 0
151 157 0 156 150 0 152 155 0 154 153 0 155 156 0 157 154 0 1 127 1 128 19 1 126 2 1
20 129 1 10 131 1 132 28 1 130 11 1 29 133 1 134 37 1 38 135 1 136 46 1 47 137 1
138 55 1 56 139 1 140 64 1 65 141 1 142 73 1 74 143 1 144 82 1 83 145 1 73 147 1
147 72 1 74 146 1 75 146 1 76 146 1 77 146 1 78 146 1 79 146 1 80 146 1 81 146 1
82 146 1 83 147 1 84 147 1 85 147 1 86 147 1 87 147 1 88 147 1 89 147 1 93 151 0
148 92 0 150 95 0 94 149 0 111 155 0 152 110 0 154 113 0 112 153 0 91 157 1 157 93 1
156 95 1 156 97 1 156 99 1 156 101 1 156 103 1 156 105 1 156 107 1 156 109 1 156 111 1
157 113 1 157 115 1 157 117 1 157 119 1 157 121 1 157 123 1 157 125 1 126 158 1 127 159 1
158 159 1 148 160 1 159 160 0 149 161 1 160 161 0 161 158 0 129 162 1 158 162 0 128 163 1
162 163 1 163 159 0 135 164 1 162 164 0 134 165 1;
setAttr ".ed[332:395]" 164 165 1 165 163 0 130 166 1 131 167 1 166 167 1 152 168 1
167 168 0 153 169 1 168 169 0 169 166 0 133 170 1 166 170 0 132 171 1 170 171 1 171 167 0
137 172 1 170 172 0 136 173 1 172 173 1 173 171 0 139 174 1 164 174 0 138 175 1 174 175 1
175 165 0 141 176 1 172 176 0 140 177 1 176 177 1 177 173 0 143 178 1 174 178 0 142 179 1
178 179 1 179 175 0 145 180 1 176 180 0 144 181 1 180 181 1 181 177 0 146 182 1 178 182 0
147 183 1 182 183 0 183 179 0 180 183 0 182 181 0 151 184 1 160 184 0 150 185 1 184 185 0
185 161 0 157 186 1 184 186 0 156 187 1 186 187 1 187 185 0 155 188 1 168 188 0 154 189 1
188 189 0 189 169 0 188 187 0 186 189 0;
setAttr -s 208 -ch 792 ".fc[0:207]" -type "polyFaces"
f 4 0 81 -17 -81
mu 0 4 80 116 124 1
f 4 1 83 -18 -83
mu 0 4 183 83 2 119
f 4 2 84 -19 -84
mu 0 4 83 85 3 2
f 4 3 85 -20 -85
mu 0 4 85 87 4 3
f 4 4 86 -21 -86
mu 0 4 87 89 5 4
f 4 5 87 -22 -87
mu 0 4 89 91 6 5
f 4 6 88 -23 -88
mu 0 4 91 93 7 6
f 4 7 89 -24 -89
mu 0 4 93 94 8 7
f 4 8 90 -25 -90
mu 0 4 94 120 128 8
f 4 9 92 -26 -92
mu 0 4 187 97 9 123
f 4 10 93 -27 -93
mu 0 4 97 99 10 9
f 4 11 94 -28 -94
mu 0 4 99 101 11 10
f 4 12 95 -29 -95
mu 0 4 101 103 12 11
f 4 13 96 -30 -96
mu 0 4 103 105 13 12
f 4 14 97 -31 -97
mu 0 4 105 107 14 13
f 4 15 80 -32 -98
mu 0 4 107 0 15 14
f 4 16 99 -33 -99
mu 0 4 1 124 132 16
f 4 17 101 -34 -101
mu 0 4 119 2 17 127
f 4 18 102 -35 -102
mu 0 4 2 3 18 17
f 4 19 103 -36 -103
mu 0 4 3 4 19 18
f 4 20 104 -37 -104
mu 0 4 4 5 20 19
f 4 21 105 -38 -105
mu 0 4 5 6 21 20
f 4 22 106 -39 -106
mu 0 4 6 7 22 21
f 4 23 107 -40 -107
mu 0 4 7 8 23 22
f 4 24 108 -41 -108
mu 0 4 8 128 136 23
f 4 25 110 -42 -110
mu 0 4 123 9 24 131
f 4 26 111 -43 -111
mu 0 4 9 10 25 24
f 4 27 112 -44 -112
mu 0 4 10 11 26 25
f 4 28 113 -45 -113
mu 0 4 11 12 27 26
f 4 29 114 -46 -114
mu 0 4 12 13 28 27
f 4 30 115 -47 -115
mu 0 4 13 14 29 28
f 4 31 98 -48 -116
mu 0 4 14 15 30 29
f 4 32 117 -49 -117
mu 0 4 16 132 140 31
f 4 33 119 -50 -119
mu 0 4 127 17 32 135
f 4 34 120 -51 -120
mu 0 4 17 18 33 32
f 4 35 121 -52 -121
mu 0 4 18 19 34 33
f 4 36 122 -53 -122
mu 0 4 19 20 35 34
f 4 37 123 -54 -123
mu 0 4 20 21 36 35
f 4 38 124 -55 -124
mu 0 4 21 22 37 36
f 4 39 125 -56 -125
mu 0 4 22 23 38 37
f 4 40 126 -57 -126
mu 0 4 23 136 143 38
f 4 41 128 -58 -128
mu 0 4 131 24 39 139
f 4 42 129 -59 -129
mu 0 4 24 25 40 39
f 4 43 130 -60 -130
mu 0 4 25 26 41 40
f 4 44 131 -61 -131
mu 0 4 26 27 42 41
f 4 45 132 -62 -132
mu 0 4 27 28 43 42
f 4 46 133 -63 -133
mu 0 4 28 29 44 43
f 4 47 116 -64 -134
mu 0 4 29 30 45 44
f 4 48 135 -65 -135
mu 0 4 31 140 146 46
f 4 49 137 -66 -137
mu 0 4 135 32 151 150
f 4 50 138 -67 -138
mu 0 4 32 33 152 151
f 4 51 139 -68 -139
mu 0 4 33 34 153 152
f 4 52 140 -69 -140
mu 0 4 34 35 154 153
f 4 53 141 -70 -141
mu 0 4 35 36 155 154
f 4 54 142 -71 -142
mu 0 4 36 37 156 155
f 4 55 143 -72 -143
mu 0 4 37 38 157 156
f 4 56 144 -73 -144
mu 0 4 38 143 158 157
f 4 57 146 -74 -146
mu 0 4 139 39 162 161
f 4 58 147 -75 -147
mu 0 4 39 40 163 162
f 4 59 148 -76 -148
mu 0 4 40 41 164 163
f 4 60 149 -77 -149
mu 0 4 41 42 165 164
f 4 61 150 -78 -150
mu 0 4 42 43 166 165
f 4 62 151 -79 -151
mu 0 4 43 44 167 166
f 4 63 134 -80 -152
mu 0 4 44 45 168 167
f 4 152 153 154 155
mu 0 4 47 48 49 180
f 4 -153 156 157 158
mu 0 4 50 106 104 51
f 4 -160 160 161 162
mu 0 4 174 52 53 81
f 4 -162 163 164 165
mu 0 4 81 54 55 82
f 4 -165 166 167 168
mu 0 4 82 56 57 84
f 4 -168 169 170 171
mu 0 4 84 58 59 86
f 4 -171 172 173 174
mu 0 4 86 60 61 88
f 4 -174 175 176 177
mu 0 4 88 62 63 90
f 4 -177 178 179 180
mu 0 4 90 64 65 92
f 4 -180 181 182 183
mu 0 4 92 66 67 184
f 4 -185 185 186 187
mu 0 4 179 68 69 95
f 4 -187 188 189 190
mu 0 4 95 70 71 96
f 4 -190 191 192 193
mu 0 4 96 72 73 98
f 4 -193 194 195 196
mu 0 4 98 74 75 100
f 4 -196 197 198 199
mu 0 4 100 76 77 102
f 4 -199 200 -158 201
mu 0 4 102 78 79 104
f 4 -156 202 -1 203
mu 0 4 47 180 116 80
f 4 -163 205 -2 -205
mu 0 4 174 81 83 183
f 4 -166 206 -3 -206
mu 0 4 81 82 85 83
f 4 -169 207 -4 -207
mu 0 4 82 84 87 85
f 4 -172 208 -5 -208
mu 0 4 84 86 89 87
f 4 -175 209 -6 -209
mu 0 4 86 88 91 89
f 4 -178 210 -7 -210
mu 0 4 88 90 93 91
f 4 -181 211 -8 -211
mu 0 4 90 92 94 93
f 4 -184 212 -9 -212
mu 0 4 92 184 120 94
f 4 -188 214 -10 -214
mu 0 4 179 95 97 187
f 4 -191 215 -11 -215
mu 0 4 95 96 99 97
f 4 -194 216 -12 -216
mu 0 4 96 98 101 99
f 4 -197 217 -13 -217
mu 0 4 98 100 103 101
f 4 -200 218 -14 -218
mu 0 4 100 102 105 103
f 4 -202 219 -15 -219
mu 0 4 102 104 107 105
f 4 -157 -204 -16 -220
mu 0 4 104 106 0 107
f 4 318 320 322 323
mu 0 4 215 212 213 214
f 4 -319 325 327 328
mu 0 4 212 215 216 217
f 4 -328 330 332 333
mu 0 4 217 216 218 219
f 4 336 338 340 341
mu 0 4 223 220 221 222
f 4 -337 343 345 346
mu 0 4 220 223 224 225
f 4 -346 348 350 351
mu 0 4 225 224 226 227
f 4 -333 353 355 356
mu 0 4 219 218 228 229
f 4 -351 358 360 361
mu 0 4 227 226 230 231
f 4 -356 363 365 366
mu 0 4 229 228 232 233
f 4 -361 368 370 371
mu 0 4 231 230 234 235
f 4 -366 373 375 376
mu 0 4 233 232 236 237
f 4 -371 377 -376 378
mu 0 4 235 234 238 236
f 4 -323 380 382 383
mu 0 4 241 213 239 240
f 4 -383 385 387 388
mu 0 4 245 242 243 244
f 4 -341 390 392 393
mu 0 4 248 221 246 247
f 4 -393 394 -388 395
mu 0 4 250 249 244 243
f 4 252 -224 253 -82
mu 0 4 116 181 117 124
f 4 254 82 255 -223
mu 0 4 118 183 119 126
f 4 256 -230 257 -91
mu 0 4 120 185 121 128
f 4 258 91 259 -229
mu 0 4 122 187 123 130
f 4 -254 -226 260 -100
mu 0 4 124 117 125 132
f 4 -256 100 261 -225
mu 0 4 126 119 127 134
f 4 -258 -232 262 -109
mu 0 4 128 121 129 136
f 4 -260 109 263 -231
mu 0 4 130 123 131 138
f 4 -261 -234 264 -118
mu 0 4 132 125 133 140
f 4 -262 118 265 -233
mu 0 4 134 127 135 142
f 4 -263 -236 266 -127
mu 0 4 136 129 137 143
f 4 -264 127 267 -235
mu 0 4 138 131 139 145
f 4 -265 -238 268 -136
mu 0 4 140 133 141 146
f 4 -266 136 269 -237
mu 0 4 142 135 150 149
f 4 -267 -240 270 -145
mu 0 4 143 137 144 158
f 4 -268 145 271 -239
mu 0 4 145 139 161 160
f 3 64 272 273
mu 0 3 46 146 147
f 3 -269 -242 -273
mu 0 3 146 141 148
f 3 -270 274 -241
mu 0 3 149 150 159
f 3 65 275 -275
mu 0 3 150 151 159
f 3 66 276 -276
mu 0 3 151 152 159
f 3 67 277 -277
mu 0 3 152 153 159
f 3 68 278 -278
mu 0 3 153 154 159
f 3 69 279 -279
mu 0 3 154 155 159
f 3 70 280 -280
mu 0 3 155 156 159
f 3 71 281 -281
mu 0 3 156 157 159
f 3 72 282 -282
mu 0 3 157 158 159
f 3 -271 -244 -283
mu 0 3 158 144 159
f 3 -272 283 -243
mu 0 3 160 161 169
f 3 73 284 -284
mu 0 3 161 162 169
f 3 74 285 -285
mu 0 3 162 163 169
f 3 75 286 -286
mu 0 3 163 164 169
f 3 76 287 -287
mu 0 3 164 165 169
f 3 77 288 -288
mu 0 3 165 166 169
f 3 78 289 -289
mu 0 3 166 167 169
f 3 79 -274 -290
mu 0 3 167 168 169
f 4 -155 290 -245 291
mu 0 4 180 170 109 171
f 4 -246 292 159 293
mu 0 4 182 172 173 174
f 4 -183 294 -249 295
mu 0 4 184 175 113 176
f 4 -250 296 184 297
mu 0 4 186 177 178 179
f 4 -292 -221 -253 -203
mu 0 4 180 171 181 116
f 4 -294 204 -255 -222
mu 0 4 182 174 183 118
f 4 -296 -227 -257 -213
mu 0 4 184 176 185 120
f 4 -298 213 -259 -228
mu 0 4 186 179 187 122
f 3 -154 298 299
mu 0 3 190 188 210
f 3 -291 -300 -247
mu 0 3 189 190 210
f 3 -293 -248 300
mu 0 3 192 191 200
f 3 -161 -301 301
mu 0 3 193 192 200
f 3 -164 -302 302
mu 0 3 194 193 200
f 3 -167 -303 303
mu 0 3 195 194 200
f 3 -170 -304 304
mu 0 3 196 195 200
f 3 -173 -305 305
mu 0 3 197 196 200
f 3 -176 -306 306
mu 0 3 198 197 200
f 3 -179 -307 307
mu 0 3 199 198 200
f 3 -182 -308 308
mu 0 3 202 199 200
f 3 -295 -309 -251
mu 0 3 201 202 200
f 3 -297 -252 309
mu 0 3 204 203 210
f 3 -186 -310 310
mu 0 3 205 204 210
f 3 -189 -311 311
mu 0 3 206 205 210
f 3 -192 -312 312
mu 0 3 207 206 210
f 3 -195 -313 313
mu 0 3 208 207 210
f 3 -198 -314 314
mu 0 3 209 208 210
f 3 -201 -315 315
mu 0 3 211 209 210
f 3 -159 -316 -299
mu 0 3 188 211 210
f 4 220 319 -321 -318
mu 0 4 181 171 213 212
f 4 221 316 -324 -322
mu 0 4 182 118 215 214
f 4 222 324 -326 -317
mu 0 4 118 126 216 215
f 4 223 317 -329 -327
mu 0 4 117 181 212 217
f 4 224 329 -331 -325
mu 0 4 126 134 218 216
f 4 225 326 -334 -332
mu 0 4 125 117 217 219
f 4 226 337 -339 -336
mu 0 4 185 176 221 220
f 4 227 334 -342 -340
mu 0 4 186 122 223 222
f 4 228 342 -344 -335
mu 0 4 122 130 224 223
f 4 229 335 -347 -345
mu 0 4 121 185 220 225
f 4 230 347 -349 -343
mu 0 4 130 138 226 224
f 4 231 344 -352 -350
mu 0 4 129 121 225 227
f 4 232 352 -354 -330
mu 0 4 134 142 228 218
f 4 233 331 -357 -355
mu 0 4 133 125 219 229
f 4 234 357 -359 -348
mu 0 4 138 145 230 226
f 4 235 349 -362 -360
mu 0 4 137 129 227 231
f 4 236 362 -364 -353
mu 0 4 142 149 232 228
f 4 237 354 -367 -365
mu 0 4 141 133 229 233
f 4 238 367 -369 -358
mu 0 4 145 160 234 230
f 4 239 359 -372 -370
mu 0 4 144 137 231 235
f 4 240 372 -374 -363
mu 0 4 149 159 236 232
f 4 241 364 -377 -375
mu 0 4 148 141 233 237
f 4 242 374 -378 -368
mu 0 4 160 169 238 234
f 4 243 369 -379 -373
mu 0 4 159 144 235 236
f 4 244 379 -381 -320
mu 0 4 171 109 239 213
f 4 245 321 -384 -382
mu 0 4 110 108 241 240
f 4 246 384 -386 -380
mu 0 4 189 210 243 242
f 4 247 381 -389 -387
mu 0 4 200 111 245 244
f 4 248 389 -391 -338
mu 0 4 176 113 246 221
f 4 249 339 -394 -392
mu 0 4 114 112 248 247
f 4 250 386 -395 -390
mu 0 4 201 200 244 249
f 4 251 391 -396 -385
mu 0 4 210 115 250 243;
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 "groupId13";
setAttr ".ihi" 0;
createNode groupId -n "groupId14";
setAttr ".ihi" 0;
createNode groupId -n "groupId15";
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 "groupId14.id" "proxy_geoShape.iog.og[0].gid";
connectAttr "proxy_shader_tanSG.mwc" "proxy_geoShape.iog.og[0].gco";
connectAttr "groupId15.id" "proxy_geoShape.iog.og[1].gid";
connectAttr "proxy_shader_blackSG.mwc" "proxy_geoShape.iog.og[1].gco";
connectAttr "groupId13.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 "groupId13.msg" "proxy_shader_tanSG.gn" -na;
connectAttr "groupId14.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 "groupId15.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_cone.ma
|