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
|
fileFormatVersion: 2
guid: fffcf9dc98521b549a3a84e9be2c2151
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: AH1_L
100002: AH1_R
100004: Armature
100006: Body
100008: Chest
100010: Eye_L
100012: Eye_R
100014: GarterRibbonA1
100016: GarterRibbonA2
100018: GarterRibbonB1
100020: GarterRibbonB2
100022: Hair_1
100024: Hair_10
100026: Hair_11
100028: Hair_2
100030: Hair_3
100032: Hair_4
100034: Hair_5
100036: Hair_6
100038: Hair_7
100040: Hair_8
100042: Hair_9
100044: Hair_Front_Center
100046: Hair_Front_Left1
100048: Hair_Front_Left2
100050: Hair_Front_Right1
100052: Hair_Front_Right2
100054: Head
100056: Hips
100058: IndexFinger1_L
100060: IndexFinger1_R
100062: IndexFinger2_L
100064: IndexFinger2_R
100066: IndexFinger3_L
100068: IndexFinger3_R
100070: Left ankle
100072: Left arm
100074: Left elbow
100076: Left knee
100078: Left leg
100080: Left shoulder
100082: Left toe
100084: Left wrist
100086: LeftEye
100088: LittleFinger1_L
100090: LittleFinger1_R
100092: LittleFinger2_L
100094: LittleFinger2_R
100096: LittleFinger3_L
100098: LittleFinger3_R
100100: MiddleFinger1_L
100102: MiddleFinger1_R
100104: MiddleFinger2_L
100106: MiddleFinger2_R
100108: MiddleFinger3_L
100110: MiddleFinger3_R
100112: Neck
100114: Right ankle
100116: Right arm
100118: Right elbow
100120: Right knee
100122: Right leg
100124: Right shoulder
100126: Right toe
100128: Right wrist
100130: RightEye
100132: RingFinger1_L
100134: RingFinger1_R
100136: RingFinger2_L
100138: RingFinger2_R
100140: RingFinger3_L
100142: RingFinger3_R
100144: Skirt_0_0
100146: Skirt_0_1
100148: Skirt_0_10
100150: Skirt_0_11
100152: Skirt_0_2
100154: Skirt_0_3
100156: Skirt_0_4
100158: Skirt_0_5
100160: Skirt_0_6
100162: Skirt_0_7
100164: Skirt_0_8
100166: Skirt_0_9
100168: Skirt_1_0
100170: Skirt_1_1
100172: Skirt_1_10
100174: Skirt_1_11
100176: Skirt_1_2
100178: Skirt_1_3
100180: Skirt_1_4
100182: Skirt_1_5
100184: Skirt_1_6
100186: Skirt_1_7
100188: Skirt_1_8
100190: Skirt_1_9
100192: Skirt_2_0
100194: Skirt_2_1
100196: Skirt_2_10
100198: Skirt_2_11
100200: Skirt_2_2
100202: Skirt_2_3
100204: Skirt_2_4
100206: Skirt_2_5
100208: Skirt_2_6
100210: Skirt_2_7
100212: Skirt_2_8
100214: Skirt_2_9
100216: Skirt_3_0
100218: Skirt_3_1
100220: Skirt_3_10
100222: Skirt_3_11
100224: Skirt_3_2
100226: Skirt_3_3
100228: Skirt_3_4
100230: Skirt_3_5
100232: Skirt_3_6
100234: Skirt_3_7
100236: Skirt_3_8
100238: Skirt_3_9
100240: Skirt_4_0
100242: Skirt_4_1
100244: Skirt_4_10
100246: Skirt_4_11
100248: Skirt_4_2
100250: Skirt_4_3
100252: Skirt_4_4
100254: Skirt_4_5
100256: Skirt_4_6
100258: Skirt_4_7
100260: Skirt_4_8
100262: Skirt_4_9
100264: Skirt_5_0
100266: Skirt_5_1
100268: Skirt_5_10
100270: Skirt_5_11
100272: Skirt_5_2
100274: Skirt_5_3
100276: Skirt_5_4
100278: Skirt_5_5
100280: Skirt_5_6
100282: Skirt_5_7
100284: Skirt_5_8
100286: Skirt_5_9
100288: Skirt_6_0
100290: Skirt_6_1
100292: Skirt_6_10
100294: Skirt_6_11
100296: Skirt_6_2
100298: Skirt_6_3
100300: Skirt_6_4
100302: Skirt_6_5
100304: Skirt_6_6
100306: Skirt_6_7
100308: Skirt_6_8
100310: Skirt_6_9
100312: Spine
100314: Thumb0_L
100316: Thumb0_R
100318: Thumb1_L
100320: Thumb1_R
100322: Thumb2_L
100324: Thumb2_R
100326: Tongue1
100328: Tongue2
100330: Tongue3
100332: //RootNode
100334: ZArmTwist_L
100336: ZArmTwist_R
100338: ZHandTwist_L
100340: ZHandTwist_R
400000: AH1_L
400002: AH1_R
400004: Armature
400006: Body
400008: Chest
400010: Eye_L
400012: Eye_R
400014: GarterRibbonA1
400016: GarterRibbonA2
400018: GarterRibbonB1
400020: GarterRibbonB2
400022: Hair_1
400024: Hair_10
400026: Hair_11
400028: Hair_2
400030: Hair_3
400032: Hair_4
400034: Hair_5
400036: Hair_6
400038: Hair_7
400040: Hair_8
400042: Hair_9
400044: Hair_Front_Center
400046: Hair_Front_Left1
400048: Hair_Front_Left2
400050: Hair_Front_Right1
400052: Hair_Front_Right2
400054: Head
400056: Hips
400058: IndexFinger1_L
400060: IndexFinger1_R
400062: IndexFinger2_L
400064: IndexFinger2_R
400066: IndexFinger3_L
400068: IndexFinger3_R
400070: Left ankle
400072: Left arm
400074: Left elbow
400076: Left knee
400078: Left leg
400080: Left shoulder
400082: Left toe
400084: Left wrist
400086: LeftEye
400088: LittleFinger1_L
400090: LittleFinger1_R
400092: LittleFinger2_L
400094: LittleFinger2_R
400096: LittleFinger3_L
400098: LittleFinger3_R
400100: MiddleFinger1_L
400102: MiddleFinger1_R
400104: MiddleFinger2_L
400106: MiddleFinger2_R
400108: MiddleFinger3_L
400110: MiddleFinger3_R
400112: Neck
400114: Right ankle
400116: Right arm
400118: Right elbow
400120: Right knee
400122: Right leg
400124: Right shoulder
400126: Right toe
400128: Right wrist
400130: RightEye
400132: RingFinger1_L
400134: RingFinger1_R
400136: RingFinger2_L
400138: RingFinger2_R
400140: RingFinger3_L
400142: RingFinger3_R
400144: Skirt_0_0
400146: Skirt_0_1
400148: Skirt_0_10
400150: Skirt_0_11
400152: Skirt_0_2
400154: Skirt_0_3
400156: Skirt_0_4
400158: Skirt_0_5
400160: Skirt_0_6
400162: Skirt_0_7
400164: Skirt_0_8
400166: Skirt_0_9
400168: Skirt_1_0
400170: Skirt_1_1
400172: Skirt_1_10
400174: Skirt_1_11
400176: Skirt_1_2
400178: Skirt_1_3
400180: Skirt_1_4
400182: Skirt_1_5
400184: Skirt_1_6
400186: Skirt_1_7
400188: Skirt_1_8
400190: Skirt_1_9
400192: Skirt_2_0
400194: Skirt_2_1
400196: Skirt_2_10
400198: Skirt_2_11
400200: Skirt_2_2
400202: Skirt_2_3
400204: Skirt_2_4
400206: Skirt_2_5
400208: Skirt_2_6
400210: Skirt_2_7
400212: Skirt_2_8
400214: Skirt_2_9
400216: Skirt_3_0
400218: Skirt_3_1
400220: Skirt_3_10
400222: Skirt_3_11
400224: Skirt_3_2
400226: Skirt_3_3
400228: Skirt_3_4
400230: Skirt_3_5
400232: Skirt_3_6
400234: Skirt_3_7
400236: Skirt_3_8
400238: Skirt_3_9
400240: Skirt_4_0
400242: Skirt_4_1
400244: Skirt_4_10
400246: Skirt_4_11
400248: Skirt_4_2
400250: Skirt_4_3
400252: Skirt_4_4
400254: Skirt_4_5
400256: Skirt_4_6
400258: Skirt_4_7
400260: Skirt_4_8
400262: Skirt_4_9
400264: Skirt_5_0
400266: Skirt_5_1
400268: Skirt_5_10
400270: Skirt_5_11
400272: Skirt_5_2
400274: Skirt_5_3
400276: Skirt_5_4
400278: Skirt_5_5
400280: Skirt_5_6
400282: Skirt_5_7
400284: Skirt_5_8
400286: Skirt_5_9
400288: Skirt_6_0
400290: Skirt_6_1
400292: Skirt_6_10
400294: Skirt_6_11
400296: Skirt_6_2
400298: Skirt_6_3
400300: Skirt_6_4
400302: Skirt_6_5
400304: Skirt_6_6
400306: Skirt_6_7
400308: Skirt_6_8
400310: Skirt_6_9
400312: Spine
400314: Thumb0_L
400316: Thumb0_R
400318: Thumb1_L
400320: Thumb1_R
400322: Thumb2_L
400324: Thumb2_R
400326: Tongue1
400328: Tongue2
400330: Tongue3
400332: //RootNode
400334: ZArmTwist_L
400336: ZArmTwist_R
400338: ZHandTwist_L
400340: ZHandTwist_R
2100000: "Dress\u30EC\u30FC\u30B9"
2100002: GarterBelt
2100004: body
2100006: Blush
2100008: Face (Scar)
2100010: Eyelids
2100012: Eyebrows
2100014: Facials4
2100016: Tiara
2100018: Hair
4300000: Body
9500000: //RootNode
13700000: Body
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Blush
second: {fileID: 2100000, guid: 60e78c6ff5708614f91a22747c3db9f3, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: "Dress\u30EC\u30FC\u30B9"
second: {fileID: 2100000, guid: cf8a3948c77f7ed4aa641209b3b4152e, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Eyebrows
second: {fileID: 2100000, guid: 98112bfaab9d5d64cb8426db20337459, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Eyelids
second: {fileID: 2100000, guid: 60e78c6ff5708614f91a22747c3db9f3, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Face (Scar)
second: {fileID: 2100000, guid: b4747d8460422664e9defd6950e5ee9e, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Facials4
second: {fileID: 2100000, guid: 0db0898a277b0064aa083e50732a127d, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: GarterBelt
second: {fileID: 2100000, guid: b7b3ee16e77aa45488943e1366e61ef0, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Hair
second: {fileID: 2100000, guid: 5451a0b08a57da64dba55f7a14a196b4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Tiara
second: {fileID: 2100000, guid: 58ba9322eec0d0e43b3887d5b5bbfa4d, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: body
second: {fileID: 2100000, guid: ede82c5fa35ceb6489b42880fb0c8585, type: 2}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 0
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 1
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human:
- boneName: Hips
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: Left leg
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: Right leg
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: Left knee
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: Right knee
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: Left ankle
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: Right ankle
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: Spine
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: Left shoulder
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: Right shoulder
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: Left arm
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: Right arm
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: Left elbow
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: Right elbow
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: Left wrist
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: Right wrist
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: Left toe
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: Right toe
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: LeftEye
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: RightEye
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: Thumb0_L
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: Thumb1_L
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: Thumb2_L
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: IndexFinger1_L
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: IndexFinger2_L
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: IndexFinger3_L
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: MiddleFinger1_L
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: MiddleFinger2_L
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: MiddleFinger3_L
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: RingFinger1_L
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: RingFinger2_L
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: RingFinger3_L
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: LittleFinger1_L
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: LittleFinger2_L
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: LittleFinger3_L
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: Thumb0_R
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: Thumb1_R
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: Thumb2_R
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: IndexFinger1_R
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: IndexFinger2_R
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: IndexFinger3_R
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: MiddleFinger1_R
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: MiddleFinger2_R
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: MiddleFinger3_R
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: RingFinger1_R
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: RingFinger2_R
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: RingFinger3_R
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: LittleFinger1_R
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: LittleFinger2_R
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: LittleFinger3_R
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: Weiss Dress(Clone)
parentName:
position: {x: 0, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Armature
parentName: Weiss Dress(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
- name: Hips
parentName: Armature
position: {x: -0, y: -0.2992829, z: 11.014166}
rotation: {x: 0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
- name: Spine
parentName: Hips
position: {x: -0, y: 1.1027365, z: 0}
rotation: {x: -0.0783801, y: 0, z: -0, w: 0.99692357}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Chest
parentName: Spine
position: {x: -0, y: 1.1640726, z: 0.00000013411045}
rotation: {x: 0.000000007450581, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: AH1_L
parentName: Chest
position: {x: -0.7408777, y: 0.88734514, z: 0.28466716}
rotation: {x: 0.000000054230593, y: 0.64950836, z: 0.7603545, w: 0.000000052968296}
scale: {x: 1, y: 0.99999994, z: 1}
- name: AH1_R
parentName: Chest
position: {x: 0.7408777, y: 0.88734514, z: 0.28466716}
rotation: {x: 0.000000054230593, y: 0.64950836, z: 0.7603545, w: 0.000000052968296}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Neck
parentName: Chest
position: {x: -0, y: 2.1618497, z: -0.00000022351742}
rotation: {x: 0.12483145, y: 0, z: -0, w: 0.99217796}
scale: {x: 1, y: 1, z: 1}
- name: Head
parentName: Neck
position: {x: -0, y: 0.6863905, z: 0.000000059604645}
rotation: {x: -0.046680406, y: 0, z: -0, w: 0.9989099}
scale: {x: 1, y: 1, z: 1}
- name: Tongue1
parentName: Head
position: {x: 0.00000045628013, y: 0.2138691, z: 0.7809868}
rotation: {x: 0.7479829, y: 0, z: -0, w: 0.663718}
scale: {x: 1, y: 1, z: 1}
- name: Tongue2
parentName: Tongue1
position: {x: 2.842171e-14, y: 0.023185134, z: -0.0000001937151}
rotation: {x: 0.039216932, y: 0, z: -0, w: 0.99923074}
scale: {x: 1, y: 0.99999994, z: 0.9999998}
- name: Tongue3
parentName: Tongue2
position: {x: -0, y: 0.02499628, z: 0.0000006109476}
rotation: {x: 0.06869465, y: 0, z: -0, w: 0.99763775}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Hair_1
parentName: Head
position: {x: 1.497733, y: 1.5581589, z: -1.1438262}
rotation: {x: 0.99802315, y: -0.02084596, z: -0.020858869, w: -0.055499166}
scale: {x: 0.9999994, y: 1, z: 0.99999624}
- name: Hair_2
parentName: Hair_1
position: {x: -0.000000074505806, y: 0.8552796, z: -0.000000037252903}
rotation: {x: -0.012644894, y: 0.012362403, z: -0.013258542, w: 0.99975574}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Hair_3
parentName: Hair_2
position: {x: -0.00000010058284, y: 0.8158462, z: -0.00000014714897}
rotation: {x: -0.029111996, y: -0.0131385, z: 0.014806883, w: 0.9993802}
scale: {x: 0.99999994, y: 1, z: 1.0000001}
- name: Hair_4
parentName: Hair_3
position: {x: 0.000000007450581, y: 0.8847225, z: 0.000000022351742}
rotation: {x: 0.017149244, y: -0.010991056, z: 0.010531245, w: 0.9997371}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Hair_5
parentName: Hair_4
position: {x: -0, y: 0.8074863, z: 0.000000067055225}
rotation: {x: 0.002613526, y: 0.0008444358, z: -0.0010754393, w: 0.99999565}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Hair_6
parentName: Hair_5
position: {x: 0.000000007450581, y: 0.88839525, z: 0}
rotation: {x: 0.015965523, y: -0.0112105515, z: 0.010936572, w: 0.9997499}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: Hair_7
parentName: Hair_6
position: {x: 0.000000029802322, y: 0.952894, z: -0.00000023841858}
rotation: {x: 0.04681507, y: 0.07195582, z: -0.083704464, w: 0.9927861}
scale: {x: 0.9999999, y: 1.0000001, z: 0.9999999}
- name: Hair_8
parentName: Hair_7
position: {x: 0.00000025331974, y: 0.9153771, z: 0.00000048428774}
rotation: {x: 0.059283312, y: 0.015441514, z: -0.014088084, w: 0.9980223}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Hair_9
parentName: Hair_8
position: {x: -0.00000011920929, y: 0.93150336, z: 0.00000012665987}
rotation: {x: 0.05630311, y: 0.040918525, z: -0.049439352, w: 0.99634904}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Hair_10
parentName: Hair_9
position: {x: -0.00000011920929, y: 0.9209231, z: -0.000000923872}
rotation: {x: 0.037982725, y: 0.03000317, z: -0.037076335, w: 0.9981395}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Hair_11
parentName: Hair_10
position: {x: -0.00000035762787, y: 0.8670701, z: 0.00000023841858}
rotation: {x: -0.010877232, y: 0.11505703, z: -0.19881485, w: 0.97319895}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Hair_Front_Center
parentName: Head
position: {x: -0, y: 1.7178764, z: 1.3998371}
rotation: {x: 1, y: 1.9106855e-15, z: 0.000000043711385, w: -0.00000004371139}
scale: {x: 1, y: 0.99999976, z: 1}
- name: Hair_Front_Left1
parentName: Head
position: {x: 1.048241, y: 1.6875763, z: 0.80491316}
rotation: {x: 1, y: 1.9106855e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Front_Left2
parentName: Hair_Front_Left1
position: {x: 0.000000056688403, y: 0.6012001, z: -0.00000002756915}
rotation: {x: -8.1418805e-17, y: -0.00000004371139, z: -0.0000000018626451,
w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Front_Right1
parentName: Head
position: {x: -1.020757, y: 1.6875763, z: 0.80491316}
rotation: {x: 0.99810773, y: -0.043459177, z: -0.04345931, w: -0.001892243}
scale: {x: 0.9999933, y: 0.9999998, z: 0.99999994}
- name: Hair_Front_Right2
parentName: Hair_Front_Right1
position: {x: 0.000000055879354, y: 0.6034838, z: -0.000000029802322}
rotation: {x: -0.0018922802, y: 0.043459304, z: -0.04345959, w: 0.99810773}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Eye_R
parentName: Head
position: {x: 0.35475862, y: 0.9780159, z: 0.18193159}
rotation: {x: 0.16023898, y: 0.69695723, z: 0.6969574, w: -0.053146537}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Eye_L
parentName: Head
position: {x: -0.35475862, y: 0.9780159, z: 0.18193159}
rotation: {x: -0.16023898, y: 0.69695723, z: 0.6969574, w: 0.053146537}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: LeftEye
parentName: Head
position: {x: -0.386271, y: 0.9479084, z: 0.29161653}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.38555002, y: 0.9499359, z: 0.29186043}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left shoulder
parentName: Chest
position: {x: -0.6534506, y: 2.0389106, z: -0.08178422}
rotation: {x: 0.65083534, y: -0.45030022, z: -0.4863321, w: -0.37030283}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Left arm
parentName: Left shoulder
position: {x: -0, y: 0.6357669, z: -0.00000015646219}
rotation: {x: 0.11790091, y: 0.12466547, z: 0.06630432, w: 0.9829352}
scale: {x: 1, y: 1, z: 1}
- name: ZArmTwist_L
parentName: Left arm
position: {x: 0.0082038045, y: 1.4795451, z: 0.006273702}
rotation: {x: 0.002119493, y: -5.674339e-13, z: -0.0027727666, w: 0.9999939}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Left elbow
parentName: Left arm
position: {x: 0.00000064074993, y: 2.4661665, z: -0.0000007748604}
rotation: {x: -0.009672976, y: 0.0131244995, z: -0.008637272, w: 0.9998298}
scale: {x: 1, y: 1.0000001, z: 1}
- name: ZHandTwist_L
parentName: Left elbow
position: {x: 0.00000023841858, y: 1.3468802, z: -0.000001475215}
rotation: {x: 0.00000064237975, y: -0.00000021606682, z: 0.00000054622063, w: 1}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Left wrist
parentName: Left elbow
position: {x: -0.0000005662441, y: 2.2447977, z: -0.00000074505806}
rotation: {x: 0.054877073, y: -0.03509352, z: -0.01287912, w: 0.99779314}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.15388118, y: 0.34162933, z: -0.21130025}
rotation: {x: -0.29591832, y: 0.14971645, z: 0.20122296, w: 0.92169774}
scale: {x: 0.99999994, y: 0.99999994, z: 1.0000001}
- name: Thumb1_L
parentName: Thumb0_L
position: {x: 0.0000010728836, y: 0.21507995, z: -0.00000044703484}
rotation: {x: 0.03802077, y: -0.11492337, z: -0.003424168, w: 0.99264055}
scale: {x: 0.9999998, y: 0.99999994, z: 0.9999999}
- name: Thumb2_L
parentName: Thumb1_L
position: {x: 0.000000044703484, y: 0.19432722, z: -0.00000008940697}
rotation: {x: -0.0077270893, y: -0.038680803, z: 0.05126497, w: 0.9979058}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: IndexFinger1_L
parentName: Left wrist
position: {x: -0.2667363, y: 0.7439439, z: -0.035323545}
rotation: {x: -0.106817946, y: 0.13399626, z: -0.047966063, w: 0.9840397}
scale: {x: 1, y: 1, z: 0.99999994}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: -0.00000029522926, y: 0.34265536, z: 0.00000016577542}
rotation: {x: 0.025988217, y: -0.119180724, z: 0.027283361, w: 0.9921574}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: 0.00000017508864, y: 0.2133371, z: 0.0000009071082}
rotation: {x: 0.022334252, y: -0.015328487, z: -0.0044802725, w: 0.999623}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: MiddleFinger1_L
parentName: Left wrist
position: {x: -0.016634718, y: 0.77299416, z: -0.06742487}
rotation: {x: 0.012449202, y: -0.08663717, z: 0.07444768, w: 0.9933764}
scale: {x: 1, y: 1, z: 0.99999994}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: 0.0000001937151, y: 0.38379923, z: -0.00000024586916}
rotation: {x: -0.026415307, y: 0.109333634, z: -0.027522027, w: 0.99327284}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: 0.0000001937151, y: 0.23579876, z: 0.00000051409006}
rotation: {x: 0.043589562, y: -0.04992147, z: 0.024238076, w: 0.9975071}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: RingFinger1_L
parentName: Left wrist
position: {x: 0.14486092, y: 0.7688876, z: 0.0018459707}
rotation: {x: 0.010651022, y: -0.12053827, z: 0.07561137, w: 0.9897677}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.00000014901161, y: 0.33799863, z: 0.0000014901161}
rotation: {x: -0.022630282, y: 0.14907175, z: -0.027878275, w: 0.98817426}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: 0.00000029802322, y: 0.20534866, z: 0.00000064074993}
rotation: {x: 0.030771911, y: -0.034896336, z: 0.017715778, w: 0.99876}
scale: {x: 0.99999994, y: 1, z: 1}
- name: LittleFinger1_L
parentName: Left wrist
position: {x: 0.2938509, y: 0.7491851, z: 0.05710846}
rotation: {x: 0.019177191, y: -0.20572652, z: 0.06581433, w: 0.9762056}
scale: {x: 0.9999999, y: 1, z: 1}
- name: LittleFinger2_L
parentName: LittleFinger1_L
position: {x: -0.00000017881393, y: 0.23982026, z: 0.00000039488077}
rotation: {x: -0.024924926, y: 0.23705044, z: -0.01982884, w: 0.9709751}
scale: {x: 1, y: 1, z: 0.99999994}
- name: LittleFinger3_L
parentName: LittleFinger2_L
position: {x: 0.00000044703484, y: 0.17176597, z: 0.0000007748604}
rotation: {x: 0.0009021702, y: 0.0044982606, z: -0.008427773, w: 0.999954}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Right shoulder
parentName: Chest
position: {x: 0.6534506, y: 2.0389106, z: -0.08178422}
rotation: {x: 0.65083534, y: 0.45030022, z: 0.4863321, w: -0.37030283}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Right arm
parentName: Right shoulder
position: {x: -0, y: 0.6357669, z: -0.00000015646219}
rotation: {x: 0.11790091, y: -0.12466547, z: -0.06630432, w: 0.9829352}
scale: {x: 1, y: 1, z: 1}
- name: ZArmTwist_R
parentName: Right arm
position: {x: -0.0082038045, y: 1.4795451, z: 0.006273702}
rotation: {x: 0.002119493, y: 5.674339e-13, z: 0.0027727666, w: 0.9999939}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Right elbow
parentName: Right arm
position: {x: -0.00000064074993, y: 2.4661665, z: -0.0000007748604}
rotation: {x: -0.009672976, y: -0.0131244995, z: 0.008637272, w: 0.9998298}
scale: {x: 1, y: 1.0000001, z: 1}
- name: ZHandTwist_R
parentName: Right elbow
position: {x: -0.00000023841858, y: 1.3468802, z: -0.000001475215}
rotation: {x: 0.00000064237975, y: 0.00000021606682, z: -0.00000054622063, w: 1}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Right wrist
parentName: Right elbow
position: {x: 0.0000005662441, y: 2.2447977, z: -0.00000074505806}
rotation: {x: 0.054877073, y: 0.03509352, z: 0.01287912, w: 0.99779314}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.15388118, y: 0.34162933, z: -0.21130025}
rotation: {x: -0.29591832, y: -0.14971645, z: -0.20122296, w: 0.92169774}
scale: {x: 0.99999994, y: 0.99999994, z: 1.0000001}
- name: Thumb1_R
parentName: Thumb0_R
position: {x: -0.0000010728836, y: 0.21507995, z: -0.00000044703484}
rotation: {x: 0.03802077, y: 0.11492337, z: 0.003424168, w: 0.99264055}
scale: {x: 0.9999998, y: 0.99999994, z: 0.9999999}
- name: Thumb2_R
parentName: Thumb1_R
position: {x: -0.000000044703484, y: 0.19432722, z: -0.00000008940697}
rotation: {x: -0.0077270893, y: 0.038680803, z: -0.05126497, w: 0.9979058}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: IndexFinger1_R
parentName: Right wrist
position: {x: 0.2667363, y: 0.7439439, z: -0.035323545}
rotation: {x: -0.106817946, y: -0.13399626, z: 0.047966063, w: 0.9840397}
scale: {x: 1, y: 1, z: 0.99999994}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: 0.00000029522926, y: 0.34265536, z: 0.00000016577542}
rotation: {x: 0.025988217, y: 0.119180724, z: -0.027283361, w: 0.9921574}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: -0.00000017508864, y: 0.2133371, z: 0.0000009071082}
rotation: {x: 0.022334252, y: 0.015328487, z: 0.0044802725, w: 0.999623}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: MiddleFinger1_R
parentName: Right wrist
position: {x: 0.016634718, y: 0.77299416, z: -0.06742487}
rotation: {x: 0.012449202, y: 0.08663717, z: -0.07444768, w: 0.9933764}
scale: {x: 1, y: 1, z: 0.99999994}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: -0.0000001937151, y: 0.38379923, z: -0.00000024586916}
rotation: {x: -0.026415307, y: -0.109333634, z: 0.027522027, w: 0.99327284}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: -0.0000001937151, y: 0.23579876, z: 0.00000051409006}
rotation: {x: 0.043589562, y: 0.04992147, z: -0.024238076, w: 0.9975071}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: RingFinger1_R
parentName: Right wrist
position: {x: -0.14486092, y: 0.7688876, z: 0.0018459707}
rotation: {x: 0.010651022, y: 0.12053827, z: -0.07561137, w: 0.9897677}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.00000014901161, y: 0.33799863, z: 0.0000014901161}
rotation: {x: -0.022630282, y: -0.14907175, z: 0.027878275, w: 0.98817426}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: -0.00000029802322, y: 0.20534866, z: 0.00000064074993}
rotation: {x: 0.030771911, y: 0.034896336, z: -0.017715778, w: 0.99876}
scale: {x: 0.99999994, y: 1, z: 1}
- name: LittleFinger1_R
parentName: Right wrist
position: {x: -0.2938509, y: 0.7491851, z: 0.05710846}
rotation: {x: 0.019177191, y: 0.20572652, z: -0.06581433, w: 0.9762056}
scale: {x: 0.9999999, y: 1, z: 1}
- name: LittleFinger2_R
parentName: LittleFinger1_R
position: {x: 0.00000017881393, y: 0.23982026, z: 0.00000039488077}
rotation: {x: -0.024924926, y: -0.23705044, z: 0.01982884, w: 0.9709751}
scale: {x: 1, y: 1, z: 0.99999994}
- name: LittleFinger3_R
parentName: LittleFinger2_R
position: {x: -0.00000044703484, y: 0.17176597, z: 0.0000007748604}
rotation: {x: 0.0009021702, y: -0.0044982606, z: 0.008427773, w: 0.999954}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Left leg
parentName: Hips
position: {x: -0.8552797, y: -0.54313946, z: -0.13346973}
rotation: {x: 0.9995157, y: 0.021940961, z: 0.021939911, w: -0.0023599952}
scale: {x: 0.9999661, y: 1, z: 0.9999997}
- name: Left knee
parentName: Left leg
position: {x: 0.0000000013969839, y: 4.4706583, z: 0.000000009313226}
rotation: {x: 0.025701819, y: -0.022068756, z: 0.02330507, w: 0.99915427}
scale: {x: 0.99999994, y: 0.9999999, z: 0.99999994}
- name: Left ankle
parentName: Left knee
position: {x: 0.000000014711986, y: 4.895692, z: -0.00000001641456}
rotation: {x: -0.526497, y: -0.08312556, z: 0.08874734, w: 0.8414363}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Left toe
parentName: Left ankle
position: {x: 0.000000007450581, y: 1.5522132, z: -0.000000074505806}
rotation: {x: -0.0000001830257, y: 0.9605528, z: -0.24966908, w: -0.1224895}
scale: {x: 1.0000001, y: 1.0000001, z: 0.9999999}
- name: GarterRibbonA1
parentName: Left leg
position: {x: -0.6724266, y: 1.4807001, z: -0.1717001}
rotation: {x: -0.031750828, y: -0.2025235, z: 0.2020905, w: 0.95767194}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: GarterRibbonA2
parentName: GarterRibbonA1
position: {x: 0.00000013411045, y: 0.57542634, z: -0.000000044703484}
rotation: {x: 0.00036547572, y: -0.000003977156, z: -0.00013352282, w: 0.99999994}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: GarterRibbonB1
parentName: Left leg
position: {x: -0.67637426, y: 1.4810373, z: -0.0820017}
rotation: {x: 0.087350644, y: -0.17903726, z: 0.18373466, w: 0.9625784}
scale: {x: 1, y: 0.99999994, z: 1}
- name: GarterRibbonB2
parentName: GarterRibbonB1
position: {x: 0.00000033900142, y: 0.57542694, z: 0.000000029802322}
rotation: {x: -0.00036579, y: -0.0000039562588, z: 0.00013263433, w: 0.99999994}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: Right leg
parentName: Hips
position: {x: 0.8552797, y: -0.54313946, z: -0.13346973}
rotation: {x: 0.9995157, y: -0.021940961, z: -0.021939911, w: -0.0023599952}
scale: {x: 0.9999661, y: 1, z: 0.9999997}
- name: Right knee
parentName: Right leg
position: {x: -0.0000000013969839, y: 4.4706583, z: 0.000000009313226}
rotation: {x: 0.025701819, y: 0.022068756, z: -0.02330507, w: 0.99915427}
scale: {x: 0.99999994, y: 0.9999999, z: 0.99999994}
- name: Right ankle
parentName: Right knee
position: {x: -0.000000014711986, y: 4.895692, z: -0.00000001641456}
rotation: {x: -0.526497, y: 0.08312556, z: -0.08874734, w: 0.8414363}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Right toe
parentName: Right ankle
position: {x: -0.000000007450581, y: 1.5522132, z: -0.000000074505806}
rotation: {x: 0.0000001830257, y: 0.9605528, z: -0.24966908, w: 0.1224895}
scale: {x: 1.0000001, y: 1.0000001, z: 0.9999999}
- name: Skirt_0_0
parentName: Hips
position: {x: -0.83620864, y: 1.4097223, z: 0.028192282}
rotation: {x: 0.9424049, y: -0.23297697, z: -0.23297554, w: -0.057594504}
scale: {x: 1.0000008, y: 1.0000002, z: 1}
- name: Skirt_1_0
parentName: Skirt_0_0
position: {x: 0.0000004917383, y: 2.0159833, z: -0.0000002682209}
rotation: {x: 0.005764436, y: -0.012093206, z: 0.010632303, w: 0.9998538}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Skirt_2_0
parentName: Skirt_1_0
position: {x: -0.00000067055225, y: 2.042595, z: 0.00000008940697}
rotation: {x: -0.008028277, y: 0.016995555, z: -0.014982778, w: 0.9997111}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Skirt_3_0
parentName: Skirt_2_0
position: {x: 0.00000032782555, y: 2.0057192, z: -0.00000011920929}
rotation: {x: -0.013518682, y: 0.0314962, z: -0.02846497, w: 0.999007}
scale: {x: 1.0000001, y: 0.9999998, z: 1}
- name: Skirt_4_0
parentName: Skirt_3_0
position: {x: 0.000000014901161, y: 1.9465415, z: 0.0000002682209}
rotation: {x: -0.011113152, y: 0.029794274, z: -0.027658338, w: 0.99911153}
scale: {x: 0.9999999, y: 0.99999994, z: 0.99999994}
- name: Skirt_5_0
parentName: Skirt_4_0
position: {x: -0.00000017881393, y: 1.9004465, z: -0.000000029802322}
rotation: {x: -0.0029449256, y: 0.008743826, z: -0.0082334075, w: 0.9999235}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Skirt_6_0
parentName: Skirt_5_0
position: {x: 0.0000001937151, y: 1.8885963, z: 0.000000029802322}
rotation: {x: 0.011125418, y: -0.031083014, z: 0.029039918, w: 0.9990329}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999999}
- name: Skirt_0_1
parentName: Hips
position: {x: -0.72825724, y: 1.4097223, z: -0.31019208}
rotation: {x: 0.95058066, y: -0.17498548, z: -0.1749859, w: -0.1875005}
scale: {x: 0.99999964, y: 0.9999999, z: 0.9999998}
- name: Skirt_1_1
parentName: Skirt_0_1
position: {x: 0.00000044703484, y: 2.0539658, z: -0.0000007748604}
rotation: {x: 0.00872265, y: -0.0078045605, z: 0.00763955, w: 0.99990237}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Skirt_2_1
parentName: Skirt_1_1
position: {x: -0.000000059604645, y: 2.081739, z: 0}
rotation: {x: -0.00018963311, y: 0.010787524, z: -0.016325492, w: 0.99980855}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Skirt_3_1
parentName: Skirt_2_1
position: {x: -0, y: 2.0605965, z: 0.0000010728836}
rotation: {x: -0.0035251246, y: 0.019411096, z: -0.027950166, w: 0.9994146}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_4_1
parentName: Skirt_3_1
position: {x: -0, y: 2.0224423, z: 0.00000029802322}
rotation: {x: -0.002050288, y: 0.017798044, z: -0.026077297, w: 0.9994994}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_5_1
parentName: Skirt_4_1
position: {x: 0.00000059604645, y: 1.9942746, z: 0.000000059604645}
rotation: {x: 0.0026665807, y: 0.005102679, z: -0.00851798, w: 0.9999472}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Skirt_6_1
parentName: Skirt_5_1
position: {x: 0.00000035762787, y: 1.9920745, z: -0.00000047683716}
rotation: {x: 0.010547523, y: -0.018013194, z: 0.024023209, w: 0.9994935}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Skirt_0_2
parentName: Hips
position: {x: -0.42199153, y: 1.4097223, z: -0.53171444}
rotation: {x: 0.95443916, y: -0.091054425, z: -0.09105416, w: -0.26919177}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000006}
- name: Skirt_1_2
parentName: Skirt_0_2
position: {x: 0.0000002682209, y: 2.1273494, z: 0.0000005438924}
rotation: {x: 0.011845212, y: -0.0036264884, z: 0.003327811, w: 0.99991775}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Skirt_2_2
parentName: Skirt_1_2
position: {x: 0.00000029802322, y: 2.1625469, z: -0.0000007301569}
rotation: {x: 0.005556714, y: 0.0049137897, z: -0.0105925435, w: 0.9999164}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: Skirt_3_2
parentName: Skirt_2_2
position: {x: -0.000000059604645, y: 2.1720748, z: 0.00000023841858}
rotation: {x: 0.0031049084, y: 0.008568473, z: -0.016762199, w: 0.99981797}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: Skirt_4_2
parentName: Skirt_3_2
position: {x: -0, y: 2.1719315, z: 0.000000044703484}
rotation: {x: 0.0039823186, y: 0.007605912, z: -0.0151496045, w: 0.9998484}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: Skirt_5_2
parentName: Skirt_4_2
position: {x: -0.000000029802322, y: 2.1767616, z: -0.0000005811453}
rotation: {x: 0.007597741, y: 0.0021225119, z: -0.0054308097, w: 0.99995416}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Skirt_6_2
parentName: Skirt_5_2
position: {x: 0.000000029802322, y: 2.197895, z: 0.000000074505806}
rotation: {x: 0.013634304, y: -0.007360949, z: 0.011815638, w: 0.99981016}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Skirt_0_3
parentName: Hips
position: {x: 0.000000051943925, y: 1.4097223, z: -0.6003213}
rotation: {x: 0.95855373, y: 0.000000049630437, z: 0.000000049630284, w: -0.28491178}
scale: {x: 1, y: 1, z: 1.0000007}
- name: Skirt_1_3
parentName: Skirt_0_3
position: {x: -4.2632564e-14, y: 2.1294808, z: -0.00000059604645}
rotation: {x: 0.011248425, y: -0.00000005258778, z: 0.00000009872845, w: 0.99993676}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: Skirt_2_3
parentName: Skirt_1_3
position: {x: -2.220446e-14, y: 2.161737, z: -0.00000023841858}
rotation: {x: 0.0072584585, y: 5.9323757e-10, z: -0.0000000017737303, w: 0.99997365}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: Skirt_3_3
parentName: Skirt_2_3
position: {x: -4.440892e-14, y: 2.18367, z: 0.00000023841858}
rotation: {x: 0.0054227174, y: 0.000000025362525, z: -0.00000004942798, w: 0.99998534}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_4_3
parentName: Skirt_3_3
position: {x: -5.3290705e-15, y: 2.2006533, z: -0.00000023841858}
rotation: {x: 0.0055642845, y: 0.000000024266415, z: -0.00000004727878, w: 0.99998456}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Skirt_5_3
parentName: Skirt_4_3
position: {x: 1.4210855e-14, y: 2.2186296, z: 0.0000002384186}
rotation: {x: 0.0075489203, y: -0.0000000010750711, z: 0.0000000032871463, w: 0.9999715}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Skirt_6_3
parentName: Skirt_5_3
position: {x: 6.3948846e-14, y: 2.243943, z: -0.00000047683713}
rotation: {x: 0.011185654, y: -0.00000004810109, z: 0.00000009887348, w: 0.9999375}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Skirt_0_4
parentName: Hips
position: {x: 0.41995242, y: 1.4097223, z: -0.50946844}
rotation: {x: 0.9602911, y: 0.09461006, z: 0.09461021, w: -0.24482436}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: Skirt_1_4
parentName: Skirt_0_4
position: {x: -0, y: 2.0687988, z: -0.0000003799796}
rotation: {x: 0.008277311, y: 0.0039629415, z: -0.0044859936, w: 0.99994785}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Skirt_2_4
parentName: Skirt_1_4
position: {x: -0.00000023841858, y: 2.0916972, z: 0.0000010877848}
rotation: {x: 0.004993282, y: -0.005418813, z: 0.010704219, w: 0.9999156}
scale: {x: 0.99999994, y: 1, z: 1.0000001}
- name: Skirt_3_4
parentName: Skirt_2_4
position: {x: 0.000000059604645, y: 2.0971563, z: 0.00000014901161}
rotation: {x: 0.0035221153, y: -0.00946467, z: 0.01735406, w: 0.9997984}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_4_4
parentName: Skirt_3_4
position: {x: 0.00000011920929, y: 2.0960877, z: -0.000000014901161}
rotation: {x: 0.0034584345, y: -0.008413522, z: 0.015498473, w: 0.99983853}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: Skirt_5_4
parentName: Skirt_4_4
position: {x: 0.00000020861626, y: 2.0974252, z: 0.00000008940697}
rotation: {x: 0.0042174878, y: -0.0023683573, z: 0.0049616, w: 0.99997604}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Skirt_6_4
parentName: Skirt_5_4
position: {x: -0.00000032782555, y: 2.106217, z: 0.000000014901161}
rotation: {x: 0.0058124657, y: 0.0084063215, z: -0.0139803, w: 0.9998501}
scale: {x: 0.9999998, y: 1, z: 1}
- name: Skirt_0_5
parentName: Hips
position: {x: 0.72507095, y: 1.4097223, z: -0.28296208}
rotation: {x: 0.9530785, y: 0.18039064, z: 0.1803911, w: -0.16297135}
scale: {x: 0.99999964, y: 0.9999999, z: 0.9999998}
- name: Skirt_1_5
parentName: Skirt_0_5
position: {x: -0.00000029802322, y: 2.0228655, z: -0.00000029802322}
rotation: {x: 0.00562335, y: 0.008371441, z: -0.009257097, w: 0.9999063}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Skirt_2_5
parentName: Skirt_1_5
position: {x: -0.000000029802322, y: 2.0453131, z: 0.00000023841858}
rotation: {x: -0.0012793499, y: -0.011650315, z: 0.016049815, w: 0.99980253}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Skirt_3_5
parentName: Skirt_2_5
position: {x: -0.00000035762787, y: 2.0217888, z: 0.00000011920929}
rotation: {x: -0.003956931, y: -0.021022758, z: 0.028226921, w: 0.9993726}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Skirt_4_5
parentName: Skirt_3_5
position: {x: -0.00000059604645, y: 1.9823656, z: 0.00000011920929}
rotation: {x: -0.0032163798, y: -0.019330965, z: 0.02611529, w: 0.99946684}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Skirt_5_5
parentName: Skirt_4_5
position: {x: 0.00000059604645, y: 1.9519656, z: -0.0000004172325}
rotation: {x: -0.0008738282, y: -0.0055831647, z: 0.0075601903, w: 0.9999555}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: Skirt_6_5
parentName: Skirt_5_5
position: {x: -0.000000059604645, y: 1.9441633, z: 0.00000047683716}
rotation: {x: 0.0033469978, y: 0.020030344, z: -0.027059095, w: 0.99942756}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Skirt_0_6
parentName: Hips
position: {x: 0.83620864, y: 1.4097223, z: 0.028192341}
rotation: {x: 0.9424049, y: 0.23297694, z: 0.23297554, w: -0.057594273}
scale: {x: 1.0000008, y: 1.0000002, z: 1}
- name: Skirt_1_6
parentName: Skirt_0_6
position: {x: 0.00000011920929, y: 2.0159814, z: -0.0000005066395}
rotation: {x: 0.0057644537, y: 0.012093243, z: -0.010632396, w: 0.9998538}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Skirt_2_6
parentName: Skirt_1_6
position: {x: -0.00000014901161, y: 2.0425954, z: -0.00000014901161}
rotation: {x: -0.008028366, y: -0.016995562, z: 0.014983008, w: 0.9997111}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_3_6
parentName: Skirt_2_6
position: {x: -0.000000461936, y: 2.0057197, z: 0.00000014901161}
rotation: {x: -0.013518606, y: -0.031496212, z: 0.028464803, w: 0.999007}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_4_6
parentName: Skirt_3_6
position: {x: 0.00000011920929, y: 1.946542, z: 0.00000011920929}
rotation: {x: -0.011113183, y: -0.029794281, z: 0.027658418, w: 0.99911153}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_5_6
parentName: Skirt_4_6
position: {x: 0.00000028312206, y: 1.9004469, z: 0.000000029802322}
rotation: {x: -0.0029449086, y: -0.008743832, z: 0.008233275, w: 0.9999236}
scale: {x: 0.99999994, y: 0.9999998, z: 0.9999998}
- name: Skirt_6_6
parentName: Skirt_5_6
position: {x: -0.00000008940697, y: 1.8885963, z: 0.000000029802322}
rotation: {x: 0.011125423, y: 0.031083023, z: -0.029039828, w: 0.9990329}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Skirt_0_7
parentName: Hips
position: {x: 0.7250711, y: 1.4097223, z: 0.352934}
rotation: {x: 0.9447415, y: 0.2284228, z: 0.22842428, w: 0.05575814}
scale: {x: 0.9999991, y: 0.9999997, z: 0.9999997}
- name: Skirt_1_7
parentName: Skirt_0_7
position: {x: 0.00000029802322, y: 2.0055213, z: 0.00000025518239}
rotation: {x: 0.008345428, y: 0.013398311, z: -0.008094309, w: 0.9998427}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: Skirt_2_7
parentName: Skirt_1_7
position: {x: 0.000000059604645, y: 2.0230913, z: -0.00000029429793}
rotation: {x: -0.010666587, y: -0.0188184, z: 0.01187899, w: 0.9996954}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Skirt_3_7
parentName: Skirt_2_7
position: {x: 0.00000035762787, y: 1.9978933, z: 0.00000021606684}
rotation: {x: -0.017686177, y: -0.034868274, z: 0.02293623, w: 0.9989721}
scale: {x: 1, y: 0.9999997, z: 0.9999999}
- name: Skirt_4_7
parentName: Skirt_3_7
position: {x: 0.00000059604645, y: 1.957957, z: -0.00000020861626}
rotation: {x: -0.012914424, y: -0.032921713, z: 0.0230895, w: 0.9991078}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: Skirt_5_7
parentName: Skirt_4_7
position: {x: -0.00000011920929, y: 1.9259338, z: 0.00000014901161}
rotation: {x: 0.0018100656, y: -0.009599675, z: 0.008509811, w: 0.9999161}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_6_7
parentName: Skirt_5_7
position: {x: -0.00000023841858, y: 1.9127824, z: 0.00000011920929}
rotation: {x: 0.026311792, y: 0.033631425, z: -0.019964483, w: 0.99888843}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Skirt_0_8
parentName: Hips
position: {x: 0.41995227, y: 1.4097223, z: 0.6112848}
rotation: {x: 0.9651276, y: 0.14833389, z: 0.14833213, w: 0.15659942}
scale: {x: 1.0000005, y: 1.0000001, z: 1.0000008}
- name: Skirt_1_8
parentName: Skirt_0_8
position: {x: -0, y: 1.9667704, z: -0.00000008940697}
rotation: {x: 0.011696004, y: 0.009779976, z: -0.0039561037, w: 0.99987596}
scale: {x: 0.9999999, y: 0.9999999, z: 1}
- name: Skirt_2_8
parentName: Skirt_1_8
position: {x: -0.000000059604645, y: 1.9602102, z: 0.00000032782555}
rotation: {x: -0.008206026, y: -0.013653774, z: 0.007798972, w: 0.9998427}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Skirt_3_8
parentName: Skirt_2_8
position: {x: -0.00000011920929, y: 1.957551, z: 0.00000023841858}
rotation: {x: -0.014582864, y: -0.024749115, z: 0.014211773, w: 0.9994863}
scale: {x: 1, y: 1, z: 0.9999998}
- name: Skirt_4_8
parentName: Skirt_3_8
position: {x: 0.000000059604645, y: 1.9562302, z: -0.00000011920929}
rotation: {x: -0.007853133, y: -0.022776809, z: 0.014300653, w: 0.99960744}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_5_8
parentName: Skirt_4_8
position: {x: 0.00000017881393, y: 1.950452, z: 0.0000005364418}
rotation: {x: 0.010931889, y: -0.006508764, z: 0.006518898, w: 0.99989784}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Skirt_6_8
parentName: Skirt_5_8
position: {x: 0.0000002682209, y: 1.9294724, z: -0.00000011920929}
rotation: {x: 0.04303217, y: 0.022562567, z: -0.008460255, w: 0.99878305}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: Skirt_0_9
parentName: Hips
position: {x: -0, y: 1.4097223, z: 0.7294786}
rotation: {x: 0.9800171, y: 0, z: -0, w: 0.19891316}
scale: {x: 1, y: 1, z: 1.0000021}
- name: Skirt_1_9
parentName: Skirt_0_9
position: {x: -0, y: 1.9370446, z: 0.00000011920929}
rotation: {x: 0.0152366385, y: 0, z: -0, w: 0.99988395}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_2_9
parentName: Skirt_1_9
position: {x: -0, y: 1.9132519, z: -0.00000047683716}
rotation: {x: -0.005525435, y: 0, z: -0, w: 0.99998474}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_3_9
parentName: Skirt_2_9
position: {x: -0, y: 1.921605, z: -0.00000023841858}
rotation: {x: -0.011831679, y: 0, z: -0, w: 0.99993}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_4_9
parentName: Skirt_3_9
position: {x: -0, y: 1.9405462, z: 0.00000023841858}
rotation: {x: -0.0039560515, y: 0, z: -0, w: 0.9999922}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_5_9
parentName: Skirt_4_9
position: {x: -0, y: 1.9472071, z: 0}
rotation: {x: 0.017992208, y: 0, z: -0, w: 0.9998382}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_6_9
parentName: Skirt_5_9
position: {x: -0, y: 1.9182361, z: -0.00000047683716}
rotation: {x: 0.057198215, y: 0, z: -0, w: 0.99836284}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_0_10
parentName: Hips
position: {x: -0.42199147, y: 1.4097223, z: 0.6590859}
rotation: {x: 0.96590334, y: -0.14847411, z: -0.1484735, w: 0.1514658}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: Skirt_1_10
parentName: Skirt_0_10
position: {x: -0.0000004172325, y: 1.960118, z: 0.000000029802322}
rotation: {x: 0.016809065, y: -0.009712864, z: 0.0026124944, w: 0.99980813}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_2_10
parentName: Skirt_1_10
position: {x: -0.0000004172325, y: 1.9473362, z: -0.0000002682209}
rotation: {x: -0.008008385, y: 0.013506449, z: -0.007959149, w: 0.9998451}
scale: {x: 1.0000001, y: 0.99999994, z: 1.0000001}
- name: Skirt_3_10
parentName: Skirt_2_10
position: {x: -0.00000035762787, y: 1.9437487, z: 0.00000035762787}
rotation: {x: -0.016050223, y: 0.024512429, z: -0.014051409, w: 0.9994719}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999999}
- name: Skirt_4_10
parentName: Skirt_3_10
position: {x: 0.0000004172325, y: 1.943295, z: -0.0000005364418}
rotation: {x: -0.0076421686, y: 0.022586215, z: -0.014522843, w: 0.9996102}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Skirt_5_10
parentName: Skirt_4_10
position: {x: 0.0000005364418, y: 1.9366541, z: -0.000001013279}
rotation: {x: 0.01632902, y: 0.0064276117, z: -0.007565311, w: 0.99981743}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Skirt_6_10
parentName: Skirt_5_10
position: {x: -0.00000011920929, y: 1.9096035, z: 0.00000035762787}
rotation: {x: 0.057897136, y: -0.021903073, z: 0.005848921, w: 0.9980651}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Skirt_0_11
parentName: Hips
position: {x: -0.7282573, y: 1.4097223, z: 0.40012896}
rotation: {x: 0.94445336, y: -0.22913651, z: -0.22913747, w: 0.054776207}
scale: {x: 0.9999995, y: 0.99999976, z: 0.9999999}
- name: Skirt_1_11
parentName: Skirt_0_11
position: {x: -0.00000044703484, y: 2.0065038, z: 0.00000014342368}
rotation: {x: 0.012058614, y: -0.013377335, z: 0.0063802092, w: 0.99981743}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_2_11
parentName: Skirt_1_11
position: {x: 0.00000017881393, y: 2.0209563, z: 0.00000043958426}
rotation: {x: -0.0105824815, y: 0.018725213, z: -0.011990396, w: 0.99969673}
scale: {x: 0.9999999, y: 0.9999998, z: 0.99999994}
- name: Skirt_3_11
parentName: Skirt_2_11
position: {x: 0.00000029802322, y: 1.9952693, z: -0.00000014016405}
rotation: {x: -0.018859787, y: 0.034737203, z: -0.022589125, w: 0.9989632}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Skirt_4_11
parentName: Skirt_3_11
position: {x: -0.000000059604645, y: 1.9557595, z: 0.000000059604645}
rotation: {x: -0.012820862, y: 0.03283752, z: -0.023258867, w: 0.9991078}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Skirt_5_11
parentName: Skirt_4_11
position: {x: 0.00000029802322, y: 1.9231915, z: 0.00000023841858}
rotation: {x: 0.0059760734, y: 0.009541537, z: -0.009863873, w: 0.999888}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: Skirt_6_11
parentName: Skirt_5_11
position: {x: -0.0000007748604, y: 1.9064357, z: 0.000000014901161}
rotation: {x: 0.037204888, y: -0.0329775, z: 0.016563714, w: 0.99862605}
scale: {x: 0.9999998, y: 1, z: 0.99999994}
- name: Body
parentName: Weiss Dress(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 1
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|