heiguhuanying.json
192 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
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
{
"skeleton": { "hash": "M4uMbAz8oUWAfJKZshhIi5LqGsw", "spine": "3.4.02", "width": 766.1, "height": 448.66, "images": "" },
"bones": [
{ "name": "root", "scaleX": 0.6, "scaleY": 0.6 },
{ "name": "images/yao", "parent": "root", "x": 46.76, "y": 292 },
{ "name": "images/dangbu", "parent": "images/yao", "length": 50.11, "rotation": -91.84, "x": -12.05, "y": 22.93 },
{ "name": "bone", "parent": "images/dangbu", "length": 37.2, "rotation": -0.64, "x": 50.11 },
{ "name": "bone2", "parent": "bone", "length": 48.5, "rotation": 0.58, "x": 37.2 },
{ "name": "bone3", "parent": "bone2", "length": 51.73, "rotation": 3.69, "x": 48.5 },
{ "name": "images/dangbu2", "parent": "images/dangbu", "length": 36.88, "rotation": 30.65, "x": 5.52, "y": 29.27 },
{ "name": "bone4", "parent": "images/dangbu2", "length": 50.5, "rotation": -21.45, "x": 36.88 },
{ "name": "images/dangbu3", "parent": "images/dangbu", "length": 40.49, "rotation": -26.76, "x": 9.06, "y": -30.42 },
{ "name": "bone5", "parent": "images/dangbu3", "length": 42.13, "rotation": 24.21, "x": 40.49 },
{ "name": "bone6", "parent": "bone5", "length": 45.98, "rotation": 22.83, "x": 42.13 },
{ "name": "images/pifeng02", "parent": "root", "length": 97.56, "rotation": -122.15, "x": 62.39, "y": 498.97 },
{ "name": "bone7", "parent": "images/pifeng02", "length": 84.59, "rotation": 2.01, "x": 97.56 },
{ "name": "bone8", "parent": "bone7", "length": 78.55, "rotation": -2.59, "x": 84.59 },
{ "name": "bone9", "parent": "bone8", "length": 79.29, "rotation": -3.79, "x": 78.55 },
{ "name": "bone10", "parent": "bone9", "length": 76.76, "rotation": -8.47, "x": 79.29 },
{ "name": "bone11", "parent": "bone10", "length": 68.92, "rotation": -6.95, "x": 76.76 },
{ "name": "bone12", "parent": "bone11", "length": 64.8, "rotation": -4.93, "x": 68.92 },
{ "name": "bone13", "parent": "bone12", "length": 69.68, "rotation": -4.81, "x": 64.8 },
{ "name": "bone14", "parent": "bone13", "length": 53.81, "rotation": -13.04, "x": 69.68 },
{ "name": "bone15", "parent": "bone14", "length": 53.24, "rotation": -28.05, "x": 53.81 },
{ "name": "images/pifeng2", "parent": "images/pifeng02", "length": 119.64, "rotation": -35.83, "x": 92.93, "y": -50.29 },
{ "name": "bone16", "parent": "images/pifeng2", "length": 83, "rotation": -7.18, "x": 119.64 },
{ "name": "bone17", "parent": "bone16", "length": 86.55, "rotation": -3.82, "x": 83 },
{ "name": "bone18", "parent": "bone17", "length": 70.83, "rotation": -12.91, "x": 86.55 },
{ "name": "bone19", "parent": "bone18", "length": 71.77, "rotation": -7.55, "x": 70.83 },
{ "name": "bone20", "parent": "bone19", "length": 73.19, "rotation": -11.3, "x": 71.77 },
{ "name": "images/pifeng3", "parent": "images/pifeng02", "length": 195.89, "rotation": 10.22, "x": 56.63, "y": 60.68 },
{ "name": "bone21", "parent": "images/pifeng3", "length": 61.35, "rotation": -0.69, "x": 195.89 },
{ "name": "bone22", "parent": "bone21", "length": 59.18, "rotation": -0.87, "x": 61.35 },
{ "name": "bone23", "parent": "bone22", "length": 73.19, "rotation": 2.72, "x": 59.18 },
{ "name": "bone24", "parent": "bone23", "length": 70.99, "rotation": -0.67, "x": 73.19 },
{ "name": "images/xiong", "parent": "root", "length": 73.31, "rotation": 72.37, "x": 54.88, "y": 383.5 },
{ "name": "images/xianglian", "parent": "images/xiong", "length": 42.56, "rotation": -166.61, "x": 164.36, "y": 19.57 },
{ "name": "bone25", "parent": "images/xianglian", "length": 39.58, "rotation": -2.6, "x": 42.56 },
{ "name": "bone26", "parent": "bone25", "length": 45.9, "rotation": -2.61, "x": 38.91, "y": 0.05 },
{ "name": "bone27", "parent": "bone26", "length": 38.7, "rotation": -3.41, "x": 45.9 },
{ "name": "bone28", "parent": "bone27", "length": 53.09, "rotation": 7.04, "x": 38.7 },
{ "name": "guci", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1262.06, "y": 490.79 },
{ "name": "guci2", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1283.37, "y": 398.42 },
{ "name": "guci3", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1311.8, "y": 320.26 },
{ "name": "guci4", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1333.11, "y": 256.31 },
{ "name": "guci5", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1382.85, "y": 171.04 },
{ "name": "guci6", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1503.41, "y": 171.04 },
{ "name": "guci7", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1575.32, "y": 171.04 },
{ "name": "guci8", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1659.92, "y": 171.04 },
{ "name": "guci9", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1744.52, "y": 171.04 },
{ "name": "guci10", "parent": "root", "length": 100.2, "rotation": 93.57, "x": 1839.69, "y": 171.04 },
{ "name": "images/beigu", "parent": "images/xiong", "rotation": -55.94, "x": 153.03, "y": -52.95 },
{ "name": "images/dun", "parent": "root", "length": 71.12, "rotation": -94.63, "x": -192.29, "y": 346.48 },
{ "name": "images/head", "parent": "root", "length": 98.74, "rotation": 87.77, "x": 106.6, "y": 503.08 },
{ "name": "images/eye", "parent": "images/head", "x": 47, "y": -0.17 },
{ "name": "images/guangxiong", "parent": "images/xiong", "x": 36.1, "y": 18.06 },
{ "name": "images/jizhui", "parent": "images/xiong", "length": 75.67, "rotation": 9.8, "x": -68.08, "y": -18.11 },
{ "name": "images/pijian01", "parent": "images/xiong", "x": 126.65, "y": 27.58 },
{ "name": "images/weapon", "parent": "root", "length": 243.01, "rotation": -7.85, "x": 104.25, "y": 226.93 },
{ "name": "images/youdabi", "parent": "images/xiong", "length": 152.38, "rotation": -174.83, "x": 132.95, "y": -65.58 },
{ "name": "images/youdatui", "parent": "root", "length": 127.58, "rotation": -61.97, "x": 71.89, "y": 275.03 },
{ "name": "images/youjiaojian", "parent": "root", "x": 157.53, "y": 17.31 },
{ "name": "images/youxiaobi", "parent": "images/youdabi", "length": 122.2, "rotation": 17.86, "x": 127.58, "y": -9.68 },
{ "name": "images/youshou02", "parent": "images/youxiaobi", "x": 146.01, "y": -1.42 },
{ "name": "images/youxiaotui", "parent": "root", "length": 151.42, "rotation": -100.36, "x": 148.19, "y": 162.41 },
{ "name": "images/youxiaotui2", "parent": "root", "length": 165.16, "rotation": -104.65, "x": 151.25, "y": 168.15 },
{ "name": "images/zui", "parent": "images/head", "x": -45.56, "y": 2 },
{ "name": "images/zuodatui", "parent": "root", "length": 161.7, "rotation": -104.97, "x": -107.93, "y": 166.04 },
{ "name": "images/zuojiao", "parent": "root", "x": -151.48, "y": 12.58 },
{ "name": "images/zuoxiaobi", "parent": "images/xiong", "length": 154.95, "rotation": 161.08, "x": 73.3, "y": 145.99 },
{ "name": "images/zuoxiaotui", "parent": "root", "length": 122.47, "rotation": -125.34, "x": -24.37, "y": 273.21 },
{ "name": "sankaiEff", "parent": "root", "x": 692.37, "y": 1310.71 },
{ "name": "sansheEff", "parent": "root", "x": 1100.13, "y": 845 },
{ "name": "stoneAll", "parent": "root", "length": 217.85, "rotation": 90, "x": 1064.93, "y": 1036.9 },
{ "name": "stone1", "parent": "stoneAll", "x": 28.24, "y": 141.2 },
{ "name": "stone2", "parent": "stoneAll", "x": 125.06, "y": 104.89 },
{ "name": "stone3", "parent": "stoneAll", "x": 250.13, "y": -4.03 },
{ "name": "stone4", "parent": "stoneAll", "x": 149.27, "y": -108.92 },
{ "name": "stone5", "parent": "stoneAll", "x": 32.27, "y": -137.16 }
],
"slots": [
{ "name": "images/pifeng02", "bone": "images/pifeng3", "color": "ffffff7e", "attachment": "images/pifeng02" },
{ "name": "images/youdabi", "bone": "images/youdabi", "color": "ffffff7b", "attachment": "images/youdabi" },
{ "name": "images/youxiaobi", "bone": "images/youxiaobi", "color": "ffffff7e", "attachment": "images/youxiaobi" },
{ "name": "images/youshou02", "bone": "images/youshou02", "color": "ffffff7a", "attachment": "images/youshou02" },
{ "name": "images/pijian01", "bone": "images/pijian01", "color": "ffffff80", "attachment": "images/pijian01" },
{ "name": "images/youjiaojian", "bone": "images/youjiaojian", "color": "ffffff7d", "attachment": "images/youjiaojian" },
{ "name": "images/weapon", "bone": "images/weapon", "color": "ffffff80", "attachment": "images/weapon" },
{ "name": "images/youdatui", "bone": "images/youdatui", "color": "ffffff80", "attachment": "images/youdatui" },
{ "name": "images/zuoxiaotui", "bone": "images/zuoxiaotui", "color": "ffffff7f", "attachment": "images/zuoxiaotui" },
{ "name": "images/zuodatui", "bone": "images/zuodatui", "color": "ffffff7a", "attachment": "images/zuodatui" },
{ "name": "images/zuojiao", "bone": "images/zuojiao", "color": "ffffff7e", "attachment": "images/zuojiao" },
{
"name": "images/youxiaotui",
"bone": "images/youxiaotui2",
"color": "ffffff7f",
"attachment": "images/youxiaotui",
"blend": "multiply"
},
{ "name": "images/guangxiong", "bone": "images/guangxiong", "color": "ffffff80", "attachment": "images/guangxiong" },
{ "name": "images/jizhui", "bone": "images/jizhui", "color": "ffffff82", "attachment": "images/jizhui" },
{ "name": "images/beigu", "bone": "images/beigu", "color": "ffffff7b", "attachment": "images/beigu" },
{ "name": "images/dangbu", "bone": "images/dangbu3", "color": "ffffff7a", "attachment": "images/dangbu" },
{ "name": "images/yao", "bone": "images/yao", "color": "ffffff7e", "attachment": "images/yao" },
{ "name": "images/xiong", "bone": "images/xiong", "color": "ffffff7c", "attachment": "images/xiong" },
{ "name": "images/xianglian", "bone": "images/xianglian", "color": "ffffff87", "attachment": "images/xianglian" },
{ "name": "images/head", "bone": "images/head", "color": "ffffff80", "attachment": "images/head" },
{ "name": "images/eye", "bone": "images/eye", "attachment": "images/eye" },
{ "name": "images/zui", "bone": "images/zui", "color": "ffffff80", "attachment": "images/zui" },
{ "name": "images/zuoxiaobi", "bone": "images/zuoxiaobi", "color": "ffffff7f", "attachment": "images/zuoxiaobi" },
{ "name": "images/dun", "bone": "images/dun", "color": "ffffff7c", "attachment": "images/dun" },
{ "name": "images/skillDEff0001", "bone": "sankaiEff" },
{ "name": "images/stone001", "bone": "stone1" },
{ "name": "images/stone002", "bone": "stone2" },
{ "name": "images/stone003", "bone": "stone3" },
{ "name": "images/stone004", "bone": "stone4" },
{ "name": "images/stone005", "bone": "stone5" },
{ "name": "images/sanshe0001", "bone": "sansheEff", "color": "1c1c1cff" },
{ "name": "images/ci", "bone": "guci", "color": "0a0a0a7d" },
{ "name": "images/ci2", "bone": "guci2", "color": "0a0a0a82" },
{ "name": "images/ci3", "bone": "guci3", "color": "0a0a0a80" },
{ "name": "images/ci4", "bone": "guci4", "color": "0a0a0a80" },
{ "name": "images/ci5", "bone": "guci5", "color": "0a0a0a7e" },
{ "name": "images/ci6", "bone": "guci6", "color": "0a0a0a7e" },
{ "name": "images/ci7", "bone": "guci7", "color": "0a0a0a7e" },
{ "name": "images/ci8", "bone": "guci8", "color": "0a0a0a7f" },
{ "name": "images/ci9", "bone": "guci9", "color": "0a0a0a79" },
{ "name": "images/ci10", "bone": "guci10", "color": "0a0a0aff" }
],
"skins": {
"default": {
"images/beigu": {
"images/beigu": { "x": -60.57, "y": 110.8, "scaleX": -1, "rotation": -16.42, "width": 372, "height": 247 },
"images/beigu03": { "x": -54.85, "y": 131.04, "rotation": -16.42, "width": 269, "height": 247 }
},
"images/ci": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci10": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci2": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci3": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci4": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci5": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci6": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci7": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci8": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/ci9": {
"images/ci": { "x": 113.16, "y": -6.28, "rotation": -93.57, "width": 80, "height": 336 }
},
"images/dangbu": {
"images/dangbu": {
"type": "mesh",
"uvs": [ 0, 0.06625, 0, 0.165, 0, 0.25065, 0, 0.32677, 0, 0.41615, 0, 0.52996, 0.14451, 0.53474, 0.1505, 0.4726, 0.1592, 0.61381, 0.16307, 0.67658, 0.16847, 0.76421, 0.2104, 0.83592, 0.2703, 0.72597, 0.30045, 0.80035, 0.33619, 0.88851, 0.38439, 0.96327, 0.40807, 1, 0.53386, 1, 0.54873, 0.93336, 0.56264, 0.87101, 0.57579, 0.81202, 0.62372, 0.70206, 0.68961, 0.80724, 0.73947, 0.66131, 0.77946, 0.54431, 0.82738, 0.60167, 0.85758, 0.48336, 0.87377, 0.41992, 0.89327, 0.34352, 1, 0.44869, 1, 0.35559, 1, 0.26416, 1, 0.18508, 1, 0.09015, 0.6357, 0, 0.30025, 0, 0.13253, 0, 0.61977, 0.17745, 0.62288, 0.59108, 0.62206, 0.48141, 0.62137, 0.38989, 0.62064, 0.29266, 0.7453, 0.25367, 0.28405, 0.1707, 0.2722, 0.64937, 0.27494, 0.53854, 0.27702, 0.45485, 0.17195, 0.39402, 0.17914, 0.30418 ],
"triangles": [ 40, 24, 39, 27, 26, 40, 39, 46, 40, 26, 24, 40, 38, 39, 24, 45, 39, 38, 25, 24, 26, 23, 38, 24, 21, 38, 23, 44, 38, 21, 22, 21, 23, 42, 37, 32, 42, 32, 31, 41, 37, 42, 28, 42, 31, 28, 31, 30, 27, 40, 41, 27, 42, 28, 27, 41, 42, 30, 29, 28, 43, 41, 46, 40, 46, 41, 37, 35, 34, 37, 34, 33, 37, 33, 32, 37, 41, 43, 48, 2, 1, 43, 48, 1, 3, 2, 48, 47, 3, 48, 4, 3, 47, 46, 48, 43, 47, 48, 46, 7, 4, 47, 7, 47, 46, 5, 4, 7, 6, 5, 7, 1, 0, 36, 43, 36, 35, 1, 36, 43, 43, 35, 37, 9, 8, 44, 12, 9, 44, 12, 44, 21, 10, 9, 12, 20, 13, 12, 21, 20, 12, 11, 10, 12, 20, 14, 13, 19, 14, 20, 19, 15, 14, 18, 15, 19, 16, 15, 18, 17, 16, 18, 45, 7, 46, 39, 45, 46, 45, 8, 7, 44, 8, 45, 44, 45, 38 ],
"vertices": [ 5, 2, 12.66, 65.35, 0.00298, 6, 24.54, 27.38, 0.88839, 7, -21.5, 20.96999, 0.10859, 8, -39.91, 87.14, 2.0E-5, 9, -37.59, 112.45, 0, 5, 2, 33.18, 66.28, 1.5E-4, 6, 42.66, 17.71999, 0.53984, 7, -1.1, 18.6, 0.45999, 8, -22, 97.2, 1.0E-5, 9, -17.12999, 114.29, 0, 2, 6, 58.38, 9.33, 0.08445, 7, 16.59, 16.54999, 0.91554, 1, 7, 32.32, 14.73, 1, 1, 7, 50.79, 12.59, 1, 2, 4, 21.62, 70.14, 0.00306, 7, 74.3, 9.85999, 0.99693, 4, 3, 60.46, 46.46, 0.01521, 4, 23.73, 46.23, 0.10983, 5, -21.73, 47.73, 0.01183, 7, 72.53, -14.07, 0.86312, 4, 3, 47.61, 44.74, 0.05484, 4, 10.86, 44.64, 0.25316, 5, -34.68, 46.97, 0.03472, 7, 59.57, -13.57, 0.65725, 4, 3, 77.01999, 44.96, 0.00307, 4, 40.27, 44.55, 0.54174, 5, -5.33, 44.99, 0.35388, 7, 88.58, -18.39, 0.10129, 3, 4, 53.34, 44.51, 0.42709, 5, 7.7, 44.11, 0.53011, 7, 101.48, -20.53, 0.04278, 4, 3, 108.34, 45.18, 2.0E-5, 4, 71.58999, 44.46, 0.31972, 5, 25.91, 42.88, 0.6678, 7, 119.48, -23.52, 0.01244, 4, 3, 123.62, 39.07, 3.0E-5, 4, 86.81, 38.2, 0.30472, 5, 40.68999, 35.64, 0.68747, 7, 133.49, -32.15, 0.00776, 3, 4, 64.42, 27.21, 0.28463, 5, 17.64, 26.12, 0.70033, 7, 109.63, -39.39, 0.01502, 3, 4, 80.11, 22.92, 0.03251, 5, 33.02, 20.83, 0.9667, 7, 124.42, -46.15, 7.7E-4, 1, 5, 51.24, 14.57, 1, 3, 4, 114.61, 10.57, 4.0E-5, 5, 66.65, 6.28, 0.99995, 7, 156.48, -63.89, 0, 3, 4, 122.42, 6.99, 5.0E-5, 5, 74.21, 2.21, 0.99994, 7, 163.62, -68.68, 0, 3, 4, 123.38, -13.85, 3.0E-5, 5, 73.83, -18.66, 0.99996, 7, 161.21, -89.42, 0, 4, 4, 109.65, -16.95999, 1.0E-5, 5, 59.93, -20.87, 0.99852, 7, 147.16, -90.27, 0, 10, 114.29, -7.01, 0.00146, 3, 5, 46.92, -22.94, 0.97288, 7, 134.01, -91.07, 0, 10, 101.23, -5.27, 0.02711, 3, 5, 34.61, -24.9, 0.89196, 7, 121.57, -91.83, 0, 10, 88.88, -3.62, 0.10803, 3, 4, 62.17, -31.62, 0.01383, 5, 11.6, -32.43, 0.23964, 10, 64.67, -4.25, 0.74651, 3, 5, 33.27, -43.77, 0.05518, 9, 126.16, 12.24, 0, 10, 82.19, -21.32, 0.94481, 2, 5, 2.77, -51.49, 0.01718, 10, 50.75, -19.98, 0.98281, 3, 7, 62.36, -119, 0, 9, 73.03, -7.51, 0.02709, 10, 25.55, -18.91, 0.9729, 3, 7, 73.3, -128.28, 0, 9, 85.62, -14.36, 0.01732, 10, 34.5, -30.11, 0.98267, 4, 6, 34.09999, -139.05, 0, 7, 48.28, -130.42, 0, 9, 61.56, -21.56, 0.19111, 10, 9.53, -27.41, 0.80888, 5, 6, 21.19, -135.21, 0, 7, 34.86, -131.57, 0, 8, 95.3, -3.22, 0.00651, 9, 48.66, -25.42, 0.50113, 10, -3.84, -25.96, 0.49235, 7, 2, 76.97, -80.17, 0, 3, 27.75, -79.86, 0, 6, 5.65, -130.59, 0, 7, 18.7, -132.96, 0, 8, 83.03, -13.83, 0.06724, 9, 33.12, -30.07, 0.85178, 10, -19.96999, -24.21, 0.08096, 5, 6, 16.62, -156.51, 0, 7, 38.39, -153.08, 0, 8, 110.79, -18.54999, 0.03966, 9, 56.5, -45.75, 0.95084, 10, -4.51, -47.74, 0.00947, 7, 2, 80.28, -97.76, 0, 3, 31.25, -97.41, 0, 6, -0.46, -147.4, 0, 7, 19.16, -150.85, 0, 8, 93.91, -28.05, 0.06983, 9, 37.21, -47.49, 0.9162, 10, -22.96, -41.84999, 0.01394, 7, 2, 61.28, -98.61, 2.0E-5, 3, 12.27, -98.48, 1.0E-5, 6, -17.24, -138.45, 0, 7, 0.27, -148.66, 0, 8, 77.33, -37.37, 0.18582, 9, 18.27, -49.19, 0.80789, 10, -41.08, -36.07, 0.00622, 6, 2, 44.85, -99.36, 9.0E-5, 3, -4.15, -99.41, 2.0E-5, 6, -31.76, -130.71, 0, 7, -16.06, -146.76, 0, 8, 62.99, -45.43, 0.34146, 9, 1.89, -50.66, 0.6584, 6, 2, 25.13, -100.25, 1.9E-4, 3, -23.86, -100.52, 5.0E-5, 6, -49.18, -121.42, 1.0E-5, 7, -35.68, -144.49, 0, 8, 45.78, -55.11, 0.46416, 9, -17.77, -52.43, 0.53557, 2, 6, -37.27, -59.24, 8.0E-5, 8, -0.19, -11.59, 0.99991, 4, 2, 1.15, 14.93, 0.25079, 6, -11.07, -10.1, 0.7492, 7, -40.93, -26.94, 0, 9, -46.85, 61.57, 0, 2, 6, 2.02, 14.45, 0.99996, 8, -41.14, 61.21, 3.0E-5, 3, 2, 40.41, -36.38, 0.06186, 3, -9.29, -36.48, 0.0254, 8, 30.67, 8.8, 0.91272, 1, 10, 42.72, 2.89, 1, 3, 3, 53.85, -33.3, 0.03171, 4, 16.31, -33.47, 0.13572, 10, 21.03, 9.95, 0.83256, 5, 2, 84.57, -34.64, 0.00892, 3, 34.84, -34.25999, 0.20249, 4, -2.7, -34.23, 0.08808, 9, 38.68999, 15.74, 0.4876, 10, 2.93, 15.85, 0.21288, 5, 2, 64.36, -35.43999, 0.04294, 3, 14.64, -35.27, 0.1499, 4, -22.91, -35.04, 0.00727, 8, 51.63, 20.42, 0.05507, 9, 18.53, 14.05, 0.7448, 4, 6, 0.72, -100.12, 0, 7, 2.97, -106.41, 0, 8, 54.7, -1.58, 0.17944, 9, 12.31, -7.27, 0.82055, 4, 2, 36.5, 19.21999, 0.43232, 3, -13.83, 19.07, 0.16027, 6, 21.52, -24.44, 0.25358, 7, -5.35, -28.36, 0.15379, 3, 4, 48.52, 26.15, 0.40904, 5, 1.71, 26.1, 0.56519, 7, 93.77, -37.87, 0.02574, 4, 3, 62.47, 24.89, 0.00921, 4, 25.52, 24.63, 0.71519, 5, -21.34, 26.06, 0.1794, 7, 70.82, -35.66999, 0.09617, 4, 3, 45.11, 23.57, 0.17333, 4, 8.14, 23.49, 0.48024, 5, -38.75, 26.04, 0.02798, 7, 53.49, -34.00999, 0.31842, 5, 2, 82.06, 39.91, 0.00155, 3, 31.49, 40.27, 0.08567, 4, -5.29, 40.32, 0.1021, 5, -51.08, 43.71, 0.00286, 7, 42.93, -15.22, 0.80779, 4, 2, 63.45, 37.87, 0.02385, 3, 12.9, 38.02, 0.19597, 4, -23.9, 38.27, 0.07491, 7, 24.23, -14.26, 0.70525 ],
"hull": 37,
"edges": [ 10, 12, 12, 14, 20, 22, 22, 24, 32, 34, 40, 42, 42, 44, 48, 50, 56, 58, 66, 68, 68, 70, 70, 72, 0, 72, 64, 66, 0, 2, 74, 64, 68, 74, 44, 46, 46, 48, 42, 76, 46, 76, 78, 76, 48, 78, 50, 52, 80, 78, 52, 80, 52, 54, 54, 56, 74, 82, 82, 80, 54, 82, 62, 64, 56, 84, 84, 74, 62, 84, 58, 60, 60, 62, 60, 56, 2, 86, 86, 74, 34, 36, 28, 30, 30, 32, 36, 30, 36, 38, 38, 40, 38, 28, 24, 26, 26, 28, 40, 26, 42, 24, 24, 88, 76, 88, 90, 88, 78, 90, 18, 20, 88, 18, 14, 16, 16, 18, 90, 16, 86, 92, 92, 90, 8, 10, 14, 8, 6, 8, 94, 6, 2, 4, 4, 6, 96, 4 ],
"width": 166,
"height": 208
}
},
"images/dun": {
"images/dun": {
"type": "mesh",
"uvs": [ 0, 0.18776, 0.00364, 0.10617, 0.20108, 0.09038, 0.22208, 0.14302, 0.28509, 0.11144, 0.37331, 0, 0.61696, 0, 0.65544, 0.09038, 0.66317, 0.13512, 0.73038, 0.14565, 0.76399, 0.09564, 0.95303, 0.19566, 0.96143, 0.3141, 1, 0.39306, 1, 0.64836, 0.71778, 1, 0.61197, 1, 0.49513, 1, 0.17587, 0.72206, 0, 0.53255, 0.37971, 0.36863, 0.70956, 0.36424, 0.72737, 0.24196, 0.31381, 0.25892 ],
"triangles": [ 22, 8, 9, 23, 4, 5, 3, 4, 23, 5, 8, 23, 7, 5, 6, 8, 5, 7, 23, 8, 22, 22, 20, 23, 21, 20, 22, 0, 23, 19, 0, 1, 2, 2, 3, 0, 23, 0, 3, 21, 12, 13, 20, 18, 19, 20, 19, 23, 16, 17, 20, 18, 20, 17, 9, 10, 11, 22, 9, 11, 22, 11, 12, 21, 22, 12, 14, 21, 13, 21, 16, 20, 15, 16, 21, 14, 15, 21 ],
"vertices": [ -52.38, 121.9, -84.88, 115.01, -82.14, 64.33, -60.1, 62.91, -69.85, 44.79, -110.42, 14.5, -99.24, -46.6, -61.29, -49.64, -43.02, -48.3, -35.72, -64.39, -54.2, -76.48, -5.48, -116.57, 42.31, -110, 75.69999, -113.89, 177.91, -95.19, 305.73, 1.34, 300.88, 27.89, 295.52, 57.19, 169.59, 116.92, 85.65, 147.15, 37.45, 39.9, 50.83, -43.15, 2.69, -56.58, -9.49, 48.39 ],
"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, 34, 36, 36, 38, 0, 38, 30, 32, 32, 34, 40, 32, 42, 30, 40, 42, 16, 44, 44, 42, 8, 46, 46, 40, 44, 46 ],
"width": 255,
"height": 407
}
},
"images/eye": {
"images/eye": { "x": -1.1, "y": 3, "scaleX": -1, "rotation": -87.77, "width": 98, "height": 71 }
},
"images/guangxiong": {
"images/guangxiong": { "x": -8.68, "y": 2.22, "scaleX": -1, "rotation": -72.37, "width": 187, "height": 162 }
},
"images/head": {
"images/head": { "x": 59.4, "y": 31.21, "scaleX": -1, "rotation": -87.77, "width": 332, "height": 259 },
"images/head02": { "x": 57.72, "y": 51.54, "scaleX": -1, "rotation": -87.77, "width": 295, "height": 260 },
"images/head03": { "x": 60.47, "y": 65.07, "scaleX": -1, "rotation": -89.35, "width": 229, "height": 264 },
"images/head04": { "x": 76.1, "y": 15.42, "scaleX": -1, "rotation": -90, "width": 344, "height": 268 }
},
"images/jizhui": {
"images/jizhui": { "x": 40.18, "y": 1.8, "scaleX": -1, "rotation": -81.02, "width": 44, "height": 112 }
},
"images/pifeng02": {
"images/pifeng02": {
"type": "mesh",
"uvs": [ 0.78655, 1, 0.7361, 1, 0.6768, 1, 0.63282, 0.98066, 0.59299, 0.96315, 0.53512, 0.95839, 0.47871, 0.91852, 0.42737, 0.88223, 0.38578, 0.84185, 0.34157, 0.79893, 0.30575, 0.74645, 0.2855, 0.71677, 0.27173, 0.69659, 0.26944, 0.75039, 0.26775, 0.7899, 0.26574, 0.83701, 0.26302, 0.88153, 0.25992, 0.93218, 0.25577, 1, 0.21187, 0.95839, 0.20034, 0.90714, 0.18992, 0.86081, 0.14602, 0.87033, 0.13649, 0.81411, 0.12745, 0.76073, 0.11875, 0.70937, 0.11103, 0.66379, 0.10611, 0.63471, 0.08914, 0.57748, 0.07335, 0.52419, 0.06191, 0.48561, 0.03627, 0.39909, 0, 0.18727, 0, 0, 0.13205, 0, 0.27372, 0, 0.36551, 0.09683, 0.49322, 0.18251, 0.53753, 0.20539, 0.58545, 0.23013, 0.62691, 0.25153, 0.67884, 0.27038, 0.72558, 0.28735, 0.7646, 0.30151, 0.79186, 0.302, 0.82628, 0.30261, 0.86776, 0.30335, 0.89829, 0.30389, 0.94219, 0.30389, 0.97394, 0.31435, 1, 0.32293, 1, 0.38005, 0.96959, 0.39164, 0.9431, 0.40173, 0.90627, 0.41575, 0.86912, 0.42055, 0.82712, 0.42596, 0.79063, 0.43067, 0.75861, 0.43479, 0.75861, 0.47763, 0.71427, 0.47065, 0.6306, 0.45164, 0.58054, 0.43063, 0.5451, 0.41575, 0.5012, 0.43479, 0.55707, 0.54189, 0.51517, 0.54665, 0.47726, 0.53237, 0.47327, 0.58711, 0.50202, 0.63781, 0.51916, 0.66803, 0.55013, 0.71148, 0.58701, 0.76323, 0.62054, 0.81448, 0.65086, 0.86081, 0.6864, 0.89124, 0.72868, 0.92745, 0.76921, 0.94632, 0.81049, 0.96553, 0.25689, 0.62261, 0.24412, 0.55891, 0.26375, 0.65681, 0.22728, 0.47492, 0.42572, 0.48647, 0.42869, 0.3644, 0.45242, 0.50593, 0.46168, 0.41002, 0.49762, 0.45969, 0.52861, 0.50255, 0.47655, 0.41087 ],
"triangles": [ 16, 21, 15, 20, 21, 16, 17, 20, 16, 19, 20, 17, 18, 19, 17, 24, 25, 13, 14, 24, 13, 23, 24, 14, 14, 21, 23, 15, 21, 14, 22, 23, 21, 27, 80, 79, 26, 27, 79, 26, 79, 81, 25, 26, 81, 25, 81, 12, 13, 25, 12, 28, 29, 82, 80, 28, 82, 27, 28, 80, 32, 82, 31, 34, 82, 32, 30, 31, 82, 29, 30, 82, 49, 50, 51, 52, 48, 49, 52, 49, 51, 53, 48, 52, 53, 54, 47, 53, 47, 48, 54, 55, 46, 54, 46, 47, 55, 56, 45, 55, 45, 46, 57, 43, 44, 56, 57, 44, 56, 44, 45, 58, 43, 57, 58, 42, 43, 61, 41, 42, 60, 61, 42, 58, 60, 42, 60, 58, 59, 38, 39, 89, 63, 89, 39, 63, 39, 40, 62, 63, 40, 62, 40, 41, 64, 89, 63, 61, 62, 41, 84, 36, 37, 84, 37, 38, 84, 89, 86, 38, 89, 84, 87, 89, 64, 86, 89, 87, 83, 84, 86, 87, 64, 88, 34, 36, 82, 82, 36, 84, 1, 76, 77, 0, 77, 78, 1, 77, 0, 2, 3, 75, 76, 2, 75, 2, 76, 1, 5, 6, 73, 74, 5, 73, 4, 5, 74, 4, 74, 75, 3, 4, 75, 72, 7, 71, 6, 7, 72, 73, 6, 72, 70, 9, 10, 70, 10, 69, 8, 9, 70, 71, 8, 70, 7, 8, 71, 88, 67, 87, 66, 67, 88, 66, 88, 65, 68, 85, 67, 81, 79, 83, 12, 81, 83, 12, 68, 11, 83, 68, 12, 85, 68, 83, 10, 11, 68, 69, 10, 68, 83, 82, 84, 85, 83, 86, 64, 65, 88, 87, 85, 86, 67, 85, 87, 80, 82, 83, 79, 80, 83, 32, 33, 34, 34, 35, 36 ],
"vertices": [ 3, 20, 40.48, 16.45, 1, 22, 386.38, 285.88, 0, 25, 7.61, 345.79, 0, 5, 18, 136.78, -6.74, 0.0012, 19, 66.87999, 8.57, 0.29807, 20, 7.49, 13.71, 0.70071, 22, 355.88, 298.75, 0, 25, -25.46, 344.98, 0, 4, 19, 31.16, 23.96, 0.99867, 20, -31.26, 10.49, 0.00132, 22, 320.05, 313.87, 0, 25, -64.35, 344.02, 0, 4, 18, 75.91, 24.85, 0.4718, 19, 0.45, 25.61, 0.52819, 22, 289.33, 315.29, 0, 25, -92.93, 332.68, 0, 5, 17, 116.53, 28.34, 0.04766, 18, 49.17, 32.58, 0.81339, 19, -27.34, 27.11, 0.13894, 22, 261.52, 316.58, 0, 25, -118.81, 322.41, 0, 5, 16, 159.25, 43.75, 2.0E-4, 17, 86.23, 51.36, 0.34906, 18, 17.04, 52.98, 0.65072, 22, 225.52, 328.92, 0, 25, -156.7, 318.86, 0, 5, 16, 117.79, 55.21, 0.11077, 17, 43.93, 59.21, 0.6664, 18, -25.76, 57.25, 0.22281, 22, 182.9, 323.11, 0, 25, -193.16, 296.03, 0, 8, 15, 164.18, 55.46, 0.01407, 16, 80.06, 65.64, 0.42592, 17, 5.44, 66.35, 0.53241, 18, -64.71, 61.14, 0.025, 22, 144.11, 317.82, 0, 25, -226.33, 275.25, 0, 29, 186.07, -121.29, 0.00224, 30, 120.97, -127.19, 3.2E-4, 7, 15, 130.03, 63.92, 0.11817, 16, 45.13, 69.9, 0.63344, 17, -29.71, 67.58999, 0.23112, 22, 110.34, 307.96, 0, 25, -253.06, 252.38, 0, 29, 157.4, -100.91, 0.01302, 30, 93.3, -105.47, 0.00422, 7, 15, 93.73, 72.91, 0.34906, 16, 8.02, 74.43, 0.53929, 17, -67.08, 68.91, 0.0458, 22, 74.44, 297.49, 0, 25, -281.48, 228.06, 0, 29, 126.92, -79.24, 0.04656, 30, 63.88, -82.37, 0.01926, 8, 14, 146.17, 65.19999, 0.02172, 15, 56.54, 74.33999, 0.51419, 16, -29.07, 71.33999, 0.26451, 17, -103.77, 62.65, 0.00214, 22, 41.57, 280.03, 0, 25, -304.26, 198.63, 0, 29, 92.84, -64.28, 0.13237, 30, 30.55, -65.81, 0.06502, 7, 14, 125.49, 69.08999, 0.05891, 15, 35.50999, 75.15, 0.45696, 16, -50.04, 69.6, 0.12, 22, 22.98, 270.16, 0, 25, -317.14, 181.98, 0, 29, 73.57, -55.82, 0.23279, 30, 11.71, -56.44, 0.13132, 7, 14, 111.43, 71.74, 0.08567, 15, 21.21, 75.69, 0.30401, 16, -64.3, 68.41, 0.04314, 22, 10.35, 263.45, 0, 25, -325.89, 170.67, 0, 29, 60.46, -50.07, 0.34687, 30, -1.1, -50.07, 0.22028, 8, 14, 136.72, 87.17, 0.02016, 15, 43.95, 94.68, 0.08273, 16, -44.02, 90.01, 0.00752, 22, 20.45999, 291.29, 0, 25, -328.13, 200.21, 0, 29, 88.58, -40.74, 0.17495, 30, 27.42, -42.09, 0.69225, 31, -45.27, -42.63, 0.02237, 8, 14, 155.29, 98.5, 0.00455, 15, 60.65, 108.62, 0.0248, 16, -29.13, 105.87, 0.0012, 22, 27.9, 311.74, 0, 25, -329.76, 221.9, 0, 29, 109.23, -33.89, 0.03364, 30, 48.37, -36.23, 0.7983, 31, -24.39, -36.52, 0.13749, 6, 14, 177.44, 112.02, 0, 15, 80.57, 125.25, 0.00296, 22, 36.75999, 336.13, 0, 25, -331.72, 247.78, 0, 30, 73.36, -29.24, 0.54816, 31, 0.51, -29.24, 0.44885, 4, 22, 44.63, 359.38, 0, 25, -334.11, 272.21, 0, 30, 96.85, -22.11, 0.18762, 31, 23.91, -21.83, 0.81237, 3, 22, 53.59, 385.83, 0, 25, -336.83, 300.01, 0, 31, 50.54, -13.39, 1, 3, 22, 65.58, 421.26, 0, 30, 159.36, -3.12, 7.0E-4, 31, 86.19, -2.09999, 0.99929, 3, 22, 30.15, 411.37, 0, 25, -368.69, 313.65, 0, 31, 57.27, 20.6, 1, 3, 22, 12.22, 388.34, 0, 30, 101.54, 21.09, 0.09346, 31, 28.09, 21.43, 0.90653, 4, 22, -3.97, 367.53, 0, 29, 133.23, 25.7, 0.00981, 30, 75.18, 22.15, 0.54849, 31, 1.72, 22.17, 0.44168, 4, 22, -28.47, 383.55, 0, 29, 130.61, 54.86, 0.06029, 30, 73.94999, 51.4, 0.66347, 31, 0.14, 51.4, 0.27623, 4, 22, -46.25, 357.48, 0, 29, 99.13, 52.64, 0.16038, 30, 42.41, 50.68, 0.73641, 31, -31.38, 50.32, 0.10319, 4, 22, -63.13, 332.74, 0, 29, 69.26, 50.54, 0.44713, 30, 12.46, 50, 0.54184, 31, -61.31, 49.29, 0.01101, 6, 21, 79.53, 316.44, 0, 22, -79.37, 308.94, 0, 27, 299.08, 46.65, 0.0041, 28, 102.61, 47.89, 0.05122, 29, 40.50999, 48.52, 0.70773, 30, -16.33, 49.35, 0.23693, 6, 21, 62.58, 297.28, 0, 22, -93.78, 287.81, 0, 27, 273.52, 45.56, 0.02432, 28, 77.07, 46.49, 0.28583, 29, 15, 46.72, 0.60827, 30, -41.91, 48.77, 0.08156, 6, 21, 51.78, 285.06, 0, 22, -102.97, 274.33, 0, 27, 257.22, 44.86, 0.05556, 28, 60.78, 45.59, 0.45686, 29, -1.26, 45.58, 0.45791, 30, -58.22, 48.4, 0.02965, 6, 21, 26.38, 263.39, 0, 22, -125.47, 249.66, 0, 27, 223.99, 48.11, 0.22298, 28, 27.52, 48.45, 0.65218, 29, -34.57, 47.92, 0.12202, 30, -91.37, 52.33, 0.0028, 6, 21, 2.72, 243.21, 0, 22, -146.41, 226.68, 0, 25, -453.66, 72.67, 0, 27, 193.05, 51.14, 0.51061, 28, -3.45, 51.11, 0.48402, 29, -65.58, 50.11, 0.00535, 5, 21, -14.39, 228.61, 0, 22, -161.57, 210.05, 0, 25, -460.64, 51.28, 0, 27, 170.65, 53.34, 0.70846, 28, -25.87, 53.03, 0.29152, 5, 21, -52.79, 195.85, 1.0E-5, 22, -195.57, 172.75, 0, 25, -476.29, 3.3, 0, 27, 120.43, 58.26, 0.97341, 28, -76.15, 57.34, 0.02657, 3, 21, -131.75, 106.95, 0.0062, 22, -262.79, 74.67, 0, 27, 1.62, 53.42, 0.99379, 4, 11, -45.27, 71.49, 0.73844, 21, -183.35, 17.79999, 0.09267, 22, -302.84, -20.21999, 1.0E-5, 27, -98.37, 28.72, 0.16886, 4, 11, -9.89999, -7.58, 0.8798, 21, -108.38, -25.59, 0.10268, 22, -223.03, -53.9, 0, 27, -77.58999, -55.37, 0.01751, 3, 11, 28.03, -92.42, 0.60663, 21, -27.94, -72.15, 0.39336, 25, -315.17, -212.3, 0, 5, 11, 101.24, -125.64, 0.00646, 21, 50.84, -56.22, 0.94215, 22, -61.21, -64.37999, 0.04774, 25, -256.28, -157.58, 0, 27, 10.83, -191.28, 0.00364, 4, 21, 146.96, -57.4, 0.21128, 22, 34.28, -53.54, 0.70258, 23, -45.03, -56.66, 0.08607, 27, 76.67, -261.31, 5.0E-5, 3, 21, 178.41, -61.08, 0.06039, 22, 65.94999, -53.25, 0.61543, 23, -13.45, -54.26, 0.32416, 4, 21, 212.44, -65.05, 0.00926, 22, 100.2, -52.93, 0.30722, 23, 20.69, -51.67, 0.66555, 24, -52.64, -65.08, 0.01796, 5, 16, -79.12, -269.2, 0, 21, 241.88, -68.49, 0.00206, 22, 129.84, -52.66, 0.10559, 23, 50.25, -49.42, 0.72232, 24, -24.33, -56.28, 0.17001, 4, 16, -48.03, -286.55, 0, 22, 165.26, -56.35, 0.00166, 23, 85.83, -50.74, 0.44417, 24, 10.63, -49.62, 0.55415, 5, 14, 55.52, -297.27, 0, 16, -20.04, -302.18, 0, 23, 117.86, -51.93, 0.10194, 24, 42.12, -43.62, 0.76203, 25, -22.72, -47.02, 0.13602, 4, 23, 144.59, -52.93, 0.00139, 24, 68.4, -38.62, 0.50377, 25, 2.66, -38.59999, 0.49465, 26, -60.19, -51.41, 1.7E-4, 7, 13, 139.76, -336.44, 0, 14, 83.33, -331.65, 0, 16, 15.9, -327.92, 0, 22, 240.33, -69.16, 0, 24, 86.21, -40.27, 0.23476, 25, 20.53, -37.9, 0.73525, 26, -42.8, -47.21, 0.02997, 3, 24, 108.7, -42.35, 0.03622, 25, 43.1, -37, 0.80138, 26, -20.85, -41.91, 0.16237, 3, 14, 107.72, -375.06, 0, 25, 70.29, -35.93, 0.4966, 26, 5.59, -35.52, 0.50339, 3, 14, 117.54, -392.52, 0, 25, 90.31, -35.14, 0.22689, 26, 25.06, -30.82, 0.7731, 4, 13, 181.89, -425.61, 0, 14, 131.27, -417.84, 0, 16, 85.03, -398.26, 0, 26, 53.15, -24.48, 1, 4, 13, 195.81, -442.13, 0, 14, 146.25, -433.4, 0, 16, 103.61, -409.28, 0, 26, 72.19999, -14.29, 1, 4, 13, 207.24, -455.69, 0, 14, 158.55, -446.18, 0, 16, 118.87, -418.32, 0, 26, 87.84, -5.92, 1, 2, 14, 186.17, -431.2, 0, 26, 80.92, 24.72, 1, 2, 14, 182.26, -410.63, 0, 26, 60.06, 26.54, 1, 3, 14, 178.85, -392.71, 0, 25, 118.37, 19.36, 0.02602, 26, 41.89, 28.13, 0.97397, 6, 13, 227.95, -378.51, 0, 14, 174.11, -367.79, 0, 16, 113.02, -338.62, 0, 22, 333.8, -40.7, 0, 25, 94.03, 26.48, 0.25389, 26, 16.62, 30.34, 0.74609, 5, 13, 220.17, -355.26, 0, 16, 98.02, -319.23, 0, 22, 312.37, -28.8, 1.0E-5, 25, 69.6, 28.52, 0.57136, 26, -7.72, 27.54, 0.42862, 6, 13, 211.37, -328.98, 0, 16, 81.06, -297.32, 0, 22, 288.15, -15.34, 5.0E-5, 24, 116.51, 25.03, 0.03114, 25, 41.98, 30.82, 0.8946, 26, -35.25, 24.38, 0.07419, 6, 13, 203.73, -306.15, 0, 14, 145.15, -297.2, 0, 16, 66.33, -278.27, 0, 22, 267.1, -3.65, 1.9E-4, 24, 92.98, 30.17, 0.3093, 25, 17.99, 32.82, 0.69048, 6, 13, 197.02, -286.12, 2.0E-5, 14, 137.14, -277.65, 0, 16, 53.4, -261.56, 0, 22, 248.63, 6.6, 4.7E-4, 24, 72.35, 34.66999, 0.66523, 25, -3.06, 34.57, 0.33425, 8, 13, 218.43, -276.28, 4.0E-5, 14, 157.85, -266.42, 4.0E-5, 15, 116.94, -251.94, 2.0E-5, 16, 70.37999, -245.22, 0, 22, 257.79, 28.31, 8.9E-4, 23, 172.51, 39.9, 0.00309, 24, 74.87, 58.1, 0.75943, 25, -3.63, 58.13, 0.23647, 6, 13, 202.79, -251.45, 4.0E-5, 16, 47.44, -226.93, 0, 22, 229.49, 36.08, 9.9E-4, 23, 143.76, 45.77, 0.0352, 24, 45.53, 57.39, 0.86269, 25, -32.62, 53.57, 0.10106, 6, 13, 170.37, -205.95, 7.0E-5, 14, 105.24, -199.42, 0.00397, 15, 55.04, -193.42, 0.0028, 22, 174.86, 47.79, 2.1E-4, 23, 88.47, 53.8, 0.47214, 24, -10.14999, 52.87, 0.52079, 8, 13, 146.16, -180.94, 0.00425, 14, 79.43, -176.07, 0.03111, 15, 26.07, -174.12, 0.0211, 16, -29.24, -178.98, 5.0E-5, 22, 140.12, 49.91, 0.0589, 23, 53.66, 53.61, 0.7125, 24, -44.03, 44.9, 0.17204, 25, -119.78, 29.41, 0, 8, 13, 129.02, -163.23, 0.01561, 14, 61.15, -159.53, 0.08906, 15, 5.55, -160.46, 0.06053, 16, -51.25, -167.9, 0.00102, 22, 115.51, 51.41, 0.19263, 23, 29.01, 53.46, 0.61886, 24, -68.01999, 39.25, 0.02223, 25, -142.82, 20.66, 0, 7, 13, 126.51, -132.69, 0.04297, 14, 56.63, -129.22, 0.23743, 15, -3.38, -131.15, 0.17133, 16, -63.67, -139.89, 0.00704, 22, 93.05, 72.26, 0.28239, 23, 5.21, 72.76999, 0.2588, 25, -171.87, 30.42, 0, 9, 13, 195.34, -141.39, 0.01516, 14, 125.88, -133.36, 0.30835, 15, 65.72, -125.04, 0.35805, 16, 4.17999, -125.45, 0.02428, 21, 282.23, 92.67, 3.5E-4, 22, 149.73, 112.28, 0.1748, 23, 59.09, 116.47, 0.11842, 24, -52.79, 107.39, 5.5E-4, 25, -136.67, 90.21, 0, 9, 13, 186.24, -115.32, 0.02069, 14, 115.08, -107.94, 0.29771, 15, 51.29, -101.49, 0.3312, 16, -12.99, -103.83, 0.02502, 21, 259.75, 108.7, 9.0E-5, 22, 125.42, 125.38, 0.18873, 23, 33.96, 127.92, 0.13631, 24, -79.83999, 112.94, 2.1E-4, 25, -164.22, 92.15, 0, 7, 13, 168.72, -96, 0.02477, 14, 96.31, -89.83, 0.29066, 15, 30.06, -86.34, 0.36414, 16, -35.89, -91.36, 0.05319, 22, 99.45, 127.81, 0.16207, 23, 7.89, 128.62, 0.10513, 25, -188.89, 83.69, 0, 8, 13, 194.98, -81.05, 0.00503, 14, 121.53, -73.17, 0.16267, 15, 52.55, -66.15, 0.51638, 16, -16.02, -68.58999, 0.20832, 17, -78.72, -75.65, 5.9E-4, 22, 108.74, 156.57, 0.0659, 23, 15.24, 157.93, 0.04107, 25, -192.25, 113.72, 0, 8, 13, 228.19, -86.55, 8.0E-5, 14, 155.03, -76.46, 0.03453, 15, 86.17, -64.46, 0.34512, 16, 17.14, -62.85, 0.5299, 17, -46.17, -67.07, 0.05913, 22, 136.96, 174.92, 0.01906, 23, 42.17, 178.13, 0.01215, 25, -174.08, 142.06, 0, 7, 14, 175.01, -78.42, 0.00754, 15, 106.22, -63.46, 0.18744, 16, 36.91999, -59.43, 0.61593, 17, -26.76, -61.96, 0.17697, 22, 153.79, 185.86, 0.00726, 23, 58.23, 190.17, 0.00482, 25, -163.24, 158.95, 0, 7, 15, 137.53, -65.33, 0.03049, 16, 68.22, -57.49, 0.46533, 17, 4.25, -57.34, 0.49961, 18, -55.52, -62.22, 0.00302, 22, 181.79, 199.98, 8.5E-4, 23, 85.23, 206.12, 6.8E-4, 25, -143.52, 183.34, 0, 3, 16, 105.51, -55.19, 0.10653, 17, 41.2, -51.84, 0.74046, 18, -19.17, -53.63, 0.153, 3, 17, 76.31, -45.1, 0.41856, 18, 15.25, -43.98, 0.56081, 19, -43.1, -55.13, 0.02061, 4, 17, 108.06, -39.00999, 0.04105, 18, 46.37, -35.24, 0.7694, 19, -14.75, -39.59, 0.18954, 22, 274.61, 249.96, 0, 4, 18, 75.07, -35.58, 0.35377, 19, 13.27, -33.45, 0.63427, 20, -20.03, -48.59, 0.01195, 22, 302.59, 256.32, 0, 4, 18, 109.21, -35.99, 4.0E-5, 19, 46.63, -26.13, 0.60834, 20, 5.95, -26.44, 0.39159, 22, 335.89, 263.88, 0, 3, 19, 75.15, -27.13, 0.01091, 20, 31.59, -13.9, 0.98908, 22, 364.42, 263.1, 0, 3, 20, 57.7, -1.12, 1, 22, 393.48, 262.31, 0, 25, 23.78, 327.23, 0, 5, 14, 71.01999, 60.9, 0.34933, 15, -17.15, 59.01, 0.3552, 28, 79.22, -51.81, 0.0468, 29, 18.65, -51.53, 0.21497, 30, -42.93, -49.54, 0.03368, 7, 13, 118.12, 49.05, 0.03692, 14, 36.23, 51.56, 0.29574, 15, -50.19, 44.65, 0.0507, 22, -35.77, 200.72, 0, 25, -342.14, 94.52, 0, 28, 43.2, -52.51, 0.37259, 29, -17.34, -52.78, 0.24401, 7, 14, 89.7, 65.91, 0.08567, 15, 0.57, 66.72, 0.30401, 16, -83.69999, 57.01, 0.04314, 22, -2.97, 245.32, 0, 25, -330.59, 148.66, 0, 29, 37.98, -50.85, 0.34687, 30, -23.6, -49.79, 0.22028, 5, 13, 71.51999, 39.8, 0.43621, 14, -9.64, 39.25, 0.25024, 27, 190.96, -53.38, 0.13486, 28, -4.28, -53.43, 0.17842, 29, -64.81, -54.43, 2.3E-4, 8, 13, 131.66, -75.82, 0.05313, 14, 58, -72.15, 0.36078, 15, -10.43, -74.49, 0.2725, 16, -77.53, -84.5, 0.01821, 21, 192.38, 109.45, 0.0011, 22, 58.48, 117.69, 0.19704, 23, -32.3, 115.8, 0.0972, 25, -222.07, 57.62, 0, 8, 13, 71.46, -105.63, 0.10716, 14, -0.08, -105.86, 0.21656, 15, -62.91, -116.4, 0.07709, 16, -124.56, -132.46, 4.3E-4, 21, 160.43, 50.37, 0.02633, 22, 34.16999, 55.08, 0.47197, 23, -52.39, 51.7, 0.10042, 25, -218.47, -9.43999, 0, 8, 13, 148.69, -87.27, 0.05313, 14, 75.76, -82.44, 0.36078, 15, 8.64, -82.06, 0.2725, 16, -57.67, -89.7, 0.01821, 21, 212.9, 109.94, 0.0011, 22, 78.78, 120.74, 0.19704, 23, -12.25, 120.19, 0.0972, 25, -204.82, 68.75, 0, 8, 13, 103.3, -114.82, 0.08715, 14, 32.29, -112.93, 0.31682, 15, -29.85, -118.62, 0.16154, 16, -91.47, -130.66, 0.00485, 21, 191.74, 61.24, 0.0072, 22, 63.87, 69.78, 0.29995, 23, -23.73, 68.35, 0.12245, 25, -197.45, 16.16, 0, 7, 13, 137.97, -124.83, 0.04297, 14, 67.54, -120.62, 0.23743, 15, 6.14, -121.04, 0.17133, 16, -55.44, -128.7, 0.00704, 22, 96.21, 85.79, 0.28239, 23, 7.46, 86.48, 0.2588, 25, -174.55, 44.05, 0, 7, 13, 167.88, -133.46, 0.02639, 14, 97.96, -127.26, 0.29064, 15, 37.2, -123.12, 0.30592, 16, -24.35, -127.01, 0.02506, 22, 124.11, 99.6, 0.20124, 23, 34.37, 102.12, 0.15071, 25, -154.8, 68.12, 0, 7, 13, 107.8, -123.49, 0.04297, 14, 37.34999, -121.28, 0.23743, 15, -23.61, -126.14, 0.17133, 16, -84.37, -137.36, 0.00704, 22, 73.04, 66.42, 0.28239, 23, -14.36, 65.61, 0.2588, 25, -187.71, 16.87, 0 ],
"hull": 79,
"edges": [ 8, 10, 36, 38, 42, 44, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 94, 96, 100, 102, 116, 118, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 0, 156, 38, 40, 40, 42, 34, 36, 40, 34, 30, 32, 32, 34, 42, 32, 44, 46, 28, 30, 46, 28, 46, 48, 24, 26, 26, 28, 48, 26, 48, 50, 50, 24, 54, 158, 54, 56, 160, 158, 56, 160, 50, 52, 52, 54, 24, 162, 162, 158, 52, 162, 56, 58, 58, 60, 60, 62, 68, 164, 164, 160, 60, 164, 24, 166, 166, 168, 172, 168, 170, 172, 174, 172, 134, 174, 130, 176, 176, 174, 132, 176, 168, 74, 128, 178, 178, 168, 74, 76, 178, 76, 76, 78, 78, 80, 126, 78, 124, 126, 124, 80, 122, 124, 80, 82, 122, 82, 82, 84, 84, 86, 118, 120, 120, 84, 120, 122, 114, 116, 86, 88, 114, 88, 112, 114, 88, 90, 112, 90, 108, 110, 110, 112, 90, 92, 92, 94, 110, 92, 106, 108, 106, 96, 102, 104, 104, 106, 96, 98, 98, 100, 104, 98, 18, 20, 136, 138, 138, 140, 20, 138, 20, 22, 22, 24, 22, 136, 14, 16, 16, 18, 140, 142, 142, 144, 16, 142, 10, 12, 12, 14, 144, 146, 146, 148, 12, 146, 4, 6, 6, 8, 148, 150, 150, 152, 6, 150, 0, 2, 2, 4, 152, 154, 154, 156, 2, 154 ],
"width": 656,
"height": 550
}
},
"images/pijian01": {
"images/pijian01": { "x": -16.78, "y": 5.51, "scaleX": -1, "rotation": -72.37, "width": 307, "height": 96 }
},
"images/sanshe0001": {
"images/sanshe0001": { "width": 219, "height": 206 },
"images/sanshe0002": { "width": 219, "height": 206 },
"images/sanshe0003": { "width": 219, "height": 206 },
"images/sanshe0004": { "width": 219, "height": 206 },
"images/sanshe0005": { "width": 219, "height": 206 },
"images/sanshe0006": { "width": 219, "height": 206 },
"images/sanshe0007": { "width": 219, "height": 206 },
"images/sanshe0008": { "width": 219, "height": 206 },
"images/sanshe0009": { "width": 219, "height": 206 },
"images/sanshe0010": { "width": 219, "height": 206 }
},
"images/skillDEff0001": {
"images/skillDEff0001": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0002": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0003": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0004": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0005": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0006": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0007": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0008": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0009": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0010": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0011": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 },
"images/skillDEff0012": { "x": 6.28, "y": 75.43, "width": 312, "height": 168 }
},
"images/stone001": {
"images/stone001": { "rotation": -90, "width": 53, "height": 54 }
},
"images/stone002": {
"images/stone002": { "rotation": -90, "width": 22, "height": 27 }
},
"images/stone003": {
"images/stone003": { "rotation": -90, "width": 26, "height": 43 }
},
"images/stone004": {
"images/stone004": { "rotation": -90, "width": 26, "height": 43 }
},
"images/stone005": {
"images/stone005": { "rotation": -90, "width": 40, "height": 40 }
},
"images/weapon": {
"images/weapon": { "x": 37.93, "y": -4.43, "scaleX": -1, "rotation": 90.34, "width": 175, "height": 1195 },
"images/weapon02": { "x": 37.93, "y": -4.43, "scaleX": -1, "rotation": 90.34, "width": 175, "height": 1195 },
"images/weapon03": { "x": 37.93, "y": -4.43, "scaleX": -1, "rotation": 90.34, "width": 175, "height": 1195 }
},
"images/xianglian": {
"images/xianglian": {
"type": "mesh",
"uvs": [ 0, 0.13676, 0, 0.26894, 0, 0.40721, 0.04619, 0.54243, 0.10976, 0.61275, 0.1824, 0.71011, 0.26413, 0.76961, 0.35494, 0.85616, 0.39126, 0.9427, 0.49115, 1, 0.65461, 1, 0.79082, 1, 0.85439, 0.9427, 0.88163, 0.86698, 0.85439, 0.79125, 0.89071, 0.67766, 0.94519, 0.55325, 0.97244, 0.44507, 1, 0.33148, 1, 0.21308, 1, 0.14217, 1, 0.02317, 0.81806, 0, 0.46391, 0, 0.27321, 0, 0.12792, 0.06103, 0.55796, 0.5514, 0.498, 0.19986, 0.51722, 0.31253, 0.48183, 0.10507, 0.54179, 0.4566, 0.49087, 0.65211, 0.42977, 0.74383 ],
"triangles": [ 7, 6, 32, 8, 7, 32, 12, 14, 13, 10, 32, 31, 32, 10, 9, 9, 8, 32, 14, 10, 31, 14, 11, 10, 12, 11, 14, 31, 4, 26, 15, 26, 16, 5, 4, 31, 31, 6, 5, 32, 6, 31, 14, 26, 15, 31, 26, 14, 30, 28, 17, 30, 3, 28, 16, 26, 30, 4, 3, 30, 17, 16, 30, 26, 4, 30, 27, 20, 19, 28, 27, 19, 28, 19, 18, 28, 2, 1, 28, 1, 27, 17, 28, 18, 3, 2, 28, 29, 23, 22, 25, 29, 0, 24, 29, 25, 23, 29, 24, 22, 21, 20, 29, 22, 20, 27, 29, 20, 27, 1, 0, 27, 0, 29 ],
"vertices": [ 3, 33, 29.47, 65.69999, 0.58305, 34, -16.04999, 65.04, 0.34001, 35, -57.88, 62.4, 0.07693, 4, 33, 59.86, 66.62999, 0.28286, 34, 14.25, 67.35, 0.46153, 35, -27.71, 66.1, 0.24677, 36, -77.41, 61.6, 0.00882, 4, 33, 91.64, 67.61, 0.06449, 34, 45.96, 69.76999, 0.33921, 35, 3.85, 69.96, 0.5156, 36, -46.13, 67.33, 0.08067, 5, 33, 122.93, 62.23, 0.00427, 34, 77.44999, 65.82, 0.13386, 35, 35.49, 67.46, 0.59151, 36, -14.4, 66.72, 0.25723, 37, -44.51, 72.73, 0.0131, 4, 34, 94.24, 58.37, 0.05383, 35, 52.6, 60.78, 0.48549, 36, 3.07, 61.07, 0.40426, 37, -27.86, 64.98, 0.05639, 4, 34, 117.33, 50.15, 0.00617, 35, 76.04, 53.62, 0.25277, 36, 26.89, 55.32, 0.52833, 37, -4.92, 56.35, 0.21271, 4, 34, 131.82, 40.02, 1.4E-4, 35, 90.98, 44.17, 0.10985, 36, 42.37, 46.78, 0.44648, 37, 9.38, 45.97, 0.44352, 3, 35, 112.25, 34.24, 0.01362, 36, 64.19999, 38.13, 0.13258, 37, 29.98, 34.71, 0.85379, 2, 36, 84.67, 36.83, 0.00898, 37, 50.14, 30.91, 0.99101, 2, 35, 147.36, 19.74, 2.0E-5, 37, 64.1, 18.01, 0.99997, 2, 35, 150.08, -2.48, 0, 37, 65.4, -4.33, 0.99999, 2, 35, 152.35, -21, 0, 37, 66.49, -22.96, 0.99999, 2, 35, 140.33, -31.25, 0, 37, 53.84, -32.41999, 0.99999, 3, 35, 123.49, -37.07, 0, 36, 79.66, -32.38, 0.024, 37, 36.66999, -37.16999, 0.97599, 2, 36, 61.86, -31.85, 0.17855, 37, 19.07, -34.46, 0.82144, 4, 34, 117.26, -47.17, 0.00232, 35, 80.42, -43.59, 0.05637, 36, 37.06, -41.46, 0.61211, 37, -6.71, -40.95, 0.32917, 5, 33, 129.18, -60.79, 0.00201, 34, 89.3, -56.79, 0.06406, 35, 52.93, -54.48, 0.34536, 36, 10.26, -53.97, 0.54597, 37, -34.84, -50.07, 0.04257, 5, 33, 104.43, -65.28, 0.03382, 34, 64.76999, -62.4, 0.23015, 35, 28.68, -61.21, 0.47418, 36, -13.53, -62.13, 0.26106, 37, -59.46, -55.25, 7.5E-4, 4, 33, 78.43, -69.85, 0.1433, 34, 39.00999, -68.15, 0.43227, 35, 3.21, -68.12999, 0.34491, 36, -38.55, -70.55, 0.07949, 4, 33, 51.21, -70.69, 0.36002, 34, 11.85, -70.22, 0.48013, 35, -23.81, -71.44, 0.14673, 36, -65.33, -75.46, 0.0131, 4, 33, 34.91, -71.19, 0.51145, 34, -4.4, -71.46, 0.41929, 35, -40, -73.42, 0.0669, 36, -81.37999, -78.41, 0.00235, 3, 33, 7.55, -72.01999, 0.65043, 34, -31.69, -73.54, 0.33308, 35, -67.16, -76.75, 0.01647, 3, 33, 1.46, -47.27, 0.72957, 34, -38.9, -49.09, 0.26503, 35, -75.48, -52.66, 0.00539, 1, 33, -0.01, 1.21, 1, 2, 33, -0.82, 27.32, 0.97903, 34, -44.57, 25.32, 0.02096, 3, 33, 12.6, 47.65, 0.80438, 34, -32.09, 46.24, 0.17508, 35, -73.04, 42.89, 0.02053, 2, 35, 46.06, -1.87, 0.5, 36, 0.27, -1.86, 0.5, 2, 33, 46.07, -2.04, 0.5, 34, 3.6, -1.88, 0.5, 1, 34, 29.63, -2.53, 1, 1, 33, 24.21, -0.49, 1, 1, 35, 24.15, -2.33, 1, 3, 35, 67.93, 10.05, 0.03261, 36, 21.39, 11.35, 0.91699, 37, -15.77, 13.39, 0.05039, 3, 35, 87.86, 20.93, 0.03632, 36, 40.64, 23.39, 0.40293, 37, 4.79, 22.97, 0.56074 ],
"hull": 26,
"edges": [ 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, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 0, 50, 28, 52, 0, 2, 2, 4, 54, 2, 56, 54, 56, 4, 46, 58, 58, 54, 58, 0, 52, 60, 60, 56, 60, 6, 52, 8, 62, 52, 62, 10, 14, 64, 64, 62, 64, 12, 58, 40, 36, 38, 38, 40, 54, 38, 56, 36, 60, 34, 52, 32, 52, 30, 28, 62 ],
"width": 137,
"height": 230
}
},
"images/xiong": {
"images/xiong": { "x": 51.05, "y": 5.48, "scaleX": -1, "rotation": -72.37, "width": 239, "height": 153 },
"images/xiong02": { "x": 40.22, "y": 13.95, "scaleX": -1, "rotation": -75.71, "width": 194, "height": 162 }
},
"images/yao": {
"images/yao": { "x": -30.35, "y": 13.22, "scaleX": -1, "width": 165, "height": 122 },
"images/yao02": { "x": -32.47, "y": 12.17, "scaleX": -1, "width": 153, "height": 119 }
},
"images/youdabi": {
"images/youdabi": { "x": 73.76, "y": 1.09, "scaleX": -1, "rotation": 102.46, "width": 65, "height": 184 }
},
"images/youdatui": {
"images/youdatui": { "x": 69.01, "y": 0.16, "scaleX": -1, "rotation": 61.97, "width": 93, "height": 161 }
},
"images/youjiaojian": {
"images/youjiaojian": { "x": -0.21, "y": 5.55, "scaleX": -1, "width": 75, "height": 48 }
},
"images/youshou02": {
"images/youshou02": { "x": 4.45, "y": -0.97, "scaleX": -1, "rotation": -45.5, "width": 70, "height": 73 }
},
"images/youxiaobi": {
"images/youxiaobi": { "x": 55.47, "y": 13.77, "scaleX": -1, "rotation": 103.33, "width": 97, "height": 165 }
},
"images/youxiaotui": {
"images/youxiaotui": { "x": 63.35, "y": -6.68, "scaleX": -1, "rotation": 104.65, "width": 106, "height": 217 }
},
"images/zui": {
"images/zui": { "x": 5.89, "y": 0.75, "scaleX": -1, "rotation": -87.77, "width": 44, "height": 40 }
},
"images/zuodatui": {
"images/youxiaotui": { "x": 48.29, "y": 0.19, "scaleX": -1, "rotation": 97.73, "width": 106, "height": 217 },
"images/zuodatui": { "x": 68.23, "y": -3.43, "scaleX": -1, "rotation": 104.97, "width": 106, "height": 212 }
},
"images/zuojiao": {
"images/zuojiao": { "x": 0.08, "y": 6.83, "scaleX": -1, "width": 73, "height": 45 }
},
"images/zuoxiaobi": {
"images/zuoxiaobi": { "x": 76.85, "y": -0.24, "scaleX": -1, "rotation": 126.53, "width": 122, "height": 157 }
},
"images/zuoxiaotui": {
"images/zuoxiaotui": { "x": 60.89, "y": -0.09, "scaleX": -1, "rotation": 125.34, "width": 89, "height": 128 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"images/beigu": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7b", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7b" },
{ "time": 3.0666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.1666, "name": "images/beigu" },
{ "time": 1.2666, "name": "images/beigu" },
{ "time": 1.7666, "name": "images/beigu" }
]
},
"images/ci": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff" },
{ "time": 2.7666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 1.8666, "name": "images/ci" },
{ "time": 1.9333, "name": "images/ci" },
{ "time": 2, "name": "images/ci" }
]
},
"images/ci2": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff" },
{ "time": 2.7666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 1.8666, "name": "images/ci" },
{ "time": 1.9333, "name": "images/ci" },
{ "time": 2, "name": "images/ci" }
]
},
"images/ci3": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff" },
{ "time": 2.7666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 1.8666, "name": "images/ci" },
{ "time": 1.9333, "name": "images/ci" },
{ "time": 2, "name": "images/ci" }
]
},
"images/ci4": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff" },
{ "time": 2.7666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 1.8666, "name": "images/ci" },
{ "time": 1.9333, "name": "images/ci" },
{ "time": 2, "name": "images/ci" }
]
},
"images/ci5": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff" },
{ "time": 2.7666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 1.8666, "name": "images/ci" },
{ "time": 1.9333, "name": "images/ci" },
{ "time": 2, "name": "images/ci" }
]
},
"images/ci6": {
"color": [
{ "time": 2.1666, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.2333, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.2666, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.3333, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.6333, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.7333, "color": "0a0a0aff" },
{ "time": 2.8666, "color": "0a0a0a00", "curve": "stepped" },
{ "time": 2.9666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 2.1666, "name": "images/ci" }
]
},
"images/ci7": {
"color": [
{ "time": 2.7333, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.8333, "color": "0a0a0aff" },
{ "time": 2.9666, "color": "0a0a0a00", "curve": "stepped" },
{ "time": 3.0666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 2.2666, "name": "images/ci" }
]
},
"images/ci8": {
"color": [
{ "time": 2.4333, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.8333, "color": "0a0a0aff" },
{ "time": 3.0666, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 2.3666, "name": "images/ci" }
]
},
"images/ci10": {
"color": [
{ "time": 2, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.0666, "color": "0a0a0aff", "curve": "stepped" },
{ "time": 2.5666, "color": "0a0a0aff" },
{ "time": 2.8, "color": "0a0a0a00" }
],
"attachment": [
{ "time": 2, "name": "images/ci" }
]
},
"images/dangbu": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7a", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7a" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/dun": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff5a" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/eye": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffffff", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffffff" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/guangxiong": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff80", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff80" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/head": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff80", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff80" },
{ "time": 3.0666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.1666, "name": "images/head" },
{ "time": 1.2666, "name": "images/head" }
]
},
"images/jizhui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff82", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff82" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/pifeng02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7e", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7e" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/pijian01": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff5d" },
{ "time": 2.2666, "color": "ffffff21" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/sanshe0001": {
"attachment": [
{ "time": 1.9666, "name": "images/sanshe0001" },
{ "time": 2.0333, "name": "images/sanshe0002" },
{ "time": 2.1, "name": "images/sanshe0003" },
{ "time": 2.1666, "name": "images/sanshe0004" },
{ "time": 2.2333, "name": "images/sanshe0005" },
{ "time": 2.3, "name": "images/sanshe0006" },
{ "time": 2.3333, "name": "images/sanshe0007" },
{ "time": 2.3666, "name": "images/sanshe0008" },
{ "time": 2.4, "name": "images/sanshe0009" },
{ "time": 2.4333, "name": "images/sanshe0010" },
{ "time": 2.4666, "name": null }
]
},
"images/skillDEff0001": {
"color": [
{ "time": 1.8666, "color": "080808ff" }
],
"attachment": [
{ "time": 1.8666, "name": "images/skillDEff0001" },
{ "time": 1.9333, "name": "images/skillDEff0002" },
{ "time": 2, "name": "images/skillDEff0003" },
{ "time": 2.0666, "name": "images/skillDEff0004" },
{ "time": 2.1333, "name": "images/skillDEff0005" },
{ "time": 2.1666, "name": "images/skillDEff0006" },
{ "time": 2.2, "name": "images/skillDEff0007" },
{ "time": 2.2333, "name": "images/skillDEff0008" },
{ "time": 2.2666, "name": "images/skillDEff0009" },
{ "time": 2.3, "name": "images/skillDEff0010" },
{ "time": 2.3333, "name": "images/skillDEff0011" },
{ "time": 2.3666, "name": "images/skillDEff0012" },
{ "time": 2.4, "name": null }
]
},
"images/stone001": {
"attachment": [
{ "time": 1.8666, "name": "images/stone001" }
]
},
"images/stone002": {
"attachment": [
{ "time": 1.8666, "name": "images/stone002" }
]
},
"images/stone003": {
"attachment": [
{ "time": 1.8666, "name": "images/stone003" }
]
},
"images/stone004": {
"attachment": [
{ "time": 1.8666, "name": "images/stone004" }
]
},
"images/stone005": {
"attachment": [
{ "time": 1.8666, "name": "images/stone005" }
]
},
"images/weapon": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff80", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff80" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/xianglian": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff87", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff87" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/xiong": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7c", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7c" },
{ "time": 3.0666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.1666, "name": "images/xiong02" },
{ "time": 1.2666, "name": "images/xiong02" }
]
},
"images/yao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7e", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7e" },
{ "time": 3.0666, "color": "ffffff00" }
],
"attachment": [
{ "time": 1.1666, "name": "images/yao02" },
{ "time": 1.2666, "name": "images/yao02" }
]
},
"images/youdabi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7b", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7b" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/youdatui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff80", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff80" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/youjiaojian": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7d", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7d" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/youshou02": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff59" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/youxiaobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7e", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7e" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/youxiaotui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7f", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7f" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/zui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff80", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff80" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/zuodatui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7a", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7a" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/zuojiao": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7e", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7e" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/zuoxiaobi": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7b" },
{ "time": 2.2666, "color": "ffffff7f" },
{ "time": 3.0666, "color": "ffffff00" }
]
},
"images/zuoxiaotui": {
"color": [
{ "time": 0, "color": "ffffff00" },
{ "time": 0.8333, "color": "ffffff7f", "curve": "stepped" },
{ "time": 2.2666, "color": "ffffff7f" },
{ "time": 3.0666, "color": "ffffff00" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.67 },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.2666, "angle": 0, "curve": "stepped" },
{ "time": 1.7666, "angle": 0, "curve": "stepped" },
{ "time": 1.8333, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/yao": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.33 },
{ "time": 0.2666, "angle": -1.01 },
{ "time": 0.4, "angle": -6.99 },
{ "time": 0.9666, "angle": -4 },
{ "time": 1.0666, "angle": -1.01 },
{ "time": 1.1666, "angle": 2.43 },
{ "time": 1.2666, "angle": 18.67 },
{ "time": 1.7666, "angle": 5.36 },
{ "time": 1.8333, "angle": 7.55 },
{ "time": 1.8666, "angle": -1.01 },
{ "time": 2, "angle": -7.59 },
{ "time": 2.3, "angle": -8.41 },
{ "time": 2.8, "angle": -8.06 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 6.02, "y": 10.46 },
{ "time": 0.2666, "x": 17.37, "y": -12.41 },
{ "time": 0.4, "x": 19.26, "y": -42.19 },
{ "time": 0.9666, "x": 18.31, "y": -27.3 },
{ "time": 1.0666, "x": 31.33, "y": 15.5 },
{ "time": 1.1666, "x": -25.1, "y": 47.56 },
{ "time": 1.2666, "x": -76.93, "y": 53.25 },
{ "time": 1.7666, "x": -94.05, "y": 61.66 },
{ "time": 1.8333, "x": -35.58, "y": 42.04 },
{ "time": 1.8666, "x": 17.37, "y": -12.41 },
{ "time": 2, "x": 28.58, "y": -69.27 },
{ "time": 2.3, "x": 19.65, "y": -43.34 },
{ "time": 2.8, "x": 19.56, "y": -44.13 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1.034, "y": 1 },
{ "time": 0.2666, "x": 1.103, "y": 1 },
{ "time": 0.4, "x": 1.109, "y": 1 },
{ "time": 0.9666, "x": 1.106, "y": 1 },
{ "time": 1.0666, "x": 1.103, "y": 1 },
{ "time": 1.1666, "x": 1.051, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1.051, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1.051, "y": 1 },
{ "time": 1.8333, "x": 1.043, "y": 1 },
{ "time": 1.8666, "x": 1.103, "y": 1 },
{ "time": 2, "x": 1.11, "y": 1 },
{ "time": 2.3, "x": 1.093, "y": 1 },
{ "time": 2.8, "x": 1.1, "y": 1 }
]
},
"images/weapon": {
"rotate": [
{ "time": 0, "angle": -8.47 },
{ "time": 0.1, "angle": -7.74 },
{ "time": 0.2666, "angle": 22.38 },
{ "time": 0.4, "angle": 10.06 },
{ "time": 0.9666, "angle": 16.22 },
{ "time": 1.0666, "angle": -8.85 },
{ "time": 1.1666, "angle": 0.87 },
{ "time": 1.2666, "angle": 12.99 },
{ "time": 1.7666, "angle": 14.85 },
{ "time": 1.8333, "angle": 1.53 },
{ "time": 1.8666, "angle": 0.33 },
{ "time": 2, "angle": 3.22 },
{ "time": 2.3, "angle": 1.57 },
{ "time": 2.8, "angle": 2.28 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 9.09, "y": 10.47 },
{ "time": 0.2666, "x": 80.94, "y": -23.83 },
{ "time": 0.4, "x": 85.95, "y": -63.9 },
{ "time": 0.9666, "x": 83.45, "y": -43.86 },
{ "time": 1.0666, "x": 131.62, "y": 44.42 },
{ "time": 1.1666, "x": 125.71, "y": 166.23 },
{ "time": 1.2666, "x": 103.71, "y": 228.47 },
{ "time": 1.7666, "x": 100.06, "y": 285.24 },
{ "time": 1.8333, "x": 149.26, "y": 240.02 },
{ "time": 1.8666, "x": 26.58, "y": -27.81 },
{ "time": 2, "x": 31.02, "y": -54.94 },
{ "time": 2.3, "x": 19.31, "y": -60.02 },
{ "time": 2.8, "x": 20.56, "y": -48.78 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/dun": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.36 },
{ "time": 0.2666, "angle": 4.02 },
{ "time": 0.4, "angle": 10.82 },
{ "time": 0.9666, "angle": 16.42 },
{ "time": 1.0666, "angle": 38.56 },
{ "time": 1.1666, "angle": 21.14 },
{ "time": 1.2666, "angle": 13.6 },
{ "time": 1.7666, "angle": 7.5 },
{ "time": 1.8333, "angle": 2.47 },
{ "time": 1.8666, "angle": 4.02 },
{ "time": 2, "angle": 7.38 },
{ "time": 2.3, "angle": 8.2 },
{ "time": 2.8, "angle": 7.85 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0.01 },
{ "time": 0.1, "x": 10.71, "y": 16.31 },
{ "time": 0.2666, "x": 31.44, "y": -26.08 },
{ "time": 0.4, "x": 100.4, "y": -31.82 },
{ "time": 0.9666, "x": 108.14, "y": -39.56 },
{ "time": 1.0666, "x": 119.53, "y": -37.74 },
{ "time": 1.1666, "x": -46.53, "y": 58.29 },
{ "time": 1.2666, "x": -136.36, "y": 98.66 },
{ "time": 1.7666, "x": -145.69, "y": 145.03 },
{ "time": 1.8333, "x": -57.05, "y": 80.67 },
{ "time": 1.8666, "x": 15.61, "y": 21.41 },
{ "time": 2, "x": 9.07, "y": 19.05 },
{ "time": 2.3, "x": 21.97, "y": -35.4 },
{ "time": 2.8, "x": 26.62, "y": -34.11 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/head": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 1.64 },
{ "time": 0.2666, "angle": -0.94 },
{ "time": 0.4, "angle": -2.5 },
{ "time": 0.9666, "angle": -1.72 },
{ "time": 1.0666, "angle": -6.59 },
{ "time": 1.1666, "angle": 1.43 },
{ "time": 1.2666, "angle": 1.35 },
{ "time": 1.7666, "angle": 4.35 },
{ "time": 1.8333, "angle": 19.56 },
{ "time": 1.8666, "angle": -0.94 },
{ "time": 2, "angle": -2.65 },
{ "time": 2.3, "angle": -4.41 },
{ "time": 2.8, "angle": -9.52 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 6.76, "y": 2.01 },
{ "time": 0.2666, "x": 32.87, "y": -34.37 },
{ "time": 0.4, "x": 37.89, "y": -77.95 },
{ "time": 0.9666, "x": 35.38, "y": -56.16 },
{ "time": 1.0666, "x": 16.8, "y": -26.34 },
{ "time": 1.1666, "x": -57.45, "y": 10.18 },
{ "time": 1.2666, "x": -114.95, "y": 23.2 },
{ "time": 1.7666, "x": -126.4, "y": 24.28 },
{ "time": 1.8333, "x": -52.06, "y": 10.47 },
{ "time": 1.8666, "x": 32.87, "y": -34.37 },
{ "time": 2, "x": 45.26, "y": -107.09 },
{ "time": 2.3, "x": 45.45, "y": -86.59 },
{ "time": 2.8, "x": 42.43, "y": -84.75 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/zui": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": 0.01, "curve": "stepped" },
{ "time": 1.2666, "angle": 0.01 },
{ "time": 1.7666, "angle": 2.93 },
{ "time": 1.8333, "angle": 0 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -10.89, "y": -0.62 },
{ "time": 0.2666, "x": -0.4, "y": 0.11 },
{ "time": 0.4, "x": -0.03, "y": 0.01 },
{ "time": 0.9666, "x": -0.21, "y": 0.06 },
{ "time": 1.0666, "x": -0.4, "y": 0.11 },
{ "time": 1.1666, "x": 3.3, "y": -1.31 },
{ "time": 1.2666, "x": -19.63, "y": -4.54 },
{ "time": 1.7666, "x": 3.3, "y": -1.31 },
{ "time": 1.8333, "x": -3.79, "y": -0.97 },
{ "time": 1.8666, "x": -0.4, "y": 0.11 },
{ "time": 2, "x": -20.58, "y": -1.75 },
{ "time": 2.3, "x": -23.49, "y": -2.73 },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/eye": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": 0.01, "curve": "stepped" },
{ "time": 1.2666, "angle": 0.01 },
{ "time": 1.7666, "angle": 2.93 },
{ "time": 1.8333, "angle": 0 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0 },
{ "time": 1.1666, "x": -1.43, "y": -0.46 },
{ "time": 1.2666, "x": -1.41, "y": -3.18 },
{ "time": 1.7666, "x": -1.47, "y": 2.25 },
{ "time": 1.8333, "x": -0.6, "y": -8.39 },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1 },
{ "time": 1.8333, "x": 1, "y": 0.868 },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/youdatui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 6 },
{ "time": 0.2666, "angle": 3.1 },
{ "time": 0.4, "angle": -0.46 },
{ "time": 0.9666, "angle": 1.32 },
{ "time": 1.0666, "angle": -12.95 },
{ "time": 1.1666, "angle": 38.03 },
{ "time": 1.2666, "angle": 34.42 },
{ "time": 1.7666, "angle": 74.24 },
{ "time": 1.8333, "angle": 61 },
{ "time": 1.8666, "angle": 9.52 },
{ "time": 2, "angle": 26.19 },
{ "time": 2.3, "angle": 8.54 },
{ "time": 2.8, "angle": 9.23 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -5.52, "y": 10.89 },
{ "time": 0.2666, "x": 5.92, "y": -8.74 },
{ "time": 0.4, "x": 11.81, "y": -9.27 },
{ "time": 0.9666, "x": 8.86, "y": -9.01 },
{ "time": 1.0666, "x": 33.84, "y": 19.17 },
{ "time": 1.1666, "x": -35.09, "y": 16.62 },
{ "time": 1.2666, "x": -77.78, "y": 58.7 },
{ "time": 1.7666, "x": -83.35, "y": 87.67 },
{ "time": 1.8333, "x": -34, "y": 49.28 },
{ "time": 1.8666, "x": 16.82, "y": -8.74 },
{ "time": 2, "x": -5.97, "y": -36.51 },
{ "time": 2.3, "x": 11.04, "y": -7.84 },
{ "time": 2.8, "x": 11.62, "y": -8.48 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/zuodatui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -5.8 },
{ "time": 0.2666, "angle": -0.19, "curve": "stepped" },
{ "time": 0.4, "angle": -0.19, "curve": "stepped" },
{ "time": 0.9666, "angle": -0.19 },
{ "time": 1.0666, "angle": -9.72 },
{ "time": 1.1666, "angle": 6.17 },
{ "time": 1.2666, "angle": 10.06 },
{ "time": 1.7666, "angle": 12.83 },
{ "time": 1.8333, "angle": 3.51 },
{ "time": 1.8666, "angle": -0.19, "curve": "stepped" },
{ "time": 2, "angle": -0.19, "curve": "stepped" },
{ "time": 2.3, "angle": -0.19, "curve": "stepped" },
{ "time": 2.8, "angle": -0.19 }
],
"translate": [
{ "time": 0, "x": 0, "y": -0.04 },
{ "time": 0.1, "x": 12.18, "y": 0.95 },
{ "time": 0.2666, "x": 1.76, "y": 6.26, "curve": "stepped" },
{ "time": 0.4, "x": 1.76, "y": 6.26, "curve": "stepped" },
{ "time": 0.9666, "x": 1.76, "y": 6.26 },
{ "time": 1.0666, "x": 33.39, "y": 6.26 },
{ "time": 1.1666, "x": -11.18, "y": 2.97 },
{ "time": 1.2666, "x": -31.57, "y": 8.9 },
{ "time": 1.7666, "x": -37.2, "y": 10.29 },
{ "time": 1.8333, "x": -16.71, "y": 1.41 },
{ "time": 1.8666, "x": 1.76, "y": 6.26, "curve": "stepped" },
{ "time": 2, "x": 1.76, "y": 6.26, "curve": "stepped" },
{ "time": 2.3, "x": 1.76, "y": 6.26, "curve": "stepped" },
{ "time": 2.8, "x": 1.76, "y": 6.26 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/zuoxiaotui": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 2.53 },
{ "time": 0.2666, "angle": -13.48 },
{ "time": 0.4, "angle": -13.71 },
{ "time": 0.9666, "angle": -13.59 },
{ "time": 1.0666, "angle": 3.01 },
{ "time": 1.1666, "angle": 19.3 },
{ "time": 1.2666, "angle": 21.57 },
{ "time": 1.7666, "angle": 26.65 },
{ "time": 1.8333, "angle": 15.35 },
{ "time": 1.8666, "angle": -13.48 },
{ "time": 2, "angle": -13.73 },
{ "time": 2.3, "angle": -12.32 },
{ "time": 2.8, "angle": -12.93 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 0, "y": -5.83 },
{ "time": 0.2666, "x": 16.82, "y": -34.11 },
{ "time": 0.4, "x": 12.8, "y": -45.5 },
{ "time": 0.9666, "x": 14.81, "y": -39.81 },
{ "time": 1.0666, "x": 33.57, "y": 10.55 },
{ "time": 1.1666, "x": -44.47, "y": 42.18 },
{ "time": 1.2666, "x": -80.37, "y": 33.76 },
{ "time": 1.7666, "x": -98.34, "y": 54.93 },
{ "time": 1.8333, "x": -53.38, "y": 9.81 },
{ "time": 1.8666, "x": 16.82, "y": -34.11 },
{ "time": 2, "x": 12.4, "y": -46.64 },
{ "time": 2.3, "x": 12.4, "y": -29.85 },
{ "time": 2.8, "x": 12.4, "y": -37.05 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1 },
{ "time": 1.1666, "x": 1.402, "y": 1 },
{ "time": 1.2666, "x": 1.35, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1.35, "y": 1 },
{ "time": 1.8333, "x": 1.175, "y": 1 },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/zuojiao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0, "curve": "stepped" },
{ "time": 1.1666, "angle": 0, "curve": "stepped" },
{ "time": 1.2666, "angle": 0, "curve": "stepped" },
{ "time": 1.7666, "angle": 0, "curve": "stepped" },
{ "time": 1.8333, "angle": 0, "curve": "stepped" },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/youjiaojian": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": -98.29 },
{ "time": 1.2666, "angle": -21.29 },
{ "time": 1.7666, "angle": -68.74 },
{ "time": 1.8333, "angle": -56.08 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0 },
{ "time": 0.2666, "x": 4.93, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 4.93, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 4.93, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 4.93, "y": 0 },
{ "time": 1.1666, "x": 21.66, "y": 43.72 },
{ "time": 1.2666, "x": 1.15, "y": 100.57 },
{ "time": 1.7666, "x": -7.54, "y": 184.86 },
{ "time": 1.8333, "x": 28.74, "y": 126.06 },
{ "time": 1.8666, "x": 62.28, "y": 0 },
{ "time": 2, "x": 60.9, "y": 0 },
{ "time": 2.3, "x": 59.54, "y": 0 },
{ "time": 2.8, "x": 60.12, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/xiong": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 3.13 },
{ "time": 0.2666, "angle": 1.13 },
{ "time": 0.4, "angle": -0.54 },
{ "time": 0.9666, "angle": 0.29 },
{ "time": 1.0666, "angle": 11.73 },
{ "time": 1.1666, "angle": 9.5 },
{ "time": 1.2666, "angle": 13.28 },
{ "time": 1.7666, "angle": 12.42 },
{ "time": 1.8333, "angle": 8.89 },
{ "time": 1.8666, "angle": 1.13 },
{ "time": 2, "angle": -3.81 },
{ "time": 2.3, "angle": -5.68 },
{ "time": 2.8, "angle": -3.55 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 6.02, "y": 9.39 },
{ "time": 0.2666, "x": 17.37, "y": -15.49 },
{ "time": 0.4, "x": 29.18, "y": -52.9 },
{ "time": 0.9666, "x": 23.28, "y": -34.19 },
{ "time": 1.0666, "x": 17.37, "y": 21.48 },
{ "time": 1.1666, "x": -54.95, "y": 47.52 },
{ "time": 1.2666, "x": -106.77, "y": 53.21 },
{ "time": 1.7666, "x": -123.89, "y": 61.62 },
{ "time": 1.8333, "x": -56.01, "y": 40.51 },
{ "time": 1.8666, "x": 17.37, "y": -15.49 },
{ "time": 2, "x": 40.52, "y": -71.43 },
{ "time": 2.3, "x": 39.74, "y": -52.99 },
{ "time": 2.8, "x": 35.72, "y": -54.56 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1, "y": 1.016 },
{ "time": 0.2666, "x": 1, "y": 1.05 },
{ "time": 0.4, "x": 1, "y": 1.053 },
{ "time": 0.9666, "x": 1, "y": 1.052 },
{ "time": 1.0666, "x": 1, "y": 1.05 },
{ "time": 1.1666, "x": 1, "y": 1.056, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1.056, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1.056 },
{ "time": 1.8333, "x": 1, "y": 1.036 },
{ "time": 1.8666, "x": 1, "y": 1.05 },
{ "time": 2, "x": 1, "y": 1.053 },
{ "time": 2.3, "x": 1, "y": 1.045 },
{ "time": 2.8, "x": 1, "y": 1.049 }
]
},
"images/youdabi": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0 },
{ "time": 0.2666, "angle": 13.51 },
{ "time": 0.4, "angle": 16.36 },
{ "time": 0.9666, "angle": 14.93 },
{ "time": 1.0666, "angle": 24.38 },
{ "time": 1.1666, "angle": 69.85 },
{ "time": 1.2666, "angle": 81.14 },
{ "time": 1.7666, "angle": 92.24 },
{ "time": 1.8333, "angle": 79.58 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0 },
{ "time": 1.1666, "x": -15.83, "y": 47.08, "curve": "stepped" },
{ "time": 1.2666, "x": -15.83, "y": 47.08, "curve": "stepped" },
{ "time": 1.7666, "x": -15.83, "y": 47.08 },
{ "time": 1.8333, "x": -7.91, "y": 23.54 },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/youxiaobi": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0 },
{ "time": 0.4, "angle": -14.7 },
{ "time": 0.9666, "angle": -7.35 },
{ "time": 1.0666, "angle": -20.67 },
{ "time": 1.1666, "angle": -36.44, "curve": "stepped" },
{ "time": 1.2666, "angle": -36.44 },
{ "time": 1.7666, "angle": -33.52 },
{ "time": 1.8333, "angle": -18.22 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/youshou02": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0 },
{ "time": 1.0666, "angle": -27.89 },
{ "time": 1.1666, "angle": -33.73 },
{ "time": 1.2666, "angle": -54.77 },
{ "time": 1.7666, "angle": -50.34 },
{ "time": 1.8333, "angle": -49.76 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0 },
{ "time": 1.2666, "x": 6.41, "y": 7.84 },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/pijian01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": 0.01, "curve": "stepped" },
{ "time": 1.2666, "angle": 0.01 },
{ "time": 1.7666, "angle": 2.93 },
{ "time": 1.8333, "angle": 0 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -1.15, "y": -0.32 },
{ "time": 0.2666, "x": 6.37, "y": 1.8 },
{ "time": 0.4, "x": -2.79, "y": -0.77 },
{ "time": 0.9666, "x": 1.79, "y": 0.51 },
{ "time": 1.0666, "x": 6.37, "y": 1.8 },
{ "time": 1.1666, "x": -0.01, "y": -12.86 },
{ "time": 1.2666, "x": -1.83, "y": -0.75 },
{ "time": 1.7666, "x": -1.38, "y": -3.77 },
{ "time": 1.8333, "x": -1.27, "y": -2.05 },
{ "time": 1.8666, "x": 6.37, "y": 1.8 },
{ "time": 2, "x": -3.7, "y": -1.03 },
{ "time": 2.3, "x": -3.11, "y": -0.87 },
{ "time": 2.8, "x": -3.37, "y": -0.94 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 0.987, "y": 0.987 },
{ "time": 0.2666, "x": 0.963, "y": 0.963 },
{ "time": 0.4, "x": 0.961, "y": 0.961 },
{ "time": 0.9666, "x": 0.962, "y": 0.962 },
{ "time": 1.0666, "x": 0.963, "y": 0.963 },
{ "time": 1.1666, "x": 0.981, "y": 0.981, "curve": "stepped" },
{ "time": 1.2666, "x": 0.981, "y": 0.981, "curve": "stepped" },
{ "time": 1.7666, "x": 0.981, "y": 0.981 },
{ "time": 1.8333, "x": 0.984, "y": 0.984 },
{ "time": 1.8666, "x": 0.963, "y": 0.963 },
{ "time": 2, "x": 0.96, "y": 0.96 },
{ "time": 2.3, "x": 0.967, "y": 0.967 },
{ "time": 2.8, "x": 0.964, "y": 0.964 }
]
},
"images/beigu": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -1.3 },
{ "time": 0.2666, "angle": -3.9 },
{ "time": 0.4, "angle": -4.13 },
{ "time": 0.9666, "angle": -4.01 },
{ "time": 1.0666, "angle": -3.9 },
{ "time": 1.1666, "angle": -0.53, "curve": "stepped" },
{ "time": 1.2666, "angle": -0.53 },
{ "time": 1.7666, "angle": 2.38 },
{ "time": 1.8333, "angle": -0.91 },
{ "time": 1.8666, "angle": -3.9 },
{ "time": 2, "angle": -4.16 },
{ "time": 2.3, "angle": -3.49 },
{ "time": 2.8, "angle": -3.78 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -4.35, "y": -3 },
{ "time": 0.2666, "x": -13.05, "y": -9.01 },
{ "time": 0.4, "x": -13.84, "y": -9.56 },
{ "time": 0.9666, "x": -13.45, "y": -9.29 },
{ "time": 1.0666, "x": -13.05, "y": -9.01 },
{ "time": 1.1666, "x": -28.36, "y": -15.94, "curve": "stepped" },
{ "time": 1.2666, "x": -28.36, "y": -15.94, "curve": "stepped" },
{ "time": 1.7666, "x": -28.36, "y": -15.94 },
{ "time": 1.8333, "x": -16.36, "y": -9.47 },
{ "time": 1.8666, "x": -13.05, "y": -9.01 },
{ "time": 2, "x": -13.92, "y": -9.62 },
{ "time": 2.3, "x": -11.71, "y": -8.09 },
{ "time": 2.8, "x": -12.66, "y": -8.74 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1.012, "y": 1 },
{ "time": 0.2666, "x": 1.036, "y": 1 },
{ "time": 0.4, "x": 1.038, "y": 1 },
{ "time": 0.9666, "x": 1.037, "y": 1 },
{ "time": 1.0666, "x": 1.036, "y": 1 },
{ "time": 1.1666, "x": 1.038, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1.038, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1.038, "y": 1 },
{ "time": 1.8333, "x": 1.025, "y": 1 },
{ "time": 1.8666, "x": 1.036, "y": 1 },
{ "time": 2, "x": 1.038, "y": 1 },
{ "time": 2.3, "x": 1.032, "y": 1 },
{ "time": 2.8, "x": 1.034, "y": 1 }
]
},
"images/zuoxiaobi": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 2.41 },
{ "time": 0.2666, "angle": 7.23 },
{ "time": 0.4, "angle": 22.25 },
{ "time": 0.9666, "angle": -335.14 },
{ "time": 1.0666, "angle": -327.3 },
{ "time": 1.1666, "angle": -5.37 },
{ "time": 1.2666, "angle": -18.43 },
{ "time": 1.7666, "angle": -29.69 },
{ "time": 1.8333, "angle": -15.1 },
{ "time": 1.8666, "angle": -7.94 },
{ "time": 2, "angle": -8.46 },
{ "time": 2.3, "angle": 1.01 },
{ "time": 2.8, "angle": 3.88 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0 },
{ "time": 1.1666, "x": -2.03, "y": -43.27 },
{ "time": 1.2666, "x": -5.8, "y": -18.27 },
{ "time": 1.7666, "x": -3.44, "y": -33.95 },
{ "time": 1.8333, "x": -1.72, "y": -16.97 },
{ "time": 1.8666, "x": 12.08, "y": -12.31 },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/dangbu": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 1.86 },
{ "time": 0.2666, "angle": 13.58 },
{ "time": 0.4, "angle": 6.64 },
{ "time": 0.9666, "angle": 10.11 },
{ "time": 1.0666, "angle": 13.58 },
{ "time": 1.1666, "angle": 23.33 },
{ "time": 1.2666, "angle": 20.29 },
{ "time": 1.7666, "angle": 43.26 },
{ "time": 1.8333, "angle": 24.23 },
{ "time": 1.8666, "angle": 13.58 },
{ "time": 2, "angle": 9.73 },
{ "time": 2.3, "angle": -0.98 },
{ "time": 2.8, "angle": -1.2 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0 },
{ "time": 1.2666, "x": -11.35, "y": 0.5 },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0 },
{ "time": 2.3, "x": 5.97, "y": -11.2 },
{ "time": 2.8, "x": 4.31, "y": -16.35 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 4.86 },
{ "time": 0.2666, "angle": 8.75 },
{ "time": 0.4, "angle": 18.18 },
{ "time": 0.9666, "angle": 13.46 },
{ "time": 1.0666, "angle": 8.75 },
{ "time": 1.1666, "angle": 4.61 },
{ "time": 1.2666, "angle": -4.75 },
{ "time": 1.7666, "angle": 3.22 },
{ "time": 1.8333, "angle": 12.16 },
{ "time": 1.8666, "angle": 31.42 },
{ "time": 2, "angle": 30.54 },
{ "time": 2.3, "angle": 9.74 },
{ "time": 2.8, "angle": 7.37 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -9.09 },
{ "time": 0.2666, "angle": -4.53 },
{ "time": 0.4, "angle": 15.56 },
{ "time": 0.9666, "angle": 5.51 },
{ "time": 1.0666, "angle": -4.53 },
{ "time": 1.1666, "angle": 3.83 },
{ "time": 1.2666, "angle": -1.05 },
{ "time": 1.7666, "angle": 6.62 },
{ "time": 1.8333, "angle": 16.93 },
{ "time": 1.8666, "angle": -9.47 },
{ "time": 2, "angle": -12.46 },
{ "time": 2.3, "angle": 21.14 },
{ "time": 2.8, "angle": -2.42 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -3.94 },
{ "time": 0.2666, "angle": -22.16 },
{ "time": 0.4, "angle": 8.09 },
{ "time": 0.9666, "angle": -7.03 },
{ "time": 1.0666, "angle": -22.16 },
{ "time": 1.1666, "angle": -4.54 },
{ "time": 1.2666, "angle": -5.17 },
{ "time": 1.7666, "angle": 1.33 },
{ "time": 1.8333, "angle": -1.3 },
{ "time": 1.8666, "angle": -12.04 },
{ "time": 2, "angle": -18.91 },
{ "time": 2.3, "angle": 29.79 },
{ "time": 2.8, "angle": -4.03 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/dangbu2": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0 },
{ "time": 0.2666, "angle": 8 },
{ "time": 0.4, "angle": 0.72 },
{ "time": 0.9666, "angle": 4.36 },
{ "time": 1.0666, "angle": 8 },
{ "time": 1.1666, "angle": 10.77 },
{ "time": 1.2666, "angle": 1.26 },
{ "time": 1.7666, "angle": 20.12 },
{ "time": 1.8333, "angle": 20.54 },
{ "time": 1.8666, "angle": 8 },
{ "time": 2, "angle": 24.02 },
{ "time": 2.3, "angle": -2.5 },
{ "time": 2.8, "angle": -1.43 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 6.57 },
{ "time": 0.2666, "angle": -0.57 },
{ "time": 0.4, "angle": 42.56 },
{ "time": 0.9666, "angle": 20.99 },
{ "time": 1.0666, "angle": -0.57 },
{ "time": 1.1666, "angle": 2.89 },
{ "time": 1.2666, "angle": 26.8 },
{ "time": 1.7666, "angle": 34.06 },
{ "time": 1.8333, "angle": 37.7 },
{ "time": 1.8666, "angle": 44.83 },
{ "time": 2, "angle": 16.4 },
{ "time": 2.3, "angle": 48.28 },
{ "time": 2.8, "angle": 5.45 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/dangbu3": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 4.2 },
{ "time": 0.2666, "angle": 8.65 },
{ "time": 0.4, "angle": 12.34 },
{ "time": 0.9666, "angle": 10.49 },
{ "time": 1.0666, "angle": 8.65 },
{ "time": 1.1666, "angle": -12.92 },
{ "time": 1.2666, "angle": 4.33 },
{ "time": 1.7666, "angle": -49.88 },
{ "time": 1.8333, "angle": -22.84 },
{ "time": 1.8666, "angle": 8.65 },
{ "time": 2, "angle": 12.7 },
{ "time": 2.3, "angle": -6.88 },
{ "time": 2.8, "angle": 5.44 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0 },
{ "time": 2.3, "x": 0.92, "y": -8.78 },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0 },
{ "time": 0.2666, "angle": 8 },
{ "time": 0.4, "angle": 0.72 },
{ "time": 0.9666, "angle": 4.36 },
{ "time": 1.0666, "angle": 8 },
{ "time": 1.1666, "angle": 0.74 },
{ "time": 1.2666, "angle": -21.68 },
{ "time": 1.7666, "angle": -1.67 },
{ "time": 1.8333, "angle": -11.94 },
{ "time": 1.8666, "angle": 8 },
{ "time": 2, "angle": 0 },
{ "time": 2.3, "angle": -1.3 },
{ "time": 2.8, "angle": -0.74 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -18.57 },
{ "time": 0.2666, "angle": -30.39 },
{ "time": 0.4, "angle": 1.75 },
{ "time": 0.9666, "angle": -14.32 },
{ "time": 1.0666, "angle": -30.39 },
{ "time": 1.1666, "angle": -8.45 },
{ "time": 1.2666, "angle": -13.09 },
{ "time": 1.7666, "angle": -1.13 },
{ "time": 1.8333, "angle": -9.85 },
{ "time": 1.8666, "angle": -46.66 },
{ "time": 2, "angle": -29.53 },
{ "time": 2.3, "angle": 1.83 },
{ "time": 2.8, "angle": -16.57 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/pifeng02": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 2.76 },
{ "time": 0.2666, "angle": 1.87 },
{ "time": 0.4, "angle": 3.18 },
{ "time": 0.9666, "angle": 2.53 },
{ "time": 1.0666, "angle": 0.98 },
{ "time": 1.2666, "angle": -12.72 },
{ "time": 1.7666, "angle": 29.16 },
{ "time": 1.8333, "angle": 14.5 },
{ "time": 1.9333, "angle": -16.41 },
{ "time": 2.1333, "angle": -0.47 },
{ "time": 2.3, "angle": 7.46 },
{ "time": 2.8, "angle": 10.58 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -12.04, "y": 9.56 },
{ "time": 0.2666, "x": 15.72, "y": -15.11 },
{ "time": 0.4, "x": 12.7, "y": -17.36 },
{ "time": 0.9666, "x": 14.21, "y": -16.23 },
{ "time": 1.0666, "x": -3.35, "y": 46.89 },
{ "time": 1.2666, "x": -121.58, "y": 45.52 },
{ "time": 1.7666, "x": -198.72, "y": 56.21 },
{ "time": 1.8333, "x": -94.95, "y": 32.88 },
{ "time": 1.9333, "x": 15.72, "y": -15.11 },
{ "time": 2.1333, "x": 9.28, "y": -44.74 },
{ "time": 2.3, "x": 11.62, "y": -15.98 },
{ "time": 2.8, "x": 11.04, "y": -14.78 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1 },
{ "time": 1.2666, "x": 1, "y": 1.036, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1.036 },
{ "time": 1.8333, "x": 1, "y": 1.018 },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -1.41 },
{ "time": 0.2666, "angle": -5.77 },
{ "time": 0.4, "angle": -5.28 },
{ "time": 0.9666, "angle": 0.74 },
{ "time": 1.0666, "angle": -7.27 },
{ "time": 1.1666, "angle": -2.23 },
{ "time": 1.2666, "angle": -7.44 },
{ "time": 1.7666, "angle": -8.97 },
{ "time": 1.8333, "angle": -6.65 },
{ "time": 1.8666, "angle": -5.77 },
{ "time": 2, "angle": -5.23 },
{ "time": 2.3, "angle": -4.75 },
{ "time": 2.8, "angle": -4.39 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 0.997, "y": 0.997 },
{ "time": 0.2666, "x": 0.992, "y": 0.992 },
{ "time": 0.4, "x": 0.991, "y": 0.991 },
{ "time": 0.9666, "x": 0.992, "y": 0.992 },
{ "time": 1.0666, "x": 0.992, "y": 0.992 },
{ "time": 1.2666, "x": 0.996, "y": 0.996, "curve": "stepped" },
{ "time": 1.7666, "x": 0.996, "y": 0.996 },
{ "time": 1.8333, "x": 0.996, "y": 0.996 },
{ "time": 1.8666, "x": 0.992, "y": 0.992 },
{ "time": 2, "x": 0.991, "y": 0.991 },
{ "time": 2.3, "x": 0.992, "y": 0.992 },
{ "time": 2.8, "x": 0.993, "y": 0.993 }
]
},
"bone8": {
"rotate": [
{ "time": 0, "angle": 11.11 },
{ "time": 0.1, "angle": 2.47 },
{ "time": 0.2666, "angle": -4.54 },
{ "time": 0.4, "angle": -3.01 },
{ "time": 0.9666, "angle": 2.48 },
{ "time": 1.0666, "angle": 0.9 },
{ "time": 1.2666, "angle": 4.79 },
{ "time": 1.7666, "angle": -5.22 },
{ "time": 1.8333, "angle": -2.83 },
{ "time": 1.9333, "angle": -22.35 },
{ "time": 2.1333, "angle": -2.86 },
{ "time": 2.3, "angle": -2.57 },
{ "time": 2.8, "angle": -2.35 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 7.23 },
{ "time": 0.2666, "angle": 3.81 },
{ "time": 0.4, "angle": 0.34 },
{ "time": 0.9666, "angle": 2.08 },
{ "time": 1.0666, "angle": 0.69 },
{ "time": 1.1666, "angle": 9.93 },
{ "time": 1.2666, "angle": 15.99 },
{ "time": 1.7666, "angle": -6.26 },
{ "time": 1.8333, "angle": 0.48 },
{ "time": 1.9333, "angle": 15.47 },
{ "time": 2.1333, "angle": 0 },
{ "time": 2.3, "angle": 2.04 },
{ "time": 2.8, "angle": 3.58 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0 },
{ "time": 0.2666, "angle": 3.81 },
{ "time": 0.4, "angle": 0.34 },
{ "time": 0.9666, "angle": 2.08 },
{ "time": 1.0666, "angle": 23.68 },
{ "time": 1.2666, "angle": 19.43 },
{ "time": 1.7666, "angle": 2.58 },
{ "time": 1.8333, "angle": 1.29 },
{ "time": 1.9333, "angle": 15.47 },
{ "time": 2.1333, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.56 },
{ "time": 0.2666, "angle": 5.25 },
{ "time": 0.4, "angle": 0.47 },
{ "time": 0.9666, "angle": 2.86 },
{ "time": 1.0666, "angle": 14.41 },
{ "time": 1.2666, "angle": 24.38 },
{ "time": 1.7666, "angle": 8.88 },
{ "time": 1.8333, "angle": 4.72 },
{ "time": 1.9333, "angle": 16.91 },
{ "time": 2.1333, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 10.95 },
{ "time": 0.2666, "angle": 5.03 },
{ "time": 0.4, "angle": -0.94 },
{ "time": 0.9666, "angle": -19.58 },
{ "time": 1.0666, "angle": 15.83 },
{ "time": 1.2666, "angle": 18.83 },
{ "time": 1.7666, "angle": -1.26 },
{ "time": 1.8333, "angle": 4.84 },
{ "time": 1.9333, "angle": 16.69 },
{ "time": 2.1333, "angle": -1.53 },
{ "time": 2.3, "angle": 0.16 },
{ "time": 2.8, "angle": 1.44 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -1.49, "y": -4.08 },
{ "time": 0.2666, "x": -4.48, "y": -12.26 },
{ "time": 0.4, "x": 1.42, "y": -2.26 },
{ "time": 0.9666, "x": -1.53, "y": -7.26 },
{ "time": 1.0666, "x": 8.79, "y": 5.69 },
{ "time": 1.2666, "x": -1.04, "y": -2.86 },
{ "time": 1.7666, "x": -1.34, "y": -3.67 },
{ "time": 1.8333, "x": -1.42, "y": -3.88 },
{ "time": 1.9333, "x": -4.48, "y": -12.26 },
{ "time": 2.1333, "x": 2.01, "y": -1.26 },
{ "time": 2.3, "x": -5.67, "y": -2.51 },
{ "time": 2.8, "x": -11.45, "y": -3.45 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{ "time": 0, "angle": -26.53 },
{ "time": 0.1, "angle": -21.32 },
{ "time": 0.2666, "angle": -2.33 },
{ "time": 0.4, "angle": -3.59 },
{ "time": 0.9666, "angle": -2.96 },
{ "time": 1.0666, "angle": 8.45 },
{ "time": 1.2666, "angle": 3.92 },
{ "time": 1.7666, "angle": -9.64 },
{ "time": 1.8333, "angle": -15.48 },
{ "time": 1.9333, "angle": 9.31 },
{ "time": 2.1333, "angle": -3.71 },
{ "time": 2.3, "angle": -11.89 },
{ "time": 2.8, "angle": -18.02 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -4.84 },
{ "time": 0.2666, "angle": 14.76 },
{ "time": 0.4, "angle": 12.37 },
{ "time": 0.9666, "angle": 4.62 },
{ "time": 1.0666, "angle": 32.04 },
{ "time": 1.2666, "angle": 11.06 },
{ "time": 1.7666, "angle": -2.3 },
{ "time": 1.8333, "angle": -3.57 },
{ "time": 1.9333, "angle": 26.41 },
{ "time": 2.1333, "angle": 12.14 },
{ "time": 2.3, "angle": 2.43 },
{ "time": 2.8, "angle": -4.83 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{ "time": 0, "angle": 58.83 },
{ "time": 0.1, "angle": 10.29 },
{ "time": 0.2666, "angle": 19.18 },
{ "time": 0.4, "angle": 16.77 },
{ "time": 0.9666, "angle": 17.97 },
{ "time": 1.0666, "angle": 37.93 },
{ "time": 1.2666, "angle": 32.28 },
{ "time": 1.7666, "angle": 16.99 },
{ "time": 1.8333, "angle": 13.64 },
{ "time": 1.9333, "angle": 19.18 },
{ "time": 2.1333, "angle": 16.53 },
{ "time": 2.3, "angle": 20.25 },
{ "time": 2.8, "angle": 23.04 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/pifeng2": {
"rotate": [
{ "time": 0, "angle": 40.17 },
{ "time": 0.1, "angle": 34.83 },
{ "time": 0.2666, "angle": 22.04 },
{ "time": 0.4, "angle": 17.33 },
{ "time": 0.9666, "angle": 38.57 },
{ "time": 1.0666, "angle": 17.79 },
{ "time": 1.1666, "angle": 22.91 },
{ "time": 1.2666, "angle": 18.99 },
{ "time": 1.7666, "angle": 16.69 },
{ "time": 1.8333, "angle": 24.3 },
{ "time": 1.9333, "angle": -8.34 },
{ "time": 2.1333, "angle": 16.86 },
{ "time": 2.3, "angle": 22.95 },
{ "time": 2.8, "angle": 27.51 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 8.26, "y": -6.78 },
{ "time": 0.2666, "x": 24.78, "y": -20.36 },
{ "time": 0.4, "x": 26.28, "y": -21.6 },
{ "time": 0.9666, "x": 25.53, "y": -20.98 },
{ "time": 1.0666, "x": 24.78, "y": -20.36 },
{ "time": 1.2666, "x": -32.55, "y": -10.66, "curve": "stepped" },
{ "time": 1.7666, "x": -32.55, "y": -10.66 },
{ "time": 1.8333, "x": -12.14, "y": -8.72 },
{ "time": 1.9333, "x": 24.78, "y": -20.36 },
{ "time": 2.1333, "x": 26.43, "y": -21.72 },
{ "time": 2.3, "x": 24.03, "y": -19.75 },
{ "time": 2.8, "x": 22.23, "y": -18.27 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone16": {
"rotate": [
{ "time": 0, "angle": 13.41 },
{ "time": 0.1, "angle": 5.95 },
{ "time": 0.2666, "angle": 5.66 },
{ "time": 0.4, "angle": 11.14 },
{ "time": 0.9666, "angle": 8.4 },
{ "time": 1.0666, "angle": 16.31 },
{ "time": 1.2666, "angle": 13.09 },
{ "time": 1.7666, "angle": -1.82 },
{ "time": 1.8333, "angle": 0.6 },
{ "time": 1.9333, "angle": 5.66 },
{ "time": 2.1333, "angle": 11.69 },
{ "time": 2.3, "angle": 12.3 },
{ "time": 2.8, "angle": 12.76 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 5.04 },
{ "time": 0.2666, "angle": 2.58 },
{ "time": 0.4, "angle": -3.06 },
{ "time": 0.9666, "angle": -9.48 },
{ "time": 1.0666, "angle": 9.64 },
{ "time": 1.2666, "angle": 18.27 },
{ "time": 1.7666, "angle": -3.87 },
{ "time": 1.8333, "angle": 0.58 },
{ "time": 1.9333, "angle": 12.42 },
{ "time": 2.1333, "angle": -3.62 },
{ "time": 2.3, "angle": -4.08 },
{ "time": 2.8, "angle": -4.41 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone18": {
"rotate": [
{ "time": 0, "angle": 7.24 },
{ "time": 0.1, "angle": 12.28 },
{ "time": 0.2666, "angle": 17.86 },
{ "time": 0.4, "angle": 5.68 },
{ "time": 0.9666, "angle": 11.77 },
{ "time": 1.0666, "angle": 24.92 },
{ "time": 1.2666, "angle": 23.71 },
{ "time": 1.7666, "angle": 7.38 },
{ "time": 1.8333, "angle": 9.83 },
{ "time": 1.9333, "angle": 27.7 },
{ "time": 2.1333, "angle": 4.46 },
{ "time": 2.3, "angle": 5.56 },
{ "time": 2.8, "angle": 6.39 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone19": {
"rotate": [
{ "time": 0, "angle": -6 },
{ "time": 0.1, "angle": 4.64 },
{ "time": 0.2666, "angle": 14.77 },
{ "time": 0.4, "angle": -2.74 },
{ "time": 0.9666, "angle": -6.75 },
{ "time": 1.0666, "angle": 21.83 },
{ "time": 1.2666, "angle": 26.13 },
{ "time": 1.7666, "angle": 1.95 },
{ "time": 1.8333, "angle": 3.29 },
{ "time": 1.9333, "angle": 24.62 },
{ "time": 2.1333, "angle": -4.49 },
{ "time": 2.3, "angle": -5.07 },
{ "time": 2.8, "angle": -5.51 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone20": {
"rotate": [
{ "time": 0, "angle": -4.55 },
{ "time": 0.1, "angle": 7.83 },
{ "time": 0.2666, "angle": 12.37 },
{ "time": 0.4, "angle": -5 },
{ "time": 0.9666, "angle": 3.68 },
{ "time": 1.0666, "angle": 19.43 },
{ "time": 1.2666, "angle": 13.28 },
{ "time": 1.7666, "angle": -10.89 },
{ "time": 1.8333, "angle": -1.52 },
{ "time": 1.9333, "angle": 22.22 },
{ "time": 2.1333, "angle": -6.74 },
{ "time": 2.3, "angle": -5.22 },
{ "time": 2.8, "angle": -4.08 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/pifeng3": {
"rotate": [
{ "time": 0, "angle": 8.79 },
{ "time": 0.1, "angle": 2.36 },
{ "time": 0.2666, "angle": -1.7 },
{ "time": 0.4, "angle": -7.68 },
{ "time": 0.9666, "angle": -4.69 },
{ "time": 1.0666, "angle": -9.48 },
{ "time": 1.1666, "angle": 2.23 },
{ "time": 1.2666, "angle": -0.19 },
{ "time": 1.7666, "angle": -6.62 },
{ "time": 1.8333, "angle": -3.59 },
{ "time": 1.9333, "angle": -12.56 },
{ "time": 2.3, "angle": -1.33 },
{ "time": 2.8, "angle": -1.23 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0 },
{ "time": 1.2666, "x": 24.48, "y": -2.56, "curve": "stepped" },
{ "time": 1.7666, "x": 24.48, "y": -2.56 },
{ "time": 1.8333, "x": 12.24, "y": -1.28 },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone21": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -2.13 },
{ "time": 0.2666, "angle": -6.4 },
{ "time": 0.4, "angle": -13.44 },
{ "time": 0.9666, "angle": 6.38 },
{ "time": 1.0666, "angle": -15.55 },
{ "time": 1.1666, "angle": 17.23 },
{ "time": 1.2666, "angle": 16.67 },
{ "time": 1.7666, "angle": -4.66 },
{ "time": 1.8333, "angle": -3.4 },
{ "time": 1.9333, "angle": -6.4 },
{ "time": 2.3, "angle": 0.26 },
{ "time": 2.8, "angle": 2.08 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone22": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 7.94 },
{ "time": 0.2666, "angle": 5.98 },
{ "time": 0.4, "angle": 2.71 },
{ "time": 0.9666, "angle": 4.34 },
{ "time": 1.0666, "angle": 16.05 },
{ "time": 1.2666, "angle": 17.61 },
{ "time": 1.7666, "angle": 9.18 },
{ "time": 1.8333, "angle": 8.56 },
{ "time": 1.9333, "angle": 5.98 },
{ "time": 2.1333, "angle": 2.38 },
{ "time": 2.3, "angle": 1 },
{ "time": 2.8, "angle": -0.04 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone23": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 10.63 },
{ "time": 0.2666, "angle": 2.84 },
{ "time": 0.4, "angle": -9.55 },
{ "time": 0.9666, "angle": -3.35 },
{ "time": 1.0666, "angle": 18.27 },
{ "time": 1.1666, "angle": -1.14 },
{ "time": 1.2666, "angle": 17.22 },
{ "time": 1.7666, "angle": -16.55 },
{ "time": 1.8333, "angle": -2.95 },
{ "time": 1.9333, "angle": 14.5 },
{ "time": 2.1333, "angle": -10.79 },
{ "time": 2.3, "angle": -11.22 },
{ "time": 2.8, "angle": -11.54 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone24": {
"rotate": [
{ "time": 0, "angle": -40.51 },
{ "time": 0.1, "angle": -7.64 },
{ "time": 0.2666, "angle": 11.36 },
{ "time": 0.4, "angle": 23.23 },
{ "time": 0.9666, "angle": -37.08 },
{ "time": 1.0666, "angle": 26.79 },
{ "time": 1.2666, "angle": 19.55 },
{ "time": 1.7666, "angle": -4.75 },
{ "time": 1.8333, "angle": -6.19 },
{ "time": 1.9333, "angle": 23.01 },
{ "time": 2.3, "angle": -30.74 },
{ "time": 2.8, "angle": -42.22 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 0.02, "y": -0.88 },
{ "time": 0.2666, "x": 0.06, "y": -2.64, "curve": "stepped" },
{ "time": 0.4, "x": 0.06, "y": -2.64, "curve": "stepped" },
{ "time": 0.9666, "x": 0.06, "y": -2.64, "curve": "stepped" },
{ "time": 1.0666, "x": 0.06, "y": -2.64 },
{ "time": 1.2666, "x": 0.01, "y": -0.61 },
{ "time": 1.7666, "x": 0.01, "y": -0.79 },
{ "time": 1.8333, "x": 0.02, "y": -0.83 },
{ "time": 1.9333, "x": 0.06, "y": -2.64 },
{ "time": 2.3, "x": 0.07, "y": -3.07 },
{ "time": 2.8, "x": 0.07, "y": -3.19 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/guangxiong": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": 0.01, "curve": "stepped" },
{ "time": 1.2666, "angle": 0.01 },
{ "time": 1.7666, "angle": 2.93 },
{ "time": 1.8333, "angle": 0 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/jizhui": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.4, "angle": 0, "curve": "stepped" },
{ "time": 0.9666, "angle": 0, "curve": "stepped" },
{ "time": 1.0666, "angle": 0 },
{ "time": 1.1666, "angle": 0.01, "curve": "stepped" },
{ "time": 1.2666, "angle": 0.01 },
{ "time": 1.7666, "angle": 2.93 },
{ "time": 1.8333, "angle": 0 },
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.3, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/xianglian": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.76 },
{ "time": 0.2666, "angle": -1.45 },
{ "time": 0.4, "angle": -1.76 },
{ "time": 0.9666, "angle": -1.61 },
{ "time": 1.0666, "angle": -1.45 },
{ "time": 1.1666, "angle": -0.71, "curve": "stepped" },
{ "time": 1.2666, "angle": -0.71 },
{ "time": 1.7666, "angle": 2.2 },
{ "time": 1.8333, "angle": 0.02 },
{ "time": 1.8666, "angle": -1.45 },
{ "time": 2, "angle": 3.27 },
{ "time": 2.3, "angle": -2.28 },
{ "time": 2.8, "angle": -2.07 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone25": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -0.57 },
{ "time": 0.2666, "angle": 7.32 },
{ "time": 0.4, "angle": 2.98 },
{ "time": 0.9666, "angle": 5.15 },
{ "time": 1.0666, "angle": 7.32 },
{ "time": 1.1666, "angle": 3.67, "curve": "stepped" },
{ "time": 1.2666, "angle": 3.67 },
{ "time": 1.7666, "angle": 6.59 },
{ "time": 1.8333, "angle": 1.54 },
{ "time": 1.8666, "angle": 7.32 },
{ "time": 2, "angle": 17.16 },
{ "time": 2.3, "angle": 4.28 },
{ "time": 2.8, "angle": 3.53 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone26": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 2.17 },
{ "time": 0.2666, "angle": 6.07 },
{ "time": 0.4, "angle": 1.08 },
{ "time": 0.9666, "angle": 3.57 },
{ "time": 1.0666, "angle": 6.07 },
{ "time": 1.1666, "angle": 8.4, "curve": "stepped" },
{ "time": 1.2666, "angle": 8.4 },
{ "time": 1.7666, "angle": 0.12 },
{ "time": 1.8333, "angle": 5.28 },
{ "time": 1.8666, "angle": 18.5 },
{ "time": 2, "angle": 13.77 },
{ "time": 2.3, "angle": 3.19 },
{ "time": 2.8, "angle": 2.07 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone27": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.67 },
{ "time": 0.2666, "angle": 7.92 },
{ "time": 0.4, "angle": 3.42 },
{ "time": 0.9666, "angle": 5.67 },
{ "time": 1.0666, "angle": 7.92 },
{ "time": 1.1666, "angle": 8.34, "curve": "stepped" },
{ "time": 1.2666, "angle": 8.34 },
{ "time": 1.7666, "angle": 0.06 },
{ "time": 1.8333, "angle": 4.5 },
{ "time": 1.8666, "angle": 20.35 },
{ "time": 2, "angle": 16.17 },
{ "time": 2.3, "angle": 5.3 },
{ "time": 2.8, "angle": 4.3 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"bone28": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.76 },
{ "time": 0.2666, "angle": -1.01 },
{ "time": 0.4, "angle": -6.6 },
{ "time": 0.9666, "angle": -3.81 },
{ "time": 1.0666, "angle": -1.01 },
{ "time": 1.1666, "angle": 3.87, "curve": "stepped" },
{ "time": 1.2666, "angle": 3.87 },
{ "time": 1.7666, "angle": -4.4 },
{ "time": 1.8333, "angle": 2.31 },
{ "time": 1.8666, "angle": 11.42 },
{ "time": 2, "angle": 6.02 },
{ "time": 2.3, "angle": -3.97 },
{ "time": 2.8, "angle": -5.34 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.7666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.8666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"images/youxiaotui2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 0.07 },
{ "time": 0.2666, "angle": 5.06, "curve": "stepped" },
{ "time": 0.4, "angle": 5.06, "curve": "stepped" },
{ "time": 0.9666, "angle": 5.06, "curve": "stepped" },
{ "time": 1.0666, "angle": 5.06 },
{ "time": 1.1666, "angle": 14.81 },
{ "time": 1.2666, "angle": 20.25 },
{ "time": 1.7666, "angle": 15.53 },
{ "time": 1.8333, "angle": 13.61 },
{ "time": 1.8666, "angle": 15.48 },
{ "time": 2, "angle": 16.51, "curve": "stepped" },
{ "time": 2.3, "angle": 16.51, "curve": "stepped" },
{ "time": 2.8, "angle": 16.51 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.9666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.0666, "x": 0, "y": 0 },
{ "time": 1.1666, "x": 26.76, "y": 66.93 },
{ "time": 1.2666, "x": -25.64, "y": 111.57 },
{ "time": 1.7666, "x": -17.37, "y": 219.74 },
{ "time": 1.8333, "x": 28.34, "y": 159.8 },
{ "time": 1.8666, "x": 33, "y": 6.49 },
{ "time": 2, "x": 29.66, "y": 6.92 },
{ "time": 2.3, "x": 28.31, "y": 6.92 },
{ "time": 2.8, "x": 28.89, "y": 6.92 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.9666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.1666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.7666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.8, "x": 1, "y": 1 }
]
},
"stone2": {
"rotate": [
{ "time": 1.8666, "angle": 0 },
{ "time": 2, "angle": 110.18 },
{ "time": 2.1666, "angle": -154.76 }
],
"translate": [
{ "time": 1.8666, "x": -74.59, "y": -34.63 },
{ "time": 2, "x": 29.3, "y": -21.31 },
{ "time": 2.1666, "x": -111.88, "y": 47.95 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1 }
]
},
"stone1": {
"rotate": [
{ "time": 1.8666, "angle": -17.78 },
{ "time": 2, "angle": 53.13 },
{ "time": 2.1666, "angle": 91.75 },
{ "time": 2.3333, "angle": -97.95 },
{ "time": 2.5, "angle": 52.44 }
],
"translate": [
{ "time": 1.8666, "x": 18.64, "y": -98.56 },
{ "time": 2, "x": 87.91, "y": 13.31 },
{ "time": 2.1666, "x": -10.65, "y": 63.93 },
{ "time": 2.3333, "x": 23.97, "y": 101.23 },
{ "time": 2.5, "x": -23.97, "y": 130.53 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1 }
]
},
"stone4": {
"rotate": [
{ "time": 1.8666, "angle": -58.25 },
{ "time": 2, "angle": 130.4 },
{ "time": 2.1666, "angle": -73.42 }
],
"translate": [
{ "time": 1.8666, "x": -109.22, "y": 101.23 },
{ "time": 2, "x": -45.28, "y": 42.62 },
{ "time": 2.1666, "x": -141.19, "y": -23.97 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1 }
]
},
"stoneAll": {
"rotate": [
{ "time": 1.8666, "angle": 0, "curve": "stepped" },
{ "time": 2.7333, "angle": 0, "curve": "stepped" },
{ "time": 2.7666, "angle": 0 }
],
"translate": [
{ "time": 1.8666, "x": -860.24, "y": -1033.7, "curve": "stepped" },
{ "time": 2.7333, "x": -860.24, "y": -1033.7, "curve": "stepped" },
{ "time": 2.7666, "x": -860.24, "y": -1033.7 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 2.7333, "x": 1, "y": 1 },
{ "time": 2.7666, "x": 0, "y": 0 }
]
},
"stone3": {
"rotate": [
{ "time": 1.8666, "angle": -28.99 },
{ "time": 2.0333, "angle": 175.44 },
{ "time": 2.2666, "angle": 21.79 },
{ "time": 2.4333, "angle": -51.51 },
{ "time": 2.6, "angle": -129.39 }
],
"translate": [
{ "time": 1.8666, "x": -114.55, "y": 5.32 },
{ "time": 2.0333, "x": -10.65, "y": -18.64 },
{ "time": 2.2666, "x": -234.43, "y": -109.22 },
{ "time": 2.4333, "x": -197.13, "y": -141.19 },
{ "time": 2.6, "x": -242.42, "y": -191.8 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1 }
]
},
"stone5": {
"rotate": [
{ "time": 1.8666, "angle": -41.95 },
{ "time": 2, "angle": 158.63 },
{ "time": 2.1666, "angle": 97.77 }
],
"translate": [
{ "time": 1.8666, "x": -10.65, "y": 61.27 },
{ "time": 2, "x": -13.32, "y": -10.65 },
{ "time": 2.1666, "x": -21.31, "y": -23.97 }
],
"scale": [
{ "time": 1.8666, "x": 1, "y": 1 }
]
},
"guci": {
"rotate": [
{ "time": 1.8666, "angle": 5.11, "curve": "stepped" },
{ "time": 1.9333, "angle": 5.11, "curve": "stepped" },
{ "time": 2, "angle": 5.11 }
],
"translate": [
{ "time": 1.8666, "x": -787.98, "y": -483.53 },
{ "time": 1.9333, "x": -787.98, "y": -430.57 },
{ "time": 2, "x": -787.98, "y": -433.87 }
],
"scale": [
{ "time": 1.8666, "x": 0.166, "y": 1 },
{ "time": 1.9333, "x": 1.255, "y": 1.301 },
{ "time": 2, "x": 1.227, "y": 1.301 }
]
},
"guci2": {
"rotate": [
{ "time": 1.8666, "angle": -4.1 },
{ "time": 1.9333, "angle": 6.35, "curve": "stepped" },
{ "time": 2, "angle": 6.35 }
],
"translate": [
{ "time": 1.8666, "x": -666.69, "y": -384.4 },
{ "time": 1.9333, "x": -671.18, "y": -304.98 },
{ "time": 2, "x": -671.18, "y": -309.46 }
],
"scale": [
{ "time": 1.8666, "x": 0.235, "y": 1.417 },
{ "time": 1.9333, "x": 2.018, "y": 1.917 },
{ "time": 2, "x": 1.956, "y": 1.917 }
]
},
"guci3": {
"rotate": [
{ "time": 1.8666, "angle": -2.6 },
{ "time": 1.9333, "angle": 4.17, "curve": "stepped" },
{ "time": 2, "angle": 4.17 }
],
"translate": [
{ "time": 1.8666, "x": -953.52, "y": -317.68 },
{ "time": 1.9333, "x": -953.52, "y": -284.43, "curve": "stepped" },
{ "time": 2, "x": -953.52, "y": -284.43 }
],
"scale": [
{ "time": 1.8666, "x": 0.122, "y": 0.736 },
{ "time": 1.9333, "x": 0.775, "y": 0.736 },
{ "time": 2, "x": 0.736, "y": 0.736 }
]
},
"guci5": {
"rotate": [
{ "time": 1.8666, "angle": -10.24, "curve": "stepped" },
{ "time": 1.9333, "angle": -10.24, "curve": "stepped" },
{ "time": 2, "angle": -10.24 }
],
"translate": [
{ "time": 1.8666, "x": -1264.81, "y": -169.21 },
{ "time": 1.9333, "x": -1264.81, "y": -150.74, "curve": "stepped" },
{ "time": 2, "x": -1264.81, "y": -150.74 }
],
"scale": [
{ "time": 1.8666, "x": 0.091, "y": -0.823 },
{ "time": 1.9333, "x": 0.582, "y": -0.823 },
{ "time": 2, "x": 0.552, "y": -0.823 }
]
},
"guci4": {
"rotate": [
{ "time": 1.8666, "angle": -11.92, "curve": "stepped" },
{ "time": 1.9333, "angle": -11.92, "curve": "stepped" },
{ "time": 2, "angle": -11.92 }
],
"translate": [
{ "time": 1.8666, "x": -1307.26, "y": -246.83 },
{ "time": 1.9333, "x": -1307.26, "y": -213.59, "curve": "stepped" },
{ "time": 2, "x": -1307.26, "y": -213.59 }
],
"scale": [
{ "time": 1.8666, "x": 0.166, "y": -1.296 },
{ "time": 1.9333, "x": 1.052, "y": -1.296 },
{ "time": 2, "x": 1, "y": -1.296 }
]
},
"sankaiEff": {
"translate": [
{ "time": 1.8666, "x": -441.53, "y": -1290.6 }
],
"scale": [
{ "time": 1.8666, "x": 2.299, "y": 2.299 }
]
},
"sansheEff": {
"rotate": [
{ "time": 1.9666, "angle": 0 }
],
"translate": [
{ "time": 1.9666, "x": -554.11, "y": -701.25 }
],
"scale": [
{ "time": 1.9666, "x": 2.68, "y": 2.68 }
]
},
"guci10": {
"rotate": [
{ "time": 2, "angle": 0, "curve": "stepped" },
{ "time": 2.0666, "angle": 0, "curve": "stepped" },
{ "time": 2.5666, "angle": 0, "curve": "stepped" },
{ "time": 2.8, "angle": 0 }
],
"translate": [
{ "time": 2, "x": -1056.73, "y": -149.54 },
{ "time": 2.0666, "x": -1056.73, "y": -107.36, "curve": "stepped" },
{ "time": 2.5666, "x": -1056.73, "y": -107.36, "curve": "stepped" },
{ "time": 2.8, "x": -1056.73, "y": -107.36 }
],
"scale": [
{ "time": 2, "x": 0.383, "y": 1 },
{ "time": 2.0666, "x": 1.256, "y": 1.73, "curve": "stepped" },
{ "time": 2.5666, "x": 1.256, "y": 1.73, "curve": "stepped" },
{ "time": 2.8, "x": 1.256, "y": 1.73 }
],
"shear": [
{ "time": 2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8, "x": 0, "y": 0 }
]
},
"guci6": {
"rotate": [
{ "time": 2.1666, "angle": 0, "curve": "stepped" },
{ "time": 2.2333, "angle": 0, "curve": "stepped" },
{ "time": 2.6333, "angle": 0, "curve": "stepped" },
{ "time": 2.8666, "angle": 0 }
],
"translate": [
{ "time": 2.1666, "x": -563.46, "y": -161.62 },
{ "time": 2.2333, "x": -563.46, "y": -87.12, "curve": "stepped" },
{ "time": 2.6333, "x": -563.46, "y": -87.12, "curve": "stepped" },
{ "time": 2.8666, "x": -563.46, "y": -87.12 }
],
"scale": [
{ "time": 2.1666, "x": 0.383, "y": 1 },
{ "time": 2.2333, "x": 1.877, "y": 1.73, "curve": "stepped" },
{ "time": 2.6333, "x": 1.877, "y": 1.73, "curve": "stepped" },
{ "time": 2.8666, "x": 1.877, "y": 1.73 }
],
"shear": [
{ "time": 2.1666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8666, "x": 0, "y": 0 }
]
},
"guci7": {
"rotate": [
{ "time": 2.2666, "angle": 0, "curve": "stepped" },
{ "time": 2.3333, "angle": 0, "curve": "stepped" },
{ "time": 2.7333, "angle": 0, "curve": "stepped" },
{ "time": 2.9666, "angle": 0 }
],
"translate": [
{ "time": 2.2666, "x": -492.99, "y": -161.62 },
{ "time": 2.3333, "x": -492.99, "y": -109.33, "curve": "stepped" },
{ "time": 2.7333, "x": -492.99, "y": -109.33, "curve": "stepped" },
{ "time": 2.9666, "x": -492.99, "y": -109.33 }
],
"scale": [
{ "time": 2.2666, "x": 0.383, "y": 1 },
{ "time": 2.3333, "x": 1.315, "y": 1.73, "curve": "stepped" },
{ "time": 2.7333, "x": 1.315, "y": 1.73, "curve": "stepped" },
{ "time": 2.9666, "x": 1.315, "y": 1.73 }
],
"shear": [
{ "time": 2.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.9666, "x": 0, "y": 0 }
]
},
"guci8": {
"rotate": [
{ "time": 2.3666, "angle": 0, "curve": "stepped" },
{ "time": 2.4333, "angle": 0, "curve": "stepped" },
{ "time": 2.8333, "angle": 0, "curve": "stepped" },
{ "time": 3.0666, "angle": 0 }
],
"translate": [
{ "time": 2.3666, "x": -415.69, "y": -161.62 },
{ "time": 2.4333, "x": -415.69, "y": -82.05, "curve": "stepped" },
{ "time": 2.8333, "x": -415.69, "y": -82.05, "curve": "stepped" },
{ "time": 3.0666, "x": -415.69, "y": -82.05 }
],
"scale": [
{ "time": 2.3666, "x": 0.383, "y": 1 },
{ "time": 2.4333, "x": 1.907, "y": 1.73, "curve": "stepped" },
{ "time": 2.8333, "x": 1.907, "y": 1.73, "curve": "stepped" },
{ "time": 3.0666, "x": 1.907, "y": 1.73 }
],
"shear": [
{ "time": 2.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 3.0666, "x": 0, "y": 0 }
]
}
},
"deform": {
"default": {
"images/dun": {
"images/dun": [
{ "time": 0 },
{
"time": 0.2666,
"offset": 8,
"vertices": [ 0.85901, -13.93045, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.59044, -9.5772, 0.85901, -13.93045, 0, 0, 0, 0, 0, 0, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.85901, -13.93045 ]
},
{
"time": 0.9666,
"vertices": [ 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 0.13781, -18.80149, 0, 0, 0, 0, 0, 0, 0, 0, 1.16125, -35.40199, 1.68582, -51.00538, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.68582, -51.00538 ]
},
{
"time": 1.0666,
"offset": 8,
"vertices": [ 0.85901, -13.93045, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.59044, -9.5772, 0.85901, -13.93045, 0, 0, 0, 0, 0, 0, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.85901, -13.93045 ]
},
{
"time": 1.2666,
"vertices": [ 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 0.13781, -18.80149, 0, 0, 0, 0, 0, 0, 0, 0, 1.16125, -35.40199, 1.68582, -51.00538, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.68582, -51.00538 ],
"curve": "stepped"
},
{
"time": 1.7666,
"vertices": [ 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 0.13781, -18.80149, 0, 0, 0, 0, 0, 0, 0, 0, 1.16125, -35.40199, 1.68582, -51.00538, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.68582, -51.00538 ]
},
{
"time": 1.8666,
"offset": 8,
"vertices": [ 0.85901, -13.93045, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.59044, -9.5772, 0.85901, -13.93045, 0, 0, 0, 0, 0, 0, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.85901, -13.93045 ]
},
{
"time": 2,
"vertices": [ 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 1.16125, -35.40199, 0.13781, -18.80149, 0, 0, 0, 0, 0, 0, 0, 0, 1.16125, -35.40199, 1.68582, -51.00538, 0.16726, -22.81536, 0.16726, -22.81536, 0.16726, -22.81536, 1.68582, -51.00538, 1.16125, -35.40199, 1.16125, -35.40199, 1.68582, -51.00538 ]
},
{
"time": 2.8,
"offset": 8,
"vertices": [ 0.85901, -13.93045, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0.59044, -9.5772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.59044, -9.5772, 0.85901, -13.93045, 0, 0, 0, 0, 0, 0, 0.85901, -13.93045, 0.59044, -9.5772, 0.59044, -9.5772, 0.85901, -13.93045 ]
}
]
}
}
},
"drawOrder": [
{ "time": 0.2666 },
{ "time": 0.9666 },
{ "time": 1.0666 }
],
"events": [
{ "time": 1.8666, "name": "special" },
{ "time": 1.9666, "name": "special" },
{ "time": 2.0666, "name": "special" },
{ "time": 2.2333, "name": "special" },
{ "time": 2.3666, "name": "special" },
{ "time": 2.5, "name": "special" }
]
}
}
}