Subversion Repository Public Repository

Nextrek

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
fileFormatVersion: 2
guid: ae23c9e2ca69e164eae81c6c10406714
ModelImporter:
  serializedVersion: 16
  fileIDToRecycleName:
    100000: abdomen
    100002: blMilWom_v4b_68498
    100004: blMilWom_v4b_68498.Shape
    100006: blMilWom_v4b_68498.Shape_MeshPart0
    100008: blMilWom_v4b_68498.Shape_MeshPart1
    100010: blMilWom_v4b_68498.Shape_MeshPart2
    100012: bodyMorphs
    100014: chest
    100016: eyeBrow
    100018: head
    100020: hip
    100022: lCollar
    100024: lEye
    100026: lFoot
    100028: lForeArm
    100030: lHand
    100032: lIndex1
    100034: lIndex2
    100036: lIndex3
    100038: lMid1
    100040: lMid2
    100042: lMid3
    100044: lowerJaw
    100046: lPinky1
    100048: lPinky2
    100050: lPinky3
    100052: lRing1
    100054: lRing2
    100056: lRing3
    100058: lShin
    100060: lShldr
    100062: lThigh
    100064: lThumb1
    100066: lThumb2
    100068: lThumb3
    100070: lToe
    100072: neck
    100074: //RootNode
    100076: rCollar
    100078: rEye
    100080: rFoot
    100082: rForeArm
    100084: rHand
    100086: rIndex1
    100088: rIndex2
    100090: rIndex3
    100092: rMid1
    100094: rMid2
    100096: rMid3
    100098: rPinky1
    100100: rPinky2
    100102: rPinky3
    100104: rRing1
    100106: rRing2
    100108: rRing3
    100110: rShin
    100112: rShldr
    100114: rThigh
    100116: rThumb1
    100118: rThumb2
    100120: rThumb3
    100122: rToe
    100124: tongue01
    100126: tongue02
    100128: tongue03
    100130: tongue04
    100132: tongue05
    100134: tongueBase
    100136: tongueTip
    100138: upperJaw
    100140: V4AbdomenBackFwd
    100142: V4BsAbdomenBackFwd
    100144: V4BsLBreastMorphDnOut
    100146: V4BsLBreastMorphUpIn
    100148: V4BsLCllrBreast
    100150: V4BsLCllrShldrLatUp
    100152: V4BsLCollarTrapUp
    100154: V4BsLHipGluteFwd-Bkwd
    100156: V4BsLShldrArmPitDn
    100158: V4BsLShldrDeltCrsUp
    100160: V4BsLShldrDeltFwd-Chst
    100162: V4BsLShldrDeltFwd-Cllr
    100164: V4BsLShldrDeltUp
    100166: V4BsLShldrPecFwd-Chst
    100168: V4BsLShldrPecFwd-Cllr
    100170: V4BsLThighAdductorOut
    100172: V4BsLThighFrontFwd-Bkwd
    100174: V4BsLThighGluteCrsFwd-Bkwd
    100176: V4BsLThighGluteFwd-Bkwd
    100178: V4BsLThighGluteInBkwd
    100180: V4BsLThighGluteOutBkwd
    100182: V4BsLThighInCollapseFwd
    100184: V4BsLThighInFwd
    100186: V4BsLThighOutFwd
    100188: V4BsNeckBackBend
    100190: V4BsRBreastMorphDnOut
    100192: V4BsRBreastMorphUpIn
    100194: V4BsRCllrBreast
    100196: V4BsRCllrShldrLatUp
    100198: V4BsRCollarTrapUp
    100200: V4BsRHipGluteFwd-Bkwd
    100202: V4BsRShldrArmPitDn
    100204: V4BsRShldrDeltCrsUp
    100206: V4BsRShldrDeltFwd-Chst
    100208: V4BsRShldrDeltFwd-Cllr
    100210: V4BsRShldrDeltUp
    100212: V4BsRShldrPecFwd-Chst
    100214: V4BsRShldrPecFwd-Cllr
    100216: V4BsRThighAdductorOut
    100218: V4BsRThighFrontFwd-Bkwd
    100220: V4BsRThighGluteCrsFwd-Bkwd
    100222: V4BsRThighGluteFwd-Bkwd
    100224: V4BsRThighGluteInBkwd
    100226: V4BsRThighGluteOutBkwd
    100228: V4BsRThighInCollapseFwd
    100230: V4BsRThighInFwd
    100232: V4BsRThighOutFwd
    100234: V4LBreastMorphDnOut
    100236: V4LBreastMorphUpIn
    100238: V4LCllrBreast
    100240: V4LCllrShldrLatUp
    100242: V4LCollarTrapUp
    100244: V4LHipGluteFwd-Bkwd
    100246: V4LShldrArmPitDn
    100248: V4LShldrDeltCrsUp
    100250: V4LShldrDeltFwd-Chst
    100252: V4LShldrDeltFwd-Cllr
    100254: V4LShldrDeltUp
    100256: V4LShldrPecFwd-Chst
    100258: V4LShldrPecFwd-Cllr
    100260: V4LThighAdductorOut
    100262: V4LThighFrontFwd-Bkwd
    100264: V4LThighGluteCrsFwd-Bkwd
    100266: V4LThighGluteFwd-Bkwd
    100268: V4LThighGluteInBkwd
    100270: V4LThighGluteOutBkwd
    100272: V4LThighInCollapseFwd
    100274: V4LThighInFwd
    100276: V4LThighOutFwd
    100278: V4NeckBackBend
    100280: V4RBreastMorphDnOut
    100282: V4RBreastMorphUpIn
    100284: V4RCllrBreast
    100286: V4RCllrShldrLatUp
    100288: V4RCollarTrapUp
    100290: V4RHipGluteFwd-Bkwd
    100292: V4RShldrArmPitDn
    100294: V4RShldrDeltCrsUp
    100296: V4RShldrDeltFwd-Chst
    100298: V4RShldrDeltFwd-Cllr
    100300: V4RShldrDeltUp
    100302: V4RShldrPecFwd-Chst
    100304: V4RShldrPecFwd-Cllr
    100306: V4RThighAdductorOut
    100308: V4RThighFrontFwd-Bkwd
    100310: V4RThighGluteCrsFwd-Bkwd
    100312: V4RThighGluteFwd-Bkwd
    100314: V4RThighGluteInBkwd
    100316: V4RThighGluteOutBkwd
    100318: V4RThighInCollapseFwd
    100320: V4RThighInFwd
    100322: V4RThighOutFwd
    100324: V4ZnAbdomenBackFwd
    100326: V4ZnLBreastMorphDnOut
    100328: V4ZnLBreastMorphUpIn
    100330: V4ZnLCllrBreast
    100332: V4ZnLCllrShldrLatUp
    100334: V4ZnLCollarTrapUp
    100336: V4ZnLHipGluteFwd-Bkwd
    100338: V4ZnLShldrArmPitDn
    100340: V4ZnLShldrDeltCrsUp
    100342: V4ZnLShldrDeltFwd-Chst
    100344: V4ZnLShldrDeltFwd-Cllr
    100346: V4ZnLShldrDeltUp
    100348: V4ZnLShldrPecFwd-Chst
    100350: V4ZnLShldrPecFwd-Cllr
    100352: V4ZnLThighAdductorOut
    100354: V4ZnLThighFrontFwd-Bkwd
    100356: V4ZnLThighGluteCrsFwd-Bkwd
    100358: V4ZnLThighGluteFwd-Bkwd
    100360: V4ZnLThighGluteInBkwd
    100362: V4ZnLThighGluteOutBkwd
    100364: V4ZnLThighInCollapseFwd
    100366: V4ZnLThighInFwd
    100368: V4ZnLThighOutFwd
    100370: V4ZnNeckBackBend
    100372: V4ZnRBreastMorphDnOut
    100374: V4ZnRBreastMorphUpIn
    100376: V4ZnRCllrBreast
    100378: V4ZnRCllrShldrLatUp
    100380: V4ZnRCollarTrapUp
    100382: V4ZnRHipGluteFwd-Bkwd
    100384: V4ZnRShldrArmPitDn
    100386: V4ZnRShldrDeltCrsUp
    100388: V4ZnRShldrDeltFwd-Chst
    100390: V4ZnRShldrDeltFwd-Cllr
    100392: V4ZnRShldrDeltUp
    100394: V4ZnRShldrPecFwd-Chst
    100396: V4ZnRShldrPecFwd-Cllr
    100398: V4ZnRThighAdductorOut
    100400: V4ZnRThighFrontFwd-Bkwd
    100402: V4ZnRThighGluteCrsFwd-Bkwd
    100404: V4ZnRThighGluteFwd-Bkwd
    100406: V4ZnRThighGluteInBkwd
    100408: V4ZnRThighGluteOutBkwd
    100410: V4ZnRThighInCollapseFwd
    100412: V4ZnRThighInFwd
    100414: V4ZnRThighOutFwd
    400000: abdomen
    400002: blMilWom_v4b_68498
    400004: blMilWom_v4b_68498.Shape
    400006: blMilWom_v4b_68498.Shape_MeshPart0
    400008: blMilWom_v4b_68498.Shape_MeshPart1
    400010: blMilWom_v4b_68498.Shape_MeshPart2
    400012: bodyMorphs
    400014: chest
    400016: eyeBrow
    400018: head
    400020: hip
    400022: lCollar
    400024: lEye
    400026: lFoot
    400028: lForeArm
    400030: lHand
    400032: lIndex1
    400034: lIndex2
    400036: lIndex3
    400038: lMid1
    400040: lMid2
    400042: lMid3
    400044: lowerJaw
    400046: lPinky1
    400048: lPinky2
    400050: lPinky3
    400052: lRing1
    400054: lRing2
    400056: lRing3
    400058: lShin
    400060: lShldr
    400062: lThigh
    400064: lThumb1
    400066: lThumb2
    400068: lThumb3
    400070: lToe
    400072: neck
    400074: //RootNode
    400076: rCollar
    400078: rEye
    400080: rFoot
    400082: rForeArm
    400084: rHand
    400086: rIndex1
    400088: rIndex2
    400090: rIndex3
    400092: rMid1
    400094: rMid2
    400096: rMid3
    400098: rPinky1
    400100: rPinky2
    400102: rPinky3
    400104: rRing1
    400106: rRing2
    400108: rRing3
    400110: rShin
    400112: rShldr
    400114: rThigh
    400116: rThumb1
    400118: rThumb2
    400120: rThumb3
    400122: rToe
    400124: tongue01
    400126: tongue02
    400128: tongue03
    400130: tongue04
    400132: tongue05
    400134: tongueBase
    400136: tongueTip
    400138: upperJaw
    400140: V4AbdomenBackFwd
    400142: V4BsAbdomenBackFwd
    400144: V4BsLBreastMorphDnOut
    400146: V4BsLBreastMorphUpIn
    400148: V4BsLCllrBreast
    400150: V4BsLCllrShldrLatUp
    400152: V4BsLCollarTrapUp
    400154: V4BsLHipGluteFwd-Bkwd
    400156: V4BsLShldrArmPitDn
    400158: V4BsLShldrDeltCrsUp
    400160: V4BsLShldrDeltFwd-Chst
    400162: V4BsLShldrDeltFwd-Cllr
    400164: V4BsLShldrDeltUp
    400166: V4BsLShldrPecFwd-Chst
    400168: V4BsLShldrPecFwd-Cllr
    400170: V4BsLThighAdductorOut
    400172: V4BsLThighFrontFwd-Bkwd
    400174: V4BsLThighGluteCrsFwd-Bkwd
    400176: V4BsLThighGluteFwd-Bkwd
    400178: V4BsLThighGluteInBkwd
    400180: V4BsLThighGluteOutBkwd
    400182: V4BsLThighInCollapseFwd
    400184: V4BsLThighInFwd
    400186: V4BsLThighOutFwd
    400188: V4BsNeckBackBend
    400190: V4BsRBreastMorphDnOut
    400192: V4BsRBreastMorphUpIn
    400194: V4BsRCllrBreast
    400196: V4BsRCllrShldrLatUp
    400198: V4BsRCollarTrapUp
    400200: V4BsRHipGluteFwd-Bkwd
    400202: V4BsRShldrArmPitDn
    400204: V4BsRShldrDeltCrsUp
    400206: V4BsRShldrDeltFwd-Chst
    400208: V4BsRShldrDeltFwd-Cllr
    400210: V4BsRShldrDeltUp
    400212: V4BsRShldrPecFwd-Chst
    400214: V4BsRShldrPecFwd-Cllr
    400216: V4BsRThighAdductorOut
    400218: V4BsRThighFrontFwd-Bkwd
    400220: V4BsRThighGluteCrsFwd-Bkwd
    400222: V4BsRThighGluteFwd-Bkwd
    400224: V4BsRThighGluteInBkwd
    400226: V4BsRThighGluteOutBkwd
    400228: V4BsRThighInCollapseFwd
    400230: V4BsRThighInFwd
    400232: V4BsRThighOutFwd
    400234: V4LBreastMorphDnOut
    400236: V4LBreastMorphUpIn
    400238: V4LCllrBreast
    400240: V4LCllrShldrLatUp
    400242: V4LCollarTrapUp
    400244: V4LHipGluteFwd-Bkwd
    400246: V4LShldrArmPitDn
    400248: V4LShldrDeltCrsUp
    400250: V4LShldrDeltFwd-Chst
    400252: V4LShldrDeltFwd-Cllr
    400254: V4LShldrDeltUp
    400256: V4LShldrPecFwd-Chst
    400258: V4LShldrPecFwd-Cllr
    400260: V4LThighAdductorOut
    400262: V4LThighFrontFwd-Bkwd
    400264: V4LThighGluteCrsFwd-Bkwd
    400266: V4LThighGluteFwd-Bkwd
    400268: V4LThighGluteInBkwd
    400270: V4LThighGluteOutBkwd
    400272: V4LThighInCollapseFwd
    400274: V4LThighInFwd
    400276: V4LThighOutFwd
    400278: V4NeckBackBend
    400280: V4RBreastMorphDnOut
    400282: V4RBreastMorphUpIn
    400284: V4RCllrBreast
    400286: V4RCllrShldrLatUp
    400288: V4RCollarTrapUp
    400290: V4RHipGluteFwd-Bkwd
    400292: V4RShldrArmPitDn
    400294: V4RShldrDeltCrsUp
    400296: V4RShldrDeltFwd-Chst
    400298: V4RShldrDeltFwd-Cllr
    400300: V4RShldrDeltUp
    400302: V4RShldrPecFwd-Chst
    400304: V4RShldrPecFwd-Cllr
    400306: V4RThighAdductorOut
    400308: V4RThighFrontFwd-Bkwd
    400310: V4RThighGluteCrsFwd-Bkwd
    400312: V4RThighGluteFwd-Bkwd
    400314: V4RThighGluteInBkwd
    400316: V4RThighGluteOutBkwd
    400318: V4RThighInCollapseFwd
    400320: V4RThighInFwd
    400322: V4RThighOutFwd
    400324: V4ZnAbdomenBackFwd
    400326: V4ZnLBreastMorphDnOut
    400328: V4ZnLBreastMorphUpIn
    400330: V4ZnLCllrBreast
    400332: V4ZnLCllrShldrLatUp
    400334: V4ZnLCollarTrapUp
    400336: V4ZnLHipGluteFwd-Bkwd
    400338: V4ZnLShldrArmPitDn
    400340: V4ZnLShldrDeltCrsUp
    400342: V4ZnLShldrDeltFwd-Chst
    400344: V4ZnLShldrDeltFwd-Cllr
    400346: V4ZnLShldrDeltUp
    400348: V4ZnLShldrPecFwd-Chst
    400350: V4ZnLShldrPecFwd-Cllr
    400352: V4ZnLThighAdductorOut
    400354: V4ZnLThighFrontFwd-Bkwd
    400356: V4ZnLThighGluteCrsFwd-Bkwd
    400358: V4ZnLThighGluteFwd-Bkwd
    400360: V4ZnLThighGluteInBkwd
    400362: V4ZnLThighGluteOutBkwd
    400364: V4ZnLThighInCollapseFwd
    400366: V4ZnLThighInFwd
    400368: V4ZnLThighOutFwd
    400370: V4ZnNeckBackBend
    400372: V4ZnRBreastMorphDnOut
    400374: V4ZnRBreastMorphUpIn
    400376: V4ZnRCllrBreast
    400378: V4ZnRCllrShldrLatUp
    400380: V4ZnRCollarTrapUp
    400382: V4ZnRHipGluteFwd-Bkwd
    400384: V4ZnRShldrArmPitDn
    400386: V4ZnRShldrDeltCrsUp
    400388: V4ZnRShldrDeltFwd-Chst
    400390: V4ZnRShldrDeltFwd-Cllr
    400392: V4ZnRShldrDeltUp
    400394: V4ZnRShldrPecFwd-Chst
    400396: V4ZnRShldrPecFwd-Cllr
    400398: V4ZnRThighAdductorOut
    400400: V4ZnRThighFrontFwd-Bkwd
    400402: V4ZnRThighGluteCrsFwd-Bkwd
    400404: V4ZnRThighGluteFwd-Bkwd
    400406: V4ZnRThighGluteInBkwd
    400408: V4ZnRThighGluteOutBkwd
    400410: V4ZnRThighInCollapseFwd
    400412: V4ZnRThighInFwd
    400414: V4ZnRThighOutFwd
    4300000: blMilWom_v4b_68498.Shape_MeshPart0
    4300002: blMilWom_v4b_68498.Shape_MeshPart1
    4300004: blMilWom_v4b_68498.Shape_MeshPart2
    7400000: Animation
    9500000: //RootNode
    13700000: blMilWom_v4b_68498.Shape_MeshPart0
    13700002: blMilWom_v4b_68498.Shape_MeshPart1
    13700004: blMilWom_v4b_68498.Shape_MeshPart2
  materials:
    importMaterials: 1
    materialName: 0
    materialSearch: 1
  animations:
    legacyGenerateAnimations: 4
    bakeSimulation: 0
    optimizeGameObjects: 0
    motionNodeName: 
    animationCompression: 3
    animationRotationError: .5
    animationPositionError: .5
    animationScaleError: .5
    animationWrapMode: 0
    extraExposedTransformPaths: []
    clipAnimations:
    - serializedVersion: 16
      name: Animation
      takeName: Animation
      firstFrame: 0
      lastFrame: 248
      wrapMode: 0
      orientationOffsetY: 0
      level: 0
      cycleOffset: 0
      loop: 0
      loopTime: 1
      loopBlend: 0
      loopBlendOrientation: 0
      loopBlendPositionY: 0
      loopBlendPositionXZ: 0
      keepOriginalOrientation: 0
      keepOriginalPositionY: 1
      keepOriginalPositionXZ: 0
      heightFromFeet: 0
      mirror: 0
      bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
      curves: []
      events: []
      transformMask:
      - path: 
        weight: 1
      - path: blMilWom_v4b_68498
        weight: 1
      - path: blMilWom_v4b_68498/blMilWom_v4b_68498.Shape
        weight: 0
      - path: blMilWom_v4b_68498/blMilWom_v4b_68498.Shape/blMilWom_v4b_68498.Shape_MeshPart0
        weight: 0
      - path: blMilWom_v4b_68498/blMilWom_v4b_68498.Shape/blMilWom_v4b_68498.Shape_MeshPart1
        weight: 0
      - path: blMilWom_v4b_68498/blMilWom_v4b_68498.Shape/blMilWom_v4b_68498.Shape_MeshPart2
        weight: 0
      - path: blMilWom_v4b_68498/hip
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lIndex1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lIndex1/lIndex2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lIndex1/lIndex2/lIndex3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lMid1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lMid1/lMid2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lMid1/lMid2/lMid3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lPinky1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lPinky1/lPinky2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lPinky1/lPinky2/lPinky3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lRing1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lRing1/lRing2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lRing1/lRing2/lRing3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lThumb1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lThumb1/lThumb2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/lShldr/lForeArm/lHand/lThumb1/lThumb2/lThumb3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLCllrShldrLatUp/V4LCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrArmPitDn/V4LShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltCrsUp/V4LShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltFwd-Cllr/V4LShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrDeltUp/V4LShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4BsLShldrPecFwd-Cllr/V4LShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/lCollar/V4ZnLShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/eyeBrow
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lEye
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01/tongue02
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01/tongue02/tongue03
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01/tongue02/tongue03/tongue04
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01/tongue02/tongue03/tongue04/tongue05
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/lowerJaw/tongueBase/tongue01/tongue02/tongue03/tongue04/tongue05/tongueTip
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/rEye
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/head/upperJaw
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/V4BsNeckBackBend
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/V4BsNeckBackBend/V4NeckBackBend
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/neck/V4ZnNeckBackBend
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rIndex1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rIndex1/rIndex2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rIndex1/rIndex2/rIndex3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rMid1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rMid1/rMid2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rMid1/rMid2/rMid3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rPinky1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rPinky1/rPinky2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rPinky1/rPinky2/rPinky3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rRing1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rRing1/rRing2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rRing1/rRing2/rRing3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rThumb1
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rThumb1/rThumb2
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/rShldr/rForeArm/rHand/rThumb1/rThumb2/rThumb3
        weight: 1
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRCllrShldrLatUp/V4RCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrArmPitDn/V4RShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltCrsUp/V4RShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltFwd-Cllr/V4RShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrDeltUp/V4RShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4BsRShldrPecFwd-Cllr/V4RShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRCllrShldrLatUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRShldrArmPitDn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRShldrDeltCrsUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRShldrDeltFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRShldrDeltUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/rCollar/V4ZnRShldrPecFwd-Cllr
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLBreastMorphDnOut/V4LBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLBreastMorphUpIn/V4LBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLCllrBreast/V4LCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLCollarTrapUp/V4LCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLShldrDeltFwd-Chst/V4LShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsLShldrPecFwd-Chst/V4LShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRBreastMorphDnOut/V4RBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRBreastMorphUpIn/V4RBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRCllrBreast/V4RCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRCollarTrapUp/V4RCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRShldrDeltFwd-Chst/V4RShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4BsRShldrPecFwd-Chst/V4RShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnLShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRBreastMorphDnOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRBreastMorphUpIn
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRCllrBreast
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRCollarTrapUp
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRShldrDeltFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/chest/V4ZnRShldrPecFwd-Chst
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/V4BsAbdomenBackFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/V4BsAbdomenBackFwd/V4AbdomenBackFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/abdomen/V4ZnAbdomenBackFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/bodyMorphs
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh
        weight: 1
      - path: blMilWom_v4b_68498/hip/lThigh/lShin
        weight: 1
      - path: blMilWom_v4b_68498/hip/lThigh/lShin/lFoot
        weight: 1
      - path: blMilWom_v4b_68498/hip/lThigh/lShin/lFoot/lToe
        weight: 1
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighAdductorOut/V4LThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighFrontFwd-Bkwd/V4LThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteCrsFwd-Bkwd/V4LThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteFwd-Bkwd/V4LThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteInBkwd/V4LThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighGluteOutBkwd/V4LThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighInCollapseFwd/V4LThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighInFwd/V4LThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4BsLThighOutFwd/V4LThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/lThigh/V4ZnLThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh
        weight: 1
      - path: blMilWom_v4b_68498/hip/rThigh/rShin
        weight: 1
      - path: blMilWom_v4b_68498/hip/rThigh/rShin/rFoot
        weight: 1
      - path: blMilWom_v4b_68498/hip/rThigh/rShin/rFoot/rToe
        weight: 1
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighAdductorOut/V4RThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighFrontFwd-Bkwd/V4RThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteCrsFwd-Bkwd/V4RThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteFwd-Bkwd/V4RThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteInBkwd/V4RThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighGluteOutBkwd/V4RThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighInCollapseFwd/V4RThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighInFwd/V4RThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4BsRThighOutFwd/V4RThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighAdductorOut
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighFrontFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighGluteCrsFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighGluteInBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighGluteOutBkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighInCollapseFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighInFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/rThigh/V4ZnRThighOutFwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4BsLHipGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4BsLHipGluteFwd-Bkwd/V4LHipGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4BsRHipGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4BsRHipGluteFwd-Bkwd/V4RHipGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4ZnLHipGluteFwd-Bkwd
        weight: 0
      - path: blMilWom_v4b_68498/hip/V4ZnRHipGluteFwd-Bkwd
        weight: 0
      maskType: 0
      maskSource: {instanceID: 0}
    isReadable: 1
  meshes:
    lODScreenPercentages: []
    globalScale: .00999999978
    meshCompression: 0
    addColliders: 0
    importBlendShapes: 1
    swapUVChannels: 0
    generateSecondaryUV: 0
    useFileUnits: 1
    optimizeMeshForGPU: 1
    weldVertices: 1
    secondaryUVAngleDistortion: 8
    secondaryUVAreaDistortion: 15.000001
    secondaryUVHardAngle: 88
    secondaryUVPackMargin: 4
  tangentSpace:
    normalSmoothAngle: 60
    splitTangentsAcrossUV: 1
    normalImportMode: 0
    tangentImportMode: 1
  importAnimation: 1
  copyAvatar: 0
  humanDescription:
    human:
    - boneName: hip
      humanName: Hips
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lThigh
      humanName: LeftUpperLeg
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rThigh
      humanName: RightUpperLeg
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lShin
      humanName: LeftLowerLeg
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rShin
      humanName: RightLowerLeg
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lFoot
      humanName: LeftFoot
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rFoot
      humanName: RightFoot
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: abdomen
      humanName: Spine
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: chest
      humanName: Chest
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: neck
      humanName: Neck
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: head
      humanName: Head
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lCollar
      humanName: LeftShoulder
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rCollar
      humanName: RightShoulder
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lShldr
      humanName: LeftUpperArm
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rShldr
      humanName: RightUpperArm
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lForeArm
      humanName: LeftLowerArm
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rForeArm
      humanName: RightLowerArm
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lHand
      humanName: LeftHand
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rHand
      humanName: RightHand
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lToe
      humanName: LeftToes
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rToe
      humanName: RightToes
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lEye
      humanName: LeftEye
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rEye
      humanName: RightEye
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: upperJaw
      humanName: Jaw
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lThumb1
      humanName: Left Thumb Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lThumb2
      humanName: Left Thumb Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lThumb3
      humanName: Left Thumb Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lIndex1
      humanName: Left Index Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lIndex2
      humanName: Left Index Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lIndex3
      humanName: Left Index Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lMid1
      humanName: Left Middle Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lMid2
      humanName: Left Middle Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lMid3
      humanName: Left Middle Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lRing1
      humanName: Left Ring Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lRing2
      humanName: Left Ring Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lRing3
      humanName: Left Ring Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lPinky1
      humanName: Left Little Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lPinky2
      humanName: Left Little Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: lPinky3
      humanName: Left Little Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rThumb1
      humanName: Right Thumb Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rThumb2
      humanName: Right Thumb Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rThumb3
      humanName: Right Thumb Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rIndex1
      humanName: Right Index Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rIndex2
      humanName: Right Index Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rIndex3
      humanName: Right Index Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rMid1
      humanName: Right Middle Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rMid2
      humanName: Right Middle Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rMid3
      humanName: Right Middle Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rRing1
      humanName: Right Ring Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rRing2
      humanName: Right Ring Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rRing3
      humanName: Right Ring Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rPinky1
      humanName: Right Little Proximal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rPinky2
      humanName: Right Little Intermediate
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    - boneName: rPinky3
      humanName: Right Little Distal
      limit:
        min: {x: 0, y: 0, z: 0}
        max: {x: 0, y: 0, z: 0}
        value: {x: 0, y: 0, z: 0}
        length: 0
        modified: 0
    skeleton:
    - name: prova(Clone)
      position: {x: 0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: blMilWom_v4b_68498
      position: {x: 0, y: 1.13141799, z: .0146303996}
      rotation: {x: 0, y: -0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: blMilWom_v4b_68498.Shape
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: blMilWom_v4b_68498.Shape_MeshPart0
      position: {x: 0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: blMilWom_v4b_68498.Shape_MeshPart1
      position: {x: 0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: blMilWom_v4b_68498.Shape_MeshPart2
      position: {x: 0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: hip
      position: {x: 0, y: -.0823501348, z: -.0073639676}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLHipGluteFwd-Bkwd
      position: {x: -.107072599, y: -.120829925, z: .00640720828}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .159999996, y: .159999996, z: .159999996}
      transformModified: 1
    - name: V4LHipGluteFwd-Bkwd
      position: {x: -0, y: .00251642778, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRHipGluteFwd-Bkwd
      position: {x: .107072599, y: -.120829925, z: .00640720828}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .159999996, y: .159999996, z: .159999996}
      transformModified: 1
    - name: V4RHipGluteFwd-Bkwd
      position: {x: -0, y: .00251642778, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnLHipGluteFwd-Bkwd
      position: {x: -.00839263201, y: -.0953974724, z: -.126140624}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1.44001663, y: 8.67398167, z: 16.94137}
      transformModified: 1
    - name: V4ZnRHipGluteFwd-Bkwd
      position: {x: .00839263201, y: -.0953974724, z: -.126140624}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1.44001663, y: 8.67398167, z: 16.94137}
      transformModified: 1
    - name: abdomen
      position: {x: -0, y: .139018476, z: .0073639676}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsAbdomenBackFwd
      position: {x: .00428548781, y: .102667995, z: -.0108683389}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .131236002, y: .131236002, z: .131236002}
      transformModified: 1
    - name: V4AbdomenBackFwd
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnAbdomenBackFwd
      position: {x: -0, y: .0963629857, z: -.0907326192}
      rotation: {x: -.366501212, y: 0, z: -0, w: .930417597}
      scale: {x: 15.4818897, y: 11.3317337, z: 9.02208042}
      transformModified: 1
    - name: chest
      position: {x: -0, y: .126796037, z: -.0219455995}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLBreastMorphDnOut
      position: {x: -.107289597, y: .0938790143, z: .120213099}
      rotation: {x: 0, y: -.21643962, z: -0, w: .976296008}
      scale: {x: .0399999991, y: .0399999991, z: .0399999991}
      transformModified: 1
    - name: V4LBreastMorphDnOut
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLBreastMorphUpIn
      position: {x: -.107289597, y: .0938790143, z: .120213099}
      rotation: {x: 0, y: -.21643962, z: -0, w: .976296008}
      scale: {x: .0399999991, y: .0399999991, z: .0399999991}
      transformModified: 1
    - name: V4LBreastMorphUpIn
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLCllrBreast
      position: {x: -.0683715194, y: .0674199685, z: .0223505199}
      rotation: {x: -.0509945899, y: -.224642769, z: .0117730293, w: .973034739}
      scale: {x: .164827004, y: .164827004, z: .164827004}
      transformModified: 1
    - name: V4LCllrBreast
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLCollarTrapUp
      position: {x: -.0753909349, y: .322948992, z: -.0387630016}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .163043007, y: .163043007, z: .163043007}
      transformModified: 1
    - name: V4LCollarTrapUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrDeltFwd-Chst
      position: {x: -.140695691, y: .21604301, z: -.00268223998}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105599999, y: .105599999, z: .105599999}
      transformModified: 1
    - name: V4LShldrDeltFwd-Chst
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrPecFwd-Chst
      position: {x: -.183855399, y: .622279882, z: -.0487679988}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105599999, y: .105599999, z: .105599999}
      transformModified: 1
    - name: V4LShldrPecFwd-Chst
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRBreastMorphDnOut
      position: {x: .107289597, y: .0938790143, z: .120213099}
      rotation: {x: 0, y: .21643962, z: -0, w: .976296008}
      scale: {x: .0399999991, y: .0399999991, z: .0399999991}
      transformModified: 1
    - name: V4RBreastMorphDnOut
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRBreastMorphUpIn
      position: {x: .107289597, y: .0938790143, z: .120213099}
      rotation: {x: 0, y: .21643962, z: -0, w: .976296008}
      scale: {x: .0399999991, y: .0399999991, z: .0399999991}
      transformModified: 1
    - name: V4RBreastMorphUpIn
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRCllrBreast
      position: {x: .0683715194, y: .0674199685, z: .0223505199}
      rotation: {x: -.0509945899, y: .224642769, z: -.0117730293, w: .973034739}
      scale: {x: .164827004, y: .164827004, z: .164827004}
      transformModified: 1
    - name: V4RCllrBreast
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRCollarTrapUp
      position: {x: .0753909349, y: .322948992, z: -.0387630016}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .163043007, y: .163043007, z: .163043007}
      transformModified: 1
    - name: V4RCollarTrapUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrDeltFwd-Chst
      position: {x: .140695691, y: .21604301, z: -.00268223998}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105599999, y: .105599999, z: .105599999}
      transformModified: 1
    - name: V4RShldrDeltFwd-Chst
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrPecFwd-Chst
      position: {x: .183855399, y: .622279882, z: -.0487679988}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105599999, y: .105599999, z: .105599999}
      transformModified: 1
    - name: V4RShldrPecFwd-Chst
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnLBreastMorphDnOut
      position: {x: -.107289597, y: .0938790143, z: .120213099}
      rotation: {x: -.349114925, y: -.235305071, z: -.0364633054, w: .906322658}
      scale: {x: 12.1920004, y: 12.1920004, z: 8.53439999}
      transformModified: 1
    - name: V4ZnLBreastMorphUpIn
      position: {x: -.107289597, y: .0938790143, z: .120213099}
      rotation: {x: -.349114925, y: -.235305071, z: -.0364633054, w: .906322658}
      scale: {x: 12.1920004, y: 12.1920004, z: 8.53439999}
      transformModified: 1
    - name: V4ZnLCllrBreast
      position: {x: -.0880262479, y: .10119392, z: .0872947201}
      rotation: {x: -.244291857, y: -.124130048, z: -.11366412, w: .954983652}
      scale: {x: 11.0722866, y: 15.4340963, z: 9.9315052}
      transformModified: 1
    - name: V4ZnLCollarTrapUp
      position: {x: -.0937081948, y: .265804976, z: -.0567691177}
      rotation: {x: -.0698587224, y: -.232275933, z: .00781895779, w: .970106483}
      scale: {x: 6.50467587, y: 2.29502201, z: 10.5621738}
      transformModified: 1
    - name: V4ZnLShldrDeltFwd-Chst
      position: {x: -.151180804, y: .222381964, z: .00536447996}
      rotation: {x: 0, y: -.35836798, z: -0, w: .933580458}
      scale: {x: 10.4226971, y: 5.17330933, z: 9.4717207}
      transformModified: 1
    - name: V4ZnLShldrPecFwd-Chst
      position: {x: -.11167869, y: .19458504, z: .0412089564}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.61705112, y: 5.96822882, z: 8.65534592}
      transformModified: 1
    - name: V4ZnRBreastMorphDnOut
      position: {x: .107289597, y: .0938790143, z: .120213099}
      rotation: {x: -.349114925, y: .235305071, z: .0364633054, w: .906322658}
      scale: {x: 12.1920004, y: 12.1920004, z: 8.53439999}
      transformModified: 1
    - name: V4ZnRBreastMorphUpIn
      position: {x: .107289597, y: .0938790143, z: .120213099}
      rotation: {x: -.349114925, y: .235305071, z: .0364633054, w: .906322658}
      scale: {x: 12.1920004, y: 12.1920004, z: 8.53439999}
      transformModified: 1
    - name: V4ZnRCllrBreast
      position: {x: .088144742, y: .10114494, z: .087405175}
      rotation: {x: -.244291857, y: .124130048, z: .11366412, w: .954983652}
      scale: {x: 11.076664, y: 15.4401979, z: 9.93543148}
      transformModified: 1
    - name: V4ZnRCollarTrapUp
      position: {x: .0937081948, y: .265804976, z: -.0567691177}
      rotation: {x: -.0698587224, y: .232275933, z: -.00781895779, w: .970106483}
      scale: {x: 6.50467587, y: 2.29502201, z: 10.5621738}
      transformModified: 1
    - name: V4ZnRShldrDeltFwd-Chst
      position: {x: .151180804, y: .222381964, z: .00536447996}
      rotation: {x: 0, y: .35836798, z: -0, w: .933580458}
      scale: {x: 10.4226971, y: 5.17330933, z: 9.4717207}
      transformModified: 1
    - name: V4ZnRShldrPecFwd-Chst
      position: {x: .11167869, y: .19458504, z: .0412089564}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.61705112, y: 5.96822882, z: 8.65534592}
      transformModified: 1
    - name: neck
      position: {x: -0, y: .25603202, z: -.0365759991}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsNeckBackBend
      position: {x: -0, y: .119183958, z: .0194555018}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .0888468027, y: .0888468027, z: .0888468027}
      transformModified: 1
    - name: V4NeckBackBend
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnNeckBackBend
      position: {x: -0, y: .102551877, z: -.0362324342}
      rotation: {x: -.121869341, y: 0, z: -0, w: .992546141}
      scale: {x: 9.02208138, y: 6.63244963, z: 7.04697752}
      transformModified: 1
    - name: head
      position: {x: -0, y: .0804679841, z: .00487680174}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: eyeBrow
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: rEye
      position: {x: .0328525566, y: .0856748968, z: .0978273824}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: lEye
      position: {x: -.0328525566, y: .0856748968, z: .0978273824}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: upperJaw
      position: {x: 9.99743934e-05, y: .0305059813, z: .068953082}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: lowerJaw
      position: {x: .000112858201, y: .0571189858, z: .0355144143}
      rotation: {x: 0, y: 0, z: -1.46940157e-39, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: tongueBase
      position: {x: -.000112858201, y: -.0546810888, z: .0400759801}
      rotation: {x: 0, y: 0, z: 1.04266342e-35, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: tongue01
      position: {x: 9.43346095e-05, y: .00640304573, z: .00227528089}
      rotation: {x: 0, y: 0, z: -2.48689958e-12, w: 1}
      scale: {x: 1, y: 1.00000012, z: 1}
      transformModified: 1
    - name: tongue02
      position: {x: 2.10361554e-06, y: .00716003403, z: .00556441536}
      rotation: {x: -4.65661287e-08, y: -1.81979735e-19, z: 3.90798505e-12, w: 1}
      scale: {x: 1, y: .999999881, z: 1}
      transformModified: 1
    - name: tongue03
      position: {x: 7.27614349e-07, y: .006546936, z: .00675072195}
      rotation: {x: 4.65661287e-08, y: 7.1054279e-13, z: -7.10542682e-13, w: 1}
      scale: {x: 1, y: 1.00000012, z: 1.00000012}
      transformModified: 1
    - name: tongue04
      position: {x: 4.30624937e-07, y: .00542999245, z: .00684238877}
      rotation: {x: -2.32830644e-08, y: -7.10542736e-13, z: -1.65436123e-20, w: 1}
      scale: {x: 1, y: .999999881, z: 1}
      transformModified: 1
    - name: tongue05
      position: {x: 7.54930056e-07, y: .00315307616, z: .0035925007}
      rotation: {x: -1.50087119e-32, y: -2.11228841e-20, z: -4.91805471e-28, w: 1}
      scale: {x: 1, y: .99999994, z: 1.00000012}
      transformModified: 1
    - name: tongueTip
      position: {x: -4.47435298e-07, y: .00439895643, z: .00529424194}
      rotation: {x: -1.50087119e-32, y: -2.11228841e-20, z: -4.91805471e-28, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rCollar
      position: {x: .0316991992, y: .221894905, z: -.0390143953}
      rotation: {x: 0, y: 0, z: -2.35098915e-37, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRCllrShldrLatUp
      position: {x: .165815786, y: -.027436981, z: -.000977072748}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RCllrShldrLatUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrArmPitDn
      position: {x: .182034597, y: -.0525309741, z: -.00517745968}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RShldrArmPitDn
      position: {x: -0, y: -.0531480014, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrDeltCrsUp
      position: {x: .117199294, y: .0277661122, z: .00209116936}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RShldrDeltCrsUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrDeltFwd-Cllr
      position: {x: .108943097, y: -.00587188685, z: .0362771489}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RShldrDeltFwd-Cllr
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrDeltUp
      position: {x: .160102189, y: -.000387878419, z: .0166393984}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RShldrDeltUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRShldrPecFwd-Cllr
      position: {x: .152186394, y: .400384963, z: -.00979750138}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4RShldrPecFwd-Cllr
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnRCllrShldrLatUp
      position: {x: .154436797, y: -.0544940159, z: .00157007691}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 5.88629723, y: 4.14527988, z: 14.5913849}
      transformModified: 1
    - name: V4ZnRShldrArmPitDn
      position: {x: .166954592, y: -.0510699451, z: -.0488723591}
      rotation: {x: -.0164513625, y: .00582573283, z: -.33375603, w: .942497909}
      scale: {x: 6.69487095, y: 3.37279487, z: 10.0803461}
      transformModified: 1
    - name: V4ZnRShldrDeltCrsUp
      position: {x: .139141008, y: .0313890055, z: .0024664402}
      rotation: {x: 0, y: -.0871557444, z: -0, w: .99619472}
      scale: {x: 5.84533215, y: 3.32207608, z: 11.5638685}
      transformModified: 1
    - name: V4ZnRShldrDeltFwd-Cllr
      position: {x: .112066694, y: .00039306641, z: .0411421955}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 15.8115606, y: 5.17330933, z: 8.79969788}
      transformModified: 1
    - name: V4ZnRShldrDeltUp
      position: {x: .133110285, y: .0349591039, z: -.00710892165}
      rotation: {x: 0, y: .0261769481, z: -0, w: .999657333}
      scale: {x: 3.18546486, y: 4.95933199, z: 24.5967865}
      transformModified: 1
    - name: V4ZnRShldrPecFwd-Cllr
      position: {x: .0799794942, y: -.0273098741, z: .0802233592}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.61705112, y: 5.96822882, z: 8.65534592}
      transformModified: 1
    - name: rShldr
      position: {x: .117043197, y: -.00487701409, z: -.00243840204}
      rotation: {x: 1.48689427e-09, y: .00329151284, z: .00548586855, w: .999979556}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rForeArm
      position: {x: .297484785, y: -.0243840013, z: .0146304006}
      rotation: {x: .00237924349, y: .219455287, z: .00436093519, w: .975609958}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rHand
      position: {x: .221894369, y: -.00487686135, z: .124358401}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rThumb1
      position: {x: -.00487663271, y: -.0024380493, z: .0268223956}
      rotation: {x: -.0569247156, y: -.0218663774, z: .0136883808, w: .998045146}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rThumb2
      position: {x: .0121918488, y: -.00731597887, z: .0390143953}
      rotation: {x: -.0661992058, y: -.164259031, z: -.0101148635, w: .984141409}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rThumb3
      position: {x: .0209995266, y: -.00994110107, z: .0239997003}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rIndex1
      position: {x: .0536448658, y: .00975387543, z: .0609599948}
      rotation: {x: -.0830396265, y: .078309387, z: .108575553, w: .987513781}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rIndex2
      position: {x: .0252399445, y: -.0104339598, z: .0268292036}
      rotation: {x: -.14482832, y: -.0063037686, z: .13379778, w: .980348468}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rIndex3
      position: {x: .0119065857, y: -.0154379271, z: .0121607967}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rMid1
      position: {x: .0633984357, y: .00975387543, z: .041452799}
      rotation: {x: -.0575142764, y: -.00137361872, z: .0882862434, w: .99443239}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rMid2
      position: {x: .03792198, y: -.0110119628, z: .0245329943}
      rotation: {x: -.148361698, y: .0538546108, z: .253504068, w: .954371095}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rMid3
      position: {x: .0127065275, y: -.0212460328, z: .0119499108}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rRing1
      position: {x: .0707136542, y: -.0024380493, z: .0268223956}
      rotation: {x: -.0661726296, y: -.0625824705, z: .115930907, w: .989072621}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rRing2
      position: {x: .031574782, y: -.0096690366, z: .0128030963}
      rotation: {x: -.0603128932, y: .0664464384, z: .198923931, w: .975897789}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rRing3
      position: {x: .0162032321, y: -.01804596, z: .0109405993}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rPinky1
      position: {x: .0707136542, y: -.00975402817, z: .00731519703}
      rotation: {x: -.135902196, y: -.0835575685, z: .2275116, w: .960618138}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rPinky2
      position: {x: .0268223565, y: -.0170680229, z: .00975359883}
      rotation: {x: -.0279034823, y: .0789033547, z: .214809373, w: .973063529}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: rPinky3
      position: {x: .00768341031, y: -.0158279408, z: .00681189541}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: lCollar
      position: {x: -.0316991992, y: .221894905, z: -.0390143953}
      rotation: {x: 0, y: 0, z: 2.35098915e-37, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLCllrShldrLatUp
      position: {x: -.165815786, y: -.027436981, z: -.000977072748}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4LCllrShldrLatUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrArmPitDn
      position: {x: -.182034597, y: -.0525309741, z: -.00517745968}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4LShldrArmPitDn
      position: {x: -0, y: -.056987457, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrDeltCrsUp
      position: {x: -.117199294, y: .0277661122, z: .00209116936}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4LShldrDeltCrsUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrDeltFwd-Cllr
      position: {x: -.108943097, y: -.00587188685, z: .0362771489}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4LShldrDeltFwd-Cllr
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrDeltUp
      position: {x: -.160202906, y: -.000487976067, z: .0165811181}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105599999, y: .105599999, z: .105599999}
      transformModified: 1
    - name: V4LShldrDeltUp
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLShldrPecFwd-Cllr
      position: {x: -.152186394, y: .400384963, z: -.00979750138}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .105614997, y: .105614997, z: .105614997}
      transformModified: 1
    - name: V4LShldrPecFwd-Cllr
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnLCllrShldrLatUp
      position: {x: -.154436797, y: -.0544940159, z: .00157007691}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 5.88629723, y: 4.14527988, z: 14.5913849}
      transformModified: 1
    - name: V4ZnLShldrArmPitDn
      position: {x: -.166954592, y: -.0510699451, z: -.0488723591}
      rotation: {x: -.0164513625, y: -.00582573283, z: .33375603, w: .942497909}
      scale: {x: 6.69487095, y: 3.37279487, z: 10.0803461}
      transformModified: 1
    - name: V4ZnLShldrDeltCrsUp
      position: {x: -.139141008, y: .0313890055, z: .0024664402}
      rotation: {x: 0, y: .0871557444, z: -0, w: .99619472}
      scale: {x: 5.84533215, y: 3.32207608, z: 11.5638685}
      transformModified: 1
    - name: V4ZnLShldrDeltFwd-Cllr
      position: {x: -.112066694, y: .00039306641, z: .0411421955}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 15.8115606, y: 5.17330933, z: 8.79969788}
      transformModified: 1
    - name: V4ZnLShldrDeltUp
      position: {x: -.133110285, y: .0349591039, z: -.00710892165}
      rotation: {x: 0, y: -.0261769481, z: -0, w: .999657333}
      scale: {x: 3.18546486, y: 4.95933199, z: 24.5967865}
      transformModified: 1
    - name: V4ZnLShldrPecFwd-Cllr
      position: {x: -.0799794942, y: -.0273098741, z: .0802233592}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.61705112, y: 5.96822882, z: 8.65534592}
      transformModified: 1
    - name: lShldr
      position: {x: -.117043197, y: -.00487701409, z: -.00243840204}
      rotation: {x: -1.45301648e-09, y: -.00329151214, z: -.00548585784, w: .999979556}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lForeArm
      position: {x: -.297484785, y: -.0243840013, z: .0146304006}
      rotation: {x: .00237923861, y: -.219455272, z: -.00436093705, w: .975609958}
      scale: {x: 1, y: .999999881, z: 1}
      transformModified: 1
    - name: lHand
      position: {x: -.221894369, y: -.00487686135, z: .124358401}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: .999999881, z: 1}
      transformModified: 1
    - name: lThumb1
      position: {x: .00487663271, y: -.0024380493, z: .0268223956}
      rotation: {x: -.0569248013, y: .0218664631, z: -.0136884218, w: .998045146}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lThumb2
      position: {x: -.0121918488, y: -.00731597887, z: .0390143953}
      rotation: {x: -.0661992356, y: .16425927, z: .0101149753, w: .984141409}
      scale: {x: .999999881, y: .999999881, z: 1}
      transformModified: 1
    - name: lThumb3
      position: {x: -.0209995266, y: -.00994110107, z: .0239997003}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lIndex1
      position: {x: -.0536448658, y: .00975387543, z: .0609599948}
      rotation: {x: -.0830394477, y: -.078309074, z: -.108575419, w: .98751384}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lIndex2
      position: {x: -.0252399445, y: -.0104339598, z: .0268292036}
      rotation: {x: -.144825339, y: .00630386453, z: -.133795053, w: .980349302}
      scale: {x: .999999881, y: .999999881, z: 1}
      transformModified: 1
    - name: lIndex3
      position: {x: -.0119065857, y: -.0154379271, z: .0121607967}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lMid1
      position: {x: -.0633984357, y: .00975387543, z: .041452799}
      rotation: {x: -.0575142466, y: .00137376552, z: -.0882862657, w: .994432449}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lMid2
      position: {x: -.03792198, y: -.0110119628, z: .0245329943}
      rotation: {x: -.148362041, y: -.0538546368, z: -.253504634, w: .954370916}
      scale: {x: .999999881, y: .999999881, z: 1}
      transformModified: 1
    - name: lMid3
      position: {x: -.0127065275, y: -.0212460328, z: .0119499108}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lRing1
      position: {x: -.0707136542, y: -.0024380493, z: .0268223956}
      rotation: {x: -.0661727041, y: .0625824854, z: -.115931086, w: .989072621}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lRing2
      position: {x: -.031574782, y: -.0096690366, z: .0128030963}
      rotation: {x: -.0603130013, y: -.0664462, z: -.198923901, w: .975897789}
      scale: {x: .999999881, y: .999999881, z: 1}
      transformModified: 1
    - name: lRing3
      position: {x: -.0162032321, y: -.01804596, z: .0109405993}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lPinky1
      position: {x: -.0707136542, y: -.00975402817, z: .00731519703}
      rotation: {x: -.135902375, y: .0835577324, z: -.227512032, w: .960617959}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: lPinky2
      position: {x: -.0268223565, y: -.0170680229, z: .00975359883}
      rotation: {x: -.027903568, y: -.0789029896, z: -.214809313, w: .973063588}
      scale: {x: .999999881, y: .999999881, z: 1}
      transformModified: 1
    - name: lPinky3
      position: {x: -.00768341031, y: -.0158279408, z: .00681189541}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: .99999994, y: .999999881, z: 1}
      transformModified: 1
    - name: rThigh
      position: {x: .0902208015, y: -.0243547056, z: .00248716772}
      rotation: {x: 3.17637355e-18, y: -5.82076609e-09, z: -5.45696821e-10, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: V4BsRThighAdductorOut
      position: {x: -.0140486043, y: -.15488708, z: -.0158856884}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320491999, y: .320491999, z: .320491999}
      transformModified: 1
    - name: V4RThighAdductorOut
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighFrontFwd-Bkwd
      position: {x: .00180440897, y: -.244303197, z: -.0312568694}
      rotation: {x: -.0523359589, y: 0, z: -0, w: .99862957}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4RThighFrontFwd-Bkwd
      position: {x: -0, y: 0, z: .00215554587}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighGluteCrsFwd-Bkwd
      position: {x: -.00150058744, y: -.00849784818, z: -.0243017003}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320491999, y: .320491999, z: .320491999}
      transformModified: 1
    - name: V4RThighGluteCrsFwd-Bkwd
      position: {x: -0, y: .00128747523, z: -.000663244806}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighGluteFwd-Bkwd
      position: {x: .0168517958, y: -.0964752212, z: .00392004056}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .159999996, y: .159999996, z: .159999996}
      transformModified: 1
    - name: V4RThighGluteFwd-Bkwd
      position: {x: -0, y: .00402823603, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighGluteInBkwd
      position: {x: .00308164582, y: -.0471855141, z: -.0217464808}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320491999, y: .320491999, z: .320491999}
      transformModified: 1
    - name: V4RThighGluteInBkwd
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighGluteOutBkwd
      position: {x: .0126703931, y: -.0252373498, z: -.0296207592}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4RThighGluteOutBkwd
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighInCollapseFwd
      position: {x: .000259208668, y: -.0951145887, z: -.0301961992}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4RThighInCollapseFwd
      position: {x: -0, y: 0, z: .00174589432}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighInFwd
      position: {x: -.0328613408, y: -.117918625, z: -.0119361067}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4RThighInFwd
      position: {x: -0, y: 0, z: -.00144840986}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsRThighOutFwd
      position: {x: .0039545917, y: -.124977797, z: .00902653951}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4RThighOutFwd
      position: {x: -0, y: -.000580339169, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnRThighAdductorOut
      position: {x: -.0768421814, y: -.174552679, z: -.0205407403}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.99744034, y: 9.99744034, z: 9.99744034}
      transformModified: 1
    - name: V4ZnRThighFrontFwd-Bkwd
      position: {x: .00404505711, y: -.182594672, z: .0405762009}
      rotation: {x: -.104528464, y: 0, z: -0, w: .994521916}
      scale: {x: 8.47782898, y: 24.8736305, z: 9.99744034}
      transformModified: 1
    - name: V4ZnRThighGluteCrsFwd-Bkwd
      position: {x: -.067543678, y: -.0966899097, z: -.0352717005}
      rotation: {x: .00872653536, y: -0, z: -0, w: .999961913}
      scale: {x: 1.58495998, y: 1.58495998, z: 3.16991997}
      transformModified: 1
    - name: V4ZnRThighGluteFwd-Bkwd
      position: {x: -.0254527517, y: -.0684239194, z: -.128627792}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 17.9578514, y: 8.67398167, z: 16.94137}
      transformModified: 1
    - name: V4ZnRThighGluteInBkwd
      position: {x: -.0629841089, y: -.0271855928, z: -.0872627795}
      rotation: {x: 0, y: -0, z: -.551936984, w: .833885849}
      scale: {x: 7.07136106, y: 9.36248207, z: 7.07136106}
      transformModified: 1
    - name: V4ZnRThighGluteOutBkwd
      position: {x: .0368090905, y: -.0486192293, z: -.0451918393}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 4.98018837, y: 8.94990349, z: 10.5738783}
      transformModified: 1
    - name: V4ZnRThighInCollapseFwd
      position: {x: -.0815938935, y: -.0978919193, z: -.0114604793}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 2.42084336, y: 1.84050429, z: 3.94630647}
      transformModified: 1
    - name: V4ZnRThighInFwd
      position: {x: -.067805782, y: -.0993646979, z: .00877651013}
      rotation: {x: -.0948098004, y: -.254900426, z: .225542739, w: .93550384}
      scale: {x: 19.0430508, y: 4.1111269, z: 9.30821228}
      transformModified: 1
    - name: V4ZnRThighOutFwd
      position: {x: .0427641943, y: -.13932769, z: .024897771}
      rotation: {x: -.0523359589, y: 0, z: -0, w: .99862957}
      scale: {x: 25.551506, y: 18.0236778, z: 4.47690248}
      transformModified: 1
    - name: rShin
      position: {x: -.0219456051, y: -.458419204, z: -.0146303996}
      rotation: {x: -7.27595761e-10, y: -3.97046694e-19, z: 5.45696821e-10, w: 1}
      scale: {x: .99999994, y: 1, z: .999999881}
      transformModified: 1
    - name: rFoot
      position: {x: -.00975359883, y: -.424281567, z: -.0365759991}
      rotation: {x: 1.23691279e-08, y: 5.45696821e-09, z: 9.09494646e-10, w: 1}
      scale: {x: 1, y: 1, z: .99999994}
      transformModified: 1
    - name: rToe
      position: {x: .0195071977, y: -.112166405, z: .107289605}
      rotation: {x: 2.01948392e-26, y: 6.46234854e-25, z: 5.55111512e-17, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: lThigh
      position: {x: -.0902208015, y: -.0243547056, z: .00248716772}
      rotation: {x: 3.17637355e-18, y: 5.82076609e-09, z: 5.45696821e-10, w: 1}
      scale: {x: 1, y: 1, z: 1.00000012}
      transformModified: 1
    - name: V4BsLThighAdductorOut
      position: {x: .0141427228, y: -.154838413, z: -.0158495996}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320499986, y: .320499986, z: .320499986}
      transformModified: 1
    - name: V4LThighAdductorOut
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighFrontFwd-Bkwd
      position: {x: -.00180440897, y: -.244303197, z: -.0312568694}
      rotation: {x: -.0523359589, y: 0, z: -0, w: .99862957}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4LThighFrontFwd-Bkwd
      position: {x: -0, y: 0, z: .00215554587}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighGluteCrsFwd-Bkwd
      position: {x: .00150058744, y: -.00849784818, z: -.0243017003}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320491999, y: .320491999, z: .320491999}
      transformModified: 1
    - name: V4LThighGluteCrsFwd-Bkwd
      position: {x: -0, y: .00128747523, z: -.000663244806}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighGluteFwd-Bkwd
      position: {x: -.0168517958, y: -.0964752212, z: .00392004056}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .159999996, y: .159999996, z: .159999996}
      transformModified: 1
    - name: V4LThighGluteFwd-Bkwd
      position: {x: -0, y: .00402823603, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighGluteInBkwd
      position: {x: -.00308164582, y: -.0471855141, z: -.0217464808}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .320491999, y: .320491999, z: .320491999}
      transformModified: 1
    - name: V4LThighGluteInBkwd
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighGluteOutBkwd
      position: {x: -.0126703931, y: -.0252373498, z: -.0296207592}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4LThighGluteOutBkwd
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighInCollapseFwd
      position: {x: -.000259208668, y: -.0951145887, z: -.0301961992}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4LThighInCollapseFwd
      position: {x: -0, y: 0, z: .00174589432}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighInFwd
      position: {x: .0328613408, y: -.117918625, z: -.0119361067}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4LThighInFwd
      position: {x: -0, y: 0, z: -.00144840986}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4BsLThighOutFwd
      position: {x: -.0039545917, y: -.124977797, z: .00902653951}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: .231527999, y: .231527999, z: .231527999}
      transformModified: 1
    - name: V4LThighOutFwd
      position: {x: -0, y: -.000580339169, z: 0}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: V4ZnLThighAdductorOut
      position: {x: .0765657574, y: -.174345627, z: -.0204825588}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 9.99744034, y: 9.99744034, z: 9.99744034}
      transformModified: 1
    - name: V4ZnLThighFrontFwd-Bkwd
      position: {x: -.00404505711, y: -.182594672, z: .0405762009}
      rotation: {x: -.104528464, y: 0, z: -0, w: .994521916}
      scale: {x: 8.47782898, y: 24.8736305, z: 9.99744034}
      transformModified: 1
    - name: V4ZnLThighGluteCrsFwd-Bkwd
      position: {x: .067543678, y: -.0966899097, z: -.0352717005}
      rotation: {x: .00872653536, y: -0, z: -0, w: .999961913}
      scale: {x: 1.58495998, y: 1.58495998, z: 3.16991997}
      transformModified: 1
    - name: V4ZnLThighGluteFwd-Bkwd
      position: {x: .0254527517, y: -.0684239194, z: -.128627792}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 17.9578514, y: 8.67398167, z: 16.94137}
      transformModified: 1
    - name: V4ZnLThighGluteInBkwd
      position: {x: .0629841089, y: -.0271855928, z: -.0872627795}
      rotation: {x: 0, y: 0, z: .551936984, w: .833885849}
      scale: {x: 7.07136106, y: 9.36248207, z: 7.07136106}
      transformModified: 1
    - name: V4ZnLThighGluteOutBkwd
      position: {x: -.0368090905, y: -.0486192293, z: -.0451918393}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 4.98018837, y: 8.94990349, z: 10.5738783}
      transformModified: 1
    - name: V4ZnLThighInCollapseFwd
      position: {x: .0815938935, y: -.0978919193, z: -.0114604793}
      rotation: {x: 0, y: -0, z: -0, w: 1}
      scale: {x: 2.42084336, y: 1.84050429, z: 3.94630647}
      transformModified: 1
    - name: V4ZnLThighInFwd
      position: {x: .067805782, y: -.0993646979, z: .00877651013}
      rotation: {x: -.0948098004, y: .254900426, z: -.225542739, w: .93550384}
      scale: {x: 19.0430508, y: 4.1111269, z: 9.30821228}
      transformModified: 1
    - name: V4ZnLThighOutFwd
      position: {x: -.0427641943, y: -.13932769, z: .024897771}
      rotation: {x: -.0523359589, y: 0, z: -0, w: .99862957}
      scale: {x: 25.551506, y: 18.0236778, z: 4.47690248}
      transformModified: 1
    - name: lShin
      position: {x: .0219456051, y: -.458419204, z: -.0146303996}
      rotation: {x: -7.27595761e-10, y: 3.97046694e-19, z: -5.45696821e-10, w: 1}
      scale: {x: .99999994, y: 1, z: .999999881}
      transformModified: 1
    - name: lFoot
      position: {x: .00975359883, y: -.424281567, z: -.0365759991}
      rotation: {x: 1.23691279e-08, y: -5.45696821e-09, z: -9.09494646e-10, w: 1}
      scale: {x: 1, y: 1, z: .99999994}
      transformModified: 1
    - name: lToe
      position: {x: -.0195071977, y: -.112166405, z: .107289605}
      rotation: {x: 2.01948392e-26, y: -6.46234854e-25, z: -5.55111512e-17, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    - name: bodyMorphs
      position: {x: -0, y: 0, z: 0}
      rotation: {x: 0, y: 0, z: 0, w: 1}
      scale: {x: 1, y: 1, z: 1}
      transformModified: 1
    armTwist: .5
    foreArmTwist: .5
    upperLegTwist: .5
    legTwist: .5
    armStretch: .0500000007
    legStretch: .0500000007
    feetSpacing: 0
    rootMotionBoneName: 
  lastHumanDescriptionAvatarSource: {instanceID: 0}
  animationType: 3
  additionalBone: 0
  userData: 

Commits for Nextrek/3DSpace/Assets/3DModels/Characters/prova.fbx.meta

Diff revisions: vs.
Revision Author Commited Message
140 LMancini picture LMancini Thu 13 Nov, 2014 23:04:13 +0000