blob: 5ec6ec50a4b43dbcc53fc96551c547395a693bd1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
|
//Maya ASCII 2016 scene
//Name: ART_Chain.ma
//Last modified: Thu, Apr 20, 2017 03:58:52 PM
//Codeset: 1252
requires maya "2016";
requires -nodeType "ilrOptionsNode" -nodeType "ilrUIOptionsNode" -nodeType "ilrBakeLayerManager"
-nodeType "ilrBakeLayer" "Turtle" "2016.0.0";
requires "stereoCamera" "10.0";
currentUnit -l centimeter -a degree -t ntsc;
fileInfo "application" "maya";
fileInfo "product" "Maya 2016";
fileInfo "version" "2016";
fileInfo "cutIdentifier" "201510022200-973226";
fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n";
createNode transform -s -n "persp";
rename -uid "FF651F5D-450A-0D24-F706-30AA2DE6CE09";
setAttr ".v" no;
setAttr ".t" -type "double3" 34.750513701146019 9.8688978457930663 9.6855933189303247 ;
setAttr ".r" -type "double3" 74.482924915452486 -6.3611093629270335e-015 455.19491120521525 ;
createNode camera -s -n "perspShape" -p "persp";
rename -uid "569D7FEB-4902-A05F-9A1A-018DA9CBF46A";
setAttr -k off ".v" no;
setAttr ".fl" 34.999999999999993;
setAttr ".coi" 36.204093963623187;
setAttr ".imn" -type "string" "persp";
setAttr ".den" -type "string" "persp_depth";
setAttr ".man" -type "string" "persp_mask";
setAttr ".tp" -type "double3" 0.0093210761758477645 6.7103127498647277 7.3461258866203138e-005 ;
setAttr ".hc" -type "string" "viewSet -p %camera";
createNode transform -s -n "top";
rename -uid "B1FDAE5E-4188-2297-EEAD-A18A988BBF9A";
setAttr ".v" no;
setAttr ".t" -type "double3" 0 0 100.1 ;
createNode camera -s -n "topShape" -p "top";
rename -uid "C1A37F3D-44FB-C81E-CB82-7FBF4ED53B2D";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
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";
rename -uid "DB92E708-4464-75BC-1AB5-ECA48A42976D";
setAttr ".v" no;
setAttr ".t" -type "double3" 0 -100.1 0 ;
setAttr ".r" -type "double3" 89.999999999999986 0 0 ;
createNode camera -s -n "frontShape" -p "front";
rename -uid "80C3D2E4-44E2-AC03-AB4C-8C89DE52F6E6";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
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";
rename -uid "2B22603F-4AD3-19AA-722E-93BBF6DDCB34";
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";
rename -uid "EC097A2F-4451-9CD9-C14B-57B2F4EE2AE6";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
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 "mover_grp";
rename -uid "01A2CD5E-4021-50F8-7DA5-D6BFA5B1528B";
createNode transform -n "chain_01_mover_grp" -p "mover_grp";
rename -uid "25C33AE0-4DF6-3E9F-80A8-CEA8F0DEA90B";
setAttr ".r" -type "double3" -270 -3.1805546814635168e-015 89.999999999999957 ;
createNode transform -n "chain_01_mover" -p "chain_01_mover_grp";
rename -uid "47A08912-4E9D-8659-8832-2CBC9451429D";
setAttr ".ove" yes;
setAttr ".ovc" 17;
setAttr ".rp" -type "double3" -3.7972848250791953e-030 -2.129777842941756e-016 -8.5507252616231484e-015 ;
setAttr ".sp" -type "double3" -3.7972848250791953e-030 -2.129777842941756e-016 -8.5507252616231484e-015 ;
createNode nurbsCurve -n "chain_01_moverShape" -p "chain_01_mover";
rename -uid "0AB9143B-4711-CC25-AF73-9987EC37B5BD";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 20 0 no 3
25 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 20 20
23
4.5005415609003032 -1.7951707156769185 5.521953102461798
4.5005412365712232 -2.3565218685148581 5.2810727783897775
4.5005405879130285 -3.4792241741907177 4.7993121302457045
4.500541757657107 -4.7755744229277441 3.4616789345082681
4.500541694017234 -5.6171651828290576 1.8237327372173389
4.5005408229452923 -5.9054211563658061 -0.0034266810934002142
4.500540733706714 -5.616633639660483 -1.8277510846748679
4.5005419617450579 -4.7777005976803393 -3.4742005410185275
4.5005407846489165 -3.4712510256616906 -4.7806575804401605
4.5005406191659443 -1.8249371432615842 -5.6194962724596511
4.5005424581919611 -2.4695333221162218e-005 -5.9085297635232612
4.500538913401277 1.8248962297712439 -5.6194936172983692
4.5005512535346286 3.4711865035532847 -4.7806682010877832
4.5005455418836711 4.7776928662705487 -3.4741698281607705
4.5005451108724239 5.6165134997110666 -1.8278687841963792
4.5005452549159131 5.9055680788835376 -0.0029884187755669939
4.5005451097523066 5.6164765762734739 1.8220973874667907
4.5005455463612734 4.7778442058435688 3.4677884595502122
4.5005512367406162 3.470618068695722 4.7765221906347195
4.5005389700600045 1.8270332147525448 5.6070106717313601
4.5005421955934803 -0.0080005409847681962 5.9271719158749461
4.5005417724571322 -1.1994473241105501 5.6570260402590007
4.5005415608889594 -1.7951707156734411 5.5219531024510271
;
createNode transform -n "chain_01_mover_offset" -p "chain_01_mover";
rename -uid "5C2C38C3-4256-DE63-69B5-64BDD7A014DF";
setAttr ".ove" yes;
setAttr ".ovc" 18;
setAttr ".rp" -type "double3" -3.7978390114226095e-030 -2.9835608551757272e-016
-8.5519731783279969e-015 ;
setAttr ".sp" -type "double3" -3.7978390114226095e-030 -2.9835608551757272e-016
-8.5519731783279969e-015 ;
createNode nurbsCurve -n "chain_01_mover_offsetShape" -p "chain_01_mover_offset";
rename -uid "60F94342-4B7C-8AFF-9DC6-859F7E99E2FA";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 20 0 no 3
25 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 20 20
23
4.5005418978747507 -1.6234347923927941 4.9946059243326646
4.5005416045715148 -2.1310861979998168 4.7767685965209603
4.5005410179649914 -3.1463890092138405 4.341093940897526
4.500542075809487 -4.318728324103164 3.1314208716079333
4.5005420182575051 -5.0798111686824896 1.6501632218111981
4.5005412305136989 -5.3404921157167218 -0.0022072102868317084
4.5005411498118244 -5.0793304737817948 -1.6520138296894482
4.5005422603740604 -4.3206511055854229 -3.1409613032062107
4.500541195880813 -3.1391785847987284 -4.3224405770522027
4.5005410462282018 -1.65035371600569 -5.0810346209557471
4.500542709330059 -1.5305516958299647e-005 -5.3424187069492568
4.500539503639712 1.6503307712076807 -5.0810322197914308
4.500550663296206 3.1391342898207362 -4.3224501817117202
4.5005454980308963 4.3206581686171779 -3.140933528389446
4.5005451082508747 5.0792358814542373 -1.6521202698868755
4.5005452385149329 5.3406390382344524 -0.001810872841815619
4.5005451072379064 5.0792024901716166 1.6486843122279036
4.5005455020801648 4.3207950308050949 3.1369459497331946
4.5005506481087396 3.1386202323489045 4.3204841232838511
4.5005395548783698 1.6522633287949127 5.0715267507688697
4.5005424718521656 -0.0072281690435455842 5.3610608593009355
4.5005420891937202 -1.0846992512742824 5.1167575693155989
4.5005418978644913 -1.6234347923896499 4.9946059243229248
;
createNode transform -n "chain_01_mover_geo" -p "chain_01_mover_offset";
rename -uid "56716D68-4642-61CC-F788-59B164F9EEBA";
setAttr ".ove" yes;
setAttr ".ovc" 20;
setAttr ".rp" -type "double3" -3.7978390114226095e-030 -2.9835608551757272e-016
-8.5519731783279969e-015 ;
setAttr ".sp" -type "double3" -3.7978390114226095e-030 -2.9835608551757272e-016
-8.5519731783279969e-015 ;
createNode nurbsCurve -n "chain_01_mover_geoShape" -p "chain_01_mover_geo";
rename -uid "23ADC040-4E64-07CA-B5FC-2CBE63031BC3";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 20 0 no 3
25 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 20 20
23
4.5005422191192057 -1.4597155131106396 4.4918753465726269
4.5005419553935218 -1.9161738791592753 4.2960053664660345
4.5005414279421014 -2.8290906112565306 3.9042654062528226
4.500542379110489 -3.8832078307077125 2.8165792764356157
4.5005423273622176 -4.5675408746572757 1.4846959426058266
4.5005416190567784 -4.801933999208905 -0.0010446644563553416
4.5005415464931167 -4.5671086544240316 -1.4844800011285046
4.5005425450630367 -3.8849367133306449 -2.8232776945595472
4.5005415879163735 -2.8226073069443833 -3.8856131730070262
4.5005414533551633 -1.4839198544212626 -4.5677083941566519
4.5005429487450099 -6.3540179256191652e-006 -4.8027337510963166
4.5005400663257706 1.4839140395358636 -4.5677062351327091
4.5005501006101492 2.8225822948930497 -3.8856218091048333
4.5005454562251712 3.884957880198455 -2.8232527206358311
4.5005451057516952 4.5670384171536869 -1.4845757075878248
4.5005452228795493 4.8020809217266374 -0.00068829482838275442
4.500545104840878 4.5670083931448158 1.4833661705526657
4.5005454598660961 3.8850809408065428 2.82154718966405
4.5005500869542292 2.8221200764670664 3.8857339424006745
4.5005401123973732 1.4856517124130006 4.5610392538569888
4.5005427352150758 -0.0064918514744745706 4.821375903447997
4.5005423911450189 -0.97530762589669961 4.6017088655252483
4.5005422191099838 -1.4597155131078108 4.4918753465638686
;
createNode transform -n "chain_01_proxy_geo" -p "chain_01_mover_geo";
rename -uid "46084787-4F8B-F825-AF63-92AC1D60F0E6";
setAttr ".ovdt" 2;
setAttr ".ove" yes;
setAttr ".rp" -type "double3" 9.4282745430838709e-023 1.3530298483943479e-016 2.1230586859489614e-007 ;
setAttr ".sp" -type "double3" 9.4282745430838709e-023 1.3530298483943479e-016 2.1230586859489614e-007 ;
createNode mesh -n "chain_01_proxy_geoShape" -p "chain_01_proxy_geo";
rename -uid "143A4702-4D8C-B625-4AB5-8F8CC491C33A";
setAttr -k off ".v";
setAttr -s 2 ".iog[0].og";
setAttr ".iog[0].og[0].gcl" -type "componentList" 2 "f[0:279]" "f[300:379]";
setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[280:299]";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".pv" -type "double2" 0.49999988079071045 0.50313049554824829 ;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 408 ".uvst[0].uvsp";
setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.52122897 0.1493523 0.51805842
0.14312978 0.51312023 0.13819158 0.50689769 0.13502105 0.5 0.13392857 0.49310228
0.13502105 0.4868798 0.13819158 0.48194158 0.1431298 0.47877106 0.1493523 0.47767857
0.15625 0.47877106 0.1631477 0.48194158 0.1693702 0.4868798 0.17430842 0.49310231
0.17747894 0.5 0.17857143 0.50689769 0.17747894 0.51312023 0.17430842 0.51805842
0.1693702 0.52122897 0.1631477 0.5223214 0.15625 0.54245794 0.14245459 0.53611684
0.13000958 0.52624041 0.12013315 0.51379544 0.11379209 0.5 0.11160712 0.48620459
0.1137921 0.47375959 0.12013315 0.46388316 0.13000958 0.45754212 0.14245459 0.45535713
0.15625 0.45754212 0.17004541 0.46388316 0.18249042 0.47375959 0.19236684 0.48620459
0.19870788 0.5 0.20089287 0.51379538 0.19870788 0.52624041 0.19236684 0.53611684
0.18249041 0.54245788 0.17004541 0.54464287 0.15625 0.56368685 0.13555691 0.55417526
0.11688937 0.53936064 0.10207474 0.52069312 0.09256316 0.5 0.089285702 0.47930688
0.092563167 0.46063936 0.10207475 0.44582474 0.11688939 0.43631315 0.13555691 0.4330357
0.15625001 0.43631315 0.17694312 0.44582474 0.19561064 0.46063936 0.21042526 0.47930691
0.21993685 0.5 0.2232143 0.52069312 0.21993685 0.53936064 0.21042526 0.55417526 0.19561064
0.56368685 0.17694312 0.56696427 0.15625001 0.58491582 0.12865917 0.57223374 0.10376914
0.55248088 0.084016293 0.52759081 0.071334191 0.5 0.066964239 0.47240919 0.071334198
0.44751915 0.084016308 0.42776632 0.10376915 0.41508421 0.12865919 0.41071427 0.15625
0.41508421 0.18384081 0.42776632 0.20873083 0.44751915 0.22848368 0.47240919 0.24116577
0.5 0.24553573 0.52759081 0.24116577 0.55248082 0.22848368 0.57223368 0.20873083
0.58491576 0.18384081 0.58928573 0.15625 0.60614479 0.12176147 0.59029216 0.090648927
0.56560105 0.065957867 0.5344885 0.050105236 0.5 0.044642799 0.46551147 0.050105244
0.43439895 0.065957889 0.4097079 0.090648942 0.39385527 0.12176149 0.38839281 0.15625
0.39385527 0.19073851 0.4097079 0.22185105 0.43439895 0.2465421 0.4655115 0.26239473
0.5 0.26785716 0.5344885 0.26239473 0.56560105 0.2465421 0.5902921 0.22185105 0.60614473
0.1907385 0.61160713 0.15625 0.62737375 0.11486377 0.60835057 0.077528708 0.57872128
0.047899432 0.54138625 0.028876275 0.5 0.022321358 0.45861378 0.02887629 0.42127872
0.047899462 0.39164948 0.07752873 0.3726263 0.11486378 0.3660714 0.15625 0.3726263
0.19763622 0.39164948 0.23497126 0.42127874 0.26460052 0.45861378 0.28362367 0.5
0.2901786 0.54138619 0.28362367 0.57872123 0.26460052 0.60835052 0.23497126 0.62737364
0.19763622 0.6339286 0.15625 0.64860272 0.10796605 0.62640899 0.064408474 0.59184152
0.029840991 0.54828393 0.0076473057 0.5 -1.0430813e-007 0.45171607 0.0076473206 0.40815851
0.029841021 0.37359107 0.064408503 0.35139737 0.10796607 0.34374994 0.15624999 0.35139737
0.2045339 0.37359107 0.24809146 0.40815854 0.28265893 0.45171607 0.3048526 0.5 0.3125
0.54828393 0.3048526 0.59184146 0.28265893 0.62640893 0.24809144 0.6486026 0.2045339
0.65625 0.15624999 0.64860272 0.79546607 0.62640899 0.75190848 0.59184152 0.71734101
0.54828393 0.69514728 0.5 0.68749988 0.45171607 0.69514734 0.40815851 0.71734101
0.37359107 0.75190848 0.35139737 0.79546607 0.34374994 0.84375 0.35139737 0.89203393
0.37359107 0.93559146 0.40815854 0.97015893 0.45171607 0.9923526 0.5 1 0.54828393
0.9923526 0.59184146 0.97015893 0.62640893 0.93559146 0.6486026 0.89203393 0.65625
0.84375 0.62737375 0.80236375 0.60835057 0.76502872 0.57872128 0.73539943 0.54138625
0.7163763 0.5 0.70982134 0.45861378 0.7163763 0.42127872 0.73539948 0.39164948 0.76502872
0.3726263 0.80236375 0.3660714 0.84375 0.3726263 0.88513625 0.39164948 0.92247128
0.42127874 0.95210052 0.45861378 0.9711237 0.5 0.9776786 0.54138619 0.9711237 0.57872123
0.95210052 0.60835052 0.92247128 0.62737364 0.88513625 0.6339286 0.84375 0.60614479
0.80926144 0.59029216 0.77814895 0.56560105 0.75345784 0.5344885 0.73760521 0.5 0.73214281
0.46551147 0.73760521 0.43439895 0.7534579 0.4097079 0.77814895 0.39385527 0.8092615
0.38839281 0.84375 0.39385527 0.8782385 0.4097079 0.90935105 0.43439895 0.9340421
0.4655115 0.94989473 0.5 0.95535719 0.5344885 0.94989473 0.56560105 0.9340421 0.5902921
0.90935105 0.60614473 0.8782385 0.61160713 0.84375 0.58491582 0.81615919 0.57223374
0.79126912 0.55248088 0.77151632 0.52759081 0.75883418 0.5 0.75446427 0.47240919
0.75883418 0.44751915 0.77151632 0.42776632 0.79126918 0.41508421 0.81615919 0.41071427
0.84375 0.41508421 0.87134081 0.42776632 0.89623082 0.44751915 0.91598368 0.47240919
0.92866576 0.5 0.93303573 0.52759081 0.92866576 0.55248082 0.91598368 0.57223368
0.89623082 0.58491576 0.87134081 0.58928573 0.84375 0.56368685 0.82305694 0.55417526
0.80438936 0.53936064 0.78957474 0.52069312 0.78006315 0.5 0.77678573 0.47930688
0.78006315 0.46063936 0.78957474 0.44582474 0.80438936 0.43631315 0.82305694 0.4330357
0.84375 0.43631315 0.86444312 0.44582474 0.88311064 0.46063936 0.89792526 0.47930691
0.90743685 0.5 0.91071427 0.52069312 0.90743685 0.53936064 0.89792526 0.55417526
0.88311064 0.56368685 0.86444312 0.56696427 0.84375 0.54245794 0.82995462 0.53611684
0.81750959 0.52624041 0.80763316 0.51379544 0.80129206 0.5 0.79910713 0.48620459
0.80129212 0.47375959 0.80763316 0.46388316 0.81750959 0.45754212 0.82995462 0.45535713
0.84375;
setAttr ".uvst[0].uvsp[250:407]" 0.45754212 0.85754538 0.46388316 0.86999041
0.47375959 0.87986684 0.48620459 0.88620788 0.5 0.88839287 0.51379538 0.88620788
0.52624041 0.87986684 0.53611684 0.86999041 0.54245788 0.85754538 0.54464287 0.84375
0.52122897 0.83685231 0.51805842 0.83062977 0.51312023 0.82569158 0.50689769 0.82252103
0.5 0.82142854 0.49310228 0.82252103 0.4868798 0.82569158 0.48194158 0.83062983 0.47877106
0.83685231 0.47767857 0.84375 0.47877106 0.85064769 0.48194158 0.85687017 0.4868798
0.86180842 0.49310231 0.86497891 0.5 0.86607146 0.50689769 0.86497891 0.51312023
0.86180842 0.51805842 0.85687017 0.52122897 0.85064769 0.5223214 0.84375 0.5 0.15000001
0.5 0.83749998 0.375 0.50313038 0.62499976 0.48497683 0.375 0.3125 0.38749999 0.3125
0.375 0.48497683 0.39999998 0.31250003 0.38749999 0.48497683 0.41249996 0.3125 0.39999998
0.48497683 0.42499995 0.3125 0.41249996 0.48497683 0.43749994 0.3125 0.42499995 0.48497683
0.44999993 0.3125 0.43749994 0.48497683 0.46249992 0.3125 0.44999993 0.48497683 0.4749999
0.31250003 0.46249992 0.48497683 0.48749989 0.3125 0.4749999 0.48497683 0.49999988
0.3125 0.48749989 0.48497683 0.51249981 0.31250003 0.49999988 0.48497683 0.52499986
0.3125 0.51249993 0.48497683 0.53749985 0.3125 0.52499986 0.48497683 0.54999983 0.3125
0.5374999 0.48497683 0.56249982 0.3125 0.54999983 0.48497683 0.57499981 0.3125 0.56249988
0.48497683 0.5874998 0.3125 0.57499981 0.48497683 0.59999979 0.3125 0.58749986 0.48497683
0.61249977 0.3125 0.59999979 0.48497683 0.62499976 0.3125 0.61249971 0.4849768 0.54999983
0.50313038 0.53749985 0.68843979 0.5374999 0.50313038 0.52499986 0.68843979 0.52499986
0.50313038 0.51249981 0.68843979 0.51249993 0.50313038 0.49999988 0.68843985 0.49999988
0.50313038 0.48749989 0.68843985 0.48749989 0.50313038 0.4749999 0.68843979 0.4749999
0.50313038 0.46249992 0.68843979 0.46249992 0.50313038 0.44999993 0.68843979 0.44999993
0.50313038 0.43749994 0.68843979 0.43749994 0.50313038 0.42499995 0.68843985 0.42499995
0.50313038 0.41249996 0.68843979 0.41249996 0.50313038 0.39999998 0.68843979 0.39999998
0.50313038 0.38749999 0.68843985 0.38749999 0.50313038 0.375 0.68843985 0.62499976
0.50313038 0.62499976 0.68843979 0.61249977 0.68843985 0.61249977 0.50313038 0.59999979
0.68843979 0.59999979 0.50313038 0.5874998 0.68843979 0.58749986 0.50313038 0.57499981
0.68843979 0.57499981 0.50313038 0.56249982 0.68843979 0.56249988 0.50313061 0.54999983
0.68843985 0.54999983 0.48497683 0.56249988 0.48497683 0.56249988 0.50313061 0.54999983
0.50313038 0.5374999 0.50313038 0.5374999 0.48497683 0.52499986 0.50313038 0.52499986
0.48497683 0.51249993 0.50313038 0.51249993 0.48497683 0.49999988 0.50313038 0.49999988
0.48497683 0.48749989 0.50313038 0.48749989 0.48497683 0.4749999 0.50313038 0.4749999
0.48497683 0.46249992 0.50313038 0.46249992 0.48497683 0.44999993 0.50313038 0.44999993
0.48497683 0.43749994 0.50313038 0.43749994 0.48497683 0.42499995 0.50313038 0.42499995
0.48497683 0.41249996 0.50313038 0.41249996 0.48497683 0.39999998 0.50313038 0.39999998
0.48497683 0.38749999 0.50313038 0.38749999 0.48497683 0.375 0.50313038 0.375 0.48497683
0.62499976 0.50313038 0.61249977 0.50313038 0.61249971 0.4849768 0.62499976 0.48497683
0.59999979 0.50313038 0.59999979 0.48497683 0.58749986 0.50313038 0.58749986 0.48497683
0.57499981 0.50313038 0.57499981 0.48497683;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr -s 362 ".pt";
setAttr ".pt[0:165]" -type "float3" 12.218854 -0.24076542 14.090897 12.433249
-0.4579623 13.987168 12.767179 -0.6303317 13.825608 13.187953 -0.74099928 13.622031
13.654386 -0.7791326 13.396363 14.120818 -0.74099928 13.170695 14.541594 -0.6303317
12.967118 14.875522 -0.4579623 12.805558 15.089917 -0.24076542 12.70183 15.163794
4.491731e-017 12.666088 15.089918 0.24076542 12.70183 14.875523 0.4579623 12.805558
14.541595 0.6303317 12.967118 14.120819 0.74099928 13.170695 13.654387 0.7791326
13.396363 13.187954 0.74099928 13.622031 12.767179 0.6303317 13.825608 12.43325 0.4579623
13.987168 12.218855 0.24076542 14.090897 12.144979 9.0308925e-015 14.126638 10.612586
-0.46945667 14.248923 11.030625 -0.8929612 14.046669 11.681739 -1.2290553 13.73165
12.502189 -1.4448406 13.334703 13.411666 -1.519196 12.894684 14.321143 -1.4448406
12.454664 15.141593 -1.2290553 12.057717 15.792706 -0.8929612 11.742699 16.210747
-0.46945667 11.540444 16.354794 -4.2576967e-015 11.470753 16.210747 0.46945667 11.540444
15.792706 0.8929612 11.742699 15.141593 1.2290553 12.057717 14.321143 1.4448406 12.454664
13.411666 1.519196 12.894684 12.502189 1.4448406 13.334703 11.681739 1.2290553 13.73165
11.030625 0.8929612 14.046669 10.612586 0.46945667 14.248923 10.468539 1.3263652e-014
14.318615 8.9984074 -0.67460912 14.032589 9.5991297 -1.2831826 13.741949 10.534778
-1.7661487 13.289268 11.713763 -2.0762329 12.718856 13.020679 -2.18308 12.08655 14.327594
-2.0762329 11.454244 15.506579 -1.7661487 10.883831 16.442226 -1.2831826 10.43115
17.04295 -0.67460912 10.140511 17.249945 -8.2350695e-015 10.040363 17.04295 0.67460912
10.140511 16.442226 1.2831826 10.43115 15.506579 1.7661487 10.883832 14.327594 2.0762329
11.454244 13.020679 2.18308 12.08655 11.713763 2.0762329 12.718856 10.534778 1.7661487
13.289268 9.5991297 1.2831826 13.741949 8.9984074 0.67460912 14.032589 8.7914114
1.6943071e-014 14.132736 7.4572582 -0.8459332 13.452738 8.2105398 -1.6090591 13.088287
9.3838081 -2.2146804 12.520643 10.862207 -2.603514 11.805369 12.501028 -2.7374966
11.012483 14.139849 -2.603514 10.219596 15.618248 -2.2146804 9.5043221 16.791512
-1.6090591 8.936677 17.544798 -0.8459332 8.5722275 17.804361 -1.1687754e-014 8.4466457
17.544796 0.8459332 8.5722275 16.791512 1.6090591 8.9366779 15.618248 2.2146814 9.5043221
14.139848 2.6035132 10.219596 12.501027 2.7374957 11.012483 10.862206 2.6035132 11.805369
9.3838081 2.2146814 12.520643 8.2105398 1.6090591 13.088287 7.4572573 0.8459332 13.452738
7.1976948 1.9884639e-014 13.57832 6.0664234 -0.97483796 12.538451 6.9344921 -1.8542528
12.118465 8.2865429 -2.5521595 11.464322 9.9902248 -3.0002432 10.640053 11.878774
-3.1546426 9.7263441 13.767321 -3.0002432 8.8126354 15.471003 -2.5521595 7.9883661
16.823053 -1.8542528 7.3342228 17.691124 -0.97483796 6.914237 17.990242 -1.4442616e-014
6.7695189 17.691122 0.97483796 6.914237 16.823055 1.8542528 7.3342228 15.471004 2.5521595
7.9883661 13.767321 3.0002422 8.8126354 11.878774 3.1546426 9.7263441 9.9902248 3.0002422
10.640053 8.2865438 2.5521595 11.464322 6.9344931 1.8542528 12.118465 6.0664215 0.97483796
12.538451 5.7673063 2.1940855e-014 12.683169 4.8956404 -1.0548606 11.335573 5.8349686
-2.0064654 10.881111 7.2980061 -2.7616613 10.17327 9.1415415 -3.2465279 9.2813387
11.185117 -3.4136016 8.2926245 13.228692 -3.2465279 7.3039107 15.072226 -2.7616613
6.4119787 16.535263 -2.0064654 5.7041383 17.474594 -1.0548606 5.2496762 17.798264
-1.6361517e-014 5.0930786 17.474592 1.0548614 5.2496762 16.535263 2.0064654 5.7041383
15.072227 2.7616613 6.4119787 13.228691 3.2465274 7.3039107 11.185116 3.4136016 8.2926245
9.1415405 3.2465274 9.2813387 7.298007 2.7616613 10.17327 5.8349695 2.0064654 10.881111
4.8956394 1.0548614 11.335573 4.571969 2.3008608e-014 11.49217 4.0036135 -1.0623503
9.9648638 4.9671021 -2.0207102 9.489687 6.4677629 -2.7812679 8.7495823 8.3587112
-3.2695763 7.8169956 10.454842 -3.4378369 6.7832155 12.550971 -3.2695765 5.7494354
14.441916 -2.7812679 4.8168492 15.94258 -2.0207098 4.0767446 16.906065 -1.0623492
3.6015682 17.23806 -1.8980248e-014 3.4378338 16.906063 1.0623492 3.6015682 15.942579
2.020709 4.0767446 14.441916 2.7812669 4.8168497 12.550971 3.2695768 5.7494359 10.454841
3.4378359 6.7832155 8.3587122 3.2695761 7.8169951 6.4677658 2.7812669 8.7495813 4.967103
2.020709 9.489686 4.0036182 1.0623494 9.9648628 3.6716261 2.343727e-014 10.128596
-1.9506841 -0.73300481 -2.5879374 -0.98719263 -1.3942537 -3.2144988 0.51346922 -1.9190235
-4.1903906 2.4044151 -2.2559481 -5.4200869 4.500545 -2.3720446 -6.7832155 6.5966754
-2.2559476 -8.1463432 8.4876232 -1.9190235 -9.3760395 9.988287 -1.3942535 -10.351932
10.951767 -0.73300493 -10.978493 11.28376 -3.0194089e-014 -11.194389 10.951765 0.73300469
-10.978493 9.9882813 1.3942494 -10.351931 8.4876175 1.9190295 -9.3760386 6.5966725
2.2559376 -8.1463432 4.5005422 2.3720484 -6.7832155 2.4044132 2.2559381 -5.4200878
0.51346779 1.9190295 -4.1903925 -0.98719597 1.3942494 -3.2145002 -1.9506803 0.73300445
-2.5879393 -2.2826729 2.5737059e-014 -2.3720427 -2.7903965 -0.6876961 -4.1196661
-1.8510685 -1.3080802 -4.7428942 -0.38803148 -1.8004174 -5.713594 1.4555042 -2.1165185
-6.936748 3.4990795 -2.2254405 -8.2926245 5.5426545 -2.1165185 -9.6485004;
setAttr ".pt[166:331]" 7.3861895 -1.8004174 -10.871655 8.849227 -1.3080802
-11.842355 9.7885551 -0.6876961 -12.465581 10.112226 -2.9342936e-014 -12.680332 9.7885551
0.68770659 -12.465582 8.849227 1.3080766 -11.842355 7.3861895 1.8004119 -10.871655
5.5426545 2.1165166 -9.6485004 3.4990792 2.2254443 -8.2926245 1.4555044 2.1165166
-6.936748 -0.38803124 1.8004119 -5.713594 -1.8510685 1.3080766 -4.7428942 -2.7903965
0.68770659 -4.1196661 -3.114068 2.5092409e-014 -3.9049158 -3.2645197 -0.63552725
-5.8699508 -2.3964505 -1.2088511 -6.4458985 -1.0443995 -1.663837 -7.3429623 0.6592834
-1.9559565 -8.4733257 2.5478306 -2.0566154 -9.7263441 4.4363775 -1.9559565 -10.979362
6.1400604 -1.663837 -12.109726 7.4921112 -1.2088511 -13.006788 8.3601809 -0.63552725
-13.582739 8.6592979 -2.7794654e-014 -13.781197 8.3601856 0.63552749 -13.582739 7.4921169
1.2088511 -13.006788 6.1400657 1.6638305 -12.109726 4.4363832 1.9559455 -10.979362
2.5478356 2.0566058 -9.7263441 0.65928841 1.9559455 -8.4733257 -1.0443949 1.6638305
-7.3429613 -2.3964458 1.2088511 -6.4458985 -3.2645147 0.63552749 -5.8699508 -3.5636368
2.2511175e-014 -5.6714911 -3.3492684 -0.5514915 -7.666029 -2.5959854 -1.048995 -8.1658192
-1.4227195 -1.4438188 -8.9442606 0.055678129 -1.6973178 -9.9251537 1.6944983 -1.7846663
-11.012483 3.3333182 -1.6973178 -12.099812 4.8117204 -1.4438188 -13.080704 5.9849873
-1.048995 -13.859146 6.7382698 -0.5514915 -14.358936 6.9978309 -2.4964378e-014 -14.531153
6.7382674 0.55149102 -14.358936 5.9849844 1.0489948 -13.859146 4.811718 1.4438293
-13.080704 3.3333182 1.6973283 -12.099812 1.6944983 1.7846768 -11.012483 0.055678129
1.6973283 -9.9251537 -1.4227216 1.4438293 -8.9442616 -2.595988 1.0489948 -8.1658192
-3.3492711 0.55149102 -7.666029 -3.6088347 1.8689387e-014 -7.493813 -3.0403957 -0.43979883
-9.4178429 -2.4396734 -0.83654654 -9.816411 -1.5040256 -1.1514158 -10.437197 -0.32504022
-1.3535621 -11.219434 0.98187506 -1.4232225 -12.08655 2.2887902 -1.3535621 -12.953665
3.4677758 -1.1514158 -13.735901 4.4034238 -0.83654654 -14.356688 5.0041466 -0.43979883
-14.755257 5.2111416 -2.0994028e-014 -14.892594 5.0041466 0.43979883 -14.755257 4.4034238
0.83654678 -14.356688 3.4677758 1.151403 -13.735901 2.2887902 1.3535521 -12.953665
0.98187506 1.4232326 -12.08655 -0.32504022 1.3535521 -11.219434 -1.5040255 1.151403
-10.437197 -2.4396734 0.83654678 -9.816411 -3.040396 0.43979883 -9.4178429 -3.2473917
1.3818684e-014 -9.2805052 -2.3533874 -0.30605161 -11.037542 -1.9353476 -0.58215761
-11.314904 -1.284236 -0.80125165 -11.746907 -0.46378598 -0.94193721 -12.291262 0.44569042
-0.99042058 -12.894684 1.3551668 -0.94193721 -13.498106 2.1756182 -0.80125165 -14.04246
2.8267331 -0.58215761 -14.474462 3.2447729 -0.30605161 -14.751824 3.3888197 -1.6082694e-014
-14.847397 3.2447731 0.30605161 -14.751824 2.8267324 0.58215761 -14.474462 2.1756175
0.80125165 -14.04246 1.3551668 0.94195175 -13.498106 0.44569042 0.99040341 -12.894684
-0.46378598 0.94195175 -12.291262 -1.2842366 0.80125165 -11.746907 -1.9353483 0.58215761
-11.314904 -2.3533871 0.30605161 -11.037542 -2.4974346 8.1433146e-015 -10.941969
-1.3226948 -0.1569652 -12.443913 -1.1082991 -0.29856384 -12.586161 -0.77437037 -0.41092736
-12.807716 -0.35359538 -0.48307931 -13.086893 0.1128372 -0.50794494 -13.396363 0.57926989
-0.48307931 -13.705832 1.0000448 -0.41092736 -13.985009 1.3339735 -0.29856384 -14.206566
1.5483691 -0.1569652 -14.348814 1.6222444 -1.0476657e-014 -14.397829 1.5483687 0.15696532
-14.348814 1.3339733 0.29856384 -14.206566 1.0000447 0.41092736 -13.985009 0.57926989
0.48307943 -13.705832 0.11283726 0.50794542 -13.396363 -0.35359544 0.48307943 -13.086893
-0.77437055 0.41092736 -12.807716 -1.1082994 0.29856384 -12.586161 -1.322695 0.15696532
-12.443913 -1.3965704 1.9478509e-015 -12.394897 13.736668 4.4570272e-015 13.566431
0 -4.4570272e-015 -13.566431 7.0950336 2.8123922 -0.096006654 7.4750414 2.8483834
0.55909485 9.5711727 2.7089739 -0.6568352 9.191164 2.6747432 -1.3230592 11.462118
2.3043895 -1.7537413 11.08211 2.2752707 -2.4299991 12.962781 1.6742382 -2.6242521
12.582773 1.6530805 -3.3084722 13.926265 0.88019979 -3.1831532 13.546258 0.86907673
-3.8724861 14.25826 -2.4869643e-014 -3.3757381 13.878252 -2.5097825e-014 -4.0668325
13.926267 -0.88019848 -3.1831532 13.546258 -0.86907625 -3.8724861 12.962782 -1.6742375
-2.6242521 12.582774 -1.6530817 -3.3084724 11.462119 -2.3043907 -1.7537422 11.082106
-2.2752717 -2.4299998 9.5711784 -2.7089753 -0.65683579 9.1911602 -2.6747432 -1.3230598
7.4750471 -2.8483863 0.55909503 7.0950294 -2.8123922 -0.096006654 5.3789158 -2.7089748
1.7750258 4.998899 -2.6747446 1.1310463 3.4879656 -2.3043907 2.8719327 3.1079526
-2.2752717 2.2379868 1.9873028 -1.6742368 3.7424424 1.6072946 -1.6530819 3.1164591
1.0238152 -0.88019907 4.3013449 0.64380789 -0.86907685 3.6804743 0.69182587 2.5754791e-014
4.493926 0.3118186 2.4469015e-014 3.8748164 1.023818 0.88019955 4.301343 0.64381075
0.86907601 3.6804724 1.9873037 1.6742382 3.7424409 1.607296 1.6530805 3.1164577 3.4879675
2.3043895 2.8719313 3.1079597 2.2752707 2.2379854 5.3789129 2.7089734 1.7750252 4.9989052
2.6747422 1.1310457 7.0950346 2.7643762 -0.096006878 7.4750423 2.7643766 0.55909485
5.4407358 2.6290767 1.7391627 5.0607281 2.6290767 1.0840609 9.1293411 2.629077 -1.2760749
9.5093489 2.629077 -0.62097311 10.964515 2.2364287 -2.3406289 11.344522 2.2364287
-1.6855271 12.420918 1.6248586 -3.1854641 12.800926 1.6248586 -2.5303624;
setAttr ".pt[332:361]" 13.355987 0.85423863 -3.7278819 13.735993 0.85423815
-3.0727799 13.678188 -2.4209965e-014 -3.9147859 14.058196 -2.4209963e-014 -3.2596841
13.355987 -0.85423863 -3.7278819 13.735995 -0.85423863 -3.0727799 12.420919 -1.6248586
-3.1854649 12.800926 -1.6248586 -2.5303631 10.964516 -2.2364299 -2.3406293 11.344523
-2.2364299 -1.6855276 9.1293373 -2.6290772 -1.276075 9.5093546 -2.6290777 -0.62097323
7.0950294 -2.7643771 -0.096006654 7.4750471 -2.7643762 0.55909503 5.0607224 -2.6290781
1.0840615 5.4407396 -2.6290786 1.7391633 3.2255511 -2.2364299 2.1486166 3.6055584
-2.2364299 2.8037183 1.7691483 -1.6248596 2.9934516 2.1491556 -1.6248596 3.6485534
0.83407879 -0.85423863 3.5358698 1.2140875 -0.85423863 4.1909714 0.51188135 -2.1220723e-007
3.7227716 0.89188862 -2.1220723e-007 4.3778734 0.83408213 0.85423839 3.5358684 1.2140894
0.85423839 4.1909704 1.7691512 1.6248586 2.9934502 2.1491585 1.6248586 3.6485519
3.225553 2.2364287 2.1486151 3.6055613 2.2364287 2.8037169;
setAttr -s 362 ".vt";
setAttr ".vt[0:165]" 1.43553185 0.46643266 -13.39636326 1.22113633 0.88720763 -13.39636326
0.88720763 1.22113633 -13.39636326 0.46643266 1.43553185 -13.39636326 -2.7727369e-016 1.5094074 -13.39636326
-0.46643266 1.43553185 -13.39636326 -0.88720763 1.22113633 -13.39636326 -1.22113633 0.88720763 -13.39636326
-1.43553185 0.46643266 -13.39636326 -1.5094074 -3.1594397e-015 -13.39636326 -1.43553185 -0.46643266 -13.39636326
-1.22113633 -0.88720763 -13.39636326 -0.88720763 -1.22113633 -13.39636326 -0.46643266 -1.43553185 -13.39636326
9.2424576e-017 -1.5094074 -13.39636326 0.46643266 -1.43553185 -13.39636326 0.88720763 -1.22113633 -13.39636326
1.22113633 -0.88720763 -13.39636326 1.43553185 -0.46643266 -13.39636326 1.5094074 -2.9745906e-015 -13.39636326
2.79908013 0.9094764 -12.89468384 2.38104033 1.72992694 -12.89468384 1.72992694 2.38104033 -12.89468384
0.9094764 2.79908013 -12.89468384 -5.4064371e-016 2.94312716 -12.89468384 -0.9094764 2.79908013 -12.89468384
-1.72992694 2.38104033 -12.89468384 -2.38104033 1.72992694 -12.89468384 -2.79908013 0.9094764 -12.89468384
-2.94312716 -3.2236242e-015 -12.89468384 -2.79908013 -0.9094764 -12.89468384 -2.38104033 -1.72992694 -12.89468384
-1.72992694 -2.38104033 -12.89468384 -0.9094764 -2.79908013 -12.89468384 1.802146e-016 -2.94312716 -12.89468384
0.9094764 -2.79908013 -12.89468384 1.72992694 -2.38104033 -12.89468384 2.38104033 -1.72992694 -12.89468384
2.79908013 -0.9094764 -12.89468384 2.94312716 -2.8631954e-015 -12.89468384 4.022271156 1.30691528 -12.086549759
3.4215486 2.48590064 -12.086549759 2.48590064 3.4215486 -12.086549759 1.30691528 4.022271156 -12.086549759
-7.7690365e-016 4.22926664 -12.086549759 -1.30691528 4.022271156 -12.086549759 -2.48590064 3.4215486 -12.086549759
-3.4215486 2.48590064 -12.086549759 -4.022271156 1.30691528 -12.086549759 -4.22926664 -3.2016892e-015 -12.086549759
-4.022271156 -1.30691528 -12.086549759 -3.4215486 -2.48590064 -12.086549759 -2.48590064 -3.4215486 -12.086549759
-1.30691528 -4.022271156 -12.086549759 2.5896788e-016 -4.22926664 -12.086549759 1.30691528 -4.022271156 -12.086549759
2.48590064 -3.4215486 -12.086549759 3.4215486 -2.48590064 -12.086549759 4.022271156 -1.30691528 -12.086549759
4.22926664 -2.6837536e-015 -12.086549759 5.04376936 1.63882005 -11.012482643 4.29048634 3.11721992 -11.012482643
3.11721992 4.29048634 -11.012482643 1.63882005 5.04376936 -11.012482643 -9.7420626e-016 5.30333281 -11.012482643
-1.63882005 5.04376936 -11.012482643 -3.11721992 4.29048634 -11.012482643 -4.29048634 3.11721992 -11.012482643
-5.04376936 1.63882005 -11.012482643 -5.30333281 -3.0947329e-015 -11.012482643 -5.04376936 -1.63882005 -11.012482643
-4.29048634 -3.11721992 -11.012482643 -3.11721992 -4.29048634 -11.012482643 -1.63882005 -5.04376936 -11.012482643
3.2473544e-016 -5.30333281 -11.012482643 1.63882005 -5.04376936 -11.012482643 3.11721992 -4.29048634 -11.012482643
4.29048634 -3.11721992 -11.012482643 5.04376936 -1.63882005 -11.012482643 5.30333281 -2.4452626e-015 -11.012482643
5.81235027 1.8885473 -9.72634411 4.9442811 3.59223008 -9.72634411 3.59223008 4.9442811 -9.72634411
1.8885473 5.81235027 -9.72634411 -1.1226583e-015 6.11146736 -9.72634411 -1.8885473 5.81235027 -9.72634411
-3.59223008 4.9442811 -9.72634411 -4.9442811 3.59223008 -9.72634411 -5.81235027 1.8885473 -9.72634411
-6.11146736 -2.9081216e-015 -9.72634411 -5.81235027 -1.8885473 -9.72634411 -4.9442811 -3.59223008 -9.72634411
-3.59223008 -4.9442811 -9.72634411 -1.8885473 -5.81235027 -9.72634411 3.7421942e-016 -6.11146736 -9.72634411
1.8885473 -5.81235027 -9.72634411 3.59223008 -4.9442811 -9.72634411 4.9442811 -3.59223008 -9.72634411
5.81235027 -1.8885473 -9.72634411 6.11146736 -2.1596827e-015 -9.72634411 6.28947592 2.043575048 -8.29262447
5.35014772 3.88711047 -8.29262447 3.88711047 5.35014772 -8.29262447 2.043575048 6.28947592 -8.29262447
-1.2148152e-015 6.61314726 -8.29262447 -2.043575048 6.28947592 -8.29262447 -3.88711047 5.35014772 -8.29262447
-5.35014772 3.88711047 -8.29262447 -6.28947592 2.043575048 -8.29262447 -6.61314726 -2.6512097e-015 -8.29262447
-6.28947592 -2.043575048 -8.29262447 -5.35014772 -3.88711047 -8.29262447 -3.88711047 -5.35014772 -8.29262447
-2.043575048 -6.28947592 -8.29262447 4.0493853e-016 -6.61314726 -8.29262447 2.043575048 -6.28947592 -8.29262447
3.88711047 -5.35014772 -8.29262447 5.35014772 -3.88711047 -8.29262447 6.28947592 -2.043575048 -8.29262447
6.61314726 -1.8413327e-015 -8.29262447 6.45122671 2.09613061 -6.78321552 5.48774004 3.98707724 -6.78321552
3.98707724 5.48774004 -6.78321552 2.096130371 6.45122623 -6.78321552 0 6.78322029 -6.78321552
-2.096130371 6.45122576 -6.78321552 -3.98707652 5.48774004 -6.78321552 -5.48773956 3.98707604 -6.78321552
-6.45122385 2.096129894 -6.78321552 -6.78321791 -1.5061765e-015 -6.78321552 -6.45122385 -2.096129894 -6.78321552
-5.48773909 -3.98707533 -6.78321552 -3.98707533 -5.48773766 -6.78321552 -2.096129894 -6.45122385 -6.78321552
-2.0215558e-007 -6.78321791 -6.78321552 2.096129179 -6.45122337 -6.78321552 3.98707485 -5.48773766 -6.78321552
5.48773766 -3.98707533 -6.78321552 6.4512229 -2.096129417 -6.78321552 6.78321552 -1.5061765e-015 -6.78321552
6.45122671 2.09613061 6.78321552 5.48774004 3.98707724 6.78321552 3.98707724 5.48774004 6.78321552
2.096130371 6.45122623 6.78321552 0 6.78322029 6.78321552 -2.096130371 6.45122576 6.78321552
-3.98707652 5.48774004 6.78321552 -5.48773956 3.98707604 6.78321552 -6.45122385 2.096129894 6.78321552
-6.78321791 1.5061765e-015 6.78321552 -6.45122385 -2.096129894 6.78321552 -5.48773909 -3.98707533 6.78321552
-3.98707533 -5.48773766 6.78321552 -2.096129894 -6.45122385 6.78321552 -2.0215558e-007 -6.78321791 6.78321552
2.096129179 -6.45122337 6.78321552 3.98707485 -5.48773766 6.78321552 5.48773766 -3.98707533 6.78321552
6.4512229 -2.096129417 6.78321552 6.78321552 1.5061765e-015 6.78321552 6.28947592 2.043575048 8.29262447
5.35014772 3.88711047 8.29262447 3.88711047 5.35014772 8.29262447 2.043575048 6.28947592 8.29262447
-1.2148152e-015 6.61314726 8.29262447 -2.043575048 6.28947592 8.29262447;
setAttr ".vt[166:331]" -3.88711047 5.35014772 8.29262447 -5.35014772 3.88711047 8.29262447
-6.28947592 2.043575048 8.29262447 -6.61314726 1.0314558e-015 8.29262447 -6.28947592 -2.043575048 8.29262447
-5.35014772 -3.88711047 8.29262447 -3.88711047 -5.35014772 8.29262447 -2.043575048 -6.28947592 8.29262447
4.0493853e-016 -6.61314726 8.29262447 2.043575048 -6.28947592 8.29262447 3.88711047 -5.35014772 8.29262447
5.35014772 -3.88711047 8.29262447 6.28947592 -2.043575048 8.29262447 6.61314726 1.8413327e-015 8.29262447
5.81235027 1.8885473 9.72634411 4.9442811 3.59223008 9.72634411 3.59223008 4.9442811 9.72634411
1.8885473 5.81235027 9.72634411 -1.1226583e-015 6.11146736 9.72634411 -1.8885473 5.81235027 9.72634411
-3.59223008 4.9442811 9.72634411 -4.9442811 3.59223008 9.72634411 -5.81235027 1.8885473 9.72634411
-6.11146736 1.4112436e-015 9.72634411 -5.81235027 -1.8885473 9.72634411 -4.9442811 -3.59223008 9.72634411
-3.59223008 -4.9442811 9.72634411 -1.8885473 -5.81235027 9.72634411 3.7421942e-016 -6.11146736 9.72634411
1.8885473 -5.81235027 9.72634411 3.59223008 -4.9442811 9.72634411 4.9442811 -3.59223008 9.72634411
5.81235027 -1.8885473 9.72634411 6.11146736 2.1596827e-015 9.72634411 5.04376936 1.63882005 11.012482643
4.29048634 3.11721992 11.012482643 3.11721992 4.29048634 11.012482643 1.63882005 5.04376936 11.012482643
-9.7420626e-016 5.30333281 11.012482643 -1.63882005 5.04376936 11.012482643 -3.11721992 4.29048634 11.012482643
-4.29048634 3.11721992 11.012482643 -5.04376936 1.63882005 11.012482643 -5.30333281 1.7957916e-015 11.012482643
-5.04376936 -1.63882005 11.012482643 -4.29048634 -3.11721992 11.012482643 -3.11721992 -4.29048634 11.012482643
-1.63882005 -5.04376936 11.012482643 3.2473544e-016 -5.30333281 11.012482643 1.63882005 -5.04376936 11.012482643
3.11721992 -4.29048634 11.012482643 4.29048634 -3.11721992 11.012482643 5.04376936 -1.63882005 11.012482643
5.30333281 2.4452626e-015 11.012482643 4.022271156 1.30691528 12.086549759 3.4215486 2.48590064 12.086549759
2.48590064 3.4215486 12.086549759 1.30691528 4.022271156 12.086549759 -7.7690365e-016 4.22926664 12.086549759
-1.30691528 4.022271156 12.086549759 -2.48590064 3.4215486 12.086549759 -3.4215486 2.48590064 12.086549759
-4.022271156 1.30691528 12.086549759 -4.22926664 2.1658179e-015 12.086549759 -4.022271156 -1.30691528 12.086549759
-3.4215486 -2.48590064 12.086549759 -2.48590064 -3.4215486 12.086549759 -1.30691528 -4.022271156 12.086549759
2.5896788e-016 -4.22926664 12.086549759 1.30691528 -4.022271156 12.086549759 2.48590064 -3.4215486 12.086549759
3.4215486 -2.48590064 12.086549759 4.022271156 -1.30691528 12.086549759 4.22926664 2.6837536e-015 12.086549759
2.79908013 0.9094764 12.89468384 2.38104033 1.72992694 12.89468384 1.72992694 2.38104033 12.89468384
0.9094764 2.79908013 12.89468384 -5.4064371e-016 2.94312716 12.89468384 -0.9094764 2.79908013 12.89468384
-1.72992694 2.38104033 12.89468384 -2.38104033 1.72992694 12.89468384 -2.79908013 0.9094764 12.89468384
-2.94312716 2.5027655e-015 12.89468384 -2.79908013 -0.9094764 12.89468384 -2.38104033 -1.72992694 12.89468384
-1.72992694 -2.38104033 12.89468384 -0.9094764 -2.79908013 12.89468384 1.802146e-016 -2.94312716 12.89468384
0.9094764 -2.79908013 12.89468384 1.72992694 -2.38104033 12.89468384 2.38104033 -1.72992694 12.89468384
2.79908013 -0.9094764 12.89468384 2.94312716 2.8631954e-015 12.89468384 1.43553185 0.46643266 13.39636326
1.22113633 0.88720763 13.39636326 0.88720763 1.22113633 13.39636326 0.46643266 1.43553185 13.39636326
-2.7727369e-016 1.5094074 13.39636326 -0.46643266 1.43553185 13.39636326 -0.88720763 1.22113633 13.39636326
-1.22113633 0.88720763 13.39636326 -1.43553185 0.46643266 13.39636326 -1.5094074 2.7897413e-015 13.39636326
-1.43553185 -0.46643266 13.39636326 -1.22113633 -0.88720763 13.39636326 -0.88720763 -1.22113633 13.39636326
-0.46643266 -1.43553185 13.39636326 9.2424576e-017 -1.5094074 13.39636326 0.46643266 -1.43553185 13.39636326
0.88720763 -1.22113633 13.39636326 1.22113633 -0.88720763 13.39636326 1.43553185 -0.46643266 13.39636326
1.5094074 2.9745906e-015 13.39636326 0 -3.012353e-015 -13.56643105 0 3.012353e-015 13.56643105
-2.0493881e-007 -6.78321791 0.096006878 -2.0513554e-007 -6.78321791 -0.55909485 -2.096129894 -6.45122385 -0.55909485
-2.096129894 -6.45122385 0.096006878 -3.98707533 -5.48773766 -0.55909485 -3.98707533 -5.48773766 0.096006878
-5.48773909 -3.98707533 -0.55909485 -5.48773909 -3.98707533 0.096006878 -6.45122385 -2.096129894 -0.55909485
-6.45122385 -2.096129894 0.096006878 -6.78321791 -5.1413107e-017 -0.55909485 -6.78321791 -5.14131e-017 0.096006878
-6.45122385 2.096129894 -0.55909485 -6.45122385 2.096129894 0.096006878 -5.48773956 3.98707652 -0.55909485
-5.48773956 3.98707652 0.096006878 -3.98707652 5.48774004 -0.55909485 -3.98707652 5.48774004 0.096006878
-2.09613061 6.45122576 -0.55909485 -2.09613061 6.45122576 0.096006878 -3.7629146e-008 6.78322029 -0.55909485
-3.5145018e-008 6.78322029 0.096006878 2.09613061 6.45122671 -0.55909485 2.09613061 6.45122671 0.096006878
3.98707724 5.48774004 -0.55909485 3.98707724 5.48774004 0.096006878 5.48774004 3.98707724 -0.55909485
5.48774004 3.98707724 0.096006878 6.45122671 2.09613061 -0.55909485 6.45122671 2.09613061 0.096006878
6.78321552 -5.4683468e-016 -0.55909485 6.78321552 4.7639738e-016 0.096006878 6.45122337 -2.096129417 -0.55909485
6.45122337 -2.096129417 0.096006878 5.48773766 -3.98707533 -0.55909485 5.48773766 -3.98707533 0.096006878
3.98707485 -5.48773766 -0.55909485 3.98707485 -5.48773766 0.096006878 2.096129417 -6.45122337 -0.55909485
2.096129417 -6.45122337 0.096006878 -2.3096798e-007 -6.58315468 0.096006878 -2.3096798e-007 -6.58315468 -0.55909485
2.034306526 -6.26095247 -0.55909485 2.034306526 -6.26095247 0.096006878 -2.034307003 -6.26095295 0.096006878
-2.034307003 -6.26095295 -0.55909485 -3.86948085 -5.32588339 0.096006878 -3.86948085 -5.32588339 -0.55909485
-5.32588387 -3.86948085 0.096006878 -5.32588387 -3.86948085 -0.55909485;
setAttr ".vt[332:361]" -6.26095247 -2.034307003 0.096006878 -6.26095247 -2.034307003 -0.55909485
-6.58315468 0 0.096006878 -6.58315468 0 -0.55909485 -6.26095247 2.034307003 0.096006878
-6.26095247 2.034307003 -0.55909485 -5.32588482 3.86948204 0.096006878 -5.32588482 3.86948204 -0.55909485
-3.86948204 5.32588577 0.096006878 -3.86948204 5.32588577 -0.55909485 -2.03430748 6.2609539 0.096006878
-2.03430748 6.2609539 -0.55909485 7.4505802e-009 6.58315706 0.096006878 5.5879354e-009 6.58315706 -0.55909485
2.03430748 6.26095581 0.096006878 2.03430748 6.26095581 -0.55909485 3.86948299 5.32588577 0.096006878
3.86948299 5.32588577 -0.55909485 5.32588577 3.86948299 0.096006878 5.32588577 3.86948299 -0.55909485
6.26095533 2.034307957 0.096006878 6.26095533 2.034307957 -0.55909485 6.58315277 1.4342366e-007 0.096006878
6.58315277 1.4342366e-007 -0.55909485 6.26095247 -2.034306526 0.096006878 6.26095247 -2.034306526 -0.55909485
5.32588339 -3.86948085 0.096006878 5.32588339 -3.86948085 -0.55909485 3.86948061 -5.32588339 0.096006878
3.86948061 -5.32588339 -0.55909485;
setAttr -s 740 ".ed";
setAttr ".ed[0:165]" 0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1
9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1
20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1
31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1
42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1
53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1
64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1
75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1
86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1
97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1
106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1
115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1
124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1
133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1
142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1
151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1
160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;
setAttr ".ed[166:331]" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1
172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1
181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1
190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1
199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1
208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1
217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1
226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1
235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1
244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1
253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1
262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1
271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1
0 20 1 1 21 1 2 22 1 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1
12 32 1 13 33 1 14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1
23 43 1 24 44 1 25 45 1 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1
34 54 1 35 55 1 36 56 1 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1
45 65 1 46 66 1 47 67 1 48 68 1 49 69 1 50 70 1 51 71 1;
setAttr ".ed[332:497]" 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1 58 78 1
59 79 1 60 80 1 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1 69 89 1
70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1 80 100 1
81 101 1 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1 89 109 1
90 110 1 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1 98 118 1
99 119 1 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1 107 127 1
108 128 1 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1 116 136 1
117 137 1 118 138 1 119 139 1 140 160 1 141 161 1 142 162 1 143 163 1 144 164 1 145 165 1
146 166 1 147 167 1 148 168 1 149 169 1 150 170 1 151 171 1 152 172 1 153 173 1 154 174 1
155 175 1 156 176 1 157 177 1 158 178 1 159 179 1 160 180 1 161 181 1 162 182 1 163 183 1
164 184 1 165 185 1 166 186 1 167 187 1 168 188 1 169 189 1 170 190 1 171 191 1 172 192 1
173 193 1 174 194 1 175 195 1 176 196 1 177 197 1 178 198 1 179 199 1 180 200 1 181 201 1
182 202 1 183 203 1 184 204 1 185 205 1 186 206 1 187 207 1 188 208 1 189 209 1 190 210 1
191 211 1 192 212 1 193 213 1 194 214 1 195 215 1 196 216 1 197 217 1 198 218 1 199 219 1
200 220 1 201 221 1 202 222 1 203 223 1 204 224 1 205 225 1 206 226 1 207 227 1 208 228 1
209 229 1 210 230 1 211 231 1 212 232 1 213 233 1 214 234 1 215 235 1 216 236 1 217 237 1
218 238 1 219 239 1 220 240 1 221 241 1 222 242 1 223 243 1 224 244 1 225 245 1 226 246 1
227 247 1 228 248 1 229 249 1 230 250 1 231 251 1 232 252 1 233 253 1 234 254 1 235 255 1
236 256 1 237 257 1;
setAttr ".ed[498:663]" 238 258 1 239 259 1 240 260 1 241 261 1 242 262 1 243 263 1
244 264 1 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1 250 270 1 251 271 1 252 272 1
253 273 1 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1 259 279 1 280 0 1 280 1 1
280 2 1 280 3 1 280 4 1 280 5 1 280 6 1 280 7 1 280 8 1 280 9 1 280 10 1 280 11 1
280 12 1 280 13 1 280 14 1 280 15 1 280 16 1 280 17 1 280 18 1 280 19 1 260 281 1
261 281 1 262 281 1 263 281 1 264 281 1 265 281 1 266 281 1 267 281 1 268 281 1 269 281 1
270 281 1 271 281 1 272 281 1 273 281 1 274 281 1 275 281 1 276 281 1 277 281 1 278 281 1
279 281 1 283 320 0 321 282 0 282 285 0 284 283 0 285 287 0 286 284 0 287 289 0 288 286 0
289 291 0 290 288 0 291 293 0 292 290 0 293 295 0 294 292 0 295 297 0 296 294 0 297 299 0
298 296 0 299 301 0 300 298 0 301 303 0 302 300 0 303 305 0 304 302 0 305 307 0 306 304 0
307 309 0 308 306 0 309 311 0 310 308 0 311 313 0 312 310 0 313 315 0 314 312 0 315 317 0
316 314 0 317 319 0 318 316 0 319 321 0 320 318 0 121 308 1 310 120 1 122 306 1 123 304 1
124 302 1 125 300 1 126 298 1 127 296 1 128 294 1 129 292 1 130 290 1 131 288 1 132 286 1
133 284 1 134 283 1 135 320 1 136 318 1 137 316 1 138 314 1 139 312 1 282 154 1 153 285 1
152 287 1 151 289 1 150 291 1 149 293 1 148 295 1 147 297 1 146 299 1 145 301 1 144 303 1
143 305 1 142 307 1 141 309 1 140 311 1 159 313 1 158 315 1 157 317 1 156 319 1 155 321 1
282 322 1 283 323 1 322 323 1 320 324 1 323 324 0 321 325 1 324 325 1 325 322 0 285 326 1
322 326 0 284 327 1 326 327 1 327 323 0 287 328 1 326 328 0 286 329 1 328 329 1 329 327 0
289 330 1 328 330 0 288 331 1 330 331 1 331 329 0 291 332 1;
setAttr ".ed[664:739]" 330 332 0 290 333 1 332 333 1 333 331 0 293 334 1 332 334 0
292 335 1 334 335 1 335 333 0 295 336 1 334 336 0 294 337 1 336 337 1 337 335 0 297 338 1
336 338 0 296 339 1 338 339 1 339 337 0 299 340 1 338 340 0 298 341 1 340 341 1 341 339 0
301 342 1 340 342 0 300 343 1 342 343 1 343 341 0 303 344 1 342 344 0 302 345 1 344 345 1
345 343 0 305 346 1 344 346 0 304 347 1 346 347 1 347 345 0 307 348 1 346 348 0 306 349 1
348 349 1 349 347 0 309 350 1 348 350 0 308 351 1 350 351 1 351 349 0 311 352 1 350 352 0
310 353 1 352 353 1 353 351 0 313 354 1 352 354 0 312 355 1 354 355 1 355 353 0 315 356 1
354 356 0 314 357 1 356 357 1 357 355 0 317 358 1 356 358 0 316 359 1 358 359 1 359 357 0
319 360 1 358 360 0 318 361 1 360 361 1 361 359 0 360 325 0 324 361 0;
setAttr -s 380 -ch 1480 ".fc[0:379]" -type "polyFaces"
f 4 0 281 -21 -281
mu 0 4 0 1 21 20
f 4 1 282 -22 -282
mu 0 4 1 2 22 21
f 4 2 283 -23 -283
mu 0 4 2 3 23 22
f 4 3 284 -24 -284
mu 0 4 3 4 24 23
f 4 4 285 -25 -285
mu 0 4 4 5 25 24
f 4 5 286 -26 -286
mu 0 4 5 6 26 25
f 4 6 287 -27 -287
mu 0 4 6 7 27 26
f 4 7 288 -28 -288
mu 0 4 7 8 28 27
f 4 8 289 -29 -289
mu 0 4 8 9 29 28
f 4 9 290 -30 -290
mu 0 4 9 10 30 29
f 4 10 291 -31 -291
mu 0 4 10 11 31 30
f 4 11 292 -32 -292
mu 0 4 11 12 32 31
f 4 12 293 -33 -293
mu 0 4 12 13 33 32
f 4 13 294 -34 -294
mu 0 4 13 14 34 33
f 4 14 295 -35 -295
mu 0 4 14 15 35 34
f 4 15 296 -36 -296
mu 0 4 15 16 36 35
f 4 16 297 -37 -297
mu 0 4 16 17 37 36
f 4 17 298 -38 -298
mu 0 4 17 18 38 37
f 4 18 299 -39 -299
mu 0 4 18 19 39 38
f 4 19 280 -40 -300
mu 0 4 19 0 20 39
f 4 20 301 -41 -301
mu 0 4 20 21 41 40
f 4 21 302 -42 -302
mu 0 4 21 22 42 41
f 4 22 303 -43 -303
mu 0 4 22 23 43 42
f 4 23 304 -44 -304
mu 0 4 23 24 44 43
f 4 24 305 -45 -305
mu 0 4 24 25 45 44
f 4 25 306 -46 -306
mu 0 4 25 26 46 45
f 4 26 307 -47 -307
mu 0 4 26 27 47 46
f 4 27 308 -48 -308
mu 0 4 27 28 48 47
f 4 28 309 -49 -309
mu 0 4 28 29 49 48
f 4 29 310 -50 -310
mu 0 4 29 30 50 49
f 4 30 311 -51 -311
mu 0 4 30 31 51 50
f 4 31 312 -52 -312
mu 0 4 31 32 52 51
f 4 32 313 -53 -313
mu 0 4 32 33 53 52
f 4 33 314 -54 -314
mu 0 4 33 34 54 53
f 4 34 315 -55 -315
mu 0 4 34 35 55 54
f 4 35 316 -56 -316
mu 0 4 35 36 56 55
f 4 36 317 -57 -317
mu 0 4 36 37 57 56
f 4 37 318 -58 -318
mu 0 4 37 38 58 57
f 4 38 319 -59 -319
mu 0 4 38 39 59 58
f 4 39 300 -60 -320
mu 0 4 39 20 40 59
f 4 40 321 -61 -321
mu 0 4 40 41 61 60
f 4 41 322 -62 -322
mu 0 4 41 42 62 61
f 4 42 323 -63 -323
mu 0 4 42 43 63 62
f 4 43 324 -64 -324
mu 0 4 43 44 64 63
f 4 44 325 -65 -325
mu 0 4 44 45 65 64
f 4 45 326 -66 -326
mu 0 4 45 46 66 65
f 4 46 327 -67 -327
mu 0 4 46 47 67 66
f 4 47 328 -68 -328
mu 0 4 47 48 68 67
f 4 48 329 -69 -329
mu 0 4 48 49 69 68
f 4 49 330 -70 -330
mu 0 4 49 50 70 69
f 4 50 331 -71 -331
mu 0 4 50 51 71 70
f 4 51 332 -72 -332
mu 0 4 51 52 72 71
f 4 52 333 -73 -333
mu 0 4 52 53 73 72
f 4 53 334 -74 -334
mu 0 4 53 54 74 73
f 4 54 335 -75 -335
mu 0 4 54 55 75 74
f 4 55 336 -76 -336
mu 0 4 55 56 76 75
f 4 56 337 -77 -337
mu 0 4 56 57 77 76
f 4 57 338 -78 -338
mu 0 4 57 58 78 77
f 4 58 339 -79 -339
mu 0 4 58 59 79 78
f 4 59 320 -80 -340
mu 0 4 59 40 60 79
f 4 60 341 -81 -341
mu 0 4 60 61 81 80
f 4 61 342 -82 -342
mu 0 4 61 62 82 81
f 4 62 343 -83 -343
mu 0 4 62 63 83 82
f 4 63 344 -84 -344
mu 0 4 63 64 84 83
f 4 64 345 -85 -345
mu 0 4 64 65 85 84
f 4 65 346 -86 -346
mu 0 4 65 66 86 85
f 4 66 347 -87 -347
mu 0 4 66 67 87 86
f 4 67 348 -88 -348
mu 0 4 67 68 88 87
f 4 68 349 -89 -349
mu 0 4 68 69 89 88
f 4 69 350 -90 -350
mu 0 4 69 70 90 89
f 4 70 351 -91 -351
mu 0 4 70 71 91 90
f 4 71 352 -92 -352
mu 0 4 71 72 92 91
f 4 72 353 -93 -353
mu 0 4 72 73 93 92
f 4 73 354 -94 -354
mu 0 4 73 74 94 93
f 4 74 355 -95 -355
mu 0 4 74 75 95 94
f 4 75 356 -96 -356
mu 0 4 75 76 96 95
f 4 76 357 -97 -357
mu 0 4 76 77 97 96
f 4 77 358 -98 -358
mu 0 4 77 78 98 97
f 4 78 359 -99 -359
mu 0 4 78 79 99 98
f 4 79 340 -100 -360
mu 0 4 79 60 80 99
f 4 80 361 -101 -361
mu 0 4 80 81 101 100
f 4 81 362 -102 -362
mu 0 4 81 82 102 101
f 4 82 363 -103 -363
mu 0 4 82 83 103 102
f 4 83 364 -104 -364
mu 0 4 83 84 104 103
f 4 84 365 -105 -365
mu 0 4 84 85 105 104
f 4 85 366 -106 -366
mu 0 4 85 86 106 105
f 4 86 367 -107 -367
mu 0 4 86 87 107 106
f 4 87 368 -108 -368
mu 0 4 87 88 108 107
f 4 88 369 -109 -369
mu 0 4 88 89 109 108
f 4 89 370 -110 -370
mu 0 4 89 90 110 109
f 4 90 371 -111 -371
mu 0 4 90 91 111 110
f 4 91 372 -112 -372
mu 0 4 91 92 112 111
f 4 92 373 -113 -373
mu 0 4 92 93 113 112
f 4 93 374 -114 -374
mu 0 4 93 94 114 113
f 4 94 375 -115 -375
mu 0 4 94 95 115 114
f 4 95 376 -116 -376
mu 0 4 95 96 116 115
f 4 96 377 -117 -377
mu 0 4 96 97 117 116
f 4 97 378 -118 -378
mu 0 4 97 98 118 117
f 4 98 379 -119 -379
mu 0 4 98 99 119 118
f 4 99 360 -120 -380
mu 0 4 99 80 100 119
f 4 100 381 -121 -381
mu 0 4 100 101 121 120
f 4 101 382 -122 -382
mu 0 4 101 102 122 121
f 4 102 383 -123 -383
mu 0 4 102 103 123 122
f 4 103 384 -124 -384
mu 0 4 103 104 124 123
f 4 104 385 -125 -385
mu 0 4 104 105 125 124
f 4 105 386 -126 -386
mu 0 4 105 106 126 125
f 4 106 387 -127 -387
mu 0 4 106 107 127 126
f 4 107 388 -128 -388
mu 0 4 107 108 128 127
f 4 108 389 -129 -389
mu 0 4 108 109 129 128
f 4 109 390 -130 -390
mu 0 4 109 110 130 129
f 4 110 391 -131 -391
mu 0 4 110 111 131 130
f 4 111 392 -132 -392
mu 0 4 111 112 132 131
f 4 112 393 -133 -393
mu 0 4 112 113 133 132
f 4 113 394 -134 -394
mu 0 4 113 114 134 133
f 4 114 395 -135 -395
mu 0 4 114 115 135 134
f 4 115 396 -136 -396
mu 0 4 115 116 136 135
f 4 116 397 -137 -397
mu 0 4 116 117 137 136
f 4 117 398 -138 -398
mu 0 4 117 118 138 137
f 4 118 399 -139 -399
mu 0 4 118 119 139 138
f 4 119 380 -140 -400
mu 0 4 119 100 120 139
f 4 140 401 -161 -401
mu 0 4 158 157 177 178
f 4 141 402 -162 -402
mu 0 4 157 156 176 177
f 4 142 403 -163 -403
mu 0 4 156 155 175 176
f 4 143 404 -164 -404
mu 0 4 155 154 174 175
f 4 144 405 -165 -405
mu 0 4 154 153 173 174
f 4 145 406 -166 -406
mu 0 4 153 152 172 173
f 4 146 407 -167 -407
mu 0 4 152 151 171 172
f 4 147 408 -168 -408
mu 0 4 151 150 170 171
f 4 148 409 -169 -409
mu 0 4 150 149 169 170
f 4 149 410 -170 -410
mu 0 4 149 148 168 169
f 4 150 411 -171 -411
mu 0 4 148 147 167 168
f 4 151 412 -172 -412
mu 0 4 147 146 166 167
f 4 152 413 -173 -413
mu 0 4 146 145 165 166
f 4 153 414 -174 -414
mu 0 4 145 144 164 165
f 4 154 415 -175 -415
mu 0 4 144 143 163 164
f 4 155 416 -176 -416
mu 0 4 143 142 162 163
f 4 156 417 -177 -417
mu 0 4 142 141 161 162
f 4 157 418 -178 -418
mu 0 4 141 140 160 161
f 4 158 419 -179 -419
mu 0 4 140 159 179 160
f 4 159 400 -180 -420
mu 0 4 159 158 178 179
f 4 160 421 -181 -421
mu 0 4 178 177 197 198
f 4 161 422 -182 -422
mu 0 4 177 176 196 197
f 4 162 423 -183 -423
mu 0 4 176 175 195 196
f 4 163 424 -184 -424
mu 0 4 175 174 194 195
f 4 164 425 -185 -425
mu 0 4 174 173 193 194
f 4 165 426 -186 -426
mu 0 4 173 172 192 193
f 4 166 427 -187 -427
mu 0 4 172 171 191 192
f 4 167 428 -188 -428
mu 0 4 171 170 190 191
f 4 168 429 -189 -429
mu 0 4 170 169 189 190
f 4 169 430 -190 -430
mu 0 4 169 168 188 189
f 4 170 431 -191 -431
mu 0 4 168 167 187 188
f 4 171 432 -192 -432
mu 0 4 167 166 186 187
f 4 172 433 -193 -433
mu 0 4 166 165 185 186
f 4 173 434 -194 -434
mu 0 4 165 164 184 185
f 4 174 435 -195 -435
mu 0 4 164 163 183 184
f 4 175 436 -196 -436
mu 0 4 163 162 182 183
f 4 176 437 -197 -437
mu 0 4 162 161 181 182
f 4 177 438 -198 -438
mu 0 4 161 160 180 181
f 4 178 439 -199 -439
mu 0 4 160 179 199 180
f 4 179 420 -200 -440
mu 0 4 179 178 198 199
f 4 180 441 -201 -441
mu 0 4 198 197 217 218
f 4 181 442 -202 -442
mu 0 4 197 196 216 217
f 4 182 443 -203 -443
mu 0 4 196 195 215 216
f 4 183 444 -204 -444
mu 0 4 195 194 214 215
f 4 184 445 -205 -445
mu 0 4 194 193 213 214
f 4 185 446 -206 -446
mu 0 4 193 192 212 213
f 4 186 447 -207 -447
mu 0 4 192 191 211 212
f 4 187 448 -208 -448
mu 0 4 191 190 210 211
f 4 188 449 -209 -449
mu 0 4 190 189 209 210
f 4 189 450 -210 -450
mu 0 4 189 188 208 209
f 4 190 451 -211 -451
mu 0 4 188 187 207 208
f 4 191 452 -212 -452
mu 0 4 187 186 206 207
f 4 192 453 -213 -453
mu 0 4 186 185 205 206
f 4 193 454 -214 -454
mu 0 4 185 184 204 205
f 4 194 455 -215 -455
mu 0 4 184 183 203 204
f 4 195 456 -216 -456
mu 0 4 183 182 202 203
f 4 196 457 -217 -457
mu 0 4 182 181 201 202
f 4 197 458 -218 -458
mu 0 4 181 180 200 201
f 4 198 459 -219 -459
mu 0 4 180 199 219 200
f 4 199 440 -220 -460
mu 0 4 199 198 218 219
f 4 200 461 -221 -461
mu 0 4 218 217 237 238
f 4 201 462 -222 -462
mu 0 4 217 216 236 237
f 4 202 463 -223 -463
mu 0 4 216 215 235 236
f 4 203 464 -224 -464
mu 0 4 215 214 234 235
f 4 204 465 -225 -465
mu 0 4 214 213 233 234
f 4 205 466 -226 -466
mu 0 4 213 212 232 233
f 4 206 467 -227 -467
mu 0 4 212 211 231 232
f 4 207 468 -228 -468
mu 0 4 211 210 230 231
f 4 208 469 -229 -469
mu 0 4 210 209 229 230
f 4 209 470 -230 -470
mu 0 4 209 208 228 229
f 4 210 471 -231 -471
mu 0 4 208 207 227 228
f 4 211 472 -232 -472
mu 0 4 207 206 226 227
f 4 212 473 -233 -473
mu 0 4 206 205 225 226
f 4 213 474 -234 -474
mu 0 4 205 204 224 225
f 4 214 475 -235 -475
mu 0 4 204 203 223 224
f 4 215 476 -236 -476
mu 0 4 203 202 222 223
f 4 216 477 -237 -477
mu 0 4 202 201 221 222
f 4 217 478 -238 -478
mu 0 4 201 200 220 221
f 4 218 479 -239 -479
mu 0 4 200 219 239 220
f 4 219 460 -240 -480
mu 0 4 219 218 238 239
f 4 220 481 -241 -481
mu 0 4 238 237 257 258
f 4 221 482 -242 -482
mu 0 4 237 236 256 257
f 4 222 483 -243 -483
mu 0 4 236 235 255 256
f 4 223 484 -244 -484
mu 0 4 235 234 254 255
f 4 224 485 -245 -485
mu 0 4 234 233 253 254
f 4 225 486 -246 -486
mu 0 4 233 232 252 253
f 4 226 487 -247 -487
mu 0 4 232 231 251 252
f 4 227 488 -248 -488
mu 0 4 231 230 250 251
f 4 228 489 -249 -489
mu 0 4 230 229 249 250
f 4 229 490 -250 -490
mu 0 4 229 228 248 249
f 4 230 491 -251 -491
mu 0 4 228 227 247 248
f 4 231 492 -252 -492
mu 0 4 227 226 246 247
f 4 232 493 -253 -493
mu 0 4 226 225 245 246
f 4 233 494 -254 -494
mu 0 4 225 224 244 245
f 4 234 495 -255 -495
mu 0 4 224 223 243 244
f 4 235 496 -256 -496
mu 0 4 223 222 242 243
f 4 236 497 -257 -497
mu 0 4 222 221 241 242
f 4 237 498 -258 -498
mu 0 4 221 220 240 241
f 4 238 499 -259 -499
mu 0 4 220 239 259 240
f 4 239 480 -260 -500
mu 0 4 239 238 258 259
f 4 240 501 -261 -501
mu 0 4 258 257 277 278
f 4 241 502 -262 -502
mu 0 4 257 256 276 277
f 4 242 503 -263 -503
mu 0 4 256 255 275 276
f 4 243 504 -264 -504
mu 0 4 255 254 274 275
f 4 244 505 -265 -505
mu 0 4 254 253 273 274
f 4 245 506 -266 -506
mu 0 4 253 252 272 273
f 4 246 507 -267 -507
mu 0 4 252 251 271 272
f 4 247 508 -268 -508
mu 0 4 251 250 270 271
f 4 248 509 -269 -509
mu 0 4 250 249 269 270
f 4 249 510 -270 -510
mu 0 4 249 248 268 269
f 4 250 511 -271 -511
mu 0 4 248 247 267 268
f 4 251 512 -272 -512
mu 0 4 247 246 266 267
f 4 252 513 -273 -513
mu 0 4 246 245 265 266
f 4 253 514 -274 -514
mu 0 4 245 244 264 265
f 4 254 515 -275 -515
mu 0 4 244 243 263 264
f 4 255 516 -276 -516
mu 0 4 243 242 262 263
f 4 256 517 -277 -517
mu 0 4 242 241 261 262
f 4 257 518 -278 -518
mu 0 4 241 240 260 261
f 4 258 519 -279 -519
mu 0 4 240 259 279 260
f 4 259 500 -280 -520
mu 0 4 259 258 278 279
f 3 -1 -521 521
mu 0 3 1 0 280
f 3 -2 -522 522
mu 0 3 2 1 280
f 3 -3 -523 523
mu 0 3 3 2 280
f 3 -4 -524 524
mu 0 3 4 3 280
f 3 -5 -525 525
mu 0 3 5 4 280
f 3 -6 -526 526
mu 0 3 6 5 280
f 3 -7 -527 527
mu 0 3 7 6 280
f 3 -8 -528 528
mu 0 3 8 7 280
f 3 -9 -529 529
mu 0 3 9 8 280
f 3 -10 -530 530
mu 0 3 10 9 280
f 3 -11 -531 531
mu 0 3 11 10 280
f 3 -12 -532 532
mu 0 3 12 11 280
f 3 -13 -533 533
mu 0 3 13 12 280
f 3 -14 -534 534
mu 0 3 14 13 280
f 3 -15 -535 535
mu 0 3 15 14 280
f 3 -16 -536 536
mu 0 3 16 15 280
f 3 -17 -537 537
mu 0 3 17 16 280
f 3 -18 -538 538
mu 0 3 18 17 280
f 3 -19 -539 539
mu 0 3 19 18 280
f 3 -20 -540 520
mu 0 3 0 19 280
f 3 260 541 -541
mu 0 3 278 277 281
f 3 261 542 -542
mu 0 3 277 276 281
f 3 262 543 -543
mu 0 3 276 275 281
f 3 263 544 -544
mu 0 3 275 274 281
f 3 264 545 -545
mu 0 3 274 273 281
f 3 265 546 -546
mu 0 3 273 272 281
f 3 266 547 -547
mu 0 3 272 271 281
f 3 267 548 -548
mu 0 3 271 270 281
f 3 268 549 -549
mu 0 3 270 269 281
f 3 269 550 -550
mu 0 3 269 268 281
f 3 270 551 -551
mu 0 3 268 267 281
f 3 271 552 -552
mu 0 3 267 266 281
f 3 272 553 -553
mu 0 3 266 265 281
f 3 273 554 -554
mu 0 3 265 264 281
f 3 274 555 -555
mu 0 3 264 263 281
f 3 275 556 -556
mu 0 3 263 262 281
f 3 276 557 -557
mu 0 3 262 261 281
f 3 277 558 -558
mu 0 3 261 260 281
f 3 278 559 -559
mu 0 3 260 279 281
f 3 279 540 -560
mu 0 3 279 278 281
f 4 642 644 646 647
mu 0 4 369 366 367 368
f 4 -643 649 651 652
mu 0 4 366 369 370 371
f 4 -652 654 656 657
mu 0 4 371 370 372 373
f 4 -657 659 661 662
mu 0 4 373 372 374 375
f 4 -662 664 666 667
mu 0 4 375 374 376 377
f 4 -667 669 671 672
mu 0 4 377 376 378 379
f 4 -672 674 676 677
mu 0 4 379 378 380 381
f 4 -677 679 681 682
mu 0 4 381 380 382 383
f 4 -682 684 686 687
mu 0 4 383 382 384 385
f 4 -687 689 691 692
mu 0 4 385 384 386 387
f 4 -692 694 696 697
mu 0 4 387 386 388 389
f 4 -697 699 701 702
mu 0 4 389 388 390 391
f 4 -702 704 706 707
mu 0 4 391 390 392 393
f 4 -707 709 711 712
mu 0 4 393 392 394 395
f 4 -712 714 716 717
mu 0 4 395 394 396 397
f 4 -717 719 721 722
mu 0 4 401 398 399 400
f 4 -722 724 726 727
mu 0 4 400 399 402 403
f 4 -727 729 731 732
mu 0 4 403 402 404 405
f 4 -732 734 736 737
mu 0 4 405 404 406 407
f 4 -737 738 -647 739
mu 0 4 407 406 368 367
f 4 120 600 -590 601
mu 0 4 284 285 288 286
f 4 121 602 -588 -601
mu 0 4 285 287 290 288
f 4 122 603 -586 -603
mu 0 4 287 289 292 290
f 4 123 604 -584 -604
mu 0 4 289 291 294 292
f 4 124 605 -582 -605
mu 0 4 291 293 296 294
f 4 125 606 -580 -606
mu 0 4 293 295 298 296
f 4 126 607 -578 -607
mu 0 4 295 297 300 298
f 4 127 608 -576 -608
mu 0 4 297 299 302 300
f 4 128 609 -574 -609
mu 0 4 299 301 304 302
f 4 129 610 -572 -610
mu 0 4 301 303 306 304
f 4 130 611 -570 -611
mu 0 4 303 305 308 306
f 4 131 612 -568 -612
mu 0 4 305 307 310 308
f 4 132 613 -566 -613
mu 0 4 307 309 312 310
f 4 133 614 -564 -614
mu 0 4 309 311 314 312
f 4 134 615 -561 -615
mu 0 4 311 313 316 314
f 4 135 616 -600 -616
mu 0 4 313 315 318 316
f 4 136 617 -598 -617
mu 0 4 315 317 320 318
f 4 137 618 -596 -618
mu 0 4 317 319 322 320
f 4 138 619 -594 -619
mu 0 4 319 321 324 322
f 4 139 -602 -592 -620
mu 0 4 321 323 283 324
f 4 -563 620 -154 621
mu 0 4 327 325 365 326
f 4 -565 -622 -153 622
mu 0 4 329 327 326 328
f 4 -567 -623 -152 623
mu 0 4 331 329 328 330
f 4 -569 -624 -151 624
mu 0 4 333 331 330 332
f 4 -571 -625 -150 625
mu 0 4 335 333 332 334
f 4 -573 -626 -149 626
mu 0 4 337 335 334 336
f 4 -575 -627 -148 627
mu 0 4 339 337 336 338
f 4 -577 -628 -147 628
mu 0 4 341 339 338 340
f 4 -579 -629 -146 629
mu 0 4 343 341 340 342
f 4 -581 -630 -145 630
mu 0 4 345 343 342 344
f 4 -583 -631 -144 631
mu 0 4 347 345 344 346
f 4 -585 -632 -143 632
mu 0 4 349 347 346 348
f 4 -587 -633 -142 633
mu 0 4 351 349 348 350
f 4 -589 -634 -141 634
mu 0 4 282 351 350 352
f 4 -591 -635 -160 635
mu 0 4 356 353 354 355
f 4 -593 -636 -159 636
mu 0 4 358 356 355 357
f 4 -595 -637 -158 637
mu 0 4 360 358 357 359
f 4 -597 -638 -157 638
mu 0 4 362 360 359 361
f 4 -599 -639 -156 639
mu 0 4 364 362 361 363
f 4 -562 -640 -155 -621
mu 0 4 325 364 363 365
f 4 560 643 -645 -642
mu 0 4 314 316 367 366
f 4 561 640 -648 -646
mu 0 4 364 325 369 368
f 4 562 648 -650 -641
mu 0 4 325 327 370 369
f 4 563 641 -653 -651
mu 0 4 312 314 366 371
f 4 564 653 -655 -649
mu 0 4 327 329 372 370
f 4 565 650 -658 -656
mu 0 4 310 312 371 373
f 4 566 658 -660 -654
mu 0 4 329 331 374 372
f 4 567 655 -663 -661
mu 0 4 308 310 373 375
f 4 568 663 -665 -659
mu 0 4 331 333 376 374
f 4 569 660 -668 -666
mu 0 4 306 308 375 377
f 4 570 668 -670 -664
mu 0 4 333 335 378 376
f 4 571 665 -673 -671
mu 0 4 304 306 377 379
f 4 572 673 -675 -669
mu 0 4 335 337 380 378
f 4 573 670 -678 -676
mu 0 4 302 304 379 381
f 4 574 678 -680 -674
mu 0 4 337 339 382 380
f 4 575 675 -683 -681
mu 0 4 300 302 381 383
f 4 576 683 -685 -679
mu 0 4 339 341 384 382
f 4 577 680 -688 -686
mu 0 4 298 300 383 385
f 4 578 688 -690 -684
mu 0 4 341 343 386 384
f 4 579 685 -693 -691
mu 0 4 296 298 385 387
f 4 580 693 -695 -689
mu 0 4 343 345 388 386
f 4 581 690 -698 -696
mu 0 4 294 296 387 389
f 4 582 698 -700 -694
mu 0 4 345 347 390 388
f 4 583 695 -703 -701
mu 0 4 292 294 389 391
f 4 584 703 -705 -699
mu 0 4 347 349 392 390
f 4 585 700 -708 -706
mu 0 4 290 292 391 393
f 4 586 708 -710 -704
mu 0 4 349 351 394 392
f 4 587 705 -713 -711
mu 0 4 288 290 393 395
f 4 588 713 -715 -709
mu 0 4 351 282 396 394
f 4 589 710 -718 -716
mu 0 4 286 288 395 397
f 4 590 718 -720 -714
mu 0 4 353 356 399 398
f 4 591 715 -723 -721
mu 0 4 324 283 401 400
f 4 592 723 -725 -719
mu 0 4 356 358 402 399
f 4 593 720 -728 -726
mu 0 4 322 324 400 403
f 4 594 728 -730 -724
mu 0 4 358 360 404 402
f 4 595 725 -733 -731
mu 0 4 320 322 403 405
f 4 596 733 -735 -729
mu 0 4 360 362 406 404
f 4 597 730 -738 -736
mu 0 4 318 320 405 407
f 4 598 645 -739 -734
mu 0 4 362 364 368 406
f 4 599 735 -740 -644
mu 0 4 316 318 407 367;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".bw" 4;
createNode transform -n "chain_01_lra_grp" -p "chain_01_mover_offset";
rename -uid "72710791-430A-8CA6-2424-2DAEA9492188";
setAttr ".t" -type "double3" -7.9361795218364884e-030 -4.4408920985006488e-016
-1.7829487886089626e-014 ;
setAttr ".r" -type "double3" -2.5444437451708134e-014 6.3611093629270438e-015 -9.5416640443905471e-015 ;
setAttr ".rp" -type "double3" 4.1301200796532218e-030 2.3111142555588929e-016 9.278762624466478e-015 ;
setAttr ".sp" -type "double3" 4.1301200796532218e-030 2.3111142555588929e-016 9.278762624466478e-015 ;
createNode transform -n "chain_01_lra" -p "chain_01_lra_grp";
rename -uid "9620B1FA-4FE3-860A-75A8-22A32F08851B";
setAttr ".ovdt" 2;
setAttr ".ove" yes;
setAttr ".t" -type "double3" 1.7763568394002513e-015 -4.4408920985006252e-016 3.1554436208840472e-030 ;
setAttr -l on -k off ".tx";
setAttr -l on -k off ".ty";
setAttr -l on -k off ".tz";
setAttr ".r" -type "double3" 0 2.1186750230640761e-030 0 ;
setAttr -l on -k off ".rx";
setAttr -l on -k off ".ry";
setAttr -l on -k off ".rz";
setAttr ".rp" -type "double3" -1.7763568394002467e-015 6.7520063540595166e-016 9.2787626244664749e-015 ;
setAttr ".sp" -type "double3" -1.7763568394002467e-015 6.7520063540595166e-016 9.2787626244664749e-015 ;
createNode mesh -n "chain_01_lraShape" -p "chain_01_lra";
rename -uid "92C1809D-450B-E1AF-4CC8-9899DC26FD1F";
setAttr -k off ".v";
setAttr -s 4 ".iog[0].og";
setAttr ".iog[0].og[0].gcl" -type "componentList" 1 "f[0:80]";
setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[81:161]";
setAttr ".iog[0].og[2].gcl" -type "componentList" 1 "f[162:242]";
setAttr ".iog[0].og[3].gcl" -type "componentList" 1 "f[243:342]";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".pv" -type "double2" 0.49999997019767761 0.49999994039535522 ;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 497 ".uvst[0].uvsp";
setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.64860266 0.10796607 0.62640899
0.064408496 0.59184152 0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008 0.45171607
0.0076473504 0.40815851 0.029841051 0.37359107 0.064408526 0.3513974 0.10796608 0.34374997
0.15625 0.3513974 0.20453392 0.37359107 0.24809146 0.40815854 0.28265893 0.4517161
0.3048526 0.5 0.3125 0.54828387 0.3048526 0.59184146 0.28265893 0.62640893 0.24809146
0.6486026 0.2045339 0.65625 0.15625 0.375 0.3125 0.38749999 0.3125 0.39999998 0.3125
0.41249996 0.3125 0.42499995 0.3125 0.43749994 0.3125 0.44999993 0.3125 0.46249992
0.3125 0.4749999 0.3125 0.48749989 0.3125 0.49999988 0.3125 0.51249987 0.3125 0.52499986
0.3125 0.53749985 0.3125 0.54999983 0.3125 0.56249982 0.3125 0.57499981 0.3125 0.5874998
0.3125 0.59999979 0.3125 0.61249977 0.3125 0.62499976 0.3125 0.375 0.68843985 0.38749999
0.68843985 0.39999998 0.68843985 0.41249996 0.68843985 0.42499995 0.68843985 0.43749994
0.68843985 0.44999993 0.68843985 0.46249992 0.68843985 0.4749999 0.68843985 0.48749989
0.68843985 0.49999988 0.68843985 0.51249987 0.68843985 0.52499986 0.68843985 0.53749985
0.68843985 0.54999983 0.68843985 0.56249982 0.68843985 0.57499981 0.68843985 0.5874998
0.68843985 0.59999979 0.68843985 0.61249977 0.68843985 0.62499976 0.68843985 0.64860266
0.79546607 0.62640899 0.75190848 0.59184152 0.71734101 0.54828393 0.69514734 0.5
0.68749994 0.45171607 0.69514734 0.40815851 0.71734107 0.37359107 0.75190854 0.3513974
0.79546607 0.34374997 0.84375 0.3513974 0.89203393 0.37359107 0.93559146 0.40815854
0.97015893 0.4517161 0.9923526 0.5 1 0.54828387 0.9923526 0.59184146 0.97015893 0.62640893
0.93559146 0.6486026 0.89203393 0.65625 0.84375 0.5 0.15000001 0.5 0.83749998 0.7377643
0.1727457 0.75 0.25 0.73776412 0.32725424 0.70225424 0.39694631 0.64694631 0.45225427
0.57725424 0.48776415 0.5 0.5 0.42274573 0.48776418 0.35305366 0.4522543 0.2977457
0.39694634 0.26223582 0.32725427 0.24999994 0.25 0.26223582 0.17274573 0.2977457
0.10305364 0.35305363 0.047745675 0.4227457 0.012235761 0.5 -1.1920929e-007 0.5772543
0.012235746 0.64694643 0.04774563 0.70225441 0.1030536 0.25 0.5 0.27500001 0.5 0.5
1 0.30000001 0.5 0.32500002 0.5 0.35000002 0.5 0.37500003 0.5 0.40000004 0.5 0.42500004
0.5 0.45000005 0.5 0.47500005 0.5 0.50000006 0.5 0.52500004 0.5 0.55000001 0.5 0.57499999
0.5 0.59999996 0.5 0.62499994 0.5 0.64999992 0.5 0.67499989 0.5 0.69999987 0.5 0.72499985
0.5 0.74999982 0.5 0.375 0.3125 0.38749999 0.3125 0.38749999 0.68843985 0.375 0.68843985
0.39999998 0.3125 0.39999998 0.68843985 0.41249996 0.3125 0.41249996 0.68843985 0.42499995
0.3125 0.42499995 0.68843985 0.43749994 0.3125 0.43749994 0.68843985 0.44999993 0.3125
0.44999993 0.68843985 0.46249992 0.3125 0.46249992 0.68843985 0.4749999 0.3125 0.4749999
0.68843985 0.48749989 0.3125 0.48749989 0.68843985 0.49999988 0.3125 0.49999988 0.68843985
0.51249987 0.3125 0.51249987 0.68843985 0.52499986 0.3125 0.52499986 0.68843985 0.53749985
0.3125 0.53749985 0.68843985 0.54999983 0.3125 0.54999983 0.68843985 0.56249982 0.3125
0.56249982 0.68843985 0.57499981 0.3125 0.57499981 0.68843985 0.5874998 0.3125 0.5874998
0.68843985 0.59999979 0.3125 0.59999979 0.68843985 0.61249977 0.3125 0.61249977 0.68843985
0.62499976 0.3125 0.62499976 0.68843985 0.62640899 0.064408496 0.64860266 0.10796607
0.5 0.15000001 0.59184152 0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008
0.45171607 0.0076473504 0.40815851 0.029841051 0.37359107 0.064408526 0.3513974 0.10796608
0.34374997 0.15625 0.3513974 0.20453392 0.37359107 0.24809146 0.40815854 0.28265893
0.4517161 0.3048526 0.5 0.3125 0.54828387 0.3048526 0.59184146 0.28265893 0.62640893
0.24809146 0.6486026 0.2045339 0.65625 0.15625 0.6486026 0.89203393 0.62640893 0.93559146
0.5 0.83749998 0.59184146 0.97015893 0.54828387 0.9923526 0.5 1 0.4517161 0.9923526
0.40815854 0.97015893 0.37359107 0.93559146 0.3513974 0.89203393 0.34374997 0.84375
0.3513974 0.79546607 0.37359107 0.75190854 0.40815851 0.71734107 0.45171607 0.69514734
0.5 0.68749994 0.54828393 0.69514734 0.59184152 0.71734101 0.62640899 0.75190848
0.64860266 0.79546607 0.65625 0.84375 0.7377643 0.1727457 0.75 0.25 0.73776412 0.32725424
0.70225424 0.39694631 0.64694631 0.45225427 0.57725424 0.48776415 0.5 0.5 0.42274573
0.48776418 0.35305366 0.4522543 0.2977457 0.39694634 0.26223582 0.32725427 0.24999994
0.25 0.26223582 0.17274573 0.2977457 0.10305364 0.35305363 0.047745675 0.4227457
0.012235761 0.5 -1.1920929e-007 0.5772543 0.012235746 0.64694643 0.04774563 0.70225441
0.1030536 0.25 0.5 0.27500001 0.5 0.5 1 0.30000001 0.5 0.32500002 0.5 0.35000002
0.5 0.37500003 0.5 0.40000004 0.5 0.42500004 0.5 0.45000005 0.5 0.47500005 0.5 0.50000006
0.5 0.52500004 0.5 0.55000001 0.5 0.57499999 0.5 0.59999996 0.5 0.62499994 0.5 0.64999992
0.5 0.67499989 0.5 0.69999987 0.5;
setAttr ".uvst[0].uvsp[250:496]" 0.72499985 0.5 0.74999982 0.5 0.375 0.3125
0.38749999 0.3125 0.38749999 0.68843985 0.375 0.68843985 0.39999998 0.3125 0.39999998
0.68843985 0.41249996 0.3125 0.41249996 0.68843985 0.42499995 0.3125 0.42499995 0.68843985
0.43749994 0.3125 0.43749994 0.68843985 0.44999993 0.3125 0.44999993 0.68843985 0.46249992
0.3125 0.46249992 0.68843985 0.4749999 0.3125 0.4749999 0.68843985 0.48749989 0.3125
0.48749989 0.68843985 0.49999988 0.3125 0.49999988 0.68843985 0.51249987 0.3125 0.51249987
0.68843985 0.52499986 0.3125 0.52499986 0.68843985 0.53749985 0.3125 0.53749985 0.68843985
0.54999983 0.3125 0.54999983 0.68843985 0.56249982 0.3125 0.56249982 0.68843985 0.57499981
0.3125 0.57499981 0.68843985 0.5874998 0.3125 0.5874998 0.68843985 0.59999979 0.3125
0.59999979 0.68843985 0.61249977 0.3125 0.61249977 0.68843985 0.62499976 0.3125 0.62499976
0.68843985 0.62640899 0.064408496 0.64860266 0.10796607 0.5 0.15000001 0.59184152
0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008 0.45171607 0.0076473504 0.40815851
0.029841051 0.37359107 0.064408526 0.3513974 0.10796608 0.34374997 0.15625 0.3513974
0.20453392 0.37359107 0.24809146 0.40815854 0.28265893 0.4517161 0.3048526 0.5 0.3125
0.54828387 0.3048526 0.59184146 0.28265893 0.62640893 0.24809146 0.6486026 0.2045339
0.65625 0.15625 0.6486026 0.89203393 0.62640893 0.93559146 0.5 0.83749998 0.59184146
0.97015893 0.54828387 0.9923526 0.5 1 0.4517161 0.9923526 0.40815854 0.97015893 0.37359107
0.93559146 0.3513974 0.89203393 0.34374997 0.84375 0.3513974 0.79546607 0.37359107
0.75190854 0.40815851 0.71734107 0.45171607 0.69514734 0.5 0.68749994 0.54828393
0.69514734 0.59184152 0.71734101 0.62640899 0.75190848 0.64860266 0.79546607 0.65625
0.84375 0.7377643 0.1727457 0.75 0.25 0.73776412 0.32725424 0.70225424 0.39694631
0.64694631 0.45225427 0.57725424 0.48776415 0.5 0.5 0.42274573 0.48776418 0.35305366
0.4522543 0.2977457 0.39694634 0.26223582 0.32725427 0.24999994 0.25 0.26223582 0.17274573
0.2977457 0.10305364 0.35305363 0.047745675 0.4227457 0.012235761 0.5 -1.1920929e-007
0.5772543 0.012235746 0.64694643 0.04774563 0.70225441 0.1030536 0.25 0.5 0.27500001
0.5 0.5 1 0.30000001 0.5 0.32500002 0.5 0.35000002 0.5 0.37500003 0.5 0.40000004
0.5 0.42500004 0.5 0.45000005 0.5 0.47500005 0.5 0.50000006 0.5 0.52500004 0.5 0.55000001
0.5 0.57499999 0.5 0.59999996 0.5 0.62499994 0.5 0.64999992 0.5 0.67499989 0.5 0.69999987
0.5 0.72499985 0.5 0.74999982 0.5 0 0.1 0.1 0.1 0.1 0.2 0 0.2 0.2 0.1 0.2 0.2 0.30000001
0.1 0.30000001 0.2 0.40000001 0.1 0.40000001 0.2 0.5 0.1 0.5 0.2 0.60000002 0.1 0.60000002
0.2 0.70000005 0.1 0.70000005 0.2 0.80000007 0.1 0.80000007 0.2 0.9000001 0.1 0.9000001
0.2 1.000000119209 0.1 1.000000119209 0.2 0.1 0.30000001 0 0.30000001 0.2 0.30000001
0.30000001 0.30000001 0.40000001 0.30000001 0.5 0.30000001 0.60000002 0.30000001
0.70000005 0.30000001 0.80000007 0.30000001 0.9000001 0.30000001 1.000000119209 0.30000001
0.1 0.40000001 0 0.40000001 0.2 0.40000001 0.30000001 0.40000001 0.40000001 0.40000001
0.5 0.40000001 0.60000002 0.40000001 0.70000005 0.40000001 0.80000007 0.40000001
0.9000001 0.40000001 1.000000119209 0.40000001 0.1 0.5 0 0.5 0.2 0.5 0.30000001 0.5
0.40000001 0.5 0.5 0.5 0.60000002 0.5 0.70000005 0.5 0.80000007 0.5 0.9000001 0.5
1.000000119209 0.5 0.1 0.60000002 0 0.60000002 0.2 0.60000002 0.30000001 0.60000002
0.40000001 0.60000002 0.5 0.60000002 0.60000002 0.60000002 0.70000005 0.60000002
0.80000007 0.60000002 0.9000001 0.60000002 1.000000119209 0.60000002 0.1 0.70000005
0 0.70000005 0.2 0.70000005 0.30000001 0.70000005 0.40000001 0.70000005 0.5 0.70000005
0.60000002 0.70000005 0.70000005 0.70000005 0.80000007 0.70000005 0.9000001 0.70000005
1.000000119209 0.70000005 0.1 0.80000007 0 0.80000007 0.2 0.80000007 0.30000001 0.80000007
0.40000001 0.80000007 0.5 0.80000007 0.60000002 0.80000007 0.70000005 0.80000007
0.80000007 0.80000007 0.9000001 0.80000007 1.000000119209 0.80000007 0.1 0.9000001
0 0.9000001 0.2 0.9000001 0.30000001 0.9000001 0.40000001 0.9000001 0.5 0.9000001
0.60000002 0.9000001 0.70000005 0.9000001 0.80000007 0.9000001 0.9000001 0.9000001
1.000000119209 0.9000001 0.050000001 0 0.15000001 0 0.25 0 0.34999999 0 0.45000002
0 0.55000001 0 0.65000004 0 0.75 0 0.85000002 0 0.94999999 0 0.050000001 1 0.15000001
1 0.25 1 0.34999999 1 0.45000002 1 0.55000001 1 0.65000004 1 0.75 1 0.85000002 1
0.94999999 1;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".ugsdt" no;
setAttr -s 281 ".pt";
setAttr ".pt[0:165]" -type "float3" -0.37791497 -0.22323063 -0.072532021
-0.37791497 -0.18989134 -0.1379641 -0.37791497 -0.13796414 -0.18989132 -0.37791497
-0.072532073 -0.22323062 -0.37791497 -2.8585394e-008 -0.23471858 -0.37791497 0.072532043
-0.22323063 -0.37791502 0.13796407 -0.18989126 -0.37791497 0.18989126 -0.13796407
-0.37791494 0.2232306 -0.072532021 -0.37791499 0.23471858 9.4932022e-015 -0.37791494
0.22323066 0.072532021 -0.37791494 0.18989125 0.13796408 -0.37791497 0.13796405 0.18989126
-0.37791499 0.072532021 0.22323057 -0.37791497 7.1003141e-009 0.2347185 -0.37791497
-0.072531968 0.22323056 -0.37791497 -0.13796405 0.18989126 -0.37791497 -0.18989123
0.13796408 -0.37791497 -0.22323054 0.07253205 -0.37791497 -0.23471846 9.4667519e-015
-3.2971964 -0.22323057 -0.072532132 -3.2971964 -0.18989134 -0.1379641 -3.2971966
-0.13796398 -0.18989138 -3.2971964 -0.072532043 -0.22323056 -3.2971964 7.0090701e-016
-0.23471864 -3.2971964 0.072532043 -0.22323051 -3.2971961 0.13796395 -0.18989126
-3.2971964 0.18989126 -0.13796401 -3.2971964 0.22323072 -0.07253208 -3.2971964 0.23471846
7.8483142e-015 -3.2971964 0.22323072 0.07253208 -3.2971964 0.18989125 0.137964 -3.2971961
0.13796394 0.18989117 -3.2971964 0.072532021 0.22323063 -3.2971964 7.1003141e-009
0.23471849 -3.2971964 -0.072531998 0.2232306 -3.2971964 -0.13796391 0.18989116 -3.2971964
-0.1898912 0.13796397 -3.2971964 -0.22323066 0.07253205 -3.2971964 -0.2347184 7.8218639e-015
-0.37791497 4.8351674e-016 1.2741866e-015 -3.2971964 6.4800551e-016 -6.5437869e-016
-3.2328663 -0.48761553 -0.15843618 -3.2328663 -0.41479072 -0.30136314 -3.232866 -0.30136299
-0.41479063 -3.2328663 -0.15843594 -0.48761553 -3.2328663 7.5993652e-016 -0.51270962
-3.2328663 0.15843594 -0.48761547 -3.2328663 0.30136293 -0.41479042 -3.2328663 0.41479054
-0.30136296 -3.2328663 0.48761559 -0.15843606 -3.2328663 0.5127095 8.3302599e-015
-3.2328663 0.48761559 0.15843561 -3.2328663 0.41479051 0.3013629 -3.2328663 0.30136284
0.41479021 -3.2328663 0.1584359 0.48761511 -3.2328663 1.5509626e-008 0.51270926 -3.2328663
-0.15843585 0.48761511 -3.2328663 -0.30136278 0.41479018 -3.2328663 -0.41479042 0.30136281
-3.2328663 -0.48761523 0.15843555 -3.2328663 -0.51270914 8.2724821e-015 -4.2582846
7.0215866e-016 -4.6297466e-016 -0.22323067 -0.072532006 -0.37791497 -0.1898914 -0.13796408
-0.37791497 -0.13796416 -0.18989129 -0.37791494 -0.072532043 -0.2232306 -0.37791497
-9.2444572e-016 -0.23471858 -0.37791497 0.072532043 -0.22323063 -0.37791497 0.1379641
-0.18989128 -0.37791497 0.18989131 -0.13796408 -0.37791497 0.22323063 -0.072532021
-0.37791497 0.23471855 7.9120045e-016 -0.37791497 0.2232306 0.072532021 -0.37791497
0.18989128 0.1379641 -0.37791497 0.13796407 0.18989126 -0.37791497 0.072532021 0.22323059
-0.37791494 7.1003128e-009 0.2347185 -0.37791497 -0.072531968 0.22323056 -0.37791494
-0.13796408 0.18989125 -0.37791497 -0.18989126 0.13796407 -0.37791497 -0.22323054
0.072532035 -0.37791499 -0.23471846 7.9120045e-016 -0.37791494 -0.22323057 -0.072532117
-3.2971964 -0.18989134 -0.13796408 -3.2971964 -0.13796398 -0.18989135 -3.2971961
-0.072532043 -0.22323054 -3.2971964 -9.2444572e-016 -0.23471864 -3.2971964 0.072532043
-0.22323051 -3.2971964 0.13796395 -0.18989128 -3.2971966 0.18989126 -0.13796403 -3.2971964
0.22323072 -0.07253208 -3.2971964 0.23471846 1.3324526e-016 -3.2971964 0.22323072
0.07253208 -3.2971964 0.18989125 0.13796401 -3.2971964 0.13796394 0.1898912 -3.2971966
0.072532021 0.22323063 -3.2971964 7.1003128e-009 0.23471849 -3.2971964 -0.072531998
0.22323059 -3.2971964 -0.13796414 0.18989116 -3.2971961 -0.1898912 0.13796398 -3.2971964
-0.22323066 0.072532035 -3.2971964 -0.2347184 1.3324526e-016 -3.2971964 -9.2444572e-016
-1.1387422e-015 -0.37791497 -9.2444572e-016 -1.9653119e-014 -3.2971964 -0.48761553
-0.15843618 -3.232866 -0.41479072 -0.30136311 -3.2328663 -0.3013632 -0.41479057 -3.2328663
-0.15843594 -0.48761553 -3.2328663 -9.2444572e-016 -0.51270962 -3.2328663 0.15843594
-0.48761547 -3.2328663 0.30136293 -0.41479042 -3.2328663 0.41479054 -0.30136299 -3.2328663
0.48761559 -0.15843606 -3.232866 0.51270902 5.7777854e-016 -3.2328663 0.48761559
0.15843561 -3.232866 0.41479051 0.30136287 -3.2328663 0.30136284 0.41479027 -3.2328663
0.1584359 0.48761517 -3.2328663 1.5509624e-008 0.51270926 -3.2328663 -0.15843585
0.48761511 -3.2328663 -0.30136278 0.41479018 -3.2328663 -0.41479042 0.30136281 -3.2328663
-0.48761547 0.15843552 -3.232866 -0.51270914 5.7777854e-016 -3.2328663 -9.2444572e-016
-2.492211e-014 -4.2582846 0.22323066 -0.37791497 -0.072532043 0.18989134 -0.37791494
-0.13796416 0.13796417 -0.37791497 -0.18989138 0.072532006 -0.37791494 -0.22323065
-9.714227e-016 -0.37791497 -0.23471856 -0.072532073 -0.37791497 -0.22323063 -0.13796413
-0.37791497 -0.18989134 -0.18989129 -0.37791497 -0.13796405 -0.22323063 -0.37791499
-0.072532021 -0.23471856 -0.37791497 9.5225646e-015 -0.22323062 -0.37791494 0.072532021
-0.18989129 -0.37791497 0.1379641 -0.1379641 -0.37791497 0.18989123 -0.072532021
-0.37791497 0.22323057 -7.1003146e-009 -0.37791497 0.23471849 0.072531968 -0.37791497
0.22323056 0.13796405 -0.37791497 0.18989126 0.18989123 -0.37791497 0.13796405 0.22323057
-0.37791497 0.072532006 0.23471849 -0.37791497 9.5225646e-015 0.2232306 -3.2971964
-0.072532043 0.1898914 -3.2971961 -0.13796398 0.13796411 -3.2971964 -0.18989132 0.072532117
-3.2971964 -0.22323053 -1.334306e-015 -3.2971966 -0.23471874 -0.072532132 -3.2971964
-0.22323051 -0.13796404 -3.2971964 -0.18989128 -0.18989126 -3.2971961 -0.13796394
-0.22323069 -3.2971964 -0.072532021 -0.23471855 -3.2971964 8.206654e-015 -0.22323069
-3.2971964 0.072532021 -0.1898912 -3.2971966 0.13796394 -0.13796401 -3.2971964 0.18989123
-0.072532065 -3.2971961 0.22323069 -7.1003146e-009 -3.2971964 0.23471843 0.072532028
-3.2971961 0.22323067 0.13796417 -3.2971964 0.18989122 0.18989111 -3.2971966 0.13796392
0.22323057 -3.2971964 0.072532006 0.23471843 -3.2971964 8.206654e-015;
setAttr ".pt[166:280]" -1.8666249e-015 -0.37791497 9.5225646e-015 -2.5639183e-015
-3.2971964 8.206654e-015 0.48761564 -3.2328663 -0.15843596 0.41479069 -3.2328663
-0.30136299 0.30136311 -3.2328663 -0.41479066 0.15843616 -3.232866 -0.48761547 -1.3263094e-015
-3.2328663 -0.51270938 -0.15843572 -3.232866 -0.48761547 -0.30136302 -3.232866 -0.41479036
-0.41479039 -3.2328663 -0.3013629 -0.48761529 -3.2328663 -0.1584359 -0.5127089 -3.2328663
8.6656866e-015 -0.48761529 -3.2328663 0.1584359 -0.4147903 -3.2328663 0.30136284
-0.30136287 -3.2328663 0.41479048 -0.15843561 -3.2328663 0.48761529 -1.5509626e-008
-3.2328663 0.5127092 0.15843596 -3.2328663 0.48761529 0.30136278 -3.2328663 0.41479045
0.41479054 -3.2328663 0.30136281 0.48761547 -3.2328663 0.15843587 0.51270914 -3.2328663
8.6656866e-015 -2.7934814e-015 -4.2582846 8.2034641e-015 -0.12817729 0.48761541 0.093126245
-0.04895936 0.48761547 0.1506815 0.048959419 0.48761535 0.15068141 0.12817731 0.48761541
0.093126215 0.1584359 0.48761541 -9.5854666e-009 0.12817734 0.48761541 -0.09312629
0.048959363 0.48761541 -0.15068144 -0.04895933 0.48761535 -0.15068144 -0.12817726
0.48761541 -0.093126237 -0.15843581 0.48761535 9.2787623e-015 -0.2438077 0.41479042
0.17713667 -0.093126282 0.41479042 0.28661314 0.09312629 0.41479039 0.28661317 0.2438077
0.41479039 0.17713669 0.3013629 0.41479036 -1.8232649e-008 0.24380767 0.41479039
-0.17713669 0.09312623 0.41479039 -0.28661314 -0.093126245 0.41479036 -0.28661308
-0.24380773 0.41479036 -0.17713663 -0.30136287 0.41479036 9.2787623e-015 -0.33557248
0.30136278 0.24380767 -0.12817723 0.30136287 0.3944892 0.12817734 0.30136284 0.39448911
0.33557251 0.30136287 0.24380767 0.41479045 0.30136287 -2.5095092e-008 0.33557254
0.30136281 -0.2438077 0.12817729 0.30136284 -0.39448911 -0.12817724 0.30136284 -0.39448914
-0.33557251 0.30136284 -0.24380769 -0.41479039 0.30136284 -2.8585387e-008 -0.39448911
0.15843579 0.2866132 -0.15068141 0.15843582 0.46374989 0.15068148 0.15843573 0.46374977
0.39448923 0.15843585 0.28661311 0.48761547 0.15843582 -2.9501052e-008 0.39448911
0.15843582 -0.28661317 0.15068142 0.15843582 -0.4637498 -0.15068142 0.15843579 -0.4637498
-0.39448914 0.15843579 -0.28661308 -0.48761541 0.15843579 2.8585404e-008 -0.41479042
4.6222286e-016 0.30136293 -0.15843581 4.6222286e-016 0.48761547 0.15843594 4.6222286e-016
0.48761541 0.41479045 4.6222286e-016 0.30136284 0.5127092 4.6222286e-016 -2.4338576e-009
0.41479042 4.6222286e-016 -0.3013629 0.15843582 4.6222286e-016 -0.48761541 -0.15843588
2.8585394e-008 -0.48761541 -0.41479042 4.6222286e-016 -0.30136287 -0.51270914 4.6222286e-016
9.4443835e-016 -0.39448911 -0.15843582 0.28661323 -0.15068144 -0.15843579 0.46374989
0.15068148 -0.15843579 0.46374977 0.39448923 -0.15843579 0.28661311 0.48761547 -0.15843579
-2.9501052e-008 0.39448911 -0.15843579 -0.28661317 0.15068139 -0.15843576 -0.46374983
-0.15068148 -0.15843585 -0.4637498 -0.39448914 -0.15843585 -0.28661308 -0.48761541
-0.15843582 2.8585404e-008 -0.33557254 -0.30136281 0.24380775 -0.12817726 -0.30136284
0.3944892 0.12817734 -0.30136284 0.39448911 0.33557251 -0.30136284 0.24380772 0.41479045
-0.30136284 -2.5095092e-008 0.33557254 -0.30136284 -0.24380773 0.12817729 -0.30136284
-0.39448911 -0.1281773 -0.30136281 -0.39448914 -0.33557257 -0.30136281 -0.24380767
-0.41479039 -0.30136287 -2.8585387e-008 -0.24380767 -0.41479039 0.1771367 -0.093126222
-0.41479039 0.28661317 0.093126342 -0.41479036 0.28661317 0.24380776 -0.41479036
0.17713667 0.30136293 -0.41479036 -1.8232649e-008 0.24380773 -0.41479042 -0.17713666
0.09312629 -0.41479042 -0.28661317 -0.093126245 -0.41479042 -0.28661314 -0.24380767
-0.41479039 -0.17713663 -0.30136284 -0.41479036 9.2787623e-015 -0.12817729 -0.48761541
0.093126275 -0.04895936 -0.48761541 0.15068147 0.048959363 -0.48761535 0.15068144
0.12817731 -0.48761541 0.093126237 0.15843584 -0.48761535 -9.5854666e-009 0.12817729
-0.48761535 -0.09312629 0.048959363 -0.48761535 -0.15068147 -0.048959386 -0.48761535
-0.15068147 -0.12817731 -0.48761541 -0.093126215 -0.15843587 -0.48761541 9.2787623e-015
-1.7763568e-015 0.51270914 9.2787623e-015 -1.7763568e-015 -0.51270914 9.2787623e-015;
setAttr -s 281 ".vt";
setAttr ".vt[0:165]" 0.7370944 0.43539438 0.1414682 0.7370944 0.3703686 0.26908851
0.7370944 0.26908851 0.37036857 0.7370944 0.1414682 0.43539432 0.7370944 -1.4256912e-016 0.45780066
0.7370944 -0.1414682 0.43539429 0.7370944 -0.26908845 0.37036848 0.7370944 -0.37036845 0.26908842
0.7370944 -0.43539423 0.14146815 0.7370944 -0.45780057 -4.12054e-016 0.7370944 -0.43539423 -0.14146815
0.7370944 -0.37036842 -0.26908842 0.7370944 -0.26908842 -0.37036839 0.7370944 -0.14146815 -0.43539417
0.7370944 -1.3643517e-008 -0.45780051 0.7370944 0.14146811 -0.43539414 0.7370944 0.26908836 -0.37036836
0.7370944 0.37036833 -0.26908839 0.7370944 0.43539411 -0.14146812 0.7370944 0.45780045 -3.6122789e-016
6.43092966 0.43539438 0.1414682 6.43092966 0.3703686 0.26908851 6.43092966 0.26908851 0.37036857
6.43092966 0.1414682 0.43539432 6.43092966 -4.5864049e-016 0.45780066 6.43092966 -0.1414682 0.43539429
6.43092966 -0.26908845 0.37036848 6.43092966 -0.37036845 0.26908842 6.43092966 -0.43539423 0.14146815
6.43092966 -0.45780057 2.7486596e-015 6.43092966 -0.43539423 -0.14146815 6.43092966 -0.37036842 -0.26908842
6.43092966 -0.26908842 -0.37036839 6.43092966 -0.14146815 -0.43539417 6.43092966 -1.3643517e-008 -0.45780051
6.43092966 0.14146811 -0.43539414 6.43092966 0.26908836 -0.37036836 6.43092966 0.37036833 -0.26908839
6.43092966 0.43539411 -0.14146812 6.43092966 0.45780045 2.7994856e-015 0.7370944 -4.0916959e-017 -3.8664095e-016
6.43092966 -3.5698831e-016 2.7740727e-015 6.30545807 0.95105714 0.30901718 6.30545807 0.80901754 0.5877856
6.30545807 0.5877856 0.80901748 6.30545807 0.30901715 0.95105702 6.30545807 -5.7206795e-016 1.000000476837
6.30545807 -0.30901715 0.95105696 6.30545807 -0.58778548 0.8090173 6.30545807 -0.80901724 0.58778542
6.30545807 -0.95105678 0.30901706 6.30545807 -1.000000238419 1.8225837e-015 6.30545807 -0.95105678 -0.30901706
6.30545807 -0.80901718 -0.58778536 6.30545807 -0.58778536 -0.80901712 6.30545807 -0.30901706 -0.95105666
6.30545807 -2.9802322e-008 -1.000000119209 6.30545807 0.30901697 -0.9510566 6.30545807 0.58778524 -0.80901706
6.30545807 0.809017 -0.5877853 6.30545807 0.95105654 -0.309017 6.30545807 1 1.933606e-015
8.30545807 -4.6104554e-016 2.9883178e-015 0.43539438 0.1414682 0.7370944 0.3703686 0.26908851 0.7370944
0.26908851 0.37036857 0.7370944 0.1414682 0.43539432 0.7370944 0 0.45780066 0.7370944
-0.1414682 0.43539429 0.7370944 -0.26908845 0.37036848 0.7370944 -0.37036845 0.26908842 0.7370944
-0.43539423 0.14146815 0.7370944 -0.45780057 -6.321427e-016 0.7370944 -0.43539423 -0.14146815 0.7370944
-0.37036842 -0.26908842 0.7370944 -0.26908842 -0.37036839 0.7370944 -0.14146815 -0.43539417 0.7370944
-1.3643517e-008 -0.45780051 0.7370944 0.14146811 -0.43539414 0.7370944 0.26908836 -0.37036836 0.7370944
0.37036833 -0.26908839 0.7370944 0.43539411 -0.14146812 0.7370944 0.45780045 -6.321427e-016 0.7370944
0.43539438 0.1414682 6.43092966 0.3703686 0.26908851 6.43092966 0.26908851 0.37036857 6.43092966
0.1414682 0.43539432 6.43092966 0 0.45780066 6.43092966 -0.1414682 0.43539429 6.43092966
-0.26908845 0.37036848 6.43092966 -0.37036845 0.26908842 6.43092966 -0.43539423 0.14146815 6.43092966
-0.45780057 6.321427e-016 6.43092966 -0.43539423 -0.14146815 6.43092966 -0.37036842 -0.26908842 6.43092966
-0.26908842 -0.37036839 6.43092966 -0.14146815 -0.43539417 6.43092966 -1.3643517e-008 -0.45780051 6.43092966
0.14146811 -0.43539414 6.43092966 0.26908836 -0.37036836 6.43092966 0.37036833 -0.26908839 6.43092966
0.43539411 -0.14146812 6.43092966 0.45780045 6.321427e-016 6.43092966 0 -6.321427e-016 0.7370944
0 6.321427e-016 6.43092966 0.95105714 0.30901718 6.30545807 0.80901754 0.5877856 6.30545807
0.5877856 0.80901748 6.30545807 0.30901715 0.95105702 6.30545807 0 1.000000476837 6.30545807
-0.30901715 0.95105696 6.30545807 -0.58778548 0.8090173 6.30545807 -0.80901724 0.58778542 6.30545807
-0.95105678 0.30901706 6.30545807 -1.000000238419 -2.220446e-016 6.30545807 -0.95105678 -0.30901706 6.30545807
-0.80901718 -0.58778536 6.30545807 -0.58778536 -0.80901712 6.30545807 -0.30901706 -0.95105666 6.30545807
-2.9802322e-008 -1.000000119209 6.30545807 0.30901697 -0.9510566 6.30545807 0.58778524 -0.80901706 6.30545807
0.809017 -0.5877853 6.30545807 0.95105654 -0.309017 6.30545807 1 -2.220446e-016 6.30545807
0 2.220446e-016 8.30545807 -0.43539438 0.7370944 0.1414682 -0.3703686 0.7370944 0.26908851
-0.26908851 0.7370944 0.37036857 -0.1414682 0.7370944 0.43539432 9.0268036e-017 0.7370944 0.45780066
0.1414682 0.7370944 0.43539429 0.26908845 0.7370944 0.37036848 0.37036845 0.7370944 0.26908842
0.43539423 0.7370944 0.14146815 0.45780057 0.7370944 -4.6847486e-016 0.43539423 0.7370944 -0.14146815
0.37036842 0.7370944 -0.26908842 0.26908842 0.7370944 -0.37036839 0.14146815 0.7370944 -0.43539417
1.3643517e-008 0.7370944 -0.45780051 -0.14146811 0.7370944 -0.43539414 -0.26908836 0.7370944 -0.37036836
-0.37036833 0.7370944 -0.26908839 -0.43539411 0.7370944 -0.14146812 -0.45780045 0.7370944 -4.6847486e-016
-0.43539438 6.43092966 0.1414682 -0.3703686 6.43092966 0.26908851 -0.26908851 6.43092966 0.37036857
-0.1414682 6.43092966 0.43539432 7.8756176e-016 6.43092966 0.45780066 0.1414682 6.43092966 0.43539429
0.26908845 6.43092966 0.37036848 0.37036845 6.43092966 0.26908842 0.43539423 6.43092966 0.14146815
0.45780057 6.43092966 2.0600959e-015 0.43539423 6.43092966 -0.14146815 0.37036842 6.43092966 -0.26908842
0.26908842 6.43092966 -0.37036839 0.14146815 6.43092966 -0.43539417 1.3643517e-008 6.43092966 -0.45780051
-0.14146811 6.43092966 -0.43539414 -0.26908836 6.43092966 -0.37036836 -0.37036833 6.43092966 -0.26908839
-0.43539411 6.43092966 -0.14146812 -0.45780045 6.43092966 2.0600959e-015;
setAttr ".vt[166:280]" 9.0268036e-017 0.7370944 -4.6847486e-016 7.8756176e-016 6.43092966 2.0600959e-015
-0.95105714 6.30545807 0.30901718 -0.80901754 6.30545807 0.5877856 -0.5877856 6.30545807 0.80901748
-0.30901715 6.30545807 0.95105702 7.7219595e-016 6.30545807 1.000000476837 0.30901715 6.30545807 0.95105696
0.58778548 6.30545807 0.8090173 0.80901724 6.30545807 0.58778542 0.95105678 6.30545807 0.30901706
1.000000238419 6.30545807 1.1780483e-015 0.95105678 6.30545807 -0.30901706 0.80901718 6.30545807 -0.58778536
0.58778536 6.30545807 -0.80901712 0.30901706 6.30545807 -0.95105666 2.9802322e-008 6.30545807 -1.000000119209
-0.30901697 6.30545807 -0.9510566 -0.58778524 6.30545807 -0.80901706 -0.809017 6.30545807 -0.5877853
-0.95105654 6.30545807 -0.309017 -1 6.30545807 1.1780483e-015 1.0171253e-015 8.30545807 2.0662268e-015
0.25000003 -0.95105654 -0.18163569 0.095491491 -0.95105654 -0.29389271 -0.095491551 -0.95105654 -0.29389265
-0.25000006 -0.95105654 -0.18163563 -0.30901703 -0.95105654 1.8418849e-008 -0.25000003 -0.95105654 0.18163568
-0.095491499 -0.95105654 0.29389265 0.095491514 -0.95105654 0.29389265 0.25 -0.95105654 0.18163563
0.309017 -0.95105654 0 0.4755283 -0.809017 -0.34549159 0.1816356 -0.809017 -0.55901712
-0.18163572 -0.809017 -0.55901706 -0.47552836 -0.809017 -0.3454915 -0.5877853 -0.809017 3.5034731e-008
-0.4755283 -0.809017 0.34549156 -0.18163562 -0.809017 0.55901706 0.18163565 -0.809017 0.559017
0.47552827 -0.809017 0.3454915 0.58778524 -0.809017 0 0.65450853 -0.58778524 -0.47552839
0.24999996 -0.58778524 -0.76942104 -0.25000012 -0.58778524 -0.76942098 -0.65450865 -0.58778524 -0.47552827
-0.80901712 -0.58778524 4.8221171e-008 -0.65450853 -0.58778524 0.47552836 -0.24999999 -0.58778524 0.76942098
0.25000003 -0.58778524 0.76942092 0.65450853 -0.58778524 0.47552827 0.809017 -0.58778524 0
0.76942098 -0.30901697 -0.55901718 0.29389259 -0.30901697 -0.90450871 -0.29389277 -0.30901697 -0.90450859
-0.7694211 -0.30901697 -0.559017 -0.95105666 -0.30901697 5.6687387e-008 -0.76942098 -0.30901697 0.55901712
-0.29389262 -0.30901697 0.90450859 0.29389268 -0.30901697 0.90450853 0.76942092 -0.30901697 0.559017
0.95105654 -0.30901697 0 0.80901706 0 -0.58778542 0.30901694 0 -0.95105672 -0.30901715 0 -0.9510566
-0.80901718 0 -0.58778524 -1.000000119209 0 5.9604645e-008 -0.80901706 0 0.58778536
-0.30901697 0 0.9510566 0.30901703 0 0.95105654 0.809017 0 0.58778524 1 0 0 0.76942098 0.30901697 -0.55901718
0.29389259 0.30901697 -0.90450871 -0.29389277 0.30901697 -0.90450859 -0.7694211 0.30901697 -0.559017
-0.95105666 0.30901697 5.6687387e-008 -0.76942098 0.30901697 0.55901712 -0.29389262 0.30901697 0.90450859
0.29389268 0.30901697 0.90450853 0.76942092 0.30901697 0.559017 0.95105654 0.30901697 0
0.65450853 0.58778524 -0.47552839 0.24999996 0.58778524 -0.76942104 -0.25000012 0.58778524 -0.76942098
-0.65450865 0.58778524 -0.47552827 -0.80901712 0.58778524 4.8221171e-008 -0.65450853 0.58778524 0.47552836
-0.24999999 0.58778524 0.76942098 0.25000003 0.58778524 0.76942092 0.65450853 0.58778524 0.47552827
0.809017 0.58778524 0 0.4755283 0.809017 -0.34549159 0.1816356 0.809017 -0.55901712
-0.18163572 0.809017 -0.55901706 -0.47552836 0.809017 -0.3454915 -0.5877853 0.809017 3.5034731e-008
-0.4755283 0.809017 0.34549156 -0.18163562 0.809017 0.55901706 0.18163565 0.809017 0.559017
0.47552827 0.809017 0.3454915 0.58778524 0.809017 0 0.25000003 0.95105654 -0.18163569
0.095491491 0.95105654 -0.29389271 -0.095491551 0.95105654 -0.29389265 -0.25000006 0.95105654 -0.18163563
-0.30901703 0.95105654 1.8418849e-008 -0.25000003 0.95105654 0.18163568 -0.095491499 0.95105654 0.29389265
0.095491514 0.95105654 0.29389265 0.25 0.95105654 0.18163563 0.309017 0.95105654 0
0 -1 0 0 1 0;
setAttr -s 610 ".ed";
setAttr ".ed[0:165]" 0 1 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0
9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 0 0
20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 0 26 27 0 27 28 0 28 29 0 29 30 0 30 31 0
31 32 0 32 33 0 33 34 0 34 35 0 35 36 0 36 37 0 37 38 0 38 39 0 39 20 0 0 20 1 1 21 1
2 22 1 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1
14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 40 0 1 40 1 1 40 2 1 40 3 1 40 4 1
40 5 1 40 6 1 40 7 1 40 8 1 40 9 1 40 10 1 40 11 1 40 12 1 40 13 1 40 14 1 40 15 1
40 16 1 40 17 1 40 18 1 40 19 1 20 41 1 21 41 1 22 41 1 23 41 1 24 41 1 25 41 1 26 41 1
27 41 1 28 41 1 29 41 1 30 41 1 31 41 1 32 41 1 33 41 1 34 41 1 35 41 1 36 41 1 37 41 1
38 41 1 39 41 1 42 43 0 43 44 0 44 45 0 45 46 0 46 47 0 47 48 0 48 49 0 49 50 0 50 51 0
51 52 0 52 53 0 53 54 0 54 55 0 55 56 0 56 57 0 57 58 0 58 59 0 59 60 0 60 61 0 61 42 0
42 62 1 43 62 1 44 62 1 45 62 1 46 62 1 47 62 1 48 62 1 49 62 1 50 62 1 51 62 1 52 62 1
53 62 1 54 62 1 55 62 1 56 62 1 57 62 1 58 62 1 59 62 1 60 62 1 61 62 1 63 64 0 64 65 0
65 66 0 66 67 0 67 68 0 68 69 0 69 70 0 70 71 0 71 72 0 72 73 0 73 74 0 74 75 0 75 76 0
76 77 0 77 78 0 78 79 0 79 80 0 80 81 0 81 82 0 82 63 0 83 84 0 84 85 0 85 86 0 86 87 0
87 88 0 88 89 0;
setAttr ".ed[166:331]" 89 90 0 90 91 0 91 92 0 92 93 0 93 94 0 94 95 0 95 96 0
96 97 0 97 98 0 98 99 0 99 100 0 100 101 0 101 102 0 102 83 0 63 83 1 64 84 1 65 85 1
66 86 1 67 87 1 68 88 1 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1
77 97 1 78 98 1 79 99 1 80 100 1 81 101 1 82 102 1 103 63 1 103 64 1 103 65 1 103 66 1
103 67 1 103 68 1 103 69 1 103 70 1 103 71 1 103 72 1 103 73 1 103 74 1 103 75 1
103 76 1 103 77 1 103 78 1 103 79 1 103 80 1 103 81 1 103 82 1 83 104 1 84 104 1
85 104 1 86 104 1 87 104 1 88 104 1 89 104 1 90 104 1 91 104 1 92 104 1 93 104 1
94 104 1 95 104 1 96 104 1 97 104 1 98 104 1 99 104 1 100 104 1 101 104 1 102 104 1
105 106 0 106 107 0 107 108 0 108 109 0 109 110 0 110 111 0 111 112 0 112 113 0 113 114 0
114 115 0 115 116 0 116 117 0 117 118 0 118 119 0 119 120 0 120 121 0 121 122 0 122 123 0
123 124 0 124 105 0 105 125 1 106 125 1 107 125 1 108 125 1 109 125 1 110 125 1 111 125 1
112 125 1 113 125 1 114 125 1 115 125 1 116 125 1 117 125 1 118 125 1 119 125 1 120 125 1
121 125 1 122 125 1 123 125 1 124 125 1 126 127 0 127 128 0 128 129 0 129 130 0 130 131 0
131 132 0 132 133 0 133 134 0 134 135 0 135 136 0 136 137 0 137 138 0 138 139 0 139 140 0
140 141 0 141 142 0 142 143 0 143 144 0 144 145 0 145 126 0 146 147 0 147 148 0 148 149 0
149 150 0 150 151 0 151 152 0 152 153 0 153 154 0 154 155 0 155 156 0 156 157 0 157 158 0
158 159 0 159 160 0 160 161 0 161 162 0 162 163 0 163 164 0 164 165 0 165 146 0 126 146 1
127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1 133 153 1 134 154 1 135 155 1
136 156 1 137 157 1;
setAttr ".ed[332:497]" 138 158 1 139 159 1 140 160 1 141 161 1 142 162 1 143 163 1
144 164 1 145 165 1 166 126 1 166 127 1 166 128 1 166 129 1 166 130 1 166 131 1 166 132 1
166 133 1 166 134 1 166 135 1 166 136 1 166 137 1 166 138 1 166 139 1 166 140 1 166 141 1
166 142 1 166 143 1 166 144 1 166 145 1 146 167 1 147 167 1 148 167 1 149 167 1 150 167 1
151 167 1 152 167 1 153 167 1 154 167 1 155 167 1 156 167 1 157 167 1 158 167 1 159 167 1
160 167 1 161 167 1 162 167 1 163 167 1 164 167 1 165 167 1 168 169 0 169 170 0 170 171 0
171 172 0 172 173 0 173 174 0 174 175 0 175 176 0 176 177 0 177 178 0 178 179 0 179 180 0
180 181 0 181 182 0 182 183 0 183 184 0 184 185 0 185 186 0 186 187 0 187 168 0 168 188 1
169 188 1 170 188 1 171 188 1 172 188 1 173 188 1 174 188 1 175 188 1 176 188 1 177 188 1
178 188 1 179 188 1 180 188 1 181 188 1 182 188 1 183 188 1 184 188 1 185 188 1 186 188 1
187 188 1 189 190 1 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1
197 198 1 198 189 1 199 200 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1
206 207 1 207 208 1 208 199 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1
215 216 1 216 217 1 217 218 1 218 209 1 219 220 1 220 221 1 221 222 1 222 223 1 223 224 1
224 225 1 225 226 1 226 227 1 227 228 1 228 219 1 229 230 1 230 231 1 231 232 1 232 233 1
233 234 1 234 235 1 235 236 1 236 237 1 237 238 1 238 229 1 239 240 1 240 241 1 241 242 1
242 243 1 243 244 1 244 245 1 245 246 1 246 247 1 247 248 1 248 239 1 249 250 1 250 251 1
251 252 1 252 253 1 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 249 1 259 260 1
260 261 1 261 262 1 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1;
setAttr ".ed[498:609]" 267 268 1 268 259 1 269 270 1 270 271 1 271 272 1 272 273 1
273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 269 1 189 199 1 190 200 1 191 201 1
192 202 1 193 203 1 194 204 1 195 205 1 196 206 1 197 207 1 198 208 1 199 209 1 200 210 1
201 211 1 202 212 1 203 213 1 204 214 1 205 215 1 206 216 1 207 217 1 208 218 1 209 219 1
210 220 1 211 221 1 212 222 1 213 223 1 214 224 1 215 225 1 216 226 1 217 227 1 218 228 1
219 229 1 220 230 1 221 231 1 222 232 1 223 233 1 224 234 1 225 235 1 226 236 1 227 237 1
228 238 1 229 239 1 230 240 1 231 241 1 232 242 1 233 243 1 234 244 1 235 245 1 236 246 1
237 247 1 238 248 1 239 249 1 240 250 1 241 251 1 242 252 1 243 253 1 244 254 1 245 255 1
246 256 1 247 257 1 248 258 1 249 259 1 250 260 1 251 261 1 252 262 1 253 263 1 254 264 1
255 265 1 256 266 1 257 267 1 258 268 1 259 269 1 260 270 1 261 271 1 262 272 1 263 273 1
264 274 1 265 275 1 266 276 1 267 277 1 268 278 1 279 189 1 279 190 1 279 191 1 279 192 1
279 193 1 279 194 1 279 195 1 279 196 1 279 197 1 279 198 1 269 280 1 270 280 1 271 280 1
272 280 1 273 280 1 274 280 1 275 280 1 276 280 1 277 280 1 278 280 1;
setAttr -s 343 -ch 1220 ".fc[0:342]" -type "polyFaces"
f 4 0 41 -21 -41
mu 0 4 20 21 42 41
f 4 1 42 -22 -42
mu 0 4 21 22 43 42
f 4 2 43 -23 -43
mu 0 4 22 23 44 43
f 4 3 44 -24 -44
mu 0 4 23 24 45 44
f 4 4 45 -25 -45
mu 0 4 24 25 46 45
f 4 5 46 -26 -46
mu 0 4 25 26 47 46
f 4 6 47 -27 -47
mu 0 4 26 27 48 47
f 4 7 48 -28 -48
mu 0 4 27 28 49 48
f 4 8 49 -29 -49
mu 0 4 28 29 50 49
f 4 9 50 -30 -50
mu 0 4 29 30 51 50
f 4 10 51 -31 -51
mu 0 4 30 31 52 51
f 4 11 52 -32 -52
mu 0 4 31 32 53 52
f 4 12 53 -33 -53
mu 0 4 32 33 54 53
f 4 13 54 -34 -54
mu 0 4 33 34 55 54
f 4 14 55 -35 -55
mu 0 4 34 35 56 55
f 4 15 56 -36 -56
mu 0 4 35 36 57 56
f 4 16 57 -37 -57
mu 0 4 36 37 58 57
f 4 17 58 -38 -58
mu 0 4 37 38 59 58
f 4 18 59 -39 -59
mu 0 4 38 39 60 59
f 4 19 40 -40 -60
mu 0 4 39 40 61 60
f 3 -1 -61 61
mu 0 3 1 0 82
f 3 -2 -62 62
mu 0 3 2 1 82
f 3 -3 -63 63
mu 0 3 3 2 82
f 3 -4 -64 64
mu 0 3 4 3 82
f 3 -5 -65 65
mu 0 3 5 4 82
f 3 -6 -66 66
mu 0 3 6 5 82
f 3 -7 -67 67
mu 0 3 7 6 82
f 3 -8 -68 68
mu 0 3 8 7 82
f 3 -9 -69 69
mu 0 3 9 8 82
f 3 -10 -70 70
mu 0 3 10 9 82
f 3 -11 -71 71
mu 0 3 11 10 82
f 3 -12 -72 72
mu 0 3 12 11 82
f 3 -13 -73 73
mu 0 3 13 12 82
f 3 -14 -74 74
mu 0 3 14 13 82
f 3 -15 -75 75
mu 0 3 15 14 82
f 3 -16 -76 76
mu 0 3 16 15 82
f 3 -17 -77 77
mu 0 3 17 16 82
f 3 -18 -78 78
mu 0 3 18 17 82
f 3 -19 -79 79
mu 0 3 19 18 82
f 3 -20 -80 60
mu 0 3 0 19 82
f 3 20 81 -81
mu 0 3 80 79 83
f 3 21 82 -82
mu 0 3 79 78 83
f 3 22 83 -83
mu 0 3 78 77 83
f 3 23 84 -84
mu 0 3 77 76 83
f 3 24 85 -85
mu 0 3 76 75 83
f 3 25 86 -86
mu 0 3 75 74 83
f 3 26 87 -87
mu 0 3 74 73 83
f 3 27 88 -88
mu 0 3 73 72 83
f 3 28 89 -89
mu 0 3 72 71 83
f 3 29 90 -90
mu 0 3 71 70 83
f 3 30 91 -91
mu 0 3 70 69 83
f 3 31 92 -92
mu 0 3 69 68 83
f 3 32 93 -93
mu 0 3 68 67 83
f 3 33 94 -94
mu 0 3 67 66 83
f 3 34 95 -95
mu 0 3 66 65 83
f 3 35 96 -96
mu 0 3 65 64 83
f 3 36 97 -97
mu 0 3 64 63 83
f 3 37 98 -98
mu 0 3 63 62 83
f 3 38 99 -99
mu 0 3 62 81 83
f 3 39 80 -100
mu 0 3 81 80 83
f 20 -120 -119 -118 -117 -116 -115 -114 -113 -112 -111 -110 -109 -108 -107 -106 -105
-104 -103 -102 -101
mu 0 20 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
f 3 100 121 -121
mu 0 3 104 105 106
f 3 101 122 -122
mu 0 3 105 107 106
f 3 102 123 -123
mu 0 3 107 108 106
f 3 103 124 -124
mu 0 3 108 109 106
f 3 104 125 -125
mu 0 3 109 110 106
f 3 105 126 -126
mu 0 3 110 111 106
f 3 106 127 -127
mu 0 3 111 112 106
f 3 107 128 -128
mu 0 3 112 113 106
f 3 108 129 -129
mu 0 3 113 114 106
f 3 109 130 -130
mu 0 3 114 115 106
f 3 110 131 -131
mu 0 3 115 116 106
f 3 111 132 -132
mu 0 3 116 117 106
f 3 112 133 -133
mu 0 3 117 118 106
f 3 113 134 -134
mu 0 3 118 119 106
f 3 114 135 -135
mu 0 3 119 120 106
f 3 115 136 -136
mu 0 3 120 121 106
f 3 116 137 -137
mu 0 3 121 122 106
f 3 117 138 -138
mu 0 3 122 123 106
f 3 118 139 -139
mu 0 3 123 124 106
f 3 119 120 -140
mu 0 3 124 125 106
f 4 140 181 -161 -181
mu 0 4 126 127 128 129
f 4 141 182 -162 -182
mu 0 4 127 130 131 128
f 4 142 183 -163 -183
mu 0 4 130 132 133 131
f 4 143 184 -164 -184
mu 0 4 132 134 135 133
f 4 144 185 -165 -185
mu 0 4 134 136 137 135
f 4 145 186 -166 -186
mu 0 4 136 138 139 137
f 4 146 187 -167 -187
mu 0 4 138 140 141 139
f 4 147 188 -168 -188
mu 0 4 140 142 143 141
f 4 148 189 -169 -189
mu 0 4 142 144 145 143
f 4 149 190 -170 -190
mu 0 4 144 146 147 145
f 4 150 191 -171 -191
mu 0 4 146 148 149 147
f 4 151 192 -172 -192
mu 0 4 148 150 151 149
f 4 152 193 -173 -193
mu 0 4 150 152 153 151
f 4 153 194 -174 -194
mu 0 4 152 154 155 153
f 4 154 195 -175 -195
mu 0 4 154 156 157 155
f 4 155 196 -176 -196
mu 0 4 156 158 159 157
f 4 156 197 -177 -197
mu 0 4 158 160 161 159
f 4 157 198 -178 -198
mu 0 4 160 162 163 161
f 4 158 199 -179 -199
mu 0 4 162 164 165 163
f 4 159 180 -180 -200
mu 0 4 164 166 167 165
f 3 -141 -201 201
mu 0 3 168 169 170
f 3 -142 -202 202
mu 0 3 171 168 170
f 3 -143 -203 203
mu 0 3 172 171 170
f 3 -144 -204 204
mu 0 3 173 172 170
f 3 -145 -205 205
mu 0 3 174 173 170
f 3 -146 -206 206
mu 0 3 175 174 170
f 3 -147 -207 207
mu 0 3 176 175 170
f 3 -148 -208 208
mu 0 3 177 176 170
f 3 -149 -209 209
mu 0 3 178 177 170
f 3 -150 -210 210
mu 0 3 179 178 170
f 3 -151 -211 211
mu 0 3 180 179 170
f 3 -152 -212 212
mu 0 3 181 180 170
f 3 -153 -213 213
mu 0 3 182 181 170
f 3 -154 -214 214
mu 0 3 183 182 170
f 3 -155 -215 215
mu 0 3 184 183 170
f 3 -156 -216 216
mu 0 3 185 184 170
f 3 -157 -217 217
mu 0 3 186 185 170
f 3 -158 -218 218
mu 0 3 187 186 170
f 3 -159 -219 219
mu 0 3 188 187 170
f 3 -160 -220 200
mu 0 3 169 188 170
f 3 160 221 -221
mu 0 3 189 190 191
f 3 161 222 -222
mu 0 3 190 192 191
f 3 162 223 -223
mu 0 3 192 193 191
f 3 163 224 -224
mu 0 3 193 194 191
f 3 164 225 -225
mu 0 3 194 195 191
f 3 165 226 -226
mu 0 3 195 196 191
f 3 166 227 -227
mu 0 3 196 197 191
f 3 167 228 -228
mu 0 3 197 198 191
f 3 168 229 -229
mu 0 3 198 199 191
f 3 169 230 -230
mu 0 3 199 200 191
f 3 170 231 -231
mu 0 3 200 201 191
f 3 171 232 -232
mu 0 3 201 202 191
f 3 172 233 -233
mu 0 3 202 203 191
f 3 173 234 -234
mu 0 3 203 204 191
f 3 174 235 -235
mu 0 3 204 205 191
f 3 175 236 -236
mu 0 3 205 206 191
f 3 176 237 -237
mu 0 3 206 207 191
f 3 177 238 -238
mu 0 3 207 208 191
f 3 178 239 -239
mu 0 3 208 209 191
f 3 179 220 -240
mu 0 3 209 189 191
f 20 -260 -259 -258 -257 -256 -255 -254 -253 -252 -251 -250 -249 -248 -247 -246 -245
-244 -243 -242 -241
mu 0 20 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
f 3 240 261 -261
mu 0 3 230 231 232
f 3 241 262 -262
mu 0 3 231 233 232
f 3 242 263 -263
mu 0 3 233 234 232
f 3 243 264 -264
mu 0 3 234 235 232
f 3 244 265 -265
mu 0 3 235 236 232
f 3 245 266 -266
mu 0 3 236 237 232
f 3 246 267 -267
mu 0 3 237 238 232
f 3 247 268 -268
mu 0 3 238 239 232
f 3 248 269 -269
mu 0 3 239 240 232
f 3 249 270 -270
mu 0 3 240 241 232
f 3 250 271 -271
mu 0 3 241 242 232
f 3 251 272 -272
mu 0 3 242 243 232
f 3 252 273 -273
mu 0 3 243 244 232
f 3 253 274 -274
mu 0 3 244 245 232
f 3 254 275 -275
mu 0 3 245 246 232
f 3 255 276 -276
mu 0 3 246 247 232
f 3 256 277 -277
mu 0 3 247 248 232
f 3 257 278 -278
mu 0 3 248 249 232
f 3 258 279 -279
mu 0 3 249 250 232
f 3 259 260 -280
mu 0 3 250 251 232
f 4 280 321 -301 -321
mu 0 4 252 253 254 255
f 4 281 322 -302 -322
mu 0 4 253 256 257 254
f 4 282 323 -303 -323
mu 0 4 256 258 259 257
f 4 283 324 -304 -324
mu 0 4 258 260 261 259
f 4 284 325 -305 -325
mu 0 4 260 262 263 261
f 4 285 326 -306 -326
mu 0 4 262 264 265 263
f 4 286 327 -307 -327
mu 0 4 264 266 267 265
f 4 287 328 -308 -328
mu 0 4 266 268 269 267
f 4 288 329 -309 -329
mu 0 4 268 270 271 269
f 4 289 330 -310 -330
mu 0 4 270 272 273 271
f 4 290 331 -311 -331
mu 0 4 272 274 275 273
f 4 291 332 -312 -332
mu 0 4 274 276 277 275
f 4 292 333 -313 -333
mu 0 4 276 278 279 277
f 4 293 334 -314 -334
mu 0 4 278 280 281 279
f 4 294 335 -315 -335
mu 0 4 280 282 283 281
f 4 295 336 -316 -336
mu 0 4 282 284 285 283
f 4 296 337 -317 -337
mu 0 4 284 286 287 285
f 4 297 338 -318 -338
mu 0 4 286 288 289 287
f 4 298 339 -319 -339
mu 0 4 288 290 291 289
f 4 299 320 -320 -340
mu 0 4 290 292 293 291
f 3 -281 -341 341
mu 0 3 294 295 296
f 3 -282 -342 342
mu 0 3 297 294 296
f 3 -283 -343 343
mu 0 3 298 297 296
f 3 -284 -344 344
mu 0 3 299 298 296
f 3 -285 -345 345
mu 0 3 300 299 296
f 3 -286 -346 346
mu 0 3 301 300 296
f 3 -287 -347 347
mu 0 3 302 301 296
f 3 -288 -348 348
mu 0 3 303 302 296
f 3 -289 -349 349
mu 0 3 304 303 296
f 3 -290 -350 350
mu 0 3 305 304 296
f 3 -291 -351 351
mu 0 3 306 305 296
f 3 -292 -352 352
mu 0 3 307 306 296
f 3 -293 -353 353
mu 0 3 308 307 296
f 3 -294 -354 354
mu 0 3 309 308 296
f 3 -295 -355 355
mu 0 3 310 309 296
f 3 -296 -356 356
mu 0 3 311 310 296
f 3 -297 -357 357
mu 0 3 312 311 296
f 3 -298 -358 358
mu 0 3 313 312 296
f 3 -299 -359 359
mu 0 3 314 313 296
f 3 -300 -360 340
mu 0 3 295 314 296
f 3 300 361 -361
mu 0 3 315 316 317
f 3 301 362 -362
mu 0 3 316 318 317
f 3 302 363 -363
mu 0 3 318 319 317
f 3 303 364 -364
mu 0 3 319 320 317
f 3 304 365 -365
mu 0 3 320 321 317
f 3 305 366 -366
mu 0 3 321 322 317
f 3 306 367 -367
mu 0 3 322 323 317
f 3 307 368 -368
mu 0 3 323 324 317
f 3 308 369 -369
mu 0 3 324 325 317
f 3 309 370 -370
mu 0 3 325 326 317
f 3 310 371 -371
mu 0 3 326 327 317
f 3 311 372 -372
mu 0 3 327 328 317
f 3 312 373 -373
mu 0 3 328 329 317
f 3 313 374 -374
mu 0 3 329 330 317
f 3 314 375 -375
mu 0 3 330 331 317
f 3 315 376 -376
mu 0 3 331 332 317
f 3 316 377 -377
mu 0 3 332 333 317
f 3 317 378 -378
mu 0 3 333 334 317
f 3 318 379 -379
mu 0 3 334 335 317
f 3 319 360 -380
mu 0 3 335 315 317
f 20 -400 -399 -398 -397 -396 -395 -394 -393 -392 -391 -390 -389 -388 -387 -386 -385
-384 -383 -382 -381
mu 0 20 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
f 3 380 401 -401
mu 0 3 356 357 358
f 3 381 402 -402
mu 0 3 357 359 358
f 3 382 403 -403
mu 0 3 359 360 358
f 3 383 404 -404
mu 0 3 360 361 358
f 3 384 405 -405
mu 0 3 361 362 358
f 3 385 406 -406
mu 0 3 362 363 358
f 3 386 407 -407
mu 0 3 363 364 358
f 3 387 408 -408
mu 0 3 364 365 358
f 3 388 409 -409
mu 0 3 365 366 358
f 3 389 410 -410
mu 0 3 366 367 358
f 3 390 411 -411
mu 0 3 367 368 358
f 3 391 412 -412
mu 0 3 368 369 358
f 3 392 413 -413
mu 0 3 369 370 358
f 3 393 414 -414
mu 0 3 370 371 358
f 3 394 415 -415
mu 0 3 371 372 358
f 3 395 416 -416
mu 0 3 372 373 358
f 3 396 417 -417
mu 0 3 373 374 358
f 3 397 418 -418
mu 0 3 374 375 358
f 3 398 419 -419
mu 0 3 375 376 358
f 3 399 400 -420
mu 0 3 376 377 358
f 4 420 511 -431 -511
mu 0 4 378 379 380 381
f 4 421 512 -432 -512
mu 0 4 379 382 383 380
f 4 422 513 -433 -513
mu 0 4 382 384 385 383
f 4 423 514 -434 -514
mu 0 4 384 386 387 385
f 4 424 515 -435 -515
mu 0 4 386 388 389 387
f 4 425 516 -436 -516
mu 0 4 388 390 391 389
f 4 426 517 -437 -517
mu 0 4 390 392 393 391
f 4 427 518 -438 -518
mu 0 4 392 394 395 393
f 4 428 519 -439 -519
mu 0 4 394 396 397 395
f 4 429 510 -440 -520
mu 0 4 396 398 399 397
f 4 430 521 -441 -521
mu 0 4 381 380 400 401
f 4 431 522 -442 -522
mu 0 4 380 383 402 400
f 4 432 523 -443 -523
mu 0 4 383 385 403 402
f 4 433 524 -444 -524
mu 0 4 385 387 404 403
f 4 434 525 -445 -525
mu 0 4 387 389 405 404
f 4 435 526 -446 -526
mu 0 4 389 391 406 405
f 4 436 527 -447 -527
mu 0 4 391 393 407 406
f 4 437 528 -448 -528
mu 0 4 393 395 408 407
f 4 438 529 -449 -529
mu 0 4 395 397 409 408
f 4 439 520 -450 -530
mu 0 4 397 399 410 409
f 4 440 531 -451 -531
mu 0 4 401 400 411 412
f 4 441 532 -452 -532
mu 0 4 400 402 413 411
f 4 442 533 -453 -533
mu 0 4 402 403 414 413
f 4 443 534 -454 -534
mu 0 4 403 404 415 414
f 4 444 535 -455 -535
mu 0 4 404 405 416 415
f 4 445 536 -456 -536
mu 0 4 405 406 417 416
f 4 446 537 -457 -537
mu 0 4 406 407 418 417
f 4 447 538 -458 -538
mu 0 4 407 408 419 418
f 4 448 539 -459 -539
mu 0 4 408 409 420 419
f 4 449 530 -460 -540
mu 0 4 409 410 421 420
f 4 450 541 -461 -541
mu 0 4 412 411 422 423
f 4 451 542 -462 -542
mu 0 4 411 413 424 422
f 4 452 543 -463 -543
mu 0 4 413 414 425 424
f 4 453 544 -464 -544
mu 0 4 414 415 426 425
f 4 454 545 -465 -545
mu 0 4 415 416 427 426
f 4 455 546 -466 -546
mu 0 4 416 417 428 427
f 4 456 547 -467 -547
mu 0 4 417 418 429 428
f 4 457 548 -468 -548
mu 0 4 418 419 430 429
f 4 458 549 -469 -549
mu 0 4 419 420 431 430
f 4 459 540 -470 -550
mu 0 4 420 421 432 431
f 4 460 551 -471 -551
mu 0 4 423 422 433 434
f 4 461 552 -472 -552
mu 0 4 422 424 435 433
f 4 462 553 -473 -553
mu 0 4 424 425 436 435
f 4 463 554 -474 -554
mu 0 4 425 426 437 436
f 4 464 555 -475 -555
mu 0 4 426 427 438 437
f 4 465 556 -476 -556
mu 0 4 427 428 439 438
f 4 466 557 -477 -557
mu 0 4 428 429 440 439
f 4 467 558 -478 -558
mu 0 4 429 430 441 440
f 4 468 559 -479 -559
mu 0 4 430 431 442 441
f 4 469 550 -480 -560
mu 0 4 431 432 443 442
f 4 470 561 -481 -561
mu 0 4 434 433 444 445
f 4 471 562 -482 -562
mu 0 4 433 435 446 444
f 4 472 563 -483 -563
mu 0 4 435 436 447 446
f 4 473 564 -484 -564
mu 0 4 436 437 448 447
f 4 474 565 -485 -565
mu 0 4 437 438 449 448
f 4 475 566 -486 -566
mu 0 4 438 439 450 449
f 4 476 567 -487 -567
mu 0 4 439 440 451 450
f 4 477 568 -488 -568
mu 0 4 440 441 452 451
f 4 478 569 -489 -569
mu 0 4 441 442 453 452
f 4 479 560 -490 -570
mu 0 4 442 443 454 453
f 4 480 571 -491 -571
mu 0 4 445 444 455 456
f 4 481 572 -492 -572
mu 0 4 444 446 457 455
f 4 482 573 -493 -573
mu 0 4 446 447 458 457
f 4 483 574 -494 -574
mu 0 4 447 448 459 458
f 4 484 575 -495 -575
mu 0 4 448 449 460 459
f 4 485 576 -496 -576
mu 0 4 449 450 461 460
f 4 486 577 -497 -577
mu 0 4 450 451 462 461
f 4 487 578 -498 -578
mu 0 4 451 452 463 462
f 4 488 579 -499 -579
mu 0 4 452 453 464 463
f 4 489 570 -500 -580
mu 0 4 453 454 465 464
f 4 490 581 -501 -581
mu 0 4 456 455 466 467
f 4 491 582 -502 -582
mu 0 4 455 457 468 466
f 4 492 583 -503 -583
mu 0 4 457 458 469 468
f 4 493 584 -504 -584
mu 0 4 458 459 470 469
f 4 494 585 -505 -585
mu 0 4 459 460 471 470
f 4 495 586 -506 -586
mu 0 4 460 461 472 471
f 4 496 587 -507 -587
mu 0 4 461 462 473 472
f 4 497 588 -508 -588
mu 0 4 462 463 474 473
f 4 498 589 -509 -589
mu 0 4 463 464 475 474
f 4 499 580 -510 -590
mu 0 4 464 465 476 475
f 3 -421 -591 591
mu 0 3 379 378 477
f 3 -422 -592 592
mu 0 3 382 379 478
f 3 -423 -593 593
mu 0 3 384 382 479
f 3 -424 -594 594
mu 0 3 386 384 480
f 3 -425 -595 595
mu 0 3 388 386 481
f 3 -426 -596 596
mu 0 3 390 388 482
f 3 -427 -597 597
mu 0 3 392 390 483
f 3 -428 -598 598
mu 0 3 394 392 484
f 3 -429 -599 599
mu 0 3 396 394 485
f 3 -430 -600 590
mu 0 3 398 396 486
f 3 500 601 -601
mu 0 3 467 466 487
f 3 501 602 -602
mu 0 3 466 468 488
f 3 502 603 -603
mu 0 3 468 469 489
f 3 503 604 -604
mu 0 3 469 470 490
f 3 504 605 -605
mu 0 3 470 471 491
f 3 505 606 -606
mu 0 3 471 472 492
f 3 506 607 -607
mu 0 3 472 473 493
f 3 507 608 -608
mu 0 3 473 474 494
f 3 508 609 -609
mu 0 3 474 475 495
f 3 509 600 -610
mu 0 3 475 476 496;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".bw" 4;
createNode transform -n "chain_01_mover_end" -p "chain_01_mover_offset";
rename -uid "B9F569D9-4022-86FE-3710-2DABBB12EEAA";
setAttr ".t" -type "double3" 28.888064949419768 -3.3942607443947484e-015 -7.7001897307096959e-030 ;
setAttr ".rp" -type "double3" -15.092083285211148 1.7728972240403631e-015 1.4946685743339145e-030 ;
setAttr ".sp" -type "double3" -15.092083285211148 1.7728972240403631e-015 1.4946685743339145e-030 ;
createNode lightLinker -s -n "lightLinker1";
rename -uid "2ADF7C23-423E-4913-12AD-249CB1D1C844";
setAttr -s 7 ".lnk";
setAttr -s 7 ".slnk";
createNode displayLayerManager -n "layerManager";
rename -uid "FC2EA427-443E-6A22-010C-948D3599F8ED";
createNode displayLayer -n "defaultLayer";
rename -uid "DC35E4B8-4E7B-3C71-22F4-82BE02099344";
createNode renderLayerManager -n "renderLayerManager";
rename -uid "802EDC69-4F4C-2B96-2EA0-A0A0A0BB0164";
createNode renderLayer -n "defaultRenderLayer";
rename -uid "CDD07875-445F-CDA3-60E6-BBA1B59C8329";
setAttr ".g" yes;
createNode ilrOptionsNode -s -n "TurtleRenderOptions";
rename -uid "B1897EF5-4E2A-96E0-474E-0D8701922893";
lockNode -l 1 ;
createNode ilrUIOptionsNode -s -n "TurtleUIOptions";
rename -uid "521043D7-4D34-2720-7ACF-12AF8108C8BE";
lockNode -l 1 ;
createNode ilrBakeLayerManager -s -n "TurtleBakeLayerManager";
rename -uid "CC5FCEB3-487C-113B-1E6A-D5BA7D5D1301";
lockNode -l 1 ;
createNode ilrBakeLayer -s -n "TurtleDefaultBakeLayer";
rename -uid "56911365-46FB-5983-7933-6FA8175F112F";
lockNode -l 1 ;
createNode nodeGraphEditorInfo -n "MayaNodeEditorSavedTabsInfo";
rename -uid "279407A7-4A5B-2690-C429-B7A70873BD5A";
setAttr ".tgi[0].tn" -type "string" "Untitled_1";
setAttr ".tgi[0].vl" -type "double2" -639.28568888278335 -566.66664414935724 ;
setAttr ".tgi[0].vh" -type "double2" 640.4761650259544 565.47616800618641 ;
setAttr -s 5 ".tgi[0].ni";
setAttr ".tgi[0].ni[0].x" 1.4285714626312256;
setAttr ".tgi[0].ni[0].y" -1.4285714626312256;
setAttr ".tgi[0].ni[0].nvs" 18304;
setAttr ".tgi[0].ni[1].x" 321.42855834960937;
setAttr ".tgi[0].ni[1].y" -98.571426391601563;
setAttr ".tgi[0].ni[1].nvs" 18304;
setAttr ".tgi[0].ni[2].x" 1.4285714626312256;
setAttr ".tgi[0].ni[2].y" -1.4285714626312256;
setAttr ".tgi[0].ni[2].nvs" 18304;
setAttr ".tgi[0].ni[3].x" 844.28570556640625;
setAttr ".tgi[0].ni[3].y" -98.571426391601563;
setAttr ".tgi[0].ni[3].nvs" 18304;
setAttr ".tgi[0].ni[4].x" 582.85711669921875;
setAttr ".tgi[0].ni[4].y" -98.571426391601563;
setAttr ".tgi[0].ni[4].nvs" 18304;
createNode phong -n "proxy_shader_tan";
rename -uid "0DE89917-408E-EBE2-BDF5-0DBCB11D6C8D";
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";
rename -uid "2187E38A-494D-5CB8-44CB-21B6AA028D73";
setAttr ".dc" 1;
setAttr ".c" -type "float3" 0 0 0 ;
setAttr ".cp" 11.314000129699707;
createNode shadingEngine -n "proxy_shader_tanSG";
rename -uid "AFF60360-47CC-A07E-CEB3-6BB0F72FAEE3";
setAttr ".ihi" 0;
setAttr -s 2 ".dsm";
setAttr ".ro" yes;
setAttr -s 2 ".gn";
createNode materialInfo -n "materialInfo1";
rename -uid "CEB4F2EC-47F1-63B9-32AE-E683CAB24D06";
createNode shadingEngine -n "proxy_shader_blackSG";
rename -uid "AF2FB0FF-4E74-717B-3ECD-48BC1FB1091A";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo2";
rename -uid "7FC0CDE4-4CBB-A8F1-79BC-239684F8A14E";
createNode script -n "uiConfigurationScriptNode";
rename -uid "D953E306-4603-6F0A-EE21-18ABCBF45416";
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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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"
+ " -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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"
+ " -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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"
+ " -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1248\n -height 754\n -sceneRenderFilter 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 -docTag \"RADRENDER\" \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 -holdOuts 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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n"
+ " -width 1248\n -height 754\n -sceneRenderFilter 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 -ignoreOutlinerColor 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 -ignoreOutlinerColor 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 -ignoreOutlinerColor 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.25\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 -ignoreOutlinerColor 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.25\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 -ignoreOutlinerColor 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 -ignoreOutlinerColor 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\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 \"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 \"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 Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"polyTexturePlacementPanel\" -l (localizedPanelLabel(\"UV Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"UV 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 \"profilerPanel\" (localizedPanelLabel(\"Profiler Tool\")) `;\n"
+ "\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"profilerPanel\" -l (localizedPanelLabel(\"Profiler Tool\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Profiler Tool\")) -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 -holdOuts 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 32768\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 -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererOverrideName \"stereoOverrideVP2\" \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 -captureSequenceNumber -1\n -width 0\n -height 0\n -sceneRenderFilter 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 -holdOuts 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 32768\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 -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererOverrideName \"stereoOverrideVP2\" \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 -captureSequenceNumber -1\n -width 0\n -height 0\n -sceneRenderFilter 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\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"MG-PickerStudio_3DPanel\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"MG-PickerStudio_3DPanel\")) -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 -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n"
+ " -width 1\n -height 1\n -sceneRenderFilter 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(\"MG-PickerStudio_3DPanel\")) -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 -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\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 32768\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 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 -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 \"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 -consistentNameSize 1\n -createNodeCommand \"nodeEdCreateNodeCommand\" \n -defaultPinnedState 0\n -additiveGraphingMode 1\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \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 -activeTab -1\n -editorMode \"default\" \n $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 -consistentNameSize 1\n -createNodeCommand \"nodeEdCreateNodeCommand\" \n -defaultPinnedState 0\n -additiveGraphingMode 1\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \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 -activeTab -1\n -editorMode \"default\" \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 23 100 -ps 2 77 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 -ignoreOutlinerColor 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 -ignoreOutlinerColor 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 -docTag \\\"RADRENDER\\\" \\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 -holdOuts 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 32768\\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\\n -width 1248\\n -height 754\\n -sceneRenderFilter 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 -docTag \\\"RADRENDER\\\" \\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 -holdOuts 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 32768\\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 -depthOfFieldPreview 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 -captureSequenceNumber -1\\n -width 1248\\n -height 754\\n -sceneRenderFilter 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 0 -compassAngle 0 -frontParameters \"\" -homeParameters \"\" -selectionLockParameters \"\";\n}\n");
setAttr ".st" 3;
createNode script -n "sceneConfigurationScriptNode";
rename -uid "9F8A9735-4E0A-A9B2-E47F-C59A2C5281D7";
setAttr ".b" -type "string" "playbackOptions -min 1.25 -max 150 -ast 1.25 -aet 250 ";
setAttr ".st" 6;
createNode groupId -n "groupId5";
rename -uid "865E5EBE-48EE-5EB2-F81D-06B20A823351";
setAttr ".ihi" 0;
createNode groupId -n "groupId6";
rename -uid "1E10F8E6-4801-4CAE-96F8-66845C8A8DC7";
setAttr ".ihi" 0;
createNode groupId -n "groupId7";
rename -uid "7296C0BC-4239-F0C7-8A43-E6B2D6B550C3";
setAttr ".ihi" 0;
createNode groupId -n "pasted__groupId7";
rename -uid "1C627300-45C4-028F-53C7-9E94021563E1";
setAttr ".ihi" 0;
createNode shadingEngine -n "pasted__lambert3SG";
rename -uid "0B708DA2-4B33-9F43-6F74-BDB67113F357";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "pasted__materialInfo2";
rename -uid "9DFAC4F0-463A-C79A-428B-CBA408539D1D";
createNode lambert -n "red_m";
rename -uid "F9DD8BC5-4D01-015A-BEB7-1293F1AF25A8";
setAttr ".c" -type "float3" 1 0 0 ;
createNode groupId -n "pasted__groupId8";
rename -uid "572ED42D-4840-F6DD-05DA-1BA842B408AE";
setAttr ".ihi" 0;
createNode shadingEngine -n "lambert2SG";
rename -uid "92818141-444C-3BB4-61E3-BCB6511B4190";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "pasted__materialInfo1";
rename -uid "B2106A4C-4C37-5E5A-9C00-63B1B238960E";
createNode lambert -n "blue_m";
rename -uid "548E8122-4A53-0BB6-C26D-AFBB51A289D1";
setAttr ".c" -type "float3" 0 0 1 ;
createNode groupId -n "pasted__groupId9";
rename -uid "9217256D-4780-2F2C-0BE4-3681A889985B";
setAttr ".ihi" 0;
createNode shadingEngine -n "lambert4SG";
rename -uid "69AAC56A-4F59-839B-7F52-9FA37E0B8308";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "pasted__materialInfo3";
rename -uid "FA3CBF50-451C-8CCB-2BD5-04BDA4D73DD1";
createNode lambert -n "green_m";
rename -uid "E482B429-42D0-5AE0-6B54-D8907E3BDEB6";
setAttr ".c" -type "float3" 0 1 0 ;
createNode groupId -n "pasted__groupId10";
rename -uid "C3F248B4-4A8D-4D34-B49F-C3B389E8B299";
setAttr ".ihi" 0;
createNode nodeGraphEditorInfo -n "hyperShadePrimaryNodeEditorSavedTabsInfo";
rename -uid "FEC982CA-4DC7-493B-A1D4-3F8458E21F32";
setAttr ".tgi[0].tn" -type "string" "Untitled_1";
setAttr ".tgi[0].vl" -type "double2" -140.47618489416843 161.09306719181023 ;
setAttr ".tgi[0].vh" -type "double2" 159.52380318490313 280.57358192460066 ;
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;
setAttr -k on ".etw";
setAttr -k on ".tps";
setAttr -av -k on ".tms";
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 ;
setAttr ".fprt" yes;
select -ne :renderPartition;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -s 7 ".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 9 ".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 -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 :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 -av -k on ".cch";
setAttr -k on ".ihi";
setAttr -av -k on ".nds";
setAttr -k on ".bnm";
setAttr -av ".w";
setAttr -av ".h";
setAttr -av ".pa" 1;
setAttr -av -k on ".al";
setAttr -av ".dar";
setAttr -av -k on ".ldar";
setAttr -k on ".dpi";
setAttr -av -k on ".off";
setAttr -av -k on ".fld";
setAttr -av -k on ".zsl";
setAttr -k on ".isu";
setAttr -k on ".pdu";
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 :ikSystem;
setAttr -s 4 ".sol";
connectAttr "groupId6.id" "chain_01_proxy_geoShape.iog.og[0].gid";
connectAttr "proxy_shader_tanSG.mwc" "chain_01_proxy_geoShape.iog.og[0].gco";
connectAttr "groupId7.id" "chain_01_proxy_geoShape.iog.og[1].gid";
connectAttr "proxy_shader_blackSG.mwc" "chain_01_proxy_geoShape.iog.og[1].gco";
connectAttr "groupId5.id" "chain_01_proxy_geoShape.ciog.cog[0].cgid";
connectAttr "pasted__groupId7.id" "chain_01_lraShape.iog.og[0].gid";
connectAttr "pasted__lambert3SG.mwc" "chain_01_lraShape.iog.og[0].gco";
connectAttr "pasted__groupId8.id" "chain_01_lraShape.iog.og[1].gid";
connectAttr "lambert2SG.mwc" "chain_01_lraShape.iog.og[1].gco";
connectAttr "pasted__groupId9.id" "chain_01_lraShape.iog.og[2].gid";
connectAttr "lambert4SG.mwc" "chain_01_lraShape.iog.og[2].gco";
connectAttr "pasted__groupId10.id" "chain_01_lraShape.iog.og[3].gid";
connectAttr ":initialShadingGroup.mwc" "chain_01_lraShape.iog.og[3].gco";
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 "link" ":lightLinker1" "lambert2SG.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "pasted__lambert3SG.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "lambert4SG.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";
relationship "shadowLink" ":lightLinker1" "lambert2SG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "pasted__lambert3SG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "lambert4SG.message" ":defaultLightSet.message";
connectAttr "layerManager.dli[0]" "defaultLayer.id";
connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid";
connectAttr ":TurtleDefaultBakeLayer.idx" ":TurtleBakeLayerManager.bli[0]";
connectAttr ":TurtleRenderOptions.msg" ":TurtleDefaultBakeLayer.rset";
connectAttr "defaultRenderLayer.msg" "MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn"
;
connectAttr ":TurtleRenderOptions.msg" "MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn"
;
connectAttr ":TurtleUIOptions.msg" "MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn"
;
connectAttr ":TurtleBakeLayerManager.msg" "MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn"
;
connectAttr ":TurtleDefaultBakeLayer.msg" "MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn"
;
connectAttr "proxy_shader_tan.oc" "proxy_shader_tanSG.ss";
connectAttr "chain_01_proxy_geoShape.ciog.cog[0]" "proxy_shader_tanSG.dsm" -na;
connectAttr "chain_01_proxy_geoShape.iog.og[0]" "proxy_shader_tanSG.dsm" -na;
connectAttr "groupId5.msg" "proxy_shader_tanSG.gn" -na;
connectAttr "groupId6.msg" "proxy_shader_tanSG.gn" -na;
connectAttr "proxy_shader_tanSG.msg" "materialInfo1.sg";
connectAttr "proxy_shader_tan.msg" "materialInfo1.m";
connectAttr "proxy_shader_black.oc" "proxy_shader_blackSG.ss";
connectAttr "groupId7.msg" "proxy_shader_blackSG.gn" -na;
connectAttr "chain_01_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 "red_m.oc" "pasted__lambert3SG.ss";
connectAttr "chain_01_lraShape.iog.og[0]" "pasted__lambert3SG.dsm" -na;
connectAttr "pasted__groupId7.msg" "pasted__lambert3SG.gn" -na;
connectAttr "pasted__lambert3SG.msg" "pasted__materialInfo2.sg";
connectAttr "red_m.msg" "pasted__materialInfo2.m";
connectAttr "blue_m.oc" "lambert2SG.ss";
connectAttr "chain_01_lraShape.iog.og[1]" "lambert2SG.dsm" -na;
connectAttr "pasted__groupId8.msg" "lambert2SG.gn" -na;
connectAttr "lambert2SG.msg" "pasted__materialInfo1.sg";
connectAttr "blue_m.msg" "pasted__materialInfo1.m";
connectAttr "green_m.oc" "lambert4SG.ss";
connectAttr "chain_01_lraShape.iog.og[2]" "lambert4SG.dsm" -na;
connectAttr "pasted__groupId9.msg" "lambert4SG.gn" -na;
connectAttr "lambert4SG.msg" "pasted__materialInfo3.sg";
connectAttr "green_m.msg" "pasted__materialInfo3.m";
connectAttr "proxy_shader_tanSG.pa" ":renderPartition.st" -na;
connectAttr "proxy_shader_blackSG.pa" ":renderPartition.st" -na;
connectAttr "lambert2SG.pa" ":renderPartition.st" -na;
connectAttr "pasted__lambert3SG.pa" ":renderPartition.st" -na;
connectAttr "lambert4SG.pa" ":renderPartition.st" -na;
connectAttr "proxy_shader_tan.msg" ":defaultShaderList1.s" -na;
connectAttr "proxy_shader_black.msg" ":defaultShaderList1.s" -na;
connectAttr "blue_m.msg" ":defaultShaderList1.s" -na;
connectAttr "red_m.msg" ":defaultShaderList1.s" -na;
connectAttr "green_m.msg" ":defaultShaderList1.s" -na;
connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na;
connectAttr "chain_01_lraShape.iog.og[3]" ":initialShadingGroup.dsm" -na;
connectAttr "pasted__groupId10.msg" ":initialShadingGroup.gn" -na;
// End of ART_Chain.ma
|