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
|
fileFormatVersion: 2
guid: 9578a9aec8889fb4296e8f3cef661372
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: //RootNode
100002: Ankle_L
100004: Ankle_R
100006: Brow
100008: cheek
100010: Chest_L
100012: Chest_M
100014: Chest_R
100016: Cup_L
100018: Cup_R
100020: Elbow_L
100022: Elbow_R
100024: Eye
100026: Eye_base
100028: Eye_L
100030: Eye_R
100032: EyeEnd_L
100034: EyeEnd_R
100036: Face_A
100038: FaceB
100040: Hair_Root
100042: Head_M
100044: HeadEnd_M
100046: Hip_L
100048: Hip_R
100050: IndexFinger1_L
100052: IndexFinger1_R
100054: IndexFinger2_L
100056: IndexFinger2_R
100058: IndexFinger3_L
100060: IndexFinger3_R
100062: IndexFinger4_L
100064: IndexFinger4_R
100066: Jaw_M
100068: JawEnd_M
100070: joint10
100072: joint11
100074: joint12
100076: joint13
100078: joint14
100080: joint15
100082: joint16
100084: joint17
100086: joint18
100088: joint2
100090: joint21
100092: joint22
100094: joint23
100096: joint24
100098: joint25
100100: joint26
100102: joint27
100104: joint28
100106: joint29
100108: joint3
100110: joint30
100112: joint31
100114: joint32
100116: joint33
100118: joint34
100120: joint35
100122: joint36
100124: joint37
100126: joint38
100128: joint39
100130: joint4
100132: joint40
100134: joint41
100136: joint42
100138: joint43
100140: joint44
100142: joint45
100144: joint46
100146: joint47
100148: joint5
100150: joint6
100152: joint7
100154: joint8
100156: joint9
100158: Knee_L
100160: Knee_R
100162: Lash
100164: MiddleFinger1_L
100166: MiddleFinger1_R
100168: MiddleFinger2_L
100170: MiddleFinger2_R
100172: MiddleFinger3_L
100174: MiddleFinger3_R
100176: MiddleFinger4_L
100178: MiddleFinger4_R
100180: Neck_M
100182: nurbsCircle1
100184: nurbsCircle10
100186: nurbsCircle11
100188: nurbsCircle12
100190: nurbsCircle13
100192: nurbsCircle14
100194: nurbsCircle15
100196: nurbsCircle17
100198: nurbsCircle19
100200: nurbsCircle2
100202: nurbsCircle21
100204: nurbsCircle23
100206: nurbsCircle25
100208: nurbsCircle27
100210: nurbsCircle28
100212: nurbsCircle29
100214: nurbsCircle3
100216: nurbsCircle31
100218: nurbsCircle32
100220: nurbsCircle33
100222: nurbsCircle35
100224: nurbsCircle37
100226: nurbsCircle38
100228: nurbsCircle4
100230: nurbsCircle40
100232: nurbsCircle41
100234: nurbsCircle42
100236: nurbsCircle5
100238: nurbsCircle7
100240: nurbsCircle8
100242: nurbsCircle9
100244: PinkyFinger1_L
100246: PinkyFinger1_R
100248: PinkyFinger2_L
100250: PinkyFinger2_R
100252: PinkyFinger3_L
100254: PinkyFinger3_R
100256: PinkyFinger4_L
100258: PinkyFinger4_R
100260: RingFinger1_L
100262: RingFinger1_R
100264: RingFinger2_L
100266: RingFinger2_R
100268: RingFinger3_L
100270: RingFinger3_R
100272: RingFinger4_L
100274: RingFinger4_R
100276: Root_M
100278: RootPart1_M
100280: Scapula_L
100282: Scapula_R
100284: Shoulder_L
100286: Shoulder_R
100288: Skirt_La
100290: Skirt_Ra
100292: SkirtLb
100294: SkirtLc
100296: SkirtRb
100298: SkirtRc
100300: Spine1_M
100302: ThumbFinger1_L
100304: ThumbFinger1_R
100306: ThumbFinger2_L
100308: ThumbFinger2_R
100310: ThumbFinger3_L
100312: ThumbFinger3_R
100314: ThumbFinger4_L
100316: ThumbFinger4_R
100318: Toes_L
100320: Toes_R
100322: ToesEnd_L
100324: ToesEnd_R
100326: Wrist_L
100328: Wrist_R
400000: //RootNode
400002: Ankle_L
400004: Ankle_R
400006: Brow
400008: cheek
400010: Chest_L
400012: Chest_M
400014: Chest_R
400016: Cup_L
400018: Cup_R
400020: Elbow_L
400022: Elbow_R
400024: Eye
400026: Eye_base
400028: Eye_L
400030: Eye_R
400032: EyeEnd_L
400034: EyeEnd_R
400036: Face_A
400038: FaceB
400040: Hair_Root
400042: Head_M
400044: HeadEnd_M
400046: Hip_L
400048: Hip_R
400050: IndexFinger1_L
400052: IndexFinger1_R
400054: IndexFinger2_L
400056: IndexFinger2_R
400058: IndexFinger3_L
400060: IndexFinger3_R
400062: IndexFinger4_L
400064: IndexFinger4_R
400066: Jaw_M
400068: JawEnd_M
400070: joint10
400072: joint11
400074: joint12
400076: joint13
400078: joint14
400080: joint15
400082: joint16
400084: joint17
400086: joint18
400088: joint2
400090: joint21
400092: joint22
400094: joint23
400096: joint24
400098: joint25
400100: joint26
400102: joint27
400104: joint28
400106: joint29
400108: joint3
400110: joint30
400112: joint31
400114: joint32
400116: joint33
400118: joint34
400120: joint35
400122: joint36
400124: joint37
400126: joint38
400128: joint39
400130: joint4
400132: joint40
400134: joint41
400136: joint42
400138: joint43
400140: joint44
400142: joint45
400144: joint46
400146: joint47
400148: joint5
400150: joint6
400152: joint7
400154: joint8
400156: joint9
400158: Knee_L
400160: Knee_R
400162: Lash
400164: MiddleFinger1_L
400166: MiddleFinger1_R
400168: MiddleFinger2_L
400170: MiddleFinger2_R
400172: MiddleFinger3_L
400174: MiddleFinger3_R
400176: MiddleFinger4_L
400178: MiddleFinger4_R
400180: Neck_M
400182: nurbsCircle1
400184: nurbsCircle10
400186: nurbsCircle11
400188: nurbsCircle12
400190: nurbsCircle13
400192: nurbsCircle14
400194: nurbsCircle15
400196: nurbsCircle17
400198: nurbsCircle19
400200: nurbsCircle2
400202: nurbsCircle21
400204: nurbsCircle23
400206: nurbsCircle25
400208: nurbsCircle27
400210: nurbsCircle28
400212: nurbsCircle29
400214: nurbsCircle3
400216: nurbsCircle31
400218: nurbsCircle32
400220: nurbsCircle33
400222: nurbsCircle35
400224: nurbsCircle37
400226: nurbsCircle38
400228: nurbsCircle4
400230: nurbsCircle40
400232: nurbsCircle41
400234: nurbsCircle42
400236: nurbsCircle5
400238: nurbsCircle7
400240: nurbsCircle8
400242: nurbsCircle9
400244: PinkyFinger1_L
400246: PinkyFinger1_R
400248: PinkyFinger2_L
400250: PinkyFinger2_R
400252: PinkyFinger3_L
400254: PinkyFinger3_R
400256: PinkyFinger4_L
400258: PinkyFinger4_R
400260: RingFinger1_L
400262: RingFinger1_R
400264: RingFinger2_L
400266: RingFinger2_R
400268: RingFinger3_L
400270: RingFinger3_R
400272: RingFinger4_L
400274: RingFinger4_R
400276: Root_M
400278: RootPart1_M
400280: Scapula_L
400282: Scapula_R
400284: Shoulder_L
400286: Shoulder_R
400288: Skirt_La
400290: Skirt_Ra
400292: SkirtLb
400294: SkirtLc
400296: SkirtRb
400298: SkirtRc
400300: Spine1_M
400302: ThumbFinger1_L
400304: ThumbFinger1_R
400306: ThumbFinger2_L
400308: ThumbFinger2_R
400310: ThumbFinger3_L
400312: ThumbFinger3_R
400314: ThumbFinger4_L
400316: ThumbFinger4_R
400318: Toes_L
400320: Toes_R
400322: ToesEnd_L
400324: ToesEnd_R
400326: Wrist_L
400328: Wrist_R
2300000: Brow
2300002: cheek
2300004: Eye
2300006: Eye_base
2300008: Face_A
2300010: FaceB
2300012: Lash
3300000: Brow
3300002: cheek
3300004: Eye
3300006: Eye_base
3300008: Face_A
3300010: FaceB
3300012: Lash
4300000: FaceB
4300002: Lash
4300004: Face_A
4300006: Eye_base
4300008: Eye
4300010: cheek
4300012: Brow
7400000: Idle_A
9500000: //RootNode
2186277476908879412: ImportLogs
externalObjects: {}
materials:
importMaterials: 0
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:
- serializedVersion: 16
name: Idle_A
takeName: Aki@Idle_A
firstFrame: 1101
lastFrame: 1135
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 1
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: Group
weight: 1
- path: Group/Main
weight: 1
- path: Group/Main/MotionSystem
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem/FKIKParentConstraintSpine_M
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem/FKIKParentConstraintSpine_M/FKIKSpine_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/FKXRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/HipSwingerStabilizer
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/HipSwingerStabilizer/FKRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M/IKExtraSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M/IKExtraSpine1_M/IKSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M/IKExtraSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M/IKExtraSpine2_M/IKSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKScalerRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M/IKXOffsetRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M/IKXOffsetRoot_M/IKXRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M/IKSpRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M/IKSpRoot_M/IKSpRootFollowOffset_M
weight: 1
- path: Root_M
weight: 1
- path: Root_M/Hip_L
weight: 1
- path: Root_M/Hip_L/Knee_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L/Toes_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L/Toes_L/ToesEnd_L
weight: 1
- path: Root_M/Hip_R
weight: 1
- path: Root_M/Hip_R/Knee_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R/Toes_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R/Toes_R/ToesEnd_R
weight: 1
- path: Root_M/RootPart1_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Chest_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Chest_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Brow
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/cheek
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_L/EyeEnd_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_R/EyeEnd_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye_base
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Face_A
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/FaceB
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/FaceB/Lash
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5/joint6
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5/joint6/joint7
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10/joint11
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10/joint11/joint12
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14/joint15
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14/joint15/joint16
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28/joint29
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28/joint29/joint30
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21/joint22
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21/joint22/joint23
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25/joint26
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25/joint26/joint27
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33/joint34
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33/joint34/joint35
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37/joint38
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37/joint38/joint39
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42/joint43
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42/joint43/joint44
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45/joint46
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45/joint46/joint47
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Jaw_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Jaw_M/JawEnd_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L/PinkyFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L/PinkyFinger3_L/PinkyFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L/RingFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L/RingFinger3_L/RingFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L/IndexFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L/IndexFinger3_L/IndexFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L/MiddleFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L/MiddleFinger3_L/MiddleFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L/ThumbFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L/ThumbFinger3_L/ThumbFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R/PinkyFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R/PinkyFinger3_R/PinkyFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R/RingFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R/RingFinger3_R/RingFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R/IndexFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R/IndexFinger3_R/IndexFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R/MiddleFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R/MiddleFinger3_R/MiddleFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R/ThumbFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R/ThumbFinger3_R/ThumbFinger4_R
weight: 1
- path: Root_M/Skirt_La
weight: 1
- path: Root_M/Skirt_Ra
weight: 1
- path: Root_M/SkirtLb
weight: 1
- path: Root_M/SkirtLc
weight: 1
- path: Root_M/SkirtRb
weight: 1
- path: Root_M/SkirtRc
weight: 1
maskType: 1
maskSource: {fileID: 101100000, guid: fb40a6d6e1dd07d4c93e8332d8cddbb7, type: 2}
additiveReferencePoseFrame: 1101
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 13
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 0
importBlendShapes: 1
importCameras: 0
importLights: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 0.13
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 0
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human: []
skeleton:
- name: Anim@Idle_A(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: Root_M
parentName: Anim@Idle_A(Clone)
position: {x: 9.7433525e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: 0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: Hip_L
parentName: Root_M
position: {x: 0.016870413, y: -0.009464632, z: 0.07376578}
rotation: {x: 0.98593235, y: 0.16357476, z: -0.012882409, w: 0.03185659}
scale: {x: 1, y: 1, z: 1}
- name: Knee_L
parentName: Hip_L
position: {x: 0.33850485, y: -6.4948046e-16, z: 3.8968825e-16}
rotation: {x: 0, y: 0, z: 0.0074699377, w: 0.9999721}
scale: {x: 1, y: 1, z: 1}
- name: Ankle_L
parentName: Knee_L
position: {x: 0.33611748, y: -6.9277914e-16, z: 3.5360603e-16}
rotation: {x: 0.022163536, y: 0.018053727, z: -0.015481046, w: 0.9994715}
scale: {x: 1, y: 1, z: 1}
- name: Toes_L
parentName: Ankle_L
position: {x: 0.14422522, y: -0.10233539, z: -6.278311e-16}
rotation: {x: 0.0066125956, y: 0.0027137587, z: -0.37965432, w: 0.92510086}
scale: {x: 1, y: 1, z: 1}
- name: ToesEnd_L
parentName: Toes_L
position: {x: 0.079581514, y: -1.7319479e-16, z: 1.3927747e-15}
rotation: {x: 0.00000046410594, y: 0.0000011101814, z: -5.152418e-13, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hip_R
parentName: Root_M
position: {x: 0.016870413, y: -0.009464632, z: -0.07376578}
rotation: {x: -0.16357476, y: 0.98593235, z: 0.03185659, w: 0.012882409}
scale: {x: 1, y: 1, z: 1}
- name: Knee_R
parentName: Hip_R
position: {x: -0.33850485, y: 6.639133e-16, z: -3.8247182e-16}
rotation: {x: 0, y: 0, z: 0.0074699377, w: 0.9999721}
scale: {x: 1, y: 1, z: 1}
- name: Ankle_R
parentName: Knee_R
position: {x: -0.33611748, y: 4.4741985e-16, z: -1.0824674e-16}
rotation: {x: 0.022163536, y: 0.018053727, z: -0.015481046, w: 0.9994715}
scale: {x: 1, y: 1, z: 1}
- name: Toes_R
parentName: Ankle_R
position: {x: -0.14422522, y: 0.10233539, z: 7.2164497e-16}
rotation: {x: 0.006611389, y: 0.0027132635, z: -0.37965432, w: 0.92510086}
scale: {x: 1, y: 1, z: 1}
- name: ToesEnd_R
parentName: Toes_R
position: {x: -0.079581514, y: -1.3530843e-13, z: 0.00000014581947}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RootPart1_M
parentName: Root_M
position: {x: -0.083147995, y: 1.1546319e-16, z: -5.759879e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Spine1_M
parentName: RootPart1_M
position: {x: -0.083147995, y: -5.7731595e-17, z: -1.8904783e-16}
rotation: {x: 0, y: 0, z: 0.184445, w: 0.98284286}
scale: {x: 1, y: 1, z: 1}
- name: Chest_M
parentName: Spine1_M
position: {x: -0.12788978, y: 5.7731595e-17, z: -2.0939021e-16}
rotation: {x: 0, y: 0, z: 0.16704705, w: 0.985949}
scale: {x: 1, y: 1, z: 1}
- name: Chest_L
parentName: Chest_M
position: {x: 0.04410046, y: 0.077141955, z: 0.07258086}
rotation: {x: 0.58175045, y: 0.40195322, z: -0.58175045, w: 0.40195322}
scale: {x: 1, y: 1, z: 1}
- name: Chest_R
parentName: Chest_M
position: {x: 0.03991048, y: 0.07851963, z: -0.06760903}
rotation: {x: -0.40195322, y: 0.58175045, z: 0.40195322, w: 0.58175045}
scale: {x: 1, y: 1, z: 1}
- name: Neck_M
parentName: Chest_M
position: {x: -0.11347442, y: -1.7319479e-16, z: 4.0176917e-16}
rotation: {x: 0, y: -0, z: -0.17346543, w: 0.98484}
scale: {x: 1, y: 1, z: 1}
- name: Head_M
parentName: Neck_M
position: {x: -0.05836205, y: -5.7731595e-17, z: -9.1300484e-17}
rotation: {x: 0, y: -0, z: -0.006432945, w: 0.9999793}
scale: {x: 1, y: 1, z: 1}
- name: Brow
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: cheek
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.363623e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Eye
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.363623e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Eye_base
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Eye_L
parentName: Head_M
position: {x: -0.04933291, y: 0.061218925, z: 0.030804597}
rotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: EyeEnd_L
parentName: Eye_L
position: {x: -0.015400433, y: 4.6185276e-16, z: -1.9484413e-16}
rotation: {x: -0.13868625, y: -0.0022722934, z: -0.00015833316, w: 0.99033374}
scale: {x: 1, y: 1, z: 1}
- name: Eye_R
parentName: Head_M
position: {x: -0.04933291, y: 0.061218925, z: -0.030804597}
rotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: EyeEnd_R
parentName: Eye_R
position: {x: -0.015400433, y: -6.9277914e-16, z: 1.3711253e-16}
rotation: {x: 0.13868625, y: 0.0022722934, z: -0.00015833316, w: 0.99033374}
scale: {x: 1, y: 1, z: 1}
- name: Face_A
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 4.3894023e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: FaceB
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Lash
parentName: FaceB
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HeadEnd_M
parentName: Head_M
position: {x: -0.13514173, y: 5.412337e-17, z: -1.2428487e-16}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Root
parentName: HeadEnd_M
position: {x: -0.020618772, y: 0.0009411925, z: 1.1548963e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: joint2
parentName: Hair_Root
position: {x: 1.0255191e-31, y: 0.024425356, z: -0.086703144}
rotation: {x: -0.39477548, y: -0.58664495, z: 0.39477548, w: 0.58664495}
scale: {x: 1, y: 1, z: 1}
- name: joint3
parentName: joint2
position: {x: -0.106039025, y: 1.7550404e-14, z: 7.7390317e-17}
rotation: {x: -1.3414677e-16, y: -2.1435343e-16, z: -0.02063391, w: 0.9997871}
scale: {x: 1, y: 1, z: 1}
- name: joint4
parentName: joint3
position: {x: -0.09418015, y: 1.1546319e-16, z: -4.28673e-17}
rotation: {x: 8.326673e-17, y: -2.7755576e-17, z: -0.07291504, w: 0.9973382}
scale: {x: 1, y: 1, z: 1}
- name: joint5
parentName: joint4
position: {x: -0.1654087, y: -1.1546319e-16, z: -8.0064783e-17}
rotation: {x: -6.883664e-17, y: -2.1898021e-16, z: 0.15460564, w: 0.9879763}
scale: {x: 1, y: 1, z: 1}
- name: joint6
parentName: joint5
position: {x: -0.18550922, y: -2.3092638e-16, z: -7.501041e-17}
rotation: {x: 0.9655731, y: 0.26013187, z: 0.0000000019381334, w: 0.0000000071940804}
scale: {x: 1, y: 1, z: 1}
- name: joint7
parentName: joint6
position: {x: -0.13346669, y: 1.3711253e-16, z: 2.4930378e-17}
rotation: {x: -0.44413692, y: -0.5502203, z: -0.44413692, w: 0.5502203}
scale: {x: 1, y: 1, z: 1}
- name: joint8
parentName: Hair_Root
position: {x: -0.035530798, y: -0.003302308, z: -0.07772408}
rotation: {x: -0.39088443, y: -0.5892448, z: 0.39088443, w: 0.5892448}
scale: {x: 1, y: 1, z: 1}
- name: joint9
parentName: joint8
position: {x: -0.15713881, y: -1.1546319e-16, z: 0.03140869}
rotation: {x: -1.344848e-32, y: -1.3428561e-17, z: -0.047404356, w: 0.9988758}
scale: {x: 1, y: 1, z: 1}
- name: joint10
parentName: joint9
position: {x: -0.18220541, y: 0.000000022062817, z: 0.058629554}
rotation: {x: 3.4296665e-17, y: -5.4832665e-17, z: 0.17918658, w: 0.98381513}
scale: {x: 1, y: 1, z: 1}
- name: joint11
parentName: joint10
position: {x: -0.14753231, y: 1.7319479e-16, z: 0.0069797086}
rotation: {x: 0.95009726, y: 0.31195384, z: 3.187064e-17, w: 5.3984126e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint12
parentName: joint11
position: {x: -0.094344735, y: -0.000000033451183, z: 0.04885796}
rotation: {x: -0.45418188, y: -0.54195833, z: -0.45418188, w: 0.54195833}
scale: {x: 1, y: 1, z: 1}
- name: joint13
parentName: Hair_Root
position: {x: -0.084148705, y: -0.05809692, z: -0.07546717}
rotation: {x: -0.40631133, y: -0.5787151, z: 0.40631133, w: 0.5787151}
scale: {x: 1, y: 1, z: 1}
- name: joint14
parentName: joint13
position: {x: -0.09990436, y: 0, z: 0.023199694}
rotation: {x: -3.2570875e-17, y: -2.1667468e-16, z: -0.014515351, w: 0.9998947}
scale: {x: 1, y: 1, z: 1}
- name: joint15
parentName: joint14
position: {x: -0.1636666, y: -0.0000000010039244, z: 0.087643296}
rotation: {x: 5.551115e-17, y: 8.326673e-17, z: 0.1296567, w: 0.99155897}
scale: {x: 1, y: 1, z: 1}
- name: joint16
parentName: joint15
position: {x: -0.15990473, y: -2.3092638e-16, z: 0.001718496}
rotation: {x: 0.47631454, y: 0.52261317, z: -0.47631454, w: 0.52261317}
scale: {x: 1, y: 1, z: 1}
- name: joint17
parentName: Hair_Root
position: {x: -0.11097605, y: -0.12074054, z: -0.053715847}
rotation: {x: -0.43211785, y: -0.55185926, z: 0.43972573, w: 0.5615753}
scale: {x: 1, y: 1, z: 1}
- name: joint18
parentName: joint17
position: {x: -0.12961023, y: 0.015492709, z: 0.048908446}
rotation: {x: 0.012132285, y: 0.0030829264, z: 0.018015826, w: 0.9997594}
scale: {x: 1, y: 1, z: 1}
- name: joint28
parentName: joint18
position: {x: -0.11139102, y: 0.0009490263, z: 0.09435933}
rotation: {x: 0.627674, y: 0.34751922, z: -0.14758927, w: 0.68078864}
scale: {x: 1, y: 1, z: 1}
- name: joint29
parentName: joint28
position: {x: -0.12116805, y: -9.2622715e-10, z: 0.037721954}
rotation: {x: 0.88647765, y: 0.46252528, z: -0.00348521, w: -0.01468394}
scale: {x: 1, y: 1, z: 1}
- name: joint30
parentName: joint29
position: {x: -0.09306123, y: -6.6958955e-10, z: -0.069855444}
rotation: {x: 0.6167735, y: 0.7869957, z: 0.009632255, w: -0.0116391275}
scale: {x: 1, y: 1, z: 1}
- name: joint21
parentName: Hair_Root
position: {x: -0.07113582, y: -0.039533567, z: 0.053618472}
rotation: {x: -0.3992348, y: -0.5836194, z: 0.3992348, w: 0.5836194}
scale: {x: 1, y: 1, z: 1}
- name: joint22
parentName: joint21
position: {x: -0.056806624, y: -6.973487e-17, z: 0.004678207}
rotation: {x: 0.97551507, y: 0.21993259, z: 6.514028e-19, w: 6.2622377e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint23
parentName: joint22
position: {x: -0.06082527, y: 3.043091e-17, z: 0.0060279365}
rotation: {x: -0.48152474, y: -0.5178165, z: -0.48152474, w: 0.5178165}
scale: {x: 1, y: 1, z: 1}
- name: joint24
parentName: Hair_Root
position: {x: -0, y: 0.036074348, z: 0.07418822}
rotation: {x: 0.29149848, y: 0.6442272, z: 0.29149848, w: 0.6442272}
scale: {x: 1, y: 1, z: 1}
- name: joint25
parentName: joint24
position: {x: -0.061377455, y: -1.0824674e-17, z: 1.3628533e-17}
rotation: {x: -1.045314e-16, y: -1.3284522e-16, z: 0.33691472, w: 0.9415352}
scale: {x: 1, y: 1, z: 1}
- name: joint26
parentName: joint25
position: {x: -0.062206652, y: -1.2177758e-16, z: -2.7716056e-19}
rotation: {x: 0.98136747, y: 0.19214043, z: 0.0000000014315577, w: 0.0000000073117574}
scale: {x: 1, y: 1, z: 1}
- name: joint27
parentName: joint26
position: {x: -0.042433944, y: 5.7731595e-17, z: 5.8627414e-18}
rotation: {x: 0.4044424, y: 0.58002275, z: -0.4044424, w: 0.58002275}
scale: {x: 1, y: 1, z: 1}
- name: joint31
parentName: Hair_Root
position: {x: 0.035530817, y: -0.0032958346, z: -0.077724025}
rotation: {x: 0.5892448, y: -0.39088443, z: -0.5892448, w: 0.39088443}
scale: {x: 1, y: 1, z: 1}
- name: joint32
parentName: joint31
position: {x: 0.15714613, y: 0.0000032516493, z: -0.03140865}
rotation: {x: -7.519581e-33, y: 2.3954442e-17, z: -0.047404356, w: 0.9988758}
scale: {x: 1, y: 1, z: 1}
- name: joint33
parentName: joint32
position: {x: 0.1822046, y: -0.0000011967022, z: -0.058629606}
rotation: {x: 7.492875e-17, y: 3.4938958e-17, z: 0.17918658, w: 0.98381513}
scale: {x: 1, y: 1, z: 1}
- name: joint34
parentName: joint33
position: {x: 0.14753179, y: 0.00000017425633, z: -0.0069802194}
rotation: {x: 0.95009726, y: 0.31195384, z: 6.3326867e-18, w: 6.236923e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint35
parentName: joint34
position: {x: 0.09434518, y: 0.00000020184778, z: -0.04885855}
rotation: {x: -0.45418188, y: -0.54195833, z: -0.45418188, w: 0.54195833}
scale: {x: 1, y: 1, z: 1}
- name: joint36
parentName: Hair_Root
position: {x: 0.084148735, y: -0.058090832, z: -0.07546723}
rotation: {x: 0.5787151, y: -0.40631133, z: -0.5787151, w: 0.40631133}
scale: {x: 1, y: 1, z: 1}
- name: joint37
parentName: joint36
position: {x: 0.09991501, y: 0.0000045512356, z: -0.02319967}
rotation: {x: 2.9381199e-16, y: 9.3472236e-17, z: -0.014515351, w: 0.9998947}
scale: {x: 1, y: 1, z: 1}
- name: joint38
parentName: joint37
position: {x: 0.16366178, y: -0.0000024740623, z: -0.08764379}
rotation: {x: 2.1982633e-16, y: 8.529033e-17, z: 0.1409987, w: 0.9900098}
scale: {x: 1, y: 1, z: 1}
- name: joint39
parentName: joint38
position: {x: 0.15990438, y: -0.0000005800163, z: -0.0017185999}
rotation: {x: 0.4733856, y: 0.5152572, z: -0.4832665, w: 0.52618396}
scale: {x: 1, y: 1, z: 1}
- name: joint40
parentName: Hair_Root
position: {x: 0.110976055, y: -0.120737836, z: -0.05371589}
rotation: {x: 0.5620731, y: -0.42903832, z: -0.5620731, w: 0.42903832}
scale: {x: 1, y: 1, z: 1}
- name: joint41
parentName: joint40
position: {x: 0.12961344, y: -0.015491905, z: -0.048908338}
rotation: {x: -3.912224e-35, y: 1.5370029e-18, z: 0.009557746, w: 0.99995434}
scale: {x: 1, y: 1, z: 1}
- name: joint42
parentName: joint41
position: {x: 0.1113906, y: -0.00094860245, z: -0.09435919}
rotation: {x: 0.6258571, y: 0.32909405, z: -0.16557446, w: 0.68744826}
scale: {x: 1, y: 1, z: 1}
- name: joint43
parentName: joint42
position: {x: 0.12116754, y: -0.00000011186593, z: -0.03772145}
rotation: {x: 0.8865779, y: 0.46257928, z: -1.7746672e-16, w: -2.2692254e-16}
scale: {x: 1, y: 1, z: 1}
- name: joint44
parentName: joint43
position: {x: 0.09306158, y: 0.0000005049277, z: 0.0698555}
rotation: {x: 0.6168391, y: 0.7870893, z: 0.0000000058642717, w: 0.000000004595809}
scale: {x: 1, y: 1, z: 1}
- name: joint45
parentName: Hair_Root
position: {x: 0.07113587, y: -0.039539833, z: 0.053618476}
rotation: {x: -0.5836194, y: 0.3992348, z: 0.5836194, w: -0.3992348}
scale: {x: 1, y: 1, z: 1}
- name: joint46
parentName: joint45
position: {x: 0.056799132, y: -0.0000029132393, z: -0.0046781795}
rotation: {x: 0.97551507, y: 0.21993259, z: -3.0797926e-17, w: -5.5825764e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint47
parentName: joint46
position: {x: 0.060831208, y: 0.00000044319307, z: -0.00602797}
rotation: {x: -0.48152474, y: -0.5178165, z: -0.48152474, w: 0.5178165}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle5
parentName: Hair_Root
position: {x: 1.7914393e-16, y: -0.07533576, z: -0.1278792}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle4
parentName: nurbsCircle5
position: {x: 4.3303246e-17, y: -0.084178686, z: -0.037797824}
rotation: {x: -0.025406534, y: -0.00079744647, z: -0.03136187, w: 0.99918485}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle3
parentName: nurbsCircle4
position: {x: 1.5680668e-17, y: -0.13421704, z: -0.09667381}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle1
parentName: nurbsCircle3
position: {x: 2.1286464e-17, y: -0.17645316, z: -0.05725342}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle2
parentName: nurbsCircle1
position: {x: 1.6415929e-17, y: -0.1304627, z: 0.02815742}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle7
parentName: Hair_Root
position: {x: 0.066939466, y: -0.1480768, z: -0.13882533}
rotation: {x: 0, y: -0, z: -0.031372007, w: 0.9995078}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle8
parentName: nurbsCircle7
position: {x: 0.058629606, y: -0.16040179, z: -0.0864279}
rotation: {x: -0.025419047, y: -1.3548148e-20, z: -3.4449233e-22, w: 0.9996769}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle9
parentName: nurbsCircle8
position: {x: 0.0069802194, y: -0.1450215, z: -0.0270998}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle10
parentName: nurbsCircle9
position: {x: -0.04885855, y: -0.08496279, z: 0.0410163}
rotation: {x: -0.13656221, y: 0, z: -0, w: 0.9906315}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle14
parentName: Hair_Root
position: {x: 0.084148735, y: -0.058090847, z: -0.07546723}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle13
parentName: nurbsCircle14
position: {x: 0.02319967, y: -0.09397699, z: -0.033931296}
rotation: {x: 0, y: -0, z: -0.031372007, w: 0.9995078}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle12
parentName: nurbsCircle13
position: {x: 0.08764379, y: -0.15225339, z: -0.060034}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle11
parentName: nurbsCircle12
position: {x: 0.0017186016, y: -0.15921879, z: -0.0147914}
rotation: {x: 0.0039053988, y: 0.010416909, z: -0.000040684703, w: 0.99993813}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle15
parentName: Hair_Root
position: {x: 0.110976055, y: -0.12073787, z: -0.053715892}
rotation: {x: 0, y: -0, z: -0.031372007, w: 0.9995078}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle17
parentName: nurbsCircle15
position: {x: 0.048908338, y: -0.1209403, z: -0.0491232}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle19
parentName: nurbsCircle17
position: {x: 0.09435919, y: -0.107756995, z: -0.028234659}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle21
parentName: nurbsCircle19
position: {x: 0.079936996, y: -0.0910585, z: 0.03772145}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle23
parentName: nurbsCircle21
position: {x: -0.022243, y: -0.0903643, z: 0.0698555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle25
parentName: Hair_Root
position: {x: -0.084148735, y: -0.058090847, z: -0.07546723}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle28
parentName: nurbsCircle25
position: {x: -0.02319967, y: -0.09397699, z: -0.033931296}
rotation: {x: 0, y: -0, z: -0.031372007, w: 0.9995078}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle33
parentName: nurbsCircle28
position: {x: -0.08764379, y: -0.15225339, z: -0.060034}
rotation: {x: 0.011447122, y: -1.08413115e-19, z: 1.2410995e-21, w: 0.9999345}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle42
parentName: nurbsCircle33
position: {x: -0.0017179933, y: -0.15921913, z: -0.014790932}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle27
parentName: Hair_Root
position: {x: -0.110976055, y: -0.12073787, z: -0.053715892}
rotation: {x: -0.012601377, y: 0.0083339615, z: -0.031260855, w: 0.9993971}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle31
parentName: nurbsCircle27
position: {x: -0.048908338, y: -0.1209403, z: -0.0491232}
rotation: {x: -0.008459556, y: 0.012517409, z: 0.00010590382, w: 0.99988586}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle35
parentName: nurbsCircle31
position: {x: -0.09435919, y: -0.107756995, z: -0.028234659}
rotation: {x: -0.02219484, y: 0.014756727, z: 0.0003276396, w: 0.9996447}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle37
parentName: nurbsCircle35
position: {x: -0.079936996, y: -0.0910585, z: 0.03772145}
rotation: {x: 0.00009825397, y: 0.015091559, z: -0.0000014829744, w: 0.99988616}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle38
parentName: nurbsCircle37
position: {x: 0.022243, y: -0.0903643, z: 0.0698555}
rotation: {x: -0.00040197562, y: 0.015102585, z: 0.0000060715633, w: 0.9998859}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle29
parentName: Hair_Root
position: {x: -0.066939466, y: -0.1480768, z: -0.13882533}
rotation: {x: 0, y: -0, z: -0.031372007, w: 0.9995078}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle32
parentName: nurbsCircle29
position: {x: -0.058629606, y: -0.16040179, z: -0.0864279}
rotation: {x: -0.025419047, y: 0, z: -0, w: 0.9996769}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle40
parentName: nurbsCircle32
position: {x: -0.0069802194, y: -0.1450215, z: -0.0270998}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: nurbsCircle41
parentName: nurbsCircle40
position: {x: 0.04885855, y: -0.08496279, z: 0.0410163}
rotation: {x: -0.13656221, y: 0, z: -0, w: 0.9906315}
scale: {x: 1, y: 1, z: 1}
- name: Jaw_M
parentName: Head_M
position: {x: 0.016640855, y: 0.036495123, z: -1.2735666e-16}
rotation: {x: 0, y: 0, z: -0.84233886, w: 0.53894824}
scale: {x: 1, y: 1, z: 1}
- name: JawEnd_M
parentName: Jaw_M
position: {x: -0.026361799, y: 9.237055e-16, z: -3.868936e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Scapula_L
parentName: Chest_M
position: {x: -0.07514155, y: -0.019844282, z: 0.039285034}
rotation: {x: 0.69570875, y: -0.12736072, z: 0.6954808, w: 0.12678766}
scale: {x: 1, y: 1, z: 1}
- name: Shoulder_L
parentName: Scapula_L
position: {x: 0.041771773, y: 1.6092683e-15, z: -1.3855583e-15}
rotation: {x: 6.0939684e-14, y: 0.0002359277, z: 0.02681468, w: 0.9996404}
scale: {x: 1, y: 1, z: 1}
- name: Elbow_L
parentName: Shoulder_L
position: {x: 0.22670372, y: -4.97935e-16, z: -3.4638957e-15}
rotation: {x: -0.00008224737, y: -0.0000047049275, z: -0.05711123, w: 0.99836785}
scale: {x: 1, y: 1, z: 1}
- name: Wrist_L
parentName: Elbow_L
position: {x: 0.20228654, y: 9.381384e-17, z: -8.1747936e-14}
rotation: {x: -0.0037694303, y: 0.08462515, z: 0.015340361, w: 0.99628764}
scale: {x: 1, y: 1, z: 1}
- name: Cup_L
parentName: Wrist_L
position: {x: 0.01780174, y: 0.009604938, z: 0.003199682}
rotation: {x: -0.00017799465, y: 0.01698436, z: -0.010477828, w: 0.99980086}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger1_L
parentName: Cup_L
position: {x: 0.04039858, y: 0.02266729, z: 0.008317329}
rotation: {x: -0.006834529, y: -0.074389264, z: 0.051789116, w: 0.9958601}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger2_L
parentName: PinkyFinger1_L
position: {x: 0.018318556, y: 1.703082e-15, z: -6.9277914e-15}
rotation: {x: 0.002156727, y: 0.03859848, z: -0.0026612957, w: 0.999249}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger3_L
parentName: PinkyFinger2_L
position: {x: 0.013202028, y: 1.0247358e-15, z: -6.4659387e-15}
rotation: {x: 0.01842187, y: 0.038226742, z: 0.0010838361, w: 0.99909866}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger4_L
parentName: PinkyFinger3_L
position: {x: 0.016035747, y: 3.7525537e-16, z: -3.002043e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger1_L
parentName: Cup_L
position: {x: 0.05116203, y: 0.008325774, z: 0.001130622}
rotation: {x: -0.0032206506, y: -0.083227284, z: 0.04448755, w: 0.99553186}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.02736407, y: 2.164935e-15, z: -1.0391687e-14}
rotation: {x: -0.001280168, y: 0.016542051, z: 0.0017244515, w: 0.9998609}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: 0.016377429, y: 1.4721557e-15, z: 2.3092638e-16}
rotation: {x: 0.014594207, y: 0.037522484, z: 0.0024684446, w: 0.9991862}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger4_L
parentName: RingFinger3_L
position: {x: 0.017703958, y: -1.2989609e-16, z: -2.1014301e-14}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger1_L
parentName: Wrist_L
position: {x: 0.07718671, y: -0.02038989, z: -0.000923763}
rotation: {x: 0.01010804, y: -0.07283163, z: -0.03562739, w: 0.9966565}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: 0.026080627, y: 5.9174886e-16, z: -7.851497e-15}
rotation: {x: 0.0020667375, y: 0.012291591, z: 0.026893826, w: 0.9995606}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: 0.017045567, y: 5.7731595e-17, z: -3.694822e-15}
rotation: {x: -0.0022367644, y: 0.040300775, z: -0.0028808464, w: 0.999181}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger4_L
parentName: IndexFinger3_L
position: {x: 0.01826409, y: -6.9277914e-16, z: -4.387601e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger1_L
parentName: Wrist_L
position: {x: 0.07866357, y: -4.964917e-15, z: -1.40865094e-14}
rotation: {x: 0.0009235642, y: -0.0794653, z: 0.013633631, w: 0.99674404}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: 0.026029596, y: 8.4071636e-16, z: -1.0622613e-14}
rotation: {x: 0.00072584406, y: 0.025071857, z: 0.015136642, w: 0.9995708}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: 0.0154276565, y: 1.9394208e-16, z: -4.6970425e-13}
rotation: {x: 0.0028191407, y: 0.03990652, z: 0.00014264094, w: 0.9991995}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger4_L
parentName: MiddleFinger3_L
position: {x: 0.018965831, y: -8.5785543e-16, z: -1.1546319e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger1_L
parentName: Wrist_L
position: {x: 0.023361826, y: -0.017603127, z: 0.013563224}
rotation: {x: -0.37437692, y: 0.07628078, z: -0.36682522, w: 0.84821135}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger2_L
parentName: ThumbFinger1_L
position: {x: 0.03157685, y: -1.3874195e-10, z: -1.8184979e-10}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger3_L
parentName: ThumbFinger2_L
position: {x: 0.015180493, y: 3.2329693e-15, z: -7.158718e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger4_L
parentName: ThumbFinger3_L
position: {x: 0.01829456, y: 0.000000033226197, z: 0.000000021232891}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Scapula_R
parentName: Chest_M
position: {x: -0.07514155, y: -0.019844282, z: -0.039285034}
rotation: {x: -0.12736072, y: -0.69570875, z: -0.12678766, w: 0.6954808}
scale: {x: 1, y: 1, z: 1}
- name: Shoulder_R
parentName: Scapula_R
position: {x: -0.041771773, y: 1.4414858e-14, z: 3.002043e-15}
rotation: {x: -5.695995e-14, y: 0.0002359277, z: 0.02681468, w: 0.9996404}
scale: {x: 1, y: 1, z: 1}
- name: Elbow_R
parentName: Shoulder_R
position: {x: -0.22670372, y: -1.4793722e-16, z: 3.2329693e-15}
rotation: {x: -0.00008224737, y: -0.0000047049275, z: -0.05711123, w: 0.99836785}
scale: {x: 1, y: 1, z: 1}
- name: Wrist_R
parentName: Elbow_R
position: {x: -0.20228654, y: -5.556666e-16, z: 2.6556534e-14}
rotation: {x: -0.0037694303, y: 0.08462515, z: 0.015340361, w: 0.99628764}
scale: {x: 1, y: 1, z: 1}
- name: Cup_R
parentName: Wrist_R
position: {x: -0.01780174, y: -0.009604938, z: -0.003199682}
rotation: {x: -0.00017799465, y: 0.01698436, z: -0.010477828, w: 0.99980086}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger1_R
parentName: Cup_R
position: {x: -0.04039858, y: -0.02266729, z: -0.008317329}
rotation: {x: -0.0068348497, y: -0.07438925, z: 0.051788665, w: 0.9958602}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger2_R
parentName: PinkyFinger1_R
position: {x: -0.018318556, y: -5.1958436e-16, z: 2.3092638e-15}
rotation: {x: 0.002156727, y: 0.03859848, z: -0.0026612957, w: 0.999249}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger3_R
parentName: PinkyFinger2_R
position: {x: -0.013202028, y: -5.0515144e-16, z: -1.3855583e-15}
rotation: {x: 0.018422026, y: 0.038226847, z: 0.0010864384, w: 0.99909866}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger4_R
parentName: PinkyFinger3_R
position: {x: -0.016035747, y: 2.8865798e-17, z: 1.3855583e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger1_R
parentName: Cup_R
position: {x: -0.05116203, y: -0.008325774, z: -0.001130622}
rotation: {x: -0.0032208138, y: -0.08322736, z: 0.044487268, w: 0.9955319}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.02736407, y: -6.4948046e-16, z: 1.847411e-15}
rotation: {x: -0.001280168, y: 0.016542051, z: 0.0017244515, w: 0.9998609}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: -0.016377429, y: -3.4638957e-16, z: -1.3855583e-15}
rotation: {x: 0.014594186, y: 0.03752955, z: 0.002466661, w: 0.9991859}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger4_R
parentName: RingFinger3_R
position: {x: -0.017703958, y: 2.8865798e-17, z: 1.085354e-14}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger1_R
parentName: Wrist_R
position: {x: -0.07718671, y: 0.02038989, z: 0.000923763}
rotation: {x: 0.010108131, y: -0.07283107, z: -0.03562655, w: 0.99665654}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: -0.026080627, y: -2.7422506e-16, z: 1.1546319e-15}
rotation: {x: 0.0020667375, y: 0.012291591, z: 0.026893826, w: 0.9995606}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: -0.017045567, y: -1.2267965e-16, z: 1.1546319e-15}
rotation: {x: -0.0022368347, y: 0.040305026, z: -0.0028823968, w: 0.9991808}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger4_R
parentName: IndexFinger3_R
position: {x: -0.01826409, y: 7.2164494e-17, z: -1.1546319e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger1_R
parentName: Wrist_R
position: {x: -0.07866357, y: 8.2267524e-16, z: -1.847411e-15}
rotation: {x: 0.0009235429, y: -0.07946523, z: 0.013633435, w: 0.99674404}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: -0.026029596, y: -1.3350432e-16, z: 1.1546319e-15}
rotation: {x: 0.00072584406, y: 0.025071857, z: 0.015136642, w: 0.9995708}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: -0.0154276565, y: -1.7680301e-16, z: 4.655476e-13}
rotation: {x: 0.0028192075, y: 0.03990016, z: 0.000141731, w: 0.99919975}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger4_R
parentName: MiddleFinger3_R
position: {x: -0.018965831, y: 2.3949592e-16, z: -2.0783374e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger1_R
parentName: Wrist_R
position: {x: -0.023361826, y: 0.017603127, z: -0.013563224}
rotation: {x: -0.37437636, y: 0.07628232, z: -0.3668245, w: 0.8482118}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger2_R
parentName: ThumbFinger1_R
position: {x: -0.03157685, y: 1.3874588e-10, z: 1.8185176e-10}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger3_R
parentName: ThumbFinger2_R
position: {x: -0.015180493, y: -2.5401902e-15, z: 8.140155e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger4_R
parentName: ThumbFinger3_R
position: {x: -0.01829456, y: -0.000000033226193, z: -0.00000002123289}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_La
parentName: Root_M
position: {x: 0.032355163, y: -0.014594522, z: -0.19467498}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_Ra
parentName: Root_M
position: {x: 0.032355733, y: -0.014594323, z: 0.1946745}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: SkirtLb
parentName: Root_M
position: {x: 0.016472347, y: 0.12529275, z: -0.07912345}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: SkirtLc
parentName: Root_M
position: {x: 0.08166917, y: -0.13119137, z: -0.07912345}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: SkirtRb
parentName: Root_M
position: {x: 0.016471868, y: 0.1252926, z: 0.07912344}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: SkirtRc
parentName: Root_M
position: {x: 0.08166921, y: -0.13119107, z: 0.07912344}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
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: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|