sanzhangzhuguang.json
62.4 KB
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
{
"skeleton": { "hash": "grXChjZSQmqjOQbuxoz/ofaseYw", "spine": "3.4.02", "width": 1318.61, "height": 708.95, "images": "" },
"bones": [
{ "name": "root" },
{ "name": "damen/qi01", "parent": "root", "x": 202.92, "y": 638.81 },
{ "name": "bone", "parent": "damen/qi01", "length": 36.25, "rotation": -88.26, "x": -0.64, "y": -3.86 },
{ "name": "bone2", "parent": "bone", "length": 37.33, "rotation": -0.89, "x": 36.25 },
{ "name": "bone3", "parent": "bone2", "length": 40.64, "rotation": 0.7, "x": 37.33 },
{ "name": "bone4", "parent": "bone3", "length": 41.75, "rotation": 0.71, "x": 40.64 },
{ "name": "bone5", "parent": "bone4", "length": 42.83, "rotation": -0.79, "x": 41.75 },
{ "name": "bone6", "parent": "bone5", "length": 46.23, "rotation": 2.61, "x": 42.83 },
{ "name": "bone7", "parent": "bone6", "length": 42.82, "rotation": -3.35, "x": 47.28, "y": -0.62 },
{ "name": "damen/qi1", "parent": "root", "x": -359.07, "y": 638.81, "scaleX": 0.6, "scaleY": 0.8 },
{ "name": "bone8", "parent": "damen/qi1", "length": 36.25, "rotation": -88.26, "x": -0.64, "y": -3.86 },
{ "name": "bone9", "parent": "bone8", "length": 37.33, "rotation": -0.89, "x": 36.25 },
{ "name": "bone10", "parent": "bone9", "length": 40.64, "rotation": 0.7, "x": 37.33 },
{ "name": "bone11", "parent": "bone10", "length": 41.75, "rotation": 0.71, "x": 40.64 },
{ "name": "bone12", "parent": "bone11", "length": 42.83, "rotation": -0.79, "x": 41.75 },
{ "name": "bone13", "parent": "bone12", "length": 46.23, "rotation": 2.61, "x": 42.83 },
{ "name": "bone14", "parent": "bone13", "length": 42.82, "rotation": -3.35, "x": 47.28, "y": -0.62 },
{ "name": "damen/diyumen02", "parent": "root", "rotation": -32.85, "x": 523.12, "y": 227.78 },
{ "name": "bone15", "parent": "damen/diyumen02", "length": 64.48, "rotation": -94.48, "x": -1.36, "y": -17.41 },
{ "name": "bone16", "parent": "bone15", "length": 65.7, "rotation": -0.14, "x": 64.48 },
{ "name": "bone17", "parent": "bone16", "length": 70.68, "rotation": -6.02, "x": 65.7 },
{ "name": "bone18", "parent": "bone17", "length": 58.76, "rotation": -8.09, "x": 70.68 },
{ "name": "bone19", "parent": "bone18", "length": 72.13, "rotation": -2.21, "x": 58.76 },
{ "name": "damen/diyumen2", "parent": "root", "rotation": -22.99, "x": 560.81, "y": 222.59 },
{ "name": "bone20", "parent": "damen/diyumen2", "length": 64.48, "rotation": -94.48, "x": -1.36, "y": -17.41 },
{ "name": "bone21", "parent": "bone20", "length": 65.7, "rotation": -0.14, "x": 64.48 },
{ "name": "bone22", "parent": "bone21", "length": 70.68, "rotation": -6.02, "x": 65.7 },
{ "name": "bone23", "parent": "bone22", "length": 58.76, "rotation": -8.09, "x": 70.68 },
{ "name": "bone24", "parent": "bone23", "length": 72.13, "rotation": -2.21, "x": 58.76 },
{ "name": "damen/chaoqian", "parent": "root", "x": -555.66, "y": 6.58 },
{ "name": "damen/diyumen01", "parent": "root", "x": 537.49, "y": 0.86 },
{ "name": "damen/emozhu_huo01", "parent": "root", "length": 18.66, "rotation": 87.33, "x": 151.31, "y": 38.25 },
{ "name": "damen/emozhu_huo1", "parent": "root", "length": 18.66, "rotation": 87.33, "x": 67.03, "y": 30.41 },
{ "name": "damen/emozhu_huo2", "parent": "root", "length": 18.66, "rotation": 87.33, "x": -35.27, "y": 24.13 },
{ "name": "damen/emozhu_huo3", "parent": "root", "length": 18.66, "rotation": 87.33, "x": -112.1, "y": 17.47 },
{ "name": "damen/emozhu_huo4", "parent": "root", "length": 18.66, "rotation": 87.33, "x": -167.38, "y": 42.56 },
{ "name": "damen/emozhu_huo5", "parent": "root", "length": 18.66, "rotation": 107.45, "x": 239.62, "y": 25.67 },
{ "name": "damen/emozhu_huo6", "parent": "root", "length": 18.66, "rotation": 107.45, "x": 388.96, "y": 38.25 },
{ "name": "damen/emozhu_huo7", "parent": "root", "length": 18.66, "rotation": 69.87, "x": 359.49, "y": 29.6 },
{ "name": "damen/emozhu_huo8", "parent": "root", "length": 18.66, "rotation": 87.33, "x": -374.85, "y": 38.81 },
{ "name": "damen/emozhu_huo9", "parent": "root", "length": 18.66, "rotation": 87.33, "x": -456.49, "y": 35.82 },
{ "name": "damen/lazhu01_guang02", "parent": "root", "x": 198.08, "y": 1.97 },
{ "name": "damen/lazhu01_guang2", "parent": "root", "x": 198.08, "y": 1.97 },
{ "name": "damen/lazhu01_guang3", "parent": "root", "x": -124.61, "y": 1.97 },
{ "name": "damen/lazhu01_guang4", "parent": "root", "x": -124.61, "y": 1.97 },
{ "name": "damen/lazhu01_guang5", "parent": "root", "x": -407.47, "y": 1.97 },
{ "name": "damen/lazhu01_guang6", "parent": "root", "x": 395.13, "y": 1.97 },
{ "name": "damen/lazhu01_huo02", "parent": "root", "length": 21.34, "rotation": 102.52, "x": 106.54, "y": 42.1 },
{ "name": "damen/lazhu02_shiti", "parent": "root", "x": 154.37, "y": -1.57 },
{ "name": "damen/lazhu02_shiti2", "parent": "root", "x": -125.44, "y": -1.57 },
{ "name": "damen/lazhu02_shiti3", "parent": "root", "x": 356.3, "y": -0.54 },
{ "name": "damen/lazhu02_shiti4", "parent": "root", "x": -409.37, "y": -1.57 }
],
"slots": [
{ "name": "้่ฑ้็้ข(03๏ผ", "bone": "root", "color": "ffffff35" },
{ "name": "damen/diyumen02", "bone": "damen/diyumen02", "attachment": "damen/diyumen02" },
{ "name": "damen/diyumen2", "bone": "damen/diyumen2", "color": "969696ff", "attachment": "damen/diyumen02" },
{ "name": "damen/diyumen01", "bone": "damen/diyumen01", "attachment": "damen/diyumen01" },
{ "name": "damen/lazhu02_shiti", "bone": "damen/lazhu02_shiti", "color": "fafffeff", "attachment": "damen/lazhu02_shiti" },
{ "name": "damen/lazhu02_shiti4", "bone": "damen/lazhu02_shiti4", "color": "fafffeff", "attachment": "damen/lazhu02_shiti" },
{ "name": "damen/lazhu02_shiti2", "bone": "damen/lazhu02_shiti2", "color": "fafffeff", "attachment": "damen/lazhu02_shiti" },
{ "name": "damen/lazhu02_shiti3", "bone": "damen/lazhu02_shiti3", "color": "fafffeff", "attachment": "damen/lazhu02_shiti" },
{ "name": "damen/emozhu_huo01", "bone": "damen/emozhu_huo01", "attachment": "damen/emozhu_huo01", "blend": "screen" },
{ "name": "damen/emozhu_huo5", "bone": "damen/emozhu_huo5", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo6", "bone": "damen/emozhu_huo6", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo7", "bone": "damen/emozhu_huo7", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo1", "bone": "damen/emozhu_huo1", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo3", "bone": "damen/emozhu_huo3", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo4", "bone": "damen/emozhu_huo4", "attachment": "damen/emozhu_huo01", "blend": "screen" },
{ "name": "damen/emozhu_huo8", "bone": "damen/emozhu_huo8", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo9", "bone": "damen/emozhu_huo9", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/emozhu_huo2", "bone": "damen/emozhu_huo2", "attachment": "damen/emozhu_huo01" },
{ "name": "damen/lazhu01_huo02", "bone": "damen/lazhu01_huo02", "attachment": "damen/lazhu01_huo02" },
{ "name": "damen/lazhu01_guang02", "bone": "damen/lazhu01_guang02", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/lazhu01_guang2", "bone": "damen/lazhu01_guang2", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/lazhu01_guang3", "bone": "damen/lazhu01_guang3", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/lazhu01_guang4", "bone": "damen/lazhu01_guang4", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/lazhu01_guang5", "bone": "damen/lazhu01_guang5", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/lazhu01_guang6", "bone": "damen/lazhu01_guang6", "attachment": "damen/lazhu01_guang02", "blend": "screen" },
{ "name": "damen/qi01", "bone": "damen/qi01", "attachment": "damen/qi01" },
{ "name": "damen/qi1", "bone": "damen/qi1", "attachment": "damen/qi01" },
{ "name": "damen/chaoqian", "bone": "damen/chaoqian", "attachment": "damen/chaoqian" }
],
"skins": {
"default": {
"damen/chaoqian": {
"damen/chaoqian": { "x": 555.3, "y": 54.5, "width": 1136, "height": 121 }
},
"damen/diyumen01": {
"damen/diyumen01": { "x": -30.85, "y": 284.55, "width": 131, "height": 569 }
},
"damen/diyumen02": {
"damen/diyumen02": {
"type": "mesh",
"uvs": [ 0.80684, 0.00659, 0.76897, 0.15196, 0.71216, 0.25712, 0.66798, 0.3097, 0.60486, 0.40559, 0.56067, 0.52312, 0.5228, 0.56951, 0.44706, 0.65302, 0.38394, 0.68859, 0.27033, 0.77365, 0.14409, 0.83087, 0.04942, 0.9051, 0, 0.99016, 0.09991, 1, 0.35238, 0.94222, 0.47862, 0.85098, 0.54174, 0.80303, 0.65535, 0.71024, 0.71216, 0.67004, 0.80053, 0.57725, 0.83208, 0.53549, 0.87627, 0.44116, 0.90151, 0.3994, 0.92676, 0.3097, 0.93939, 0.28341, 0.97726, 0.20609, 0.95832, 0.14887, 1, 0.07, 0.97094, 0.00504 ],
"triangles": [ 26, 0, 28, 26, 28, 27, 1, 0, 26, 24, 1, 26, 24, 26, 25, 23, 2, 1, 24, 23, 1, 22, 2, 23, 21, 2, 22, 3, 2, 21, 21, 4, 3, 20, 4, 21, 19, 5, 4, 20, 19, 4, 18, 5, 19, 17, 6, 5, 18, 17, 5, 7, 6, 17, 16, 7, 17, 16, 8, 7, 15, 8, 16, 9, 8, 15, 14, 9, 15, 13, 11, 10, 12, 11, 13, 14, 13, 10, 14, 10, 9 ],
"vertices": [ 1, 18, -21.44, -6.88, 1, 1, 18, 29.67, -6.14, 1, 2, 18, 66.85, -8.13, 0.30248, 19, 2.39, -8.12, 0.69751, 1, 19, 21.09, -10.42, 1, 2, 19, 55.07, -13.12, 0.92172, 20, -9.18, -14.16, 0.07827, 1, 20, 32.06, -10.27, 1, 1, 20, 48.66, -10.46, 1, 2, 20, 78.67, -11.44, 0.0917, 21, 9.52, -10.2, 0.90829, 1, 21, 23.09, -11.33, 1, 2, 21, 54.5, -10.98, 0.69804, 22, -3.83, -11.14, 0.30195, 1, 22, 18.79999, -14.09, 1, 1, 22, 46.04, -12.36, 1, 1, 22, 75.44, -5.65, 1, 1, 22, 75.58999, 3.6, 1, 2, 21, 108.25, 14.72, 0, 22, 48.88, 16.62, 0.99999, 2, 21, 74.44, 14.7, 0.02525, 22, 15.09, 15.29, 0.97474, 2, 21, 56.76, 14.43, 0.59332, 22, -2.55, 14.34, 0.40667, 1, 21, 22.78, 13.21, 1, 2, 20, 80.33, 12.06, 0.12289, 21, 7.84, 13.3, 0.8771, 1, 20, 46.91, 13.51, 1, 1, 20, 32.00999, 13.46, 1, 2, 19, 65.64, 11.14, 0.53551, 20, -1.22, 11.08, 0.46448, 1, 19, 50.85, 12.13, 1, 1, 19, 19.29999, 11.75, 1, 2, 18, 74.51999, 12.06, 0.08444, 19, 10.01, 12.09, 0.91555, 1, 18, 47.21, 13.19, 1, 2, 18, 27.32, 10, 0.99999, 19, -37.18, 9.89999, 0, 1, 18, -0.55, 11.41, 1, 1, 18, -23.09, 7.13, 1 ],
"hull": 29,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 0, 56 ],
"width": 86,
"height": 351
}
},
"damen/diyumen2": {
"damen/diyumen02": {
"type": "mesh",
"uvs": [ 0.80684, 0.00659, 0.76897, 0.15196, 0.71216, 0.25712, 0.66798, 0.3097, 0.60486, 0.40559, 0.56067, 0.52312, 0.5228, 0.56951, 0.44706, 0.65302, 0.38394, 0.68859, 0.27033, 0.77365, 0.14409, 0.83087, 0.04942, 0.9051, 0, 0.99016, 0.09991, 1, 0.35238, 0.94222, 0.47862, 0.85098, 0.54174, 0.80303, 0.65535, 0.71024, 0.71216, 0.67004, 0.80053, 0.57725, 0.83208, 0.53549, 0.87627, 0.44116, 0.90151, 0.3994, 0.92676, 0.3097, 0.93939, 0.28341, 0.97726, 0.20609, 0.95832, 0.14887, 1, 0.07, 0.97094, 0.00504 ],
"triangles": [ 26, 0, 28, 26, 28, 27, 1, 0, 26, 24, 1, 26, 24, 26, 25, 23, 2, 1, 24, 23, 1, 22, 2, 23, 21, 2, 22, 3, 2, 21, 21, 4, 3, 20, 4, 21, 19, 5, 4, 20, 19, 4, 18, 5, 19, 17, 6, 5, 18, 17, 5, 7, 6, 17, 16, 7, 17, 16, 8, 7, 15, 8, 16, 9, 8, 15, 14, 9, 15, 13, 11, 10, 12, 11, 13, 14, 13, 10, 14, 10, 9 ],
"vertices": [ 1, 24, -21.44, -6.88, 1, 1, 24, 29.67, -6.14, 1, 2, 24, 66.85, -8.13, 0.30248, 25, 2.39, -8.12, 0.69751, 1, 25, 21.09, -10.42, 1, 2, 25, 55.07, -13.12, 0.92172, 26, -9.18, -14.16, 0.07827, 1, 26, 32.06, -10.27, 1, 1, 26, 48.66, -10.46, 1, 2, 26, 78.67, -11.44, 0.0917, 27, 9.52, -10.2, 0.90829, 1, 27, 23.09, -11.33, 1, 2, 27, 54.5, -10.98, 0.69804, 28, -3.83, -11.14, 0.30195, 1, 28, 18.79999, -14.09, 1, 1, 28, 46.04, -12.36, 1, 1, 28, 75.44, -5.65, 1, 1, 28, 75.58999, 3.6, 1, 2, 27, 108.25, 14.72, 0, 28, 48.88, 16.62, 0.99999, 2, 27, 74.44, 14.7, 0.02525, 28, 15.09, 15.29, 0.97474, 2, 27, 56.76, 14.43, 0.59332, 28, -2.55, 14.34, 0.40667, 1, 27, 22.78, 13.21, 1, 2, 26, 80.33, 12.06, 0.12289, 27, 7.84, 13.3, 0.8771, 1, 26, 46.91, 13.51, 1, 1, 26, 32.00999, 13.46, 1, 2, 25, 65.64, 11.14, 0.53551, 26, -1.22, 11.08, 0.46448, 1, 25, 50.85, 12.13, 1, 1, 25, 19.29999, 11.75, 1, 2, 24, 74.51999, 12.06, 0.08444, 25, 10.01, 12.09, 0.91555, 1, 24, 47.21, 13.19, 1, 2, 24, 27.32, 10, 0.99999, 25, -37.18, 9.89999, 0, 1, 24, -0.55, 11.41, 1, 1, 24, -23.09, 7.13, 1 ],
"hull": 29,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 0, 56 ],
"width": 86,
"height": 351
}
},
"damen/emozhu_huo01": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo1": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo2": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo3": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo4": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo5": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo6": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo7": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "scaleX": 2, "scaleY": 2, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo8": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/emozhu_huo9": {
"damen/emozhu_huo01": { "x": 11.89, "y": -1.55, "rotation": -97.12, "width": 10, "height": 18 }
},
"damen/lazhu01_guang02": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_guang2": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_guang3": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_guang4": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_guang5": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_guang6": {
"damen/lazhu01_guang02": { "x": -11.18, "y": 62.96, "scaleX": 1.5, "scaleY": 1.5, "width": 344, "height": 83 }
},
"damen/lazhu01_huo02": {
"damen/lazhu01_huo02": { "x": 12.07, "y": -0.78, "scaleX": 2, "scaleY": 2, "rotation": -102.52, "width": 7, "height": 15 }
},
"damen/lazhu02_shiti": {
"damen/lazhu02_shiti": { "x": 0.55, "y": 22.09, "scaleX": 1.6, "scaleY": 1.6, "width": 132, "height": 21 }
},
"damen/lazhu02_shiti2": {
"damen/lazhu02_shiti": { "x": 0.55, "y": 22.09, "scaleX": 1.6, "scaleY": 1.6, "width": 132, "height": 21 }
},
"damen/lazhu02_shiti3": {
"damen/lazhu02_shiti": { "x": 0.55, "y": 22.09, "scaleX": 1.6, "scaleY": 1.6, "width": 132, "height": 21 }
},
"damen/lazhu02_shiti4": {
"damen/lazhu02_shiti": { "x": 0.55, "y": 22.09, "scaleX": 1.6, "scaleY": 1.6, "width": 132, "height": 21 }
},
"damen/qi01": {
"damen/qi01": {
"type": "mesh",
"uvs": [ 0, 0, 0.2, 0, 0.4, 0, 0.6, 0, 0.8, 0, 1, 0, 1, 0.2, 1, 0.4, 1, 0.6, 1, 0.8, 1, 1, 0.8, 1, 0.6, 1, 0.4, 1, 0.2, 1, 0, 1, 0, 0.8, 0, 0.6, 0, 0.4, 0, 0.2, 0.2, 0.2, 0.2, 0.4, 0.2, 0.6, 0.2, 0.8, 0.4, 0.2, 0.4, 0.4, 0.4, 0.6, 0.4, 0.8, 0.6, 0.2, 0.6, 0.4, 0.6, 0.6, 0.6, 0.8, 0.8, 0.2, 0.8, 0.4, 0.8, 0.6, 0.8, 0.8 ],
"triangles": [ 11, 9, 10, 12, 35, 11, 11, 35, 9, 13, 31, 12, 12, 31, 35, 14, 27, 13, 13, 27, 31, 15, 23, 14, 14, 23, 27, 15, 16, 23, 35, 8, 9, 31, 34, 35, 35, 34, 8, 27, 30, 31, 31, 30, 34, 23, 26, 27, 27, 26, 30, 16, 22, 23, 23, 22, 26, 16, 17, 22, 34, 7, 8, 30, 33, 34, 34, 33, 7, 26, 29, 30, 30, 29, 33, 22, 25, 26, 26, 25, 29, 17, 21, 22, 22, 21, 25, 17, 18, 21, 33, 6, 7, 29, 32, 33, 33, 32, 6, 25, 28, 29, 29, 28, 32, 21, 24, 25, 25, 24, 28, 18, 20, 21, 21, 20, 24, 18, 19, 20, 32, 5, 6, 28, 4, 32, 32, 4, 5, 24, 3, 28, 28, 3, 4, 20, 2, 24, 24, 2, 3, 19, 1, 20, 20, 1, 2, 19, 0, 1 ],
"vertices": [ 3, 2, -7.95, -61.56, 0.82449, 3, -43.24, -62.25, 0.17098, 4, -81.33, -61.25, 0.00451, 3, 2, -7.18, -35.98, 0.8814, 3, -42.86, -36.65, 0.11698, 4, -80.64, -35.66, 0.00161, 2, 2, -6.4, -10.39, 0.99113, 3, -42.48, -11.05, 0.00886, 2, 2, -5.62, 15.19, 0.98439, 3, -42.11, 14.54, 0.0156, 2, 2, -4.85, 40.78, 0.87456, 3, -41.73, 40.13, 0.12543, 3, 2, -4.07, 66.37, 0.8278, 3, -41.34999, 65.73, 0.17114, 4, -77.87999, 66.69, 0.00104, 4, 2, 54.49, 64.58999, 0.31748, 3, 17.23, 64.87, 0.42891, 4, -19.29999, 65.11, 0.21452, 5, -59.12, 65.85, 0.03907, 6, 2, 113.06, 62.82, 0.00831, 3, 75.82, 64.01, 0.0981, 4, 39.27, 63.53, 0.40779, 5, -0.57, 63.54, 0.40824, 6, -43.2, 62.95, 0.07667, 7, -83.07, 66.81, 8.6E-4, 5, 4, 97.85, 61.95, 0.05186, 5, 57.98, 61.23, 0.28422, 6, 15.37, 61.45, 0.47572, 7, -24.62, 62.64, 0.18787, 8, -75.48, 58.95, 3.0E-4, 4, 5, 116.53, 58.92, 0.00935, 6, 73.94999, 59.95, 0.13518, 7, 33.82, 58.46, 0.56721, 8, -16.89, 58.2, 0.28821, 2, 7, 92.27, 54.29, 0.12246, 8, 41.7, 57.45, 0.87753, 2, 7, 90.45, 28.75, 0.07381, 8, 41.37, 31.85, 0.92618, 1, 8, 41.04, 6.25, 1, 2, 7, 86.8, -22.31, 0.06025, 8, 40.71, -19.34, 0.93974, 3, 6, 129.91, -43.91, 0.00153, 7, 84.98, -47.84, 0.22493, 8, 40.38, -44.93, 0.77353, 4, 5, 170.04, -71.28, 0, 6, 129.25, -69.5, 0.00361, 7, 83.15, -73.37999, 0.27831, 8, 40.05, -70.53, 0.71806, 4, 5, 111.48, -68.97, 0.0155, 6, 70.67, -68, 0.19676, 7, 24.7, -69.19999, 0.53025, 8, -18.53, -69.78, 0.25747, 6, 3, 132.53, -64.83, 4.1E-4, 4, 94.39, -66, 0.0472, 5, 52.93, -66.66, 0.29189, 6, 12.09, -66.5, 0.48603, 7, -33.74, -65.03, 0.17138, 8, -77.12999, -69.03, 0.00307, 6, 2, 109.19, -65.11, 0.00388, 3, 73.94, -63.97, 0.12725, 4, 35.81, -64.42, 0.41342, 5, -5.62, -64.35, 0.36246, 6, -46.48, -65, 0.09115, 7, -92.19, -60.85, 0.00181, 4, 2, 50.61, -63.34, 0.30328, 3, 15.35, -63.11, 0.45867, 4, -22.75, -62.83, 0.21107, 5, -64.17, -62.04, 0.02696, 4, 2, 51.39, -37.75, 0.22977, 3, 15.72, -37.50999, 0.55295, 4, -22.06, -37.24, 0.20109, 5, -63.16, -36.46, 0.01616, 6, 2, 109.96, -39.53, 2.1E-4, 3, 74.32, -38.37, 0.07396, 4, 36.50999, -38.82, 0.42975, 5, -4.61, -38.77, 0.4186, 6, -45.82, -39.41, 0.07627, 7, -90.37, -35.32, 0.00118, 5, 3, 132.91, -39.23, 3.5E-4, 4, 95.08, -40.41, 0.03853, 5, 53.94, -41.08, 0.344, 6, 12.75, -40.91, 0.518, 7, -31.92, -39.49, 0.0991, 4, 5, 112.49, -43.39, 0.00641, 6, 71.33, -42.41, 0.14979, 7, 26.53, -43.67, 0.66783, 8, -18.2, -44.18, 0.17595, 4, 2, 52.16, -12.16, 0.18642, 3, 16.1, -11.91, 0.69956, 4, -21.37, -11.65, 0.11111, 5, -62.15, -10.88, 0.00289, 4, 3, 74.69, -12.77, 0.00732, 4, 37.2, -13.23, 0.55273, 5, -3.6, -13.19, 0.4329, 6, -45.17, -13.82, 0.00704, 3, 5, 54.95, -15.5, 0.11573, 6, 13.4, -15.32, 0.76839, 7, -30.09, -13.96, 0.11586, 4, 5, 113.5, -17.81, 2.9E-4, 6, 71.98, -16.82, 0.05997, 7, 28.35, -18.12999, 0.78292, 8, -17.87, -18.58, 0.1568, 4, 2, 52.94, 13.42, 0.16442, 3, 16.48, 13.67, 0.80884, 4, -20.68, 13.93, 0.02561, 5, -61.14, 14.69, 0.00112, 3, 3, 75.07, 12.81, 0.01625, 4, 37.89, 12.35, 0.61148, 5, -2.58999, 12.38, 0.37225, 3, 4, 96.47, 10.76, 0.00525, 5, 55.96, 10.07, 0.27793, 6, 14.06, 10.26, 0.7168, 4, 5, 114.51, 7.76, 5.2E-4, 6, 72.64, 8.76, 0.00645, 7, 30.17, 7.39, 0.9868, 8, -17.54999, 7, 0.0062, 4, 2, 53.71, 39, 0.19366, 3, 16.85, 39.27, 0.4713, 4, -19.99, 39.52, 0.28538, 5, -60.13, 40.27, 0.04965, 5, 2, 112.29, 37.23, 0.00586, 3, 75.44999, 38.41, 0.09326, 4, 38.58, 37.93999, 0.49735, 5, -1.58, 37.96, 0.37188, 6, -43.86, 37.36, 0.03162, 4, 4, 97.16, 36.34999, 0.05076, 5, 56.97, 35.65, 0.33474, 6, 14.72, 35.86, 0.50685, 7, -26.44, 37.09999, 0.10762, 4, 5, 115.52, 33.34, 0.00503, 6, 73.3, 34.34999, 0.09965, 7, 32, 32.93, 0.69818, 8, -17.21999, 32.59999, 0.19712 ],
"hull": 20,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 0 ],
"width": 128,
"height": 293
}
},
"damen/qi1": {
"damen/qi01": {
"type": "mesh",
"uvs": [ 0, 0, 0.2, 0, 0.4, 0, 0.6, 0, 0.8, 0, 1, 0, 1, 0.2, 1, 0.4, 1, 0.6, 1, 0.8, 1, 1, 0.8, 1, 0.6, 1, 0.4, 1, 0.2, 1, 0, 1, 0, 0.8, 0, 0.6, 0, 0.4, 0, 0.2, 0.2, 0.2, 0.2, 0.4, 0.2, 0.6, 0.2, 0.8, 0.4, 0.2, 0.4, 0.4, 0.4, 0.6, 0.4, 0.8, 0.6, 0.2, 0.6, 0.4, 0.6, 0.6, 0.6, 0.8, 0.8, 0.2, 0.8, 0.4, 0.8, 0.6, 0.8, 0.8 ],
"triangles": [ 11, 9, 10, 12, 35, 11, 11, 35, 9, 13, 31, 12, 12, 31, 35, 14, 27, 13, 13, 27, 31, 15, 23, 14, 14, 23, 27, 15, 16, 23, 35, 8, 9, 31, 34, 35, 35, 34, 8, 27, 30, 31, 31, 30, 34, 23, 26, 27, 27, 26, 30, 16, 22, 23, 23, 22, 26, 16, 17, 22, 34, 7, 8, 30, 33, 34, 34, 33, 7, 26, 29, 30, 30, 29, 33, 22, 25, 26, 26, 25, 29, 17, 21, 22, 22, 21, 25, 17, 18, 21, 33, 6, 7, 29, 32, 33, 33, 32, 6, 25, 28, 29, 29, 28, 32, 21, 24, 25, 25, 24, 28, 18, 20, 21, 21, 20, 24, 18, 19, 20, 32, 5, 6, 28, 4, 32, 32, 4, 5, 24, 3, 28, 28, 3, 4, 20, 2, 24, 24, 2, 3, 19, 1, 20, 20, 1, 2, 19, 0, 1 ],
"vertices": [ 3, 10, -7.95, -61.56, 0.82449, 11, -43.24, -62.25, 0.17098, 12, -81.33, -61.25, 0.00451, 3, 10, -7.18, -35.98, 0.8814, 11, -42.86, -36.65, 0.11698, 12, -80.64, -35.66, 0.00161, 2, 10, -6.4, -10.39, 0.99113, 11, -42.48, -11.05, 0.00886, 2, 10, -5.62, 15.19, 0.98439, 11, -42.11, 14.54, 0.0156, 2, 10, -4.85, 40.78, 0.87456, 11, -41.73, 40.13, 0.12543, 3, 10, -4.07, 66.37, 0.8278, 11, -41.34999, 65.73, 0.17114, 12, -77.87999, 66.69, 0.00104, 4, 10, 54.49, 64.58999, 0.31748, 11, 17.23, 64.87, 0.42891, 12, -19.29999, 65.11, 0.21452, 13, -59.12, 65.85, 0.03907, 6, 10, 113.06, 62.82, 0.00831, 11, 75.82, 64.01, 0.0981, 12, 39.27, 63.53, 0.40779, 13, -0.57, 63.54, 0.40824, 14, -43.2, 62.95, 0.07667, 15, -83.07, 66.81, 8.6E-4, 5, 12, 97.85, 61.95, 0.05186, 13, 57.98, 61.23, 0.28422, 14, 15.37, 61.45, 0.47572, 15, -24.62, 62.64, 0.18787, 16, -75.48, 58.95, 3.0E-4, 4, 13, 116.53, 58.92, 0.00935, 14, 73.94999, 59.95, 0.13518, 15, 33.82, 58.46, 0.56721, 16, -16.89, 58.2, 0.28821, 2, 15, 92.27, 54.29, 0.12246, 16, 41.7, 57.45, 0.87753, 2, 15, 90.45, 28.75, 0.07381, 16, 41.37, 31.85, 0.92618, 1, 16, 41.04, 6.25, 1, 2, 15, 86.8, -22.31, 0.06025, 16, 40.71, -19.34, 0.93974, 3, 14, 129.91, -43.91, 0.00153, 15, 84.98, -47.84, 0.22493, 16, 40.38, -44.93, 0.77353, 4, 13, 170.04, -71.28, 0, 14, 129.25, -69.5, 0.00361, 15, 83.15, -73.37999, 0.27831, 16, 40.05, -70.53, 0.71806, 4, 13, 111.48, -68.97, 0.0155, 14, 70.67, -68, 0.19676, 15, 24.7, -69.19999, 0.53025, 16, -18.53, -69.78, 0.25747, 6, 11, 132.53, -64.83, 4.1E-4, 12, 94.39, -66, 0.0472, 13, 52.93, -66.66, 0.29189, 14, 12.09, -66.5, 0.48603, 15, -33.74, -65.03, 0.17138, 16, -77.12999, -69.03, 0.00307, 6, 10, 109.19, -65.11, 0.00388, 11, 73.94, -63.97, 0.12725, 12, 35.81, -64.42, 0.41342, 13, -5.62, -64.35, 0.36246, 14, -46.48, -65, 0.09115, 15, -92.19, -60.85, 0.00181, 4, 10, 50.61, -63.34, 0.30328, 11, 15.35, -63.11, 0.45867, 12, -22.75, -62.83, 0.21107, 13, -64.17, -62.04, 0.02696, 4, 10, 51.39, -37.75, 0.22977, 11, 15.72, -37.50999, 0.55295, 12, -22.06, -37.24, 0.20109, 13, -63.16, -36.46, 0.01616, 6, 10, 109.96, -39.53, 2.1E-4, 11, 74.32, -38.37, 0.07396, 12, 36.50999, -38.82, 0.42975, 13, -4.61, -38.77, 0.4186, 14, -45.82, -39.41, 0.07627, 15, -90.37, -35.32, 0.00118, 5, 11, 132.91, -39.23, 3.5E-4, 12, 95.08, -40.41, 0.03853, 13, 53.94, -41.08, 0.344, 14, 12.75, -40.91, 0.518, 15, -31.92, -39.49, 0.0991, 4, 13, 112.49, -43.39, 0.00641, 14, 71.33, -42.41, 0.14979, 15, 26.53, -43.67, 0.66783, 16, -18.2, -44.18, 0.17595, 4, 10, 52.16, -12.16, 0.18642, 11, 16.1, -11.91, 0.69956, 12, -21.37, -11.65, 0.11111, 13, -62.15, -10.88, 0.00289, 4, 11, 74.69, -12.77, 0.00732, 12, 37.2, -13.23, 0.55273, 13, -3.6, -13.19, 0.4329, 14, -45.17, -13.82, 0.00704, 3, 13, 54.95, -15.5, 0.11573, 14, 13.4, -15.32, 0.76839, 15, -30.09, -13.96, 0.11586, 4, 13, 113.5, -17.81, 2.9E-4, 14, 71.98, -16.82, 0.05997, 15, 28.35, -18.12999, 0.78292, 16, -17.87, -18.58, 0.1568, 4, 10, 52.94, 13.42, 0.16442, 11, 16.48, 13.67, 0.80884, 12, -20.68, 13.93, 0.02561, 13, -61.14, 14.69, 0.00112, 3, 11, 75.07, 12.81, 0.01625, 12, 37.89, 12.35, 0.61148, 13, -2.58999, 12.38, 0.37225, 3, 12, 96.47, 10.76, 0.00525, 13, 55.96, 10.07, 0.27793, 14, 14.06, 10.26, 0.7168, 4, 13, 114.51, 7.76, 5.2E-4, 14, 72.64, 8.76, 0.00645, 15, 30.17, 7.39, 0.9868, 16, -17.54999, 7, 0.0062, 4, 10, 53.71, 39, 0.19366, 11, 16.85, 39.27, 0.4713, 12, -19.99, 39.52, 0.28538, 13, -60.13, 40.27, 0.04965, 5, 10, 112.29, 37.23, 0.00586, 11, 75.44999, 38.41, 0.09326, 12, 38.58, 37.93999, 0.49735, 13, -1.58, 37.96, 0.37188, 14, -43.86, 37.36, 0.03162, 4, 12, 97.16, 36.34999, 0.05076, 13, 56.97, 35.65, 0.33474, 14, 14.72, 35.86, 0.50685, 15, -26.44, 37.09999, 0.10762, 4, 13, 115.52, 33.34, 0.00503, 14, 73.3, 34.34999, 0.09965, 15, 32, 32.93, 0.69818, 16, -17.21999, 32.59999, 0.19712 ],
"hull": 20,
"edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 0 ],
"width": 128,
"height": 293
}
}
}
},
"animations": {
"special": {
"slots": {
"damen/emozhu_huo1": {
"color": [
{ "time": 0, "color": "ffffffff", "curve": "stepped" },
{ "time": 1.3333, "color": "ffffffff" },
{ "time": 3, "color": "ffffff8a" },
{ "time": 4.6666, "color": "ffffffff" }
]
},
"damen/emozhu_huo2": {
"color": [
{ "time": 0, "color": "ffffffff", "curve": "stepped" },
{ "time": 1.1666, "color": "ffffffff" },
{ "time": 2, "color": "ffffff84" },
{ "time": 4.6666, "color": "ffffffff" }
]
},
"damen/emozhu_huo3": {
"color": [
{ "time": 0, "color": "ffffffff" },
{ "time": 1.8333, "color": "ffffff76" },
{ "time": 4.6666, "color": "ffffffff" }
]
},
"damen/emozhu_huo4": {
"color": [
{ "time": 0, "color": "ffffff78" },
{ "time": 2.8333, "color": "ffffffff" },
{ "time": 4.6666, "color": "ffffff78" }
]
}
},
"bones": {
"bone8": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 13.73 },
{ "time": 1.6666, "angle": 7.54 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": -2.8 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 13.73 },
{ "time": 1.6666, "angle": 7.54 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": -2.8 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 7.54, "curve": "stepped" },
{ "time": 1.6666, "angle": 7.54 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": -0.59 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 7.54 },
{ "time": 1.6666, "angle": 12.98 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": -3.98 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 4.14 },
{ "time": 1.6666, "angle": 9.58 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": 6.02 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 4.14 },
{ "time": 1.6666, "angle": 12.6 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": 2.39 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 4.14 },
{ "time": 1.6666, "angle": 12.6 },
{ "time": 3.3333, "angle": -2.83 },
{ "time": 4, "angle": 2.39 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 1.78 },
{ "time": 2, "angle": 0.32 },
{ "time": 2.3333, "angle": -0.93 },
{ "time": 2.8333, "angle": 1.14 },
{ "time": 4.1666, "angle": -1.61 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 1.78 },
{ "time": 2, "angle": 0.32 },
{ "time": 2.3333, "angle": -0.93 },
{ "time": 2.8333, "angle": 1.14 },
{ "time": 4.1666, "angle": -1.6 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 1.78 },
{ "time": 2, "angle": 0.32 },
{ "time": 2.3333, "angle": -0.93 },
{ "time": 2.8333, "angle": 1.14 },
{ "time": 4.1666, "angle": -1.6 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 3.44 },
{ "time": 2, "angle": 1.99 },
{ "time": 2.3333, "angle": 0.72 },
{ "time": 2.8333, "angle": 3.98 },
{ "time": 4.1666, "angle": -1.6 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 3.44 },
{ "time": 2, "angle": 1.99 },
{ "time": 2.3333, "angle": 0.72 },
{ "time": 2.8333, "angle": 3.98 },
{ "time": 4.1666, "angle": -1.6 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 6.14 },
{ "time": 2, "angle": 4.69 },
{ "time": 2.3333, "angle": 3.43 },
{ "time": 2.8333, "angle": 6.68 },
{ "time": 4.1666, "angle": -1.6 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.3333, "angle": 6.14 },
{ "time": 2, "angle": 4.69 },
{ "time": 2.3333, "angle": 3.43 },
{ "time": 2.8333, "angle": 6.68 },
{ "time": 4.1666, "angle": -1.61 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.8333, "angle": -0.74 },
{ "time": 1.6666, "angle": 0.83 },
{ "time": 3, "angle": 0 },
{ "time": 3.8333, "angle": -0.74 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.8333, "angle": -0.74 },
{ "time": 1.6666, "angle": 0.83 },
{ "time": 3, "angle": 0 },
{ "time": 3.8333, "angle": -0.74 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.8333, "angle": -0.74 },
{ "time": 1.6666, "angle": 0.83 },
{ "time": 3, "angle": 0 },
{ "time": 3.8333, "angle": -0.74 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.8333, "angle": -0.74 },
{ "time": 1.6666, "angle": 0.83 },
{ "time": 3, "angle": 0 },
{ "time": 3.8333, "angle": -0.74 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.8333, "angle": -0.74 },
{ "time": 1.6666, "angle": 0.83 },
{ "time": 3, "angle": 0 },
{ "time": 3.8333, "angle": -0.74 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3, "angle": 0, "curve": "stepped" },
{ "time": 3.6666, "angle": 0, "curve": "stepped" },
{ "time": 4.1666, "angle": 0, "curve": "stepped" },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": -3.87 },
{ "time": 1.1666, "angle": -1.93 },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3, "angle": 0 },
{ "time": 3.6666, "angle": -3.87 },
{ "time": 4.1666, "angle": -1.93 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": -3.87 },
{ "time": 1.1666, "angle": 2.27 },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3, "angle": 0 },
{ "time": 3.6666, "angle": -3.87 },
{ "time": 4.1666, "angle": 2.27 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": -3.87 },
{ "time": 1.1666, "angle": 2.27 },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3, "angle": 0 },
{ "time": 3.6666, "angle": -3.87 },
{ "time": 4.1666, "angle": 2.27 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": 3.51 },
{ "time": 1.1666, "angle": 6.15 },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3, "angle": 0 },
{ "time": 3.6666, "angle": 3.51 },
{ "time": 4.1666, "angle": 6.15 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 3.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo4": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.5, "angle": -10.67 },
{ "time": 1.3333, "angle": 6.64 },
{ "time": 2, "angle": -2.96 },
{ "time": 2.3333, "angle": 0 },
{ "time": 2.8333, "angle": -10.67 },
{ "time": 3.6666, "angle": 6.64 },
{ "time": 4.3333, "angle": -2.96 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.5, "x": 0.67, "y": 0.67 },
{ "time": 1.3333, "x": 1, "y": 1 },
{ "time": 2, "x": 0.654, "y": 0.654 },
{ "time": 2.3333, "x": 1, "y": 1 },
{ "time": 2.8333, "x": 0.67, "y": 0.67 },
{ "time": 3.6666, "x": 1, "y": 1 },
{ "time": 4.3333, "x": 0.654, "y": 0.654 },
{ "time": 4.6666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 1.3333, "x": 0, "y": -30.3 },
{ "time": 2.3333, "x": 0, "y": 0 },
{ "time": 3.6666, "x": 0, "y": -30.3 },
{ "time": 4.6666, "x": 0, "y": 0 }
]
},
"damen/emozhu_huo3": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 1.8333, "angle": 0 },
{ "time": 3.1666, "angle": 12.53 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.5, "x": 1.167, "y": 1.167 },
{ "time": 1.8333, "x": 0.731, "y": 0.731 },
{ "time": 3.1666, "x": 0.804, "y": 0.804 },
{ "time": 4.6666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 1.8333, "x": 0, "y": -20.83 },
{ "time": 3.1666, "x": 0, "y": 19.49 },
{ "time": 4.6666, "x": 0, "y": 0 }
]
},
"damen/emozhu_huo2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.1666, "angle": -26.59 },
{ "time": 2, "angle": -10.71 },
{ "time": 3, "angle": 8.34 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 1.1666, "x": -4.05, "y": -4.05 },
{ "time": 2, "x": -4.05, "y": -1.15 },
{ "time": 3, "x": -4.05, "y": 2.31 },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.1666, "x": 1.206, "y": 1.206 },
{ "time": 2, "x": 1.537, "y": 1.537 },
{ "time": 3, "x": 1.206, "y": 1.206 },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo1": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0, "curve": "stepped" },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0 },
{ "time": 2.3333, "angle": 12.69 },
{ "time": 3, "angle": -11.91 },
{ "time": 4, "angle": -2.55 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0 },
{ "time": 3, "x": 1.15, "y": -2.31 },
{ "time": 4, "x": -0.57, "y": -2.89 },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 0.589, "y": 0.589 },
{ "time": 1.3333, "x": 0.817, "y": 0.817 },
{ "time": 1.6666, "x": 0.617, "y": 0.617 },
{ "time": 2, "x": 0.8, "y": 0.8 },
{ "time": 2.3333, "x": 0.617, "y": 0.617 },
{ "time": 3, "x": 0.605, "y": 0.605 },
{ "time": 4, "x": 0.845, "y": 0.845 },
{ "time": 4.6666, "x": 0.576, "y": 0.576 }
]
},
"damen/lazhu01_huo02": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.5, "angle": -19.66, "curve": "stepped" },
{ "time": 2, "angle": -19.66, "curve": "stepped" },
{ "time": 2.3333, "angle": -19.66 },
{ "time": 2.6666, "angle": -24.36 },
{ "time": 3.8333, "angle": -19.66, "curve": "stepped" },
{ "time": 4.1666, "angle": -19.66 },
{ "time": 4.5, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.5, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.5, "x": 0.851, "y": 0.851 },
{ "time": 2, "x": 1.004, "y": 0.548 },
{ "time": 2.3333, "x": 1.004, "y": 0.957, "curve": "stepped" },
{ "time": 2.6666, "x": 1.004, "y": 0.957 },
{ "time": 3.8333, "x": 1.004, "y": 0.548 },
{ "time": 4.1666, "x": 1.004, "y": 0.957 },
{ "time": 4.5, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo01": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1, "angle": 16.86 },
{ "time": 1.3333, "angle": -11.88 },
{ "time": 1.6666, "angle": 8.17 },
{ "time": 2, "angle": -9.67 },
{ "time": 2.3333, "angle": 1.7 },
{ "time": 4, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1, "x": 0.665, "y": 0.665 },
{ "time": 1.3333, "x": 1, "y": 1 },
{ "time": 1.6666, "x": 0.636, "y": 0.636 },
{ "time": 2, "x": 1, "y": 1 },
{ "time": 2.3333, "x": 0.478, "y": 0.478 },
{ "time": 4, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 2, "x": 0, "y": 31.61 },
{ "time": 4, "x": 0, "y": 0 }
]
},
"damen/emozhu_huo5": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.5, "angle": 12.87 },
{ "time": 2.3333, "angle": 0 },
{ "time": 3.8333, "angle": 12.87 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.5, "x": 0.504, "y": 0.423 },
{ "time": 2.3333, "x": 1, "y": 1 },
{ "time": 3.8333, "x": 0.504, "y": 0.423 },
{ "time": 4.6666, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo7": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.5, "angle": -10.67 },
{ "time": 1.3333, "angle": 6.64 },
{ "time": 2, "angle": -2.96 },
{ "time": 2.3333, "angle": 0 },
{ "time": 2.8333, "angle": -10.67 },
{ "time": 3.6666, "angle": 6.64 },
{ "time": 4.3333, "angle": -2.96 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.5, "x": 0.67, "y": 0.67 },
{ "time": 1.3333, "x": 1, "y": 1 },
{ "time": 2, "x": 0.654, "y": 0.654 },
{ "time": 2.3333, "x": 1, "y": 1 },
{ "time": 2.8333, "x": 0.67, "y": 0.67 },
{ "time": 3.6666, "x": 1, "y": 1 },
{ "time": 4.3333, "x": 0.654, "y": 0.654 },
{ "time": 4.6666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 1.3333, "x": 0, "y": -30.3 },
{ "time": 2.3333, "x": 0, "y": 0 },
{ "time": 3.6666, "x": 0, "y": -30.3 },
{ "time": 4.6666, "x": 0, "y": 0 }
]
},
"damen/emozhu_huo6": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.5, "angle": -19.66, "curve": "stepped" },
{ "time": 2, "angle": -19.66, "curve": "stepped" },
{ "time": 2.3333, "angle": -19.66 },
{ "time": 2.6666, "angle": -24.36 },
{ "time": 3.8333, "angle": -19.66, "curve": "stepped" },
{ "time": 4.1666, "angle": -19.66 },
{ "time": 4.5, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.5, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.5, "x": 0.851, "y": 0.851 },
{ "time": 2, "x": 1.004, "y": 0.548 },
{ "time": 2.3333, "x": 1.004, "y": 0.957, "curve": "stepped" },
{ "time": 2.6666, "x": 1.004, "y": 0.957 },
{ "time": 3.8333, "x": 1.004, "y": 0.548 },
{ "time": 4.1666, "x": 1.004, "y": 0.957 },
{ "time": 4.5, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo9": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 1.5, "angle": -19.66, "curve": "stepped" },
{ "time": 2, "angle": -19.66, "curve": "stepped" },
{ "time": 2.3333, "angle": -19.66 },
{ "time": 2.6666, "angle": -24.36 },
{ "time": 3.8333, "angle": -19.66, "curve": "stepped" },
{ "time": 4.1666, "angle": -19.66 },
{ "time": 4.5, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.5, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.5, "x": 0.851, "y": 0.851 },
{ "time": 2, "x": 1.004, "y": 0.548 },
{ "time": 2.3333, "x": 1.004, "y": 0.957, "curve": "stepped" },
{ "time": 2.6666, "x": 1.004, "y": 0.957 },
{ "time": 3.8333, "x": 1.004, "y": 0.548 },
{ "time": 4.1666, "x": 1.004, "y": 0.957 },
{ "time": 4.5, "x": 1, "y": 1 }
]
},
"damen/emozhu_huo8": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.5, "angle": 0, "curve": "stepped" },
{ "time": 1.8333, "angle": 0 },
{ "time": 3.1666, "angle": 12.53 },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.5, "x": 1.167, "y": 1.167 },
{ "time": 1.8333, "x": 0.731, "y": 0.731 },
{ "time": 3.1666, "x": 0.804, "y": 0.804 },
{ "time": 4.6666, "x": 1, "y": 1 }
],
"shear": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 1.8333, "x": 0, "y": -20.83 },
{ "time": 3.1666, "x": 0, "y": 19.49 },
{ "time": 4.6666, "x": 0, "y": 0 }
]
},
"damen/lazhu02_shiti2": {
"rotate": [
{ "time": 0, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 }
]
},
"damen/lazhu01_guang3": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 1.6666, "angle": 0, "curve": "stepped" },
{ "time": 3.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 1.6666, "x": 0.365, "y": 0.365 },
{ "time": 3.3333, "x": 1, "y": 1 }
]
},
"damen/lazhu01_guang2": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 4, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 2, "x": 0.249, "y": 0.249 },
{ "time": 4, "x": 1, "y": 1 }
]
},
"damen/lazhu01_guang5": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 2.3333, "angle": 0, "curve": "stepped" },
{ "time": 4.6666, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 4.6666, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 2.3333, "x": 0.455, "y": 0.455 },
{ "time": 4.6666, "x": 1, "y": 1 }
]
}
},
"deform": {
"default": {
"damen/qi1": {
"damen/qi01": [
{ "time": 0 },
{
"time": 1,
"vertices": [ -17.30236, 1.0689, -16.67755, 4.03176, -15.95275, 6.07877, -8.69384, 5.74087, -7.62695, 7.13964, -6.67968, 8.02577, -4.68316, -0.47399, -4.55346, 0.38427, 0, 0, 0, 0, 2.14849, -0.22106, 2.13293, -0.34249, 5.04595, -0.19732, 5.02722, -0.48327, 4.96832, -0.90686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.84704, 18.09848, 0.9876, 10.83139, 1.13604, 10.81651, 0.70605, 7.8688, 1.62707, 7.73147, 1.73333, 7.70813, 0.99792, 26.86416, 2.56958, 26.75918, 5.70086, 26.27221, 6.06182, 26.19052, 3.43426, 18.05331, 4.48699, 17.82098, 6.55249, 17.17025, 6.78759, 17.07772 ]
},
{
"time": 1.6666,
"vertices": [ -11.40875, -5.4895, -11.96728, -4.43563, -12.50543, -2.97656, -5.17926, 0.79125, -5.19641, 1.23937, -5.12054, 1.83795, -1.05358, -0.85638, -1.09997, -0.79544, 0, 0, 0, 0, 2.14849, -0.22106, 2.13293, -0.34249, 5.04595, -0.19732, 5.02722, -0.48327, 4.96832, -0.90686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.84704, 18.09848, 0.9876, 10.83139, 1.13604, 10.81651, 0.70605, 7.8688, 1.62707, 7.73147, 1.73333, 7.70813, 0.99792, 26.86416, 2.56958, 26.75918, 5.70086, 26.27221, 6.06182, 26.19052, 3.43426, 18.05331, 4.48699, 17.82098, 6.55249, 17.17025, 6.78759, 17.07772 ]
},
{
"time": 3.3333,
"offset": 38,
"vertices": [ 6.74823, -16.50396, 8.72424, -15.55084, 10.16183, -14.65106, 11.50552, -13.62121, 13.06921, -12.12854, 13.79342, -11.2987, 0.28558, -13.43176, 1.55831, -13.34448, 3.1614, -13.05761, 3.962, -12.8377, 6.02816, -12.00604, 8.92117, -21.67755, 11.47839, -20.43835, 12.71917, -19.69104, 15.79715, -17.31836, 11.04974, -22.69378, 14.64604, -20.55395, -0.12667, -8.74261, 1.31909, -8.64288, 4.33315, -14.64581 ]
},
{
"time": 4,
"offset": 38,
"vertices": [ -4.87835, -6.3493, -3.53375, -6.16729, -2.07656, -5.24212, -1.24984, -4.92626, 1.15972, -2.30725, 2.78726, -0.47393, -1.62518, -6.8543, -0.72512, -6.88763, 1.47677, -6.42034, 2.86294, -6.07702, 4.816, -5.26611, -6.18374, -12.69323, -2.74426, -10.11511, -0.54742, -8.16381, 2.33957, -6.01544, 2.81048, -11.37103, 6.21891, -9.37091, -0.12667, -8.74261, 1.31909, -8.64288, 4.33315, -14.64581 ]
},
{ "time": 4.6666 }
]
},
"damen/qi01": {
"damen/qi01": [
{ "time": 0 }
]
}
}
}
}
}
}