60054.json 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023
  1. {
  2. "skeleton": { "hash": "KQ6RaSxRjfRY41LE06FpWUFjAAQ", "spine": "3.6.53", "width": 595.63, "height": 205, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -2.66, "y": 59.88 },
  6. { "name": "bone2", "parent": "bone", "length": 17.92, "rotation": 89.18, "x": 0.26, "y": 0.26 },
  7. { "name": "bone3", "parent": "bone2", "length": 29.97, "rotation": -1.14, "x": 18.18 },
  8. { "name": "bone4", "parent": "bone3", "length": 9.22, "rotation": 1.96, "x": 29.97 },
  9. { "name": "bone5", "parent": "bone4", "length": 58.13, "rotation": 1.51, "x": 9.22 },
  10. { "name": "bone6", "parent": "bone3", "length": 21.8, "rotation": 156.14, "x": 26.52, "y": 12.31, "color": "d5de57ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 20.11, "rotation": -2.36, "x": 21.8, "color": "d5de57ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 14.58, "rotation": -3.21, "x": 20.86, "y": -0.07, "color": "d5de57ff" },
  13. { "name": "bone9", "parent": "bone3", "length": 22.98, "rotation": -147.71, "x": 28.11, "y": -15.71, "color": "2f7fb9ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 18.68, "rotation": 1.74, "x": 23.34, "y": -0.21, "color": "2f7fb9ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 12.42, "rotation": -11.18, "x": 18.85, "y": -0.11, "color": "2f7fb9ff" },
  16. { "name": "bone12", "parent": "bone", "length": 9.92, "rotation": -91.22, "x": 0.21, "y": -1.37 },
  17. { "name": "bone13", "parent": "bone", "length": 26.4, "rotation": -79.41, "x": 10.55, "y": -4.11, "color": "7118aaff" },
  18. { "name": "bone14", "parent": "bone13", "length": 22.91, "rotation": -4.78, "x": 27.02, "y": -0.12, "color": "7118aaff" },
  19. { "name": "bone15", "parent": "bone14", "length": 16.94, "rotation": -82.13, "x": 22.91, "color": "7118aaff" },
  20. { "name": "bone16", "parent": "bone", "length": 24.53, "rotation": -93.95, "x": -7.17, "y": -4.74, "color": "158d1cff" },
  21. { "name": "bone17", "parent": "bone16", "length": 24.48, "rotation": 3.45, "x": 24.74, "y": 0.01, "color": "158d1cff" },
  22. { "name": "bone18", "parent": "bone17", "length": 13.48, "rotation": -69.37, "x": 24.48, "color": "158d1cff" },
  23. { "name": "bone19", "parent": "bone3", "length": 8.44, "rotation": -178.04, "x": 30.67, "y": -10.67, "color": "f15421ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 13.32, "rotation": 3.63, "x": 8.86, "color": "f15421ff" },
  25. { "name": "bone21", "parent": "bone20", "length": 14.45, "rotation": 3.08, "x": 13.75, "y": 0.18, "color": "f15421ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 10.03, "rotation": 1.76, "x": 15.29, "y": -0.1, "color": "f15421ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 11.31, "rotation": 0.11, "x": 10.65, "y": -0.09, "color": "f15421ff" },
  28. { "name": "bone24", "parent": "bone3", "length": 10.44, "rotation": 173.83, "x": 28.28, "y": 9.94, "color": "495da4ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 12.35, "rotation": 0.28, "x": 11.7, "y": 0.18, "color": "495da4ff" },
  30. { "name": "bone26", "parent": "bone25", "length": 11.94, "rotation": -0.28, "x": 14.03, "y": 0.23, "color": "495da4ff" },
  31. { "name": "bone27", "parent": "bone26", "length": 9.08, "rotation": 5.47, "x": 12.35, "y": 0.06, "color": "495da4ff" },
  32. { "name": "bone28", "parent": "bone27", "length": 10.84, "rotation": -4.05, "x": 9.08, "color": "495da4ff" },
  33. { "name": "bone29", "parent": "bone5", "length": 8.24, "rotation": -4.45, "x": 19.63, "y": -9.52 },
  34. { "name": "bone30", "parent": "bone5", "length": 6.96, "rotation": -1.51, "x": 21.26, "y": 20.2 },
  35. { "name": "bone31", "parent": "bone5", "x": 20.97, "y": 5.17 },
  36. { "name": "bone32", "parent": "bone5", "x": 32.5, "y": 6.18 },
  37. { "name": "bone33", "parent": "bone5", "x": 4.21, "y": 5.88 },
  38. { "name": "bone34", "parent": "bone3", "length": 26.16, "rotation": 144.42, "x": 23.29, "y": -176.31, "color": "182eadff" },
  39. { "name": "bone35", "parent": "bone34", "length": 17.23, "rotation": -2.7, "x": 26.16, "color": "182eadff" },
  40. { "name": "bone36", "parent": "bone35", "length": 12.65, "rotation": -12.89, "x": 17.23, "color": "182eadff" },
  41. { "name": "bone37", "parent": "root", "x": 130.64, "y": 140.77 },
  42. { "name": "ziti", "parent": "root", "x": 407.07, "y": 86.52 },
  43. { "name": "ziti2", "parent": "ziti", "x": -132.92, "y": -0.11 },
  44. { "name": "ziti3", "parent": "ziti", "x": -99.33, "y": -0.84 },
  45. { "name": "ziti4", "parent": "ziti", "x": -65.64, "y": 0.03 },
  46. { "name": "ziti5", "parent": "ziti", "x": -31.94, "y": 1.32 },
  47. { "name": "ziti6", "parent": "ziti", "x": 8.24, "y": 1.32 },
  48. { "name": "ziti7", "parent": "ziti", "x": 35.02, "y": 0.46 },
  49. { "name": "ziti8", "parent": "ziti", "x": 67.42, "y": 0.46 },
  50. { "name": "ziti9", "parent": "ziti", "x": 101.98, "y": -0.4 },
  51. { "name": "ziti10", "parent": "ziti", "x": 130.49, "y": 1.32 }
  52. ],
  53. "slots": [
  54. { "name": "dibu", "bone": "bone2", "attachment": "dibu" },
  55. { "name": "teshuzuoshou", "bone": "bone34", "attachment": "teshuzuoshou" },
  56. { "name": "teshuzuoshou1", "bone": "bone35", "attachment": "teshuzuoshou1" },
  57. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  58. { "name": "zuotui", "bone": "bone16", "attachment": "zuotui" },
  59. { "name": "kadang", "bone": "bone12", "attachment": "kadang" },
  60. { "name": "youtui", "bone": "bone13", "attachment": "youtui" },
  61. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  62. { "name": "youwaitao", "bone": "bone19", "attachment": "youwaitao" },
  63. { "name": "zuowaitao", "bone": "bone24", "attachment": "zuowaitao" },
  64. { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
  65. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  66. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  67. { "name": "zuiba", "bone": "bone33", "attachment": "zuiba" },
  68. { "name": "zuoyan", "bone": "bone30", "attachment": "zuoyan" },
  69. { "name": "youyan", "bone": "bone29", "attachment": "youyan" },
  70. { "name": "biyan", "bone": "bone31" },
  71. { "name": "meimao", "bone": "bone32", "attachment": "meimao" },
  72. { "name": "toufa", "bone": "bone5", "attachment": "toufa" },
  73. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  74. { "name": "1", "bone": "ziti10", "attachment": "1" },
  75. { "name": "2", "bone": "ziti9", "attachment": "2" },
  76. { "name": "3", "bone": "ziti8", "attachment": "3" },
  77. { "name": "4", "bone": "ziti7", "attachment": "4" },
  78. { "name": "5", "bone": "ziti6", "attachment": "5" },
  79. { "name": "6", "bone": "ziti5", "attachment": "6" },
  80. { "name": "7", "bone": "ziti4", "attachment": "7" },
  81. { "name": "8", "bone": "ziti3", "attachment": "8" },
  82. { "name": "9", "bone": "ziti2", "attachment": "9" },
  83. { "name": "zhangzuixiao", "bone": "bone33", "attachment": "zhangzuixiao" },
  84. { "name": "star", "bone": "bone37", "attachment": "star" }
  85. ],
  86. "skins": {
  87. "default": {
  88. "1": {
  89. "1": { "x": -0.24, "y": 0.21, "width": 30, "height": 33 }
  90. },
  91. "2": {
  92. "2": { "x": 0.33, "y": 1.92, "width": 34, "height": 34 }
  93. },
  94. "3": {
  95. "3": { "x": 2.07, "y": 0.1, "width": 35, "height": 34 }
  96. },
  97. "4": {
  98. "4": { "x": -0.22, "y": 0.64, "width": 35, "height": 31 }
  99. },
  100. "5": {
  101. "5": { "x": -7.45, "y": 0.05, "width": 35, "height": 33 }
  102. },
  103. "6": {
  104. "6": { "x": -1.89, "y": 0.36, "width": 35, "height": 34 }
  105. },
  106. "7": {
  107. "7": { "x": -2.86, "y": 1.65, "width": 33, "height": 33 }
  108. },
  109. "8": {
  110. "8": { "x": -0.13, "y": 1.58, "width": 32, "height": 33 }
  111. },
  112. "9": {
  113. "9": { "x": -0.34, "y": 0.85, "width": 33, "height": 33 }
  114. },
  115. "biyan": {
  116. "biyan": { "x": 1.43, "y": 0.87, "rotation": -91.51, "width": 47, "height": 5 }
  117. },
  118. "bozi": {
  119. "bozi": {
  120. "type": "mesh",
  121. "uvs": [ 1, 0.70618, 0.61939, 1, 0.26383, 1, 0, 0.7831, 0, 0, 1, 0 ],
  122. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  123. "vertices": [ -0.44, -9.82, -4.26, -2.97, -4.26, 3.43, -1.44, 8.18, 8.74, 8.18, 8.74, -9.82 ],
  124. "hull": 6,
  125. "edges": [ 8, 10, 0, 10, 2, 0, 2, 4, 6, 8, 4, 6 ],
  126. "width": 18,
  127. "height": 13
  128. }
  129. },
  130. "dibu": {
  131. "dibu": {
  132. "type": "mesh",
  133. "uvs": [ 1, 0.69286, 1, 1, 0.73113, 1, 0.25818, 1, 0, 1, 0, 0.70999, 0, 0, 1, 0 ],
  134. "triangles": [ 6, 7, 0, 5, 6, 0, 3, 4, 5, 5, 2, 3, 0, 2, 5, 2, 0, 1 ],
  135. "vertices": [ 1.28, -20.96, -10.39, -21.13, -10.54, -10.64, -10.8, 7.8, -10.94, 17.87, 0.08, 18.02, 27.05, 18.41, 27.61, -20.59 ],
  136. "hull": 8,
  137. "edges": [ 12, 14, 8, 10, 10, 12, 2, 0, 0, 14, 10, 0, 6, 8, 2, 4, 4, 6 ],
  138. "width": 39,
  139. "height": 38
  140. }
  141. },
  142. "erduo": {
  143. "erduo": { "x": 22.08, "y": -35.91, "rotation": -91.51, "width": 19, "height": 21 }
  144. },
  145. "kadang": {
  146. "kadang": {
  147. "type": "mesh",
  148. "uvs": [ 1, 0.82537, 0.81711, 1, 0.26571, 1, 0, 0.86577, 0, 0, 0.27116, 0, 0.77616, 0, 1, 0 ],
  149. "triangles": [ 6, 7, 0, 3, 4, 5, 2, 3, 5, 2, 5, 6, 6, 1, 2, 0, 1, 6 ],
  150. "vertices": [ 8.56, 21.33, 12.2, 14.64, 12.63, -5.76, 10.16, -15.65, -7.15, -16.01, -7.37, -5.98, -7.76, 12.7, -7.94, 20.98 ],
  151. "hull": 8,
  152. "edges": [ 6, 8, 4, 6, 2, 4, 0, 14, 2, 0, 8, 10, 4, 10, 10, 12, 12, 14, 2, 12 ],
  153. "width": 37,
  154. "height": 20
  155. }
  156. },
  157. "lian": {
  158. "lian": { "x": 33.94, "y": -3.71, "rotation": -91.51, "width": 74, "height": 87 }
  159. },
  160. "meimao": {
  161. "meimao": { "x": 0.63, "y": -2.37, "rotation": -91.51, "width": 53, "height": 9 }
  162. },
  163. "shenti": {
  164. "shenti": {
  165. "type": "mesh",
  166. "uvs": [ 0.92425, 0.30976, 0.92524, 0.55356, 0.95028, 0.66067, 0.97793, 0.77897, 1, 0.87336, 0.64097, 1, 0.48791, 1, 0.29931, 1, 0.1072, 0.89233, 0.11174, 0.79097, 0.1165, 0.6847, 0.12164, 0.56996, 0.12984, 0.32396, 0.17904, 0, 0.51524, 0, 0.9307, 0, 0.50627, 0.32801, 0.50022, 0.55982, 0.4936, 0.79646, 0.49671, 0.68509 ],
  167. "triangles": [ 0, 14, 15, 6, 18, 5, 5, 3, 4, 5, 18, 3, 6, 7, 18, 8, 9, 7, 7, 9, 18, 18, 2, 3, 18, 19, 2, 9, 10, 18, 18, 10, 19, 19, 17, 1, 10, 11, 19, 19, 11, 17, 11, 12, 17, 19, 1, 2, 17, 16, 1, 17, 12, 16, 16, 0, 1, 12, 13, 16, 16, 14, 0, 16, 13, 14 ],
  168. "vertices": [ 2, 3, 14.76, -18.94, 0.91335, 4, -15.85, -18.41, 0.08665, 3, 3, 0.14, -19.48, 0.92113, 2, 17.93, -19.48, 0.07525, 4, -30.47, -18.45, 0.00362, 3, 3, -6.24, -20.83, 0.72345, 2, 11.52, -20.7, 0.27645, 4, -36.9, -19.58, 1.0E-4, 2, 3, -13.29, -22.31, 0.49575, 2, 4.44, -22.04, 0.50425, 2, 3, -18.92, -23.5, 0.41152, 2, -1.2, -23.12, 0.58848, 2, 3, -27.06, -7.61, 0.06512, 2, -9.03, -7.07, 0.93488, 2, 3, -27.3, -0.73, 0.00667, 2, -9.13, -0.18, 0.99333, 1, 2, -9.25, 8.3, 1, 1, 2, -2.92, 17.04, 1, 1, 2, 3.17, 16.92, 1, 1, 2, 9.55, 16.8, 1, 2, 3, -2.08, 16.62, 0.04103, 2, 16.43, 16.67, 0.95897, 3, 3, 12.69, 16.76, 0.65139, 2, 31.2, 16.51, 0.34576, 4, -16.7, 17.34, 0.00284, 3, 3, 32.19, 15.21, 0.76378, 2, 50.66, 14.57, 0.00856, 4, 2.74, 15.13, 0.22767, 1, 4, 2.74, 0, 1, 2, 3, 33.35, -18.59, 0.57086, 4, 2.74, -18.7, 0.42914, 2, 3, 13.02, -0.18, 0.99992, 4, -16.94, 0.4, 8.0E-5, 1, 2, 17.28, -0.36, 1, 2, 3, -15.09, -0.57, 0.00224, 2, 3.08, -0.26, 0.99776, 2, 3, -8.4, -0.48, 0.00721, 2, 9.77, -0.31, 0.99279 ],
  169. "hull": 16,
  170. "edges": [ 22, 24, 24, 26, 10, 8, 14, 16, 10, 12, 12, 14, 26, 28, 28, 30, 32, 28, 24, 32, 2, 0, 0, 30, 32, 0, 34, 32, 2, 34, 22, 34, 16, 18, 12, 36, 18, 36, 6, 8, 36, 6, 18, 20, 20, 22, 34, 38, 38, 36, 20, 38, 2, 4, 4, 6, 38, 4 ],
  171. "width": 45,
  172. "height": 60
  173. }
  174. },
  175. "star": {
  176. "star": { "x": 0.75, "y": 0.85, "width": 64, "height": 64 }
  177. },
  178. "teshuzuoshou": {
  179. "teshuzuoshou": {
  180. "type": "mesh",
  181. "uvs": [ 1, 0.31813, 0.45643, 1, 0.1818, 1, 0, 0.8482, 0, 0.64627, 0.72584, 0, 1, 0 ],
  182. "triangles": [ 5, 6, 0, 4, 5, 0, 2, 3, 4, 4, 1, 2, 0, 1, 4 ],
  183. "vertices": [ 4.37, 5.9, 28, 7.6, 32.02, 2.37, 31.18, -3.77, 26.54, -7.34, 1.06, -4.94, -2.94, 0.28 ],
  184. "hull": 7,
  185. "edges": [ 0, 12, 0, 2, 10, 12, 10, 8, 6, 8, 2, 4, 6, 4 ],
  186. "width": 24,
  187. "height": 29
  188. }
  189. },
  190. "teshuzuoshou1": {
  191. "teshuzuoshou1": {
  192. "type": "mesh",
  193. "uvs": [ 0.89544, 0.07616, 1, 0.18511, 1, 0.29611, 0.6886, 0.86684, 0.66926, 0.90229, 0.64643, 0.94412, 0.61595, 1, 0.19342, 1, 0, 1, 0, 0.78211, 0.23301, 0.52063, 0.26762, 0.48179, 0.29454, 0.45157, 0.69695, 0, 0.82236, 0, 0.51265, 0.67975, 0.48435, 0.70813, 0.4602, 0.73237 ],
  194. "triangles": [ 5, 6, 17, 6, 7, 17, 17, 7, 9, 7, 8, 9, 5, 17, 4, 3, 4, 16, 16, 4, 17, 16, 15, 3, 9, 10, 17, 17, 10, 16, 10, 11, 16, 16, 11, 15, 11, 12, 15, 2, 15, 0, 2, 3, 15, 0, 13, 14, 0, 15, 13, 15, 12, 13, 0, 1, 2 ],
  195. "vertices": [ 1, 35, -3.55, -0.37, 1, 1, 35, -3.6, 4.24, 1, 1, 35, -1.31, 6.18, 1, 2, 35, 17.29, 8.05, 0.5538, 36, -1.74, 7.86, 0.4462, 2, 35, 18.45, 8.17, 0.43985, 36, -0.64, 8.23, 0.56015, 2, 35, 19.81, 8.3, 0.32487, 36, 0.66, 8.67, 0.67513, 2, 35, 21.63, 8.49, 0.23504, 36, 2.39, 9.25, 0.76496, 1, 36, 13.88, 0.63, 1, 1, 36, 19.15, -3.31, 1, 1, 36, 15.62, -8.02, 1, 2, 35, 20.16, -9.81, 0.20734, 36, 5.04, -8.91, 0.79266, 2, 35, 18.6, -9.59, 0.32868, 36, 3.47, -9.05, 0.67132, 2, 35, 17.38, -9.42, 0.44069, 36, 2.25, -9.15, 0.55931, 1, 35, -0.76, -6.85, 1, 1, 35, -3.51, -3.6, 1, 2, 35, 17.3, 0.22, 0.48297, 36, 0.01, 0.23, 0.51703, 2, 35, 18.5, -0.02, 0.01482, 36, 1.24, 0.26, 0.98518, 1, 36, 2.29, 0.29, 1 ],
  196. "hull": 15,
  197. "edges": [ 16, 18, 26, 28, 4, 2, 2, 0, 0, 28, 0, 30, 12, 14, 14, 16, 24, 26, 24, 30, 4, 6, 30, 6, 22, 24, 32, 30, 22, 32, 6, 8, 32, 8, 18, 20, 20, 22, 14, 34, 34, 32, 20, 34, 8, 10, 10, 12, 34, 10 ],
  198. "width": 34,
  199. "height": 27
  200. }
  201. },
  202. "toufa": {
  203. "toufa": {
  204. "type": "mesh",
  205. "uvs": [ 0.86169, 0.20537, 1, 0.35188, 1, 0.53056, 0.90917, 1, 0.6969, 1, 0.6969, 0.69137, 0.59355, 0.60917, 0.59914, 0.50554, 0.09917, 0.55914, 0.11873, 0.92007, 0.07404, 0.93794, 0, 0.77356, 0, 0.22323, 0.23883, 0, 0.72483, 0 ],
  206. "triangles": [ 7, 13, 14, 7, 14, 0, 7, 0, 1, 8, 12, 13, 7, 1, 2, 7, 8, 13, 5, 6, 7, 2, 5, 7, 11, 12, 8, 11, 8, 9, 10, 11, 9, 3, 4, 5, 2, 3, 5 ],
  207. "vertices": [ 72.51, -40.71, 62.23, -52.48, 50.08, -52.16, 18.38, -43.42, 18.87, -24.95, 39.85, -25.51, 45.67, -16.67, 52.71, -17.34, 50.21, 26.24, 25.63, 25.19, 24.52, 29.1, 35.87, 35.25, 73.27, 34.26, 87.9, 13.09, 86.78, -29.18 ],
  208. "hull": 15,
  209. "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 28, 22, 24, 26, 28, 24, 26 ],
  210. "width": 87,
  211. "height": 68
  212. }
  213. },
  214. "youshou": {
  215. "youshou": {
  216. "type": "mesh",
  217. "uvs": [ 0.59319, 0.33014, 0.62174, 0.35403, 0.64278, 0.37164, 0.9284, 0.61074, 0.96351, 0.64013, 1, 0.67067, 1, 1, 0.59883, 1, 0.49768, 0.87495, 0.45539, 0.82267, 0.43806, 0.80124, 0.213, 0.52301, 0.18804, 0.49214, 0.16672, 0.46578, 0, 0.25967, 0, 0, 0.20444, 0.00472, 0.73998, 0.71791, 0.78149, 0.76294, 0.71331, 0.69203, 0.42819, 0.41541, 0.45435, 0.44079, 0.40065, 0.3887 ],
  218. "triangles": [ 17, 19, 3, 18, 17, 4, 10, 21, 19, 9, 10, 19, 9, 19, 17, 8, 9, 17, 8, 17, 18, 7, 8, 18, 18, 5, 6, 7, 18, 6, 21, 20, 1, 11, 12, 20, 11, 20, 21, 19, 2, 3, 21, 2, 19, 17, 3, 4, 18, 4, 5, 10, 11, 21, 22, 14, 15, 16, 22, 15, 0, 22, 16, 20, 22, 0, 20, 0, 1, 21, 1, 2, 13, 14, 22, 12, 13, 22, 12, 22, 20 ],
  219. "vertices": [ 2, 9, 21.42, 6.88, 0.95169, 10, -1.71, 7.14, 0.04831, 2, 9, 23.09, 6.99, 0.84719, 10, -0.04, 7.21, 0.15281, 2, 9, 24.32, 7.07, 0.73075, 10, 1.2, 7.25, 0.26925, 3, 9, 41.05, 8.2, 3.0E-5, 10, 17.95, 7.88, 0.96252, 11, -2.43, 7.66, 0.03745, 2, 10, 20.01, 7.95, 0.86461, 11, -0.43, 8.14, 0.13539, 2, 10, 22.15, 8.03, 0.73271, 11, 1.66, 8.63, 0.26729, 1, 11, 19.5, 1.82, 1, 1, 11, 14.78, -10.55, 1, 2, 10, 23.39, -12.31, 7.6E-4, 11, 6.81, -11.08, 0.99924, 2, 10, 20.08, -11.88, 0.03137, 11, 3.48, -11.31, 0.96863, 2, 10, 18.72, -11.7, 0.06842, 11, 2.12, -11.4, 0.93158, 3, 9, 24.74, -9.6, 0.09122, 10, 1.11, -9.43, 0.87782, 11, -15.61, -12.58, 0.03096, 3, 9, 22.77, -9.41, 0.20886, 10, -0.85, -9.17, 0.77778, 11, -17.57, -12.71, 0.01336, 3, 9, 21.1, -9.24, 0.34718, 10, -2.52, -8.96, 0.6475, 11, -19.25, -12.82, 0.00532, 2, 9, 8, -7.96, 0.99129, 10, -15.57, -7.27, 0.00871, 1, 9, -5, -0.35, 1, 1, 9, -1.35, 5.34, 1, 1, 11, 1.16, -0.36, 1, 1, 11, 4.09, -0.02, 1, 1, 11, -0.56, -0.65, 1, 3, 9, 22.94, -0.32, 0.47762, 10, -0.41, -0.1, 0.52236, 11, -18.9, -3.72, 2.0E-5, 2, 10, 1.29, -0.15, 0.9999, 11, -17.22, -3.44, 1.0E-4, 2, 9, 21.14, -0.32, 0.96099, 10, -2.21, -0.04, 0.03901 ],
  220. "hull": 17,
  221. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 18, 34, 10, 8, 34, 8, 12, 36, 36, 34, 10, 36, 14, 16, 16, 18, 36, 16, 18, 20, 38, 34, 20, 38, 8, 6, 38, 6, 24, 40, 40, 2, 20, 22, 22, 24, 38, 42, 42, 40, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 40, 26, 44, 2, 0, 0, 32, 44, 0 ],
  222. "width": 33,
  223. "height": 58
  224. }
  225. },
  226. "youtui": {
  227. "youtui": {
  228. "type": "mesh",
  229. "uvs": [ 0.92171, 0.49234, 0.92897, 0.52293, 0.93522, 0.54926, 0.99999, 0.82212, 1, 0.86169, 1, 0.88729, 1, 1, 0.17771, 1, 0.17491, 0.96488, 0.17131, 0.91979, 0.35856, 0.88389, 0.34947, 0.86314, 0.33997, 0.83806, 0.23624, 0.58237, 0.22543, 0.55572, 0.21389, 0.52728, 0, 0, 0.39585, 0, 0.80484, 0, 0.6852, 0.88729, 0.68821, 0.85669, 0.67744, 0.82638, 0.57972, 0.53961, 0.58887, 0.56648, 0.5699, 0.5108 ],
  230. "triangles": [ 7, 8, 19, 8, 10, 19, 8, 9, 10, 10, 11, 20, 7, 19, 6, 19, 5, 6, 19, 20, 5, 19, 10, 20, 20, 4, 5, 11, 21, 20, 11, 12, 21, 20, 3, 4, 20, 21, 3, 12, 23, 21, 12, 13, 23, 21, 2, 3, 21, 23, 2, 13, 22, 23, 13, 14, 22, 23, 1, 2, 23, 22, 1, 14, 24, 22, 14, 15, 24, 22, 0, 1, 22, 24, 0, 15, 17, 24, 15, 16, 17, 24, 18, 0, 24, 17, 18 ],
  231. "vertices": [ 2, 13, 25.38, 9.1, 0.91723, 14, -2.41, 9.05, 0.08277, 2, 13, 27.34, 8.94, 0.79418, 14, -0.44, 9.05, 0.20582, 2, 13, 29.03, 8.8, 0.65037, 14, 1.26, 9.06, 0.34963, 2, 13, 46.53, 7.38, 1.3E-4, 14, 18.81, 9.09, 0.99987, 2, 14, 21.33, 8.83, 0.99211, 15, -8.97, -0.35, 0.00789, 2, 14, 22.96, 8.67, 0.96415, 15, -8.58, 1.24, 0.03585, 2, 14, 30.14, 7.94, 0.7413, 15, -6.87, 8.25, 0.2587, 1, 15, 15.5, 2.8, 1, 1, 15, 15.04, 0.6, 1, 1, 15, 14.46, -2.23, 1, 2, 14, 20.93, -9.18, 0.14143, 15, 8.82, -3.22, 0.85857, 2, 14, 19.58, -9.3, 0.31231, 15, 8.75, -4.57, 0.68769, 2, 14, 17.96, -9.4, 0.48352, 15, 8.63, -6.19, 0.51648, 3, 13, 27.52, -10.82, 0.22395, 14, 1.38, -10.63, 0.77546, 15, 7.58, -22.78, 6.0E-4, 3, 13, 25.78, -10.81, 0.34158, 14, -0.35, -10.76, 0.6584, 15, 7.47, -24.51, 2.0E-5, 2, 13, 23.94, -10.79, 0.47847, 14, -2.19, -10.9, 0.52153, 1, 13, -10.34, -10.48, 1, 1, 13, -8.3, 0.42, 1, 1, 13, -6.19, 11.68, 1, 2, 14, 22.07, -0.1, 0.97606, 15, -0.01, -0.84, 0.02394, 1, 14, 20.13, 0.18, 1, 1, 14, 18.17, 0.08, 1, 2, 13, 26.59, -0.87, 0.40033, 14, -0.37, -0.78, 0.59967, 1, 14, 1.37, -0.7, 1, 2, 13, 24.73, -0.8, 0.90082, 14, -2.23, -0.87, 0.09918 ],
  232. "hull": 19,
  233. "edges": [ 18, 20, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 10, 12, 38, 10, 20, 22, 40, 38, 22, 40, 6, 8, 8, 10, 40, 8, 22, 24, 42, 40, 24, 42, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  234. "width": 28,
  235. "height": 64
  236. }
  237. },
  238. "youwaitao": {
  239. "youwaitao": {
  240. "type": "mesh",
  241. "uvs": [ 0.2475, 0.01897, 0.72169, 0.05533, 0.74446, 0.18378, 0.75806, 0.26048, 0.7716, 0.33683, 0.78693, 0.44658, 0.80929, 0.54948, 0.86353, 0.6504, 0.90989, 0.73656, 0.95063, 0.81889, 1, 0.90437, 1, 1, 0.54649, 1, 0, 1, 0, 0.93027, 1.0E-5, 0.83722, 0, 0.75451, 0, 0.65932, 0, 0.55622, 1.0E-5, 0.44767, 0, 0.34913, 0, 0.26804, 0, 0.18417, 0, 0, 0.31089, 0.44471, 0.36399, 0.65505, 0.33609, 0.55585, 0.27854, 0.2649, 0.4646, 0.82914, 0.50349, 0.91871, 0.41591, 0.74894, 0.28892, 0.34721, 0.26831, 0.18388 ],
  242. "triangles": [ 12, 10, 11, 13, 29, 12, 12, 29, 10, 13, 14, 29, 14, 28, 29, 14, 15, 28, 29, 9, 10, 29, 28, 9, 15, 30, 28, 28, 8, 9, 15, 16, 30, 28, 30, 8, 16, 25, 30, 16, 17, 25, 30, 7, 8, 30, 25, 7, 25, 6, 7, 17, 26, 25, 17, 18, 26, 25, 26, 6, 18, 24, 26, 18, 19, 24, 26, 5, 6, 26, 24, 5, 19, 31, 24, 24, 4, 5, 24, 31, 4, 19, 20, 31, 20, 27, 31, 20, 21, 27, 31, 3, 4, 31, 27, 3, 21, 32, 27, 21, 22, 32, 27, 2, 3, 27, 32, 2, 22, 0, 32, 22, 23, 0, 32, 1, 2, 32, 0, 1 ],
  243. "vertices": [ 1, 19, -3.17, 0.08, 1, 3, 19, -0.81, 9.57, 0.88355, 20, -9.04, 10.16, 0.1161, 21, -22.23, 11.18, 3.5E-4, 3, 19, 7.54, 10.02, 0.38621, 20, -0.68, 10.08, 0.55432, 21, -13.88, 10.66, 0.05948, 3, 19, 12.53, 10.29, 0.06635, 20, 4.31, 10.04, 0.70208, 21, -8.9, 10.35, 0.23156, 3, 19, 17.49, 10.56, 6.2E-4, 20, 9.28, 10, 0.4143, 21, -3.94, 10.04, 0.58508, 3, 20, 16.42, 9.85, 0.01542, 21, 3.18, 9.51, 0.98107, 22, -11.8, 9.98, 0.00351, 2, 21, 9.88, 9.17, 0.85131, 22, -5.12, 9.43, 0.14869, 3, 21, 16.52, 9.48, 0.33226, 22, 1.53, 9.54, 0.65108, 23, -9.11, 9.65, 0.01667, 3, 21, 22.19, 9.75, 0.04446, 22, 7.2, 9.63, 0.73341, 23, -3.43, 9.73, 0.22213, 3, 21, 27.6, 9.93, 1.6E-4, 22, 12.62, 9.65, 0.33249, 23, 1.98, 9.74, 0.66736, 2, 22, 18.26, 9.81, 0.05337, 23, 7.62, 9.89, 0.94663, 1, 23, 13.77, 8.96, 1, 1, 23, 12.42, -0.01, 1, 1, 23, 10.78, -10.82, 1, 2, 22, 16.98, -10.22, 0.03012, 23, 6.3, -10.14, 0.96988, 3, 21, 26.56, -9.09, 0.00209, 22, 10.99, -9.33, 0.33554, 23, 0.32, -9.24, 0.66236, 3, 21, 21.22, -8.46, 0.08055, 22, 5.68, -8.54, 0.7348, 23, -4.99, -8.44, 0.18465, 3, 21, 15.08, -7.74, 0.56011, 22, -0.44, -7.63, 0.43537, 23, -11.11, -7.51, 0.00452, 3, 20, 22.54, -6.31, 0.02076, 21, 8.42, -6.95, 0.96823, 22, -7.07, -6.64, 0.01101, 2, 20, 15.49, -5.86, 0.48188, 21, 1.41, -6.13, 0.51812, 1, 20, 9.1, -5.46, 1, 2, 19, 13.02, -4.87, 1.7E-4, 20, 3.84, -5.12, 0.99983, 2, 19, 7.57, -4.87, 0.46615, 20, -1.6, -4.78, 0.53385, 1, 19, -4.4, -4.87, 1, 1, 21, 1.95, 0.07, 1, 1, 22, 0.35, -0.39, 1, 2, 20, 22.94, 0.4, 4.0E-5, 21, 9.18, -0.28, 0.99996, 2, 20, 3.99, 0.45, 0.99556, 21, -9.74, 0.79, 0.00444, 1, 23, 1.19, 0.03, 1, 1, 23, 7.06, -0.07, 1, 3, 21, 21.83, -0.16, 3.3E-4, 22, 6.54, -0.26, 0.99835, 23, -4.11, -0.16, 0.00132, 2, 20, 9.34, 0.32, 0.97769, 21, -4.4, 0.37, 0.02231, 2, 19, 7.55, 0.5, 0.99926, 21, -14.99, 1.2, 7.4E-4 ],
  244. "hull": 24,
  245. "edges": [ 22, 20, 2, 0, 0, 46, 22, 24, 24, 26, 38, 48, 10, 12, 48, 10, 48, 52, 52, 50, 12, 52, 36, 38, 52, 36, 6, 54, 54, 42, 34, 36, 34, 50, 12, 14, 50, 14, 30, 56, 18, 20, 56, 18, 24, 58, 58, 56, 20, 58, 26, 28, 28, 30, 58, 28, 14, 16, 16, 18, 50, 60, 60, 56, 16, 60, 30, 32, 32, 34, 60, 32, 6, 8, 8, 10, 48, 62, 62, 54, 8, 62, 38, 40, 40, 42, 62, 40, 42, 44, 44, 46, 0, 64, 64, 54, 44, 64, 2, 4, 4, 6, 64, 4 ],
  246. "width": 20,
  247. "height": 65
  248. }
  249. },
  250. "youyan": {
  251. "youyan": { "x": 4.71, "y": -1.08, "rotation": -87.06, "width": 27, "height": 12 }
  252. },
  253. "zhangzuixiao": {
  254. "zhangzuixiao": { "x": -0.21, "y": -1, "rotation": -91.51, "width": 24, "height": 7 }
  255. },
  256. "zuiba": {
  257. "zuiba": { "x": -0.6, "y": -2.79, "rotation": -91.51, "width": 16, "height": 6 }
  258. },
  259. "zuoshou": {
  260. "zuoshou": {
  261. "type": "mesh",
  262. "uvs": [ 1, 0.26625, 0.82905, 0.47137, 0.80432, 0.50104, 0.78296, 0.52668, 0.54613, 0.81086, 0.52477, 0.83648, 0.50172, 0.86413, 0.38849, 1, 0, 1, 0, 0.68797, 0.03498, 0.65795, 0.07708, 0.62183, 0.36105, 0.37817, 0.38901, 0.35419, 0.41496, 0.33192, 0.80179, 1.0E-5, 0.93317, 0, 1, 0, 0.60035, 0.4253, 0.29188, 0.7473, 0.2577, 0.77689, 0.31954, 0.71842, 0.57425, 0.45254, 0.62252, 0.39697 ],
  263. "triangles": [ 10, 11, 19, 20, 10, 19, 9, 10, 20, 6, 19, 5, 20, 19, 6, 8, 9, 20, 7, 20, 6, 8, 20, 7, 22, 13, 18, 12, 13, 22, 3, 18, 2, 22, 18, 3, 21, 11, 12, 21, 12, 22, 19, 11, 21, 4, 21, 22, 4, 22, 3, 5, 21, 4, 19, 21, 5, 16, 17, 0, 23, 14, 15, 23, 15, 16, 0, 23, 16, 18, 14, 23, 13, 14, 18, 1, 23, 0, 2, 23, 1, 18, 23, 2 ],
  264. "vertices": [ 1, 6, 7.52, 8.35, 1, 2, 6, 20.58, 8.21, 0.70035, 7, -1.56, 8.15, 0.29965, 2, 6, 22.47, 8.19, 0.49352, 7, 0.33, 8.21, 0.50648, 2, 6, 24.1, 8.17, 0.32199, 7, 1.96, 8.26, 0.67801, 2, 7, 20.04, 8.81, 0.61648, 8, -1.32, 8.82, 0.38352, 2, 7, 21.67, 8.86, 0.46087, 8, 0.31, 8.96, 0.53913, 2, 7, 23.43, 8.91, 0.30549, 8, 2.06, 9.12, 0.69451, 2, 7, 32.08, 9.18, 0.00606, 8, 10.68, 9.86, 0.99394, 1, 8, 17.56, -1.41, 1, 2, 7, 22.64, -10.86, 0.16872, 8, 2.37, -10.68, 0.83128, 2, 7, 20.57, -10.62, 0.27094, 8, 0.29, -10.55, 0.72906, 2, 7, 18.08, -10.34, 0.45621, 8, -2.21, -10.4, 0.54379, 3, 6, 22.73, -8.43, 0.27124, 7, 1.27, -8.38, 0.72865, 8, -19.09, -9.39, 1.1E-4, 2, 6, 21.08, -8.17, 0.43654, 7, -0.38, -8.19, 0.56346, 2, 6, 19.56, -7.93, 0.60397, 7, -1.91, -8.01, 0.39603, 1, 6, -3.2, -4.33, 1, 1, 6, -5.15, -0.31, 1, 1, 6, -6.14, 1.74, 1, 2, 6, 21.6, 0.07, 0.65652, 7, -0.2, 0.06, 0.34348, 2, 7, 20.93, -0.52, 0.12754, 8, 0.09, -0.44, 0.87246, 1, 8, 2.14, -0.56, 1, 1, 7, 19.04, -0.47, 1, 1, 7, 1.59, 0.01, 1, 1, 6, 19.82, 0.04, 1 ],
  265. "hull": 18,
  266. "edges": [ 16, 18, 0, 34, 14, 16, 30, 32, 32, 34, 18, 20, 20, 38, 38, 10, 16, 40, 40, 38, 18, 40, 10, 12, 12, 14, 40, 12, 8, 10, 42, 38, 8, 42, 20, 22, 42, 22, 26, 36, 36, 4, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 4, 6, 6, 8, 44, 6, 0, 2, 2, 4, 32, 46, 46, 36, 2, 46, 26, 28, 28, 30, 46, 28 ],
  267. "width": 34,
  268. "height": 57
  269. }
  270. },
  271. "zuotui": {
  272. "zuotui": {
  273. "type": "mesh",
  274. "uvs": [ 0.60957, 0.05488, 1, 0.12537, 1, 0.18935, 0.92672, 0.50608, 0.92129, 0.52954, 0.91504, 0.55655, 0.838, 0.88953, 0.83315, 0.91051, 0.82835, 0.93124, 0.81244, 1, 0, 1, 0, 0.97193, 0, 0.92107, 0.22227, 0.8899, 0.22411, 0.87022, 0.22595, 0.85057, 0.25425, 0.5482, 0.25616, 0.52775, 0.25879, 0.49962, 0.30555, 0, 0.53365, 0.90794, 0.53513, 0.89136, 0.53699, 0.87041, 0.56764, 0.52599, 0.56545, 0.5507, 0.56986, 0.50111 ],
  275. "triangles": [ 10, 20, 9, 10, 11, 20, 11, 13, 20, 11, 12, 13, 13, 14, 20, 9, 20, 8, 20, 21, 8, 8, 21, 7, 21, 22, 7, 7, 22, 6, 20, 14, 21, 14, 15, 21, 21, 15, 22, 22, 24, 6, 6, 24, 5, 15, 16, 22, 22, 16, 24, 24, 23, 5, 5, 23, 4, 16, 17, 24, 24, 17, 23, 23, 25, 4, 4, 25, 3, 17, 18, 23, 23, 18, 25, 3, 25, 2, 25, 0, 2, 25, 18, 0, 18, 19, 0, 0, 1, 2 ],
  276. "vertices": [ 1, 16, -5.36, -0.16, 1, 1, 16, -1.63, 11.44, 1, 1, 16, 2.45, 11.72, 1, 2, 16, 22.82, 11, 0.46478, 17, -1.26, 11.08, 0.53522, 2, 16, 24.33, 10.94, 0.35303, 17, 0.24, 10.93, 0.64697, 2, 16, 26.07, 10.88, 0.23505, 17, 1.97, 10.77, 0.76495, 2, 17, 23.3, 8.72, 0.9381, 18, -8.57, 1.97, 0.0619, 2, 17, 24.65, 8.59, 0.87847, 18, -7.98, 3.18, 0.12153, 2, 17, 25.97, 8.46, 0.80522, 18, -7.39, 4.38, 0.19478, 2, 17, 30.38, 8.04, 0.62505, 18, -5.44, 8.35, 0.37495, 1, 18, 16.68, 0.24, 1, 1, 18, 16.06, -1.44, 1, 1, 18, 14.94, -4.5, 1, 2, 17, 23.48, -9.14, 0.12038, 18, 8.2, -4.15, 0.87962, 2, 17, 22.22, -9.09, 0.26, 18, 7.72, -5.32, 0.74, 2, 17, 20.96, -9.05, 0.39072, 18, 7.23, -6.48, 0.60928, 2, 16, 26.85, -8.27, 0.65125, 17, 1.6, -8.4, 0.34875, 2, 16, 25.54, -8.31, 0.7698, 17, 0.29, -8.35, 0.2302, 2, 16, 23.74, -8.35, 0.9016, 17, -1.51, -8.29, 0.0984, 1, 16, -8.25, -9.2, 1, 2, 17, 24.56, -0.1, 0.41326, 18, 0.12, 0.04, 0.58674, 1, 17, 23.49, -0.06, 1, 2, 17, 22.15, -0.02, 0.99786, 18, -0.8, -2.18, 0.00214, 2, 16, 24.81, 0.7, 0.31559, 17, 0.1, 0.68, 0.68441, 1, 17, 1.69, 0.63, 1, 2, 16, 23.21, 0.65, 0.89741, 17, -1.49, 0.73, 0.10259 ],
  277. "hull": 20,
  278. "edges": [ 26, 24, 18, 20, 4, 2, 2, 0, 0, 38, 20, 22, 22, 24, 40, 22, 26, 40, 16, 18, 40, 16, 26, 28, 42, 40, 28, 42, 14, 16, 42, 14, 28, 30, 44, 42, 30, 44, 12, 14, 44, 12, 34, 46, 46, 8, 30, 32, 32, 34, 44, 48, 48, 46, 32, 48, 8, 10, 10, 12, 48, 10, 34, 36, 36, 38, 0, 50, 50, 46, 36, 50, 4, 6, 6, 8, 50, 6 ],
  279. "width": 29,
  280. "height": 64
  281. }
  282. },
  283. "zuowaitao": {
  284. "zuowaitao": {
  285. "type": "mesh",
  286. "uvs": [ 1, 0.1445, 0.94699, 0.25944, 0.89483, 0.38008, 0.84835, 0.4911, 0.83123, 0.60324, 0.81456, 0.71241, 0.80609, 0.81649, 0.79786, 0.91772, 0.79117, 1, 0.36215, 1, 0, 1, 0.00666, 0.91944, 0.0155, 0.81245, 0.0245, 0.70348, 0.0771, 0.56782, 0.12295, 0.44957, 0.18479, 0.32842, 0.26072, 0.22913, 0.33334, 0.10201, 0.39161, 0, 0.73104, 0, 0.99998, 0.01581, 0.69188, 0.12486, 0.61456, 0.24476, 0.51893, 0.47371, 0.44404, 0.70491, 0.40826, 0.81097, 0.3819, 0.91904, 0.58834, 0.35233, 0.48246, 0.58632 ],
  287. "triangles": [ 9, 27, 8, 8, 27, 7, 10, 11, 9, 9, 11, 27, 11, 12, 27, 27, 26, 7, 27, 12, 26, 7, 26, 6, 26, 25, 6, 6, 25, 5, 12, 13, 26, 26, 13, 25, 25, 29, 5, 13, 14, 25, 5, 29, 4, 25, 14, 29, 29, 24, 4, 4, 24, 3, 14, 15, 29, 29, 15, 24, 24, 28, 3, 3, 28, 2, 15, 16, 24, 24, 16, 28, 28, 23, 2, 2, 23, 1, 16, 17, 28, 28, 17, 23, 23, 22, 1, 1, 22, 0, 17, 18, 23, 23, 18, 22, 22, 20, 0, 20, 21, 0, 18, 19, 22, 22, 19, 20 ],
  288. "vertices": [ 2, 24, 4.28, 5.47, 0.98506, 25, -7.39, 5.33, 0.01494, 2, 24, 11.59, 5.55, 0.32752, 25, -0.09, 5.37, 0.67248, 2, 25, 7.57, 5.48, 0.94936, 26, -6.48, 5.22, 0.05064, 3, 25, 14.61, 5.61, 0.16223, 26, 0.56, 5.38, 0.83759, 27, -11.23, 6.42, 1.8E-4, 2, 26, 7.6, 6.07, 0.81166, 27, -4.16, 6.44, 0.18834, 3, 26, 14.45, 6.75, 0.0538, 27, 2.73, 6.46, 0.94057, 28, -6.8, 5.99, 0.00563, 2, 27, 9.28, 6.61, 0.53015, 28, -0.27, 6.61, 0.46985, 2, 27, 15.66, 6.76, 0.02079, 28, 6.08, 7.21, 0.97921, 1, 28, 11.25, 7.69, 1, 1, 28, 12.15, 0.02, 1, 1, 28, 12.91, -6.45, 1, 2, 27, 16.43, -7.46, 0.02115, 28, 7.85, -6.92, 0.97885, 3, 26, 22.72, -6.6, 0.01512, 27, 9.69, -7.62, 0.42961, 28, 1.14, -7.55, 0.55526, 3, 26, 15.91, -7.41, 0.2985, 27, 2.82, -7.77, 0.66641, 28, -5.69, -8.2, 0.03509, 3, 25, 21.3, -7.48, 0.03495, 26, 7.31, -7.68, 0.92785, 27, -5.76, -7.22, 0.0372, 2, 25, 13.81, -7.69, 0.53958, 26, -0.18, -7.92, 0.46042, 3, 24, 17.83, -7.42, 0.05961, 25, 6.09, -7.63, 0.93445, 26, -7.89, -7.89, 0.00593, 2, 24, 11.44, -6.95, 0.5562, 25, -0.29, -7.13, 0.4438, 1, 24, 3.33, -6.79, 1, 1, 24, -3.18, -6.66, 1, 1, 24, -4.05, -0.61, 1, 1, 24, -3.74, 4.32, 1, 1, 24, 3.84, -0.19, 1, 2, 24, 11.52, -0.5, 0.27205, 25, -0.18, -0.68, 0.72795, 2, 25, 14.34, -0.42, 0.07259, 26, 0.32, -0.65, 0.92741, 2, 26, 14.93, 0.08, 0.00675, 27, 2.56, -0.23, 0.99325, 3, 26, 21.63, 0.39, 1.4E-4, 27, 9.27, -0.56, 0.33173, 28, 0.22, -0.54, 0.66813, 2, 27, 16.09, -0.72, 2.0E-5, 28, 7.04, -0.22, 0.99998, 2, 24, 18.29, -0.01, 3.0E-4, 25, 6.59, -0.22, 0.9997, 2, 25, 21.46, -0.1, 1.9E-4, 26, 7.43, -0.29, 0.99981 ],
  289. "hull": 22,
  290. "edges": [ 0, 42, 38, 36, 36, 34, 0, 2, 2, 4, 38, 40, 40, 42, 0, 44, 44, 36, 40, 44, 2, 46, 46, 34, 44, 46, 50, 52, 16, 18, 18, 20, 26, 50, 50, 10, 24, 26, 24, 52, 10, 12, 52, 12, 20, 22, 22, 24, 18, 54, 54, 52, 22, 54, 12, 14, 14, 16, 54, 14, 30, 48, 4, 6, 48, 6, 46, 56, 56, 48, 4, 56, 30, 32, 32, 34, 56, 32, 6, 8, 8, 10, 48, 58, 58, 50, 8, 58, 26, 28, 28, 30, 58, 28 ],
  291. "width": 18,
  292. "height": 63
  293. }
  294. },
  295. "zuoyan": {
  296. "zuoyan": { "x": 3.3, "y": 0.43, "rotation": -90, "width": 24, "height": 11 }
  297. }
  298. }
  299. },
  300. "animations": {
  301. "stand1": {
  302. "slots": {
  303. "1": {
  304. "color": [
  305. { "time": 1.6, "color": "ffffff00" },
  306. { "time": 1.6667, "color": "ffffffff", "curve": "stepped" },
  307. { "time": 2.2, "color": "ffffffff", "curve": "stepped" },
  308. { "time": 2.9, "color": "ffffffff" },
  309. { "time": 3.4, "color": "ffffff00" }
  310. ],
  311. "attachment": [
  312. { "time": 0, "name": null },
  313. { "time": 1.6, "name": "1" }
  314. ]
  315. },
  316. "2": {
  317. "color": [
  318. { "time": 1.4667, "color": "ffffff00" },
  319. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  320. { "time": 2.9, "color": "ffffffff" },
  321. { "time": 3.4, "color": "ffffff00" }
  322. ],
  323. "attachment": [
  324. { "time": 0, "name": null },
  325. { "time": 1.4667, "name": "2" }
  326. ]
  327. },
  328. "3": {
  329. "color": [
  330. { "time": 1.3333, "color": "ffffff00" },
  331. { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
  332. { "time": 2.9, "color": "ffffffff" },
  333. { "time": 3.4, "color": "ffffff00" }
  334. ],
  335. "attachment": [
  336. { "time": 0, "name": null },
  337. { "time": 1.3333, "name": "3" }
  338. ]
  339. },
  340. "4": {
  341. "color": [
  342. { "time": 1.2, "color": "ffffff00" },
  343. { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
  344. { "time": 2.9, "color": "ffffffff" },
  345. { "time": 3.4, "color": "ffffff00" }
  346. ],
  347. "attachment": [
  348. { "time": 0, "name": null },
  349. { "time": 1.2, "name": "4" }
  350. ]
  351. },
  352. "5": {
  353. "color": [
  354. { "time": 1.0667, "color": "ffffff00" },
  355. { "time": 1.1333, "color": "ffffffff", "curve": "stepped" },
  356. { "time": 2.9, "color": "ffffffff" },
  357. { "time": 3.4, "color": "ffffff00" }
  358. ],
  359. "attachment": [
  360. { "time": 0, "name": null },
  361. { "time": 1.0667, "name": "5" }
  362. ]
  363. },
  364. "6": {
  365. "color": [
  366. { "time": 0.9333, "color": "ffffff00" },
  367. { "time": 1, "color": "ffffffff", "curve": "stepped" },
  368. { "time": 2.9, "color": "ffffffff" },
  369. { "time": 3.4, "color": "ffffff00" }
  370. ],
  371. "attachment": [
  372. { "time": 0, "name": null },
  373. { "time": 0.9333, "name": "6" }
  374. ]
  375. },
  376. "7": {
  377. "color": [
  378. { "time": 0.8, "color": "ffffff00" },
  379. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  380. { "time": 2.9, "color": "ffffffff" },
  381. { "time": 3.4, "color": "ffffff00" }
  382. ],
  383. "attachment": [
  384. { "time": 0, "name": null },
  385. { "time": 0.8, "name": "7" }
  386. ]
  387. },
  388. "8": {
  389. "color": [
  390. { "time": 0.6667, "color": "ffffff00" },
  391. { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
  392. { "time": 2.9, "color": "ffffffff" },
  393. { "time": 3.4, "color": "ffffff00" }
  394. ],
  395. "attachment": [
  396. { "time": 0, "name": null },
  397. { "time": 0.6667, "name": "8" }
  398. ]
  399. },
  400. "9": {
  401. "color": [
  402. { "time": 0.4333, "color": "ffffff00" },
  403. { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
  404. { "time": 2.9, "color": "ffffffff" },
  405. { "time": 3.4, "color": "ffffff00" }
  406. ],
  407. "attachment": [
  408. { "time": 0, "name": null },
  409. { "time": 0.4333, "name": "9" }
  410. ]
  411. },
  412. "biyan": {
  413. "attachment": [
  414. { "time": 0.1, "name": "biyan" },
  415. { "time": 0.2667, "name": null },
  416. { "time": 1.1333, "name": "biyan" },
  417. { "time": 1.2333, "name": null },
  418. { "time": 2.7667, "name": "biyan" },
  419. { "time": 2.9, "name": null }
  420. ]
  421. },
  422. "star": {
  423. "color": [
  424. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  425. { "time": 0.1667, "color": "ffffff00" },
  426. { "time": 0.4667, "color": "ffffffff", "curve": "stepped" },
  427. { "time": 0.6667, "color": "ffffffff" },
  428. { "time": 1.3667, "color": "ffffff00", "curve": "stepped" },
  429. { "time": 1.4333, "color": "ffffff00" },
  430. { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
  431. { "time": 2.0667, "color": "ffffffff" },
  432. { "time": 2.7, "color": "ffffff00" }
  433. ]
  434. },
  435. "teshuzuoshou": {
  436. "attachment": [
  437. { "time": 0, "name": null },
  438. { "time": 0.3333, "name": "teshuzuoshou" }
  439. ]
  440. },
  441. "teshuzuoshou1": {
  442. "attachment": [
  443. { "time": 0, "name": null },
  444. { "time": 0.3333, "name": "teshuzuoshou1" }
  445. ]
  446. },
  447. "youyan": {
  448. "attachment": [
  449. { "time": 0.1, "name": null },
  450. { "time": 0.2667, "name": "youyan" },
  451. { "time": 1.1333, "name": null },
  452. { "time": 1.2333, "name": "youyan" },
  453. { "time": 2.7667, "name": null },
  454. { "time": 2.9, "name": "youyan" }
  455. ]
  456. },
  457. "zhangzuixiao": {
  458. "attachment": [
  459. { "time": 0, "name": null },
  460. { "time": 0.1667, "name": "zhangzuixiao" },
  461. { "time": 2.7667, "name": null }
  462. ]
  463. },
  464. "zuiba": {
  465. "attachment": [
  466. { "time": 0.1667, "name": null },
  467. { "time": 2.7667, "name": "zuiba" }
  468. ]
  469. },
  470. "zuoshou": {
  471. "attachment": [
  472. { "time": 0.3333, "name": null },
  473. { "time": 0.3667, "name": null }
  474. ]
  475. },
  476. "zuoyan": {
  477. "attachment": [
  478. { "time": 0.1, "name": null },
  479. { "time": 0.2667, "name": "zuoyan" },
  480. { "time": 1.1333, "name": null },
  481. { "time": 1.2333, "name": "zuoyan" },
  482. { "time": 2.7667, "name": null },
  483. { "time": 2.9, "name": "zuoyan" }
  484. ]
  485. }
  486. },
  487. "bones": {
  488. "root": {
  489. "rotate": [
  490. { "time": 0, "angle": 0 }
  491. ],
  492. "translate": [
  493. { "time": 0, "x": -0.65, "y": -0.66 }
  494. ],
  495. "scale": [
  496. { "time": 0, "x": 0.65, "y": 0.65 }
  497. ]
  498. },
  499. "bone": {
  500. "rotate": [
  501. { "time": 0, "angle": 0, "curve": "stepped" },
  502. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  503. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  504. { "time": 0.5, "angle": 0, "curve": "stepped" },
  505. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  506. { "time": 2.5, "angle": 0 }
  507. ],
  508. "translate": [
  509. { "time": 0, "x": 0, "y": 0 },
  510. { "time": 0.1667, "x": 0, "y": -1.69 },
  511. { "time": 0.3333, "x": 4.77, "y": 0, "curve": "stepped" },
  512. { "time": 0.5, "x": 4.77, "y": 0, "curve": "stepped" },
  513. { "time": 0.6333, "x": 4.77, "y": 0, "curve": "stepped" },
  514. { "time": 2.5, "x": 4.77, "y": 0 }
  515. ],
  516. "scale": [
  517. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  520. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  521. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  522. { "time": 2.5, "x": 1, "y": 1 }
  523. ]
  524. },
  525. "bone2": {
  526. "rotate": [
  527. { "time": 0, "angle": 0, "curve": "stepped" },
  528. { "time": 0.1667, "angle": 0 },
  529. {
  530. "time": 0.3333,
  531. "angle": -1.89,
  532. "curve": [ 0.25, 0, 0.75, 1 ]
  533. },
  534. { "time": 0.6333, "angle": -5.39, "curve": "stepped" },
  535. {
  536. "time": 2.5,
  537. "angle": -5.39,
  538. "curve": [ 0.25, 0, 0.75, 1 ]
  539. },
  540. { "time": 2.8, "angle": -3.73 }
  541. ],
  542. "translate": [
  543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  544. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  545. {
  546. "time": 0.3333,
  547. "x": 0,
  548. "y": 0,
  549. "curve": [ 0.25, 0, 0.75, 1 ]
  550. },
  551. { "time": 0.6333, "x": 0.08, "y": -0.01, "curve": "stepped" },
  552. { "time": 2.5, "x": 0.08, "y": -0.01 }
  553. ],
  554. "scale": [
  555. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  556. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  557. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  558. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  559. { "time": 2.5, "x": 1, "y": 1 }
  560. ]
  561. },
  562. "bone3": {
  563. "rotate": [
  564. { "time": 0, "angle": 0, "curve": "stepped" },
  565. { "time": 0.1667, "angle": 0 },
  566. {
  567. "time": 0.3333,
  568. "angle": 1.92,
  569. "curve": [ 0.25, 0, 0.75, 1 ]
  570. },
  571. { "time": 0.7, "angle": 1.66, "curve": "stepped" },
  572. { "time": 2.5, "angle": 1.66 },
  573. { "time": 2.8, "angle": 3.86 }
  574. ],
  575. "translate": [
  576. { "time": 0, "x": 0, "y": 0 },
  577. { "time": 0.1667, "x": -1.25, "y": 0.02 },
  578. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  579. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  580. { "time": 2.5, "x": 0, "y": 0 }
  581. ],
  582. "scale": [
  583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  584. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  587. { "time": 2.5, "x": 1, "y": 1 }
  588. ]
  589. },
  590. "bone4": {
  591. "rotate": [
  592. { "time": 0, "angle": 0, "curve": "stepped" },
  593. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  594. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  595. { "time": 0.5, "angle": 0, "curve": "stepped" },
  596. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  597. { "time": 2.5, "angle": 0 }
  598. ],
  599. "translate": [
  600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  601. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  604. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  605. { "time": 2.5, "x": 0, "y": 0 }
  606. ],
  607. "scale": [
  608. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  611. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  612. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  613. { "time": 2.5, "x": 1, "y": 1 }
  614. ]
  615. },
  616. "bone5": {
  617. "rotate": [
  618. { "time": 0, "angle": 0, "curve": "stepped" },
  619. { "time": 2.5, "angle": 0 },
  620. { "time": 2.8, "angle": -1.57 }
  621. ],
  622. "translate": [
  623. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 2.5, "x": 0, "y": 0 }
  625. ],
  626. "scale": [
  627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  628. { "time": 2.5, "x": 1, "y": 1 }
  629. ]
  630. },
  631. "bone6": {
  632. "rotate": [
  633. { "time": 0, "angle": 0 },
  634. { "time": 0.1667, "angle": 22.71 },
  635. { "time": 0.3333, "angle": -12.75, "curve": "stepped" },
  636. { "time": 0.3667, "angle": -12.75 }
  637. ],
  638. "translate": [
  639. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  641. { "time": 0.3333, "x": 0, "y": 0 },
  642. { "time": 0.3667, "x": -2.17, "y": 124.31 }
  643. ],
  644. "scale": [
  645. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  646. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  647. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  648. { "time": 0.3667, "x": 1, "y": 1 }
  649. ]
  650. },
  651. "bone7": {
  652. "rotate": [
  653. { "time": 0, "angle": 0 },
  654. { "time": 0.1667, "angle": -14.42 },
  655. { "time": 0.3333, "angle": -18.21, "curve": "stepped" },
  656. { "time": 0.5, "angle": -18.21 }
  657. ],
  658. "translate": [
  659. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  660. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  661. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  662. { "time": 0.5, "x": 0, "y": 0 }
  663. ],
  664. "scale": [
  665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  666. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  667. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  668. { "time": 0.5, "x": 1, "y": 1 }
  669. ]
  670. },
  671. "bone8": {
  672. "rotate": [
  673. { "time": 0, "angle": 0 },
  674. { "time": 0.1667, "angle": -5.89 },
  675. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  676. { "time": 0.5, "angle": 0 }
  677. ],
  678. "translate": [
  679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 0.5, "x": 0, "y": 0 }
  683. ],
  684. "scale": [
  685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.5, "x": 1, "y": 1 }
  689. ]
  690. },
  691. "bone9": {
  692. "rotate": [
  693. { "time": 0, "angle": 0 },
  694. { "time": 0.1667, "angle": -15.35 },
  695. {
  696. "time": 0.3333,
  697. "angle": 9.96,
  698. "curve": [ 0.25, 0, 0.75, 1 ]
  699. },
  700. { "time": 0.6333, "angle": -2.74, "curve": "stepped" },
  701. { "time": 2.5, "angle": -2.74 },
  702. { "time": 2.8, "angle": -12.19 }
  703. ],
  704. "translate": [
  705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 0.1667, "x": 0, "y": 0 },
  707. {
  708. "time": 0.3333,
  709. "x": 1.39,
  710. "y": -0.5,
  711. "curve": [ 0.25, 0, 0.75, 1 ]
  712. },
  713. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  714. { "time": 2.5, "x": 0, "y": 0 }
  715. ],
  716. "scale": [
  717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 2.5, "x": 1, "y": 1 }
  722. ]
  723. },
  724. "bone10": {
  725. "rotate": [
  726. { "time": 0, "angle": 0 },
  727. { "time": 0.1667, "angle": -5.5 },
  728. {
  729. "time": 0.3333,
  730. "angle": -51.85,
  731. "curve": [ 0.25, 0, 0.75, 1 ]
  732. },
  733. { "time": 0.6333, "angle": -41.16, "curve": "stepped" },
  734. { "time": 2.5, "angle": -41.16 },
  735. { "time": 2.8, "angle": -19.82 }
  736. ],
  737. "translate": [
  738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  739. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 2.5, "x": 0, "y": 0 }
  743. ],
  744. "scale": [
  745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  746. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 2.5, "x": 1, "y": 1 }
  750. ]
  751. },
  752. "bone11": {
  753. "rotate": [
  754. { "time": 0, "angle": 0, "curve": "stepped" },
  755. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  756. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  757. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  758. { "time": 2.5, "angle": 0 }
  759. ],
  760. "translate": [
  761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 2.5, "x": 0, "y": 0 }
  766. ],
  767. "scale": [
  768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 2.5, "x": 1, "y": 1 }
  773. ]
  774. },
  775. "bone12": {
  776. "rotate": [
  777. { "time": 0, "angle": 0, "curve": "stepped" },
  778. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  779. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  780. { "time": 0.5, "angle": 0, "curve": "stepped" },
  781. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  782. { "time": 2.5, "angle": 0 }
  783. ],
  784. "translate": [
  785. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 2.5, "x": 0, "y": 0 }
  791. ],
  792. "scale": [
  793. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 2.5, "x": 1, "y": 1 }
  799. ]
  800. },
  801. "bone13": {
  802. "rotate": [
  803. { "time": 0, "angle": 0 },
  804. { "time": 0.1667, "angle": -7.67 },
  805. { "time": 0.3333, "angle": -6.46, "curve": "stepped" },
  806. { "time": 0.5, "angle": -6.46, "curve": "stepped" },
  807. { "time": 0.6333, "angle": -6.46, "curve": "stepped" },
  808. { "time": 2.5, "angle": -6.46 }
  809. ],
  810. "translate": [
  811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  816. { "time": 2.5, "x": 0, "y": 0 }
  817. ],
  818. "scale": [
  819. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  820. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  821. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  822. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  823. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  824. { "time": 2.5, "x": 1, "y": 1 }
  825. ]
  826. },
  827. "bone14": {
  828. "rotate": [
  829. { "time": 0, "angle": 0 },
  830. { "time": 0.1667, "angle": 11.57 },
  831. { "time": 0.3333, "angle": 0 }
  832. ],
  833. "translate": [
  834. { "time": 0, "x": 0, "y": 0 },
  835. { "time": 0.1667, "x": -1.72, "y": -0.21 },
  836. { "time": 0.3333, "x": 0, "y": 0 }
  837. ],
  838. "scale": [
  839. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 0.3333, "x": 1, "y": 1 }
  842. ]
  843. },
  844. "bone15": {
  845. "rotate": [
  846. { "time": 0, "angle": 0, "curve": "stepped" },
  847. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  848. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  849. { "time": 0.5, "angle": 0, "curve": "stepped" },
  850. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  851. { "time": 2.5, "angle": 0 }
  852. ],
  853. "translate": [
  854. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  857. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  858. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  859. { "time": 2.5, "x": 0, "y": 0 }
  860. ],
  861. "scale": [
  862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 2.5, "x": 1, "y": 1 }
  868. ]
  869. },
  870. "bone16": {
  871. "rotate": [
  872. { "time": 0, "angle": 0 },
  873. { "time": 0.1667, "angle": -4.35 },
  874. { "time": 0.3333, "angle": -15 },
  875. { "time": 0.5, "angle": -4.67, "curve": "stepped" },
  876. { "time": 2.5, "angle": -4.67 },
  877. { "time": 2.8, "angle": -3.14 }
  878. ],
  879. "translate": [
  880. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  883. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 2.5, "x": 0, "y": 0 }
  885. ],
  886. "scale": [
  887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 2.5, "x": 1, "y": 1 }
  892. ]
  893. },
  894. "bone17": {
  895. "rotate": [
  896. { "time": 0, "angle": 0 },
  897. { "time": 0.1667, "angle": 9.63 },
  898. { "time": 0.3333, "angle": 49.7 },
  899. { "time": 0.5, "angle": 35.81, "curve": "stepped" },
  900. { "time": 2.5, "angle": 35.81 },
  901. { "time": 2.8, "angle": 19.94 }
  902. ],
  903. "translate": [
  904. { "time": 0, "x": 0, "y": 0 },
  905. { "time": 0.1667, "x": -1.37, "y": -0.32 },
  906. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  907. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  908. { "time": 2.5, "x": 0, "y": 0 }
  909. ],
  910. "scale": [
  911. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 2.5, "x": 1, "y": 1 }
  916. ]
  917. },
  918. "bone18": {
  919. "rotate": [
  920. { "time": 0, "angle": 0, "curve": "stepped" },
  921. { "time": 0.1667, "angle": 0 },
  922. { "time": 0.3333, "angle": -11.41, "curve": "stepped" },
  923. { "time": 0.5, "angle": -11.41, "curve": "stepped" },
  924. { "time": 2.5, "angle": -11.41 }
  925. ],
  926. "translate": [
  927. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  928. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  929. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  930. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  931. { "time": 2.5, "x": 0, "y": 0 }
  932. ],
  933. "scale": [
  934. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  935. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  938. { "time": 2.5, "x": 1, "y": 1 }
  939. ]
  940. },
  941. "bone19": {
  942. "rotate": [
  943. { "time": 0, "angle": 0, "curve": "stepped" },
  944. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  945. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  946. { "time": 0.5, "angle": 0, "curve": "stepped" },
  947. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  948. { "time": 2.5, "angle": 0 }
  949. ],
  950. "translate": [
  951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 2.5, "x": 0, "y": 0 }
  957. ],
  958. "scale": [
  959. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 2.5, "x": 1, "y": 1 }
  965. ]
  966. },
  967. "bone20": {
  968. "rotate": [
  969. { "time": 0, "angle": 0, "curve": "stepped" },
  970. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  971. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  972. { "time": 0.5, "angle": 0, "curve": "stepped" },
  973. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  974. { "time": 2.5, "angle": 0 }
  975. ],
  976. "translate": [
  977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  978. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  979. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  980. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 2.5, "x": 0, "y": 0 }
  983. ],
  984. "scale": [
  985. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  987. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  988. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  989. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 2.5, "x": 1, "y": 1 }
  991. ]
  992. },
  993. "bone21": {
  994. "rotate": [
  995. { "time": 0, "angle": 0, "curve": "stepped" },
  996. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  997. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  998. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  999. { "time": 2.5, "angle": 0 }
  1000. ],
  1001. "translate": [
  1002. { "time": 0, "x": 0, "y": 0 },
  1003. { "time": 0.1667, "x": 1.03, "y": 0.06 },
  1004. { "time": 0.3333, "x": -1.91, "y": 0.44 },
  1005. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1006. { "time": 2.5, "x": 0, "y": 0 }
  1007. ],
  1008. "scale": [
  1009. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1010. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1011. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1012. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1013. { "time": 2.5, "x": 1, "y": 1 }
  1014. ]
  1015. },
  1016. "bone22": {
  1017. "rotate": [
  1018. { "time": 0, "angle": 0 },
  1019. { "time": 0.1667, "angle": 6.17 },
  1020. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1021. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1022. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  1023. { "time": 2.5, "angle": 0 }
  1024. ],
  1025. "translate": [
  1026. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 2.5, "x": 0, "y": 0 }
  1032. ],
  1033. "scale": [
  1034. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 2.5, "x": 1, "y": 1 }
  1040. ]
  1041. },
  1042. "bone23": {
  1043. "rotate": [
  1044. { "time": 0, "angle": 0 },
  1045. { "time": 0.1667, "angle": 6.17 },
  1046. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1047. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1048. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  1049. { "time": 2.5, "angle": 0 }
  1050. ],
  1051. "translate": [
  1052. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1053. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1057. { "time": 2.5, "x": 0, "y": 0 }
  1058. ],
  1059. "scale": [
  1060. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1061. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1064. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1065. { "time": 2.5, "x": 1, "y": 1 }
  1066. ]
  1067. },
  1068. "bone24": {
  1069. "rotate": [
  1070. { "time": 0, "angle": 0, "curve": "stepped" },
  1071. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1072. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1073. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  1074. { "time": 3.2333, "angle": 0 }
  1075. ],
  1076. "translate": [
  1077. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 0.1667, "x": 0, "y": 0 },
  1079. { "time": 0.3333, "x": 0.16, "y": 1.45 }
  1080. ],
  1081. "scale": [
  1082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 3.2333, "x": 1, "y": 1 }
  1087. ]
  1088. },
  1089. "bone25": {
  1090. "rotate": [
  1091. { "time": 0, "angle": 0, "curve": "stepped" },
  1092. { "time": 0.1667, "angle": 0 },
  1093. {
  1094. "time": 0.3333,
  1095. "angle": -10.9,
  1096. "curve": [ 0.25, 0, 0.75, 1 ]
  1097. },
  1098. { "time": 0.8333, "angle": 0 },
  1099. { "time": 1.5667, "angle": -18.19 },
  1100. { "time": 2.3333, "angle": -16.07 },
  1101. { "time": 3.2333, "angle": 0 }
  1102. ],
  1103. "translate": [
  1104. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1105. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1106. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 3.2333, "x": 0, "y": 0 }
  1109. ],
  1110. "scale": [
  1111. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1112. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1113. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 3.2333, "x": 1, "y": 1 }
  1116. ]
  1117. },
  1118. "bone26": {
  1119. "rotate": [
  1120. { "time": 0, "angle": -14.59 },
  1121. { "time": 0.1667, "angle": 0 },
  1122. {
  1123. "time": 0.3333,
  1124. "angle": -5.76,
  1125. "curve": [ 0.258, 0, 0.619, 0.45 ]
  1126. },
  1127. {
  1128. "time": 0.5333,
  1129. "angle": -5.61,
  1130. "curve": [ 0.363, 0.44, 0.755, 1 ]
  1131. },
  1132. { "time": 0.8333, "angle": 0 },
  1133. { "time": 1.5667, "angle": -0.11 },
  1134. { "time": 2.3333, "angle": -10.54 },
  1135. { "time": 3.2333, "angle": 0 }
  1136. ],
  1137. "translate": [
  1138. { "time": 0, "x": 0, "y": 0 },
  1139. { "time": 0.1667, "x": 1.03, "y": 0 },
  1140. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1141. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1142. { "time": 3.2333, "x": 0, "y": 0 }
  1143. ],
  1144. "scale": [
  1145. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1146. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1147. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1148. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1149. { "time": 3.2333, "x": 1, "y": 1 }
  1150. ]
  1151. },
  1152. "bone27": {
  1153. "rotate": [
  1154. { "time": 0, "angle": -14.59 },
  1155. { "time": 0.1667, "angle": 0 },
  1156. {
  1157. "time": 0.3333,
  1158. "angle": 3.44,
  1159. "curve": [ 0.258, 0, 0.619, 0.45 ]
  1160. },
  1161. {
  1162. "time": 0.5333,
  1163. "angle": -15.58,
  1164. "curve": [ 0.363, 0.44, 0.755, 1 ]
  1165. },
  1166. { "time": 0.8333, "angle": 0 },
  1167. { "time": 1.5667, "angle": 4.22 },
  1168. { "time": 2.3333, "angle": -10.54 },
  1169. { "time": 3.2333, "angle": 0 }
  1170. ],
  1171. "translate": [
  1172. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 3.2333, "x": 0, "y": 0 }
  1177. ],
  1178. "scale": [
  1179. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1182. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 3.2333, "x": 1, "y": 1 }
  1184. ]
  1185. },
  1186. "bone28": {
  1187. "rotate": [
  1188. { "time": 0, "angle": -14.59 },
  1189. { "time": 0.1667, "angle": 0 },
  1190. {
  1191. "time": 0.3333,
  1192. "angle": 3.44,
  1193. "curve": [ 0.25, 0, 0.75, 1 ]
  1194. },
  1195. { "time": 0.8333, "angle": 0 },
  1196. { "time": 1.5667, "angle": 4.22 },
  1197. { "time": 2.3333, "angle": -10.54 },
  1198. { "time": 3.2333, "angle": 0 }
  1199. ],
  1200. "translate": [
  1201. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1202. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1203. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1204. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1205. { "time": 3.2333, "x": 0, "y": 0 }
  1206. ],
  1207. "scale": [
  1208. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1211. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 3.2333, "x": 1, "y": 1 }
  1213. ]
  1214. },
  1215. "bone29": {
  1216. "rotate": [
  1217. { "time": 0, "angle": 0, "curve": "stepped" },
  1218. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1219. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1220. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1221. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1222. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1223. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1224. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1225. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1226. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1227. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1228. { "time": 3.0333, "angle": 0 }
  1229. ],
  1230. "translate": [
  1231. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1232. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1233. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1234. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1235. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1236. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1237. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1238. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1239. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1240. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1241. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1242. { "time": 3.0333, "x": 0, "y": 0 }
  1243. ],
  1244. "scale": [
  1245. { "time": 0, "x": 1, "y": 1 },
  1246. { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
  1247. { "time": 0.2667, "x": 0.365, "y": 1 },
  1248. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1249. { "time": 1.0333, "x": 1, "y": 1 },
  1250. { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
  1251. { "time": 1.2333, "x": 0.365, "y": 1 },
  1252. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 2.6667, "x": 1, "y": 1 },
  1254. { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
  1255. { "time": 2.9, "x": 0.365, "y": 1 },
  1256. { "time": 3.0333, "x": 1, "y": 1 }
  1257. ]
  1258. },
  1259. "bone30": {
  1260. "rotate": [
  1261. { "time": 0, "angle": 0, "curve": "stepped" },
  1262. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1263. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1264. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1265. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1266. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1267. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1268. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1269. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1270. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1271. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1272. { "time": 3.0333, "angle": 0 }
  1273. ],
  1274. "translate": [
  1275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1276. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1277. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1278. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1279. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1280. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1281. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1282. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1283. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1284. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1285. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 3.0333, "x": 0, "y": 0 }
  1287. ],
  1288. "scale": [
  1289. { "time": 0, "x": 1, "y": 1 },
  1290. { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
  1291. { "time": 0.2667, "x": 0.365, "y": 1 },
  1292. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 1.0333, "x": 1, "y": 1 },
  1294. { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
  1295. { "time": 1.2333, "x": 0.365, "y": 1 },
  1296. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 2.6667, "x": 1, "y": 1 },
  1298. { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
  1299. { "time": 2.9, "x": 0.365, "y": 1 },
  1300. { "time": 3.0333, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone31": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1307. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1308. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1309. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1310. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1311. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1312. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1313. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1314. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1315. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1316. { "time": 3.0333, "angle": 0 }
  1317. ],
  1318. "translate": [
  1319. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1324. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 3.0333, "x": 0, "y": 0 }
  1331. ],
  1332. "scale": [
  1333. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1342. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1343. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 3.0333, "x": 1, "y": 1 }
  1345. ]
  1346. },
  1347. "bone32": {
  1348. "rotate": [
  1349. { "time": 0, "angle": 0, "curve": "stepped" },
  1350. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1351. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1352. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1353. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1354. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1355. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1356. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1357. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1358. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1359. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1360. { "time": 3.0333, "angle": 0 }
  1361. ],
  1362. "translate": [
  1363. { "time": 0, "x": 0, "y": 0 },
  1364. { "time": 0.1, "x": -1.25, "y": 0, "curve": "stepped" },
  1365. { "time": 0.2667, "x": -1.25, "y": 0 },
  1366. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 1.0333, "x": 0, "y": 0 },
  1368. { "time": 1.1333, "x": -1.25, "y": 0, "curve": "stepped" },
  1369. { "time": 1.2333, "x": -1.25, "y": 0 },
  1370. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1371. { "time": 2.6667, "x": 0, "y": 0 },
  1372. { "time": 2.7667, "x": -1.25, "y": 0, "curve": "stepped" },
  1373. { "time": 2.9, "x": -1.25, "y": 0 },
  1374. { "time": 3.0333, "x": 0, "y": 0 }
  1375. ],
  1376. "scale": [
  1377. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1380. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1381. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1382. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1383. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1384. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1385. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1386. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1387. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1388. { "time": 3.0333, "x": 1, "y": 1 }
  1389. ]
  1390. },
  1391. "bone33": {
  1392. "scale": [
  1393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 0.1667, "x": 1, "y": 0.5 },
  1395. { "time": 0.3333, "x": 1, "y": 1 }
  1396. ]
  1397. },
  1398. "ziti": {
  1399. "rotate": [
  1400. { "time": 0, "angle": 0 }
  1401. ],
  1402. "translate": [
  1403. { "time": 0, "x": -417.85, "y": -47.65 },
  1404. { "time": 3.4, "x": -399.93, "y": -47.65 }
  1405. ],
  1406. "scale": [
  1407. { "time": 0, "x": 1, "y": 1 }
  1408. ]
  1409. },
  1410. "ziti2": {
  1411. "rotate": [
  1412. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1413. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1414. { "time": 0.7, "angle": 0 }
  1415. ],
  1416. "translate": [
  1417. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1418. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1419. { "time": 0.7, "x": 0, "y": 0 }
  1420. ],
  1421. "scale": [
  1422. { "time": 0.4333, "x": 1.2, "y": 1.2 },
  1423. { "time": 0.5667, "x": 0.9, "y": 0.9 },
  1424. { "time": 0.7, "x": 1, "y": 1 }
  1425. ]
  1426. },
  1427. "ziti3": {
  1428. "rotate": [
  1429. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1430. { "time": 0.8, "angle": 0, "curve": "stepped" },
  1431. { "time": 0.9333, "angle": 0 }
  1432. ],
  1433. "translate": [
  1434. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 0.9333, "x": 0, "y": 0 }
  1437. ],
  1438. "scale": [
  1439. { "time": 0.6667, "x": 1.2, "y": 1.2 },
  1440. { "time": 0.8, "x": 0.9, "y": 0.9 },
  1441. { "time": 0.9333, "x": 1, "y": 1 }
  1442. ]
  1443. },
  1444. "ziti4": {
  1445. "rotate": [
  1446. { "time": 0.8, "angle": 0, "curve": "stepped" },
  1447. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1448. { "time": 1.0667, "angle": 0 }
  1449. ],
  1450. "translate": [
  1451. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 1.0667, "x": 0, "y": 0 }
  1454. ],
  1455. "scale": [
  1456. { "time": 0.8, "x": 1.2, "y": 1.2 },
  1457. { "time": 0.9333, "x": 0.9, "y": 0.9 },
  1458. { "time": 1.0667, "x": 1, "y": 1 }
  1459. ]
  1460. },
  1461. "ziti5": {
  1462. "rotate": [
  1463. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1464. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1465. { "time": 1.2, "angle": 0 }
  1466. ],
  1467. "translate": [
  1468. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1469. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1470. { "time": 1.2, "x": 0, "y": 0 }
  1471. ],
  1472. "scale": [
  1473. { "time": 0.9333, "x": 1.2, "y": 1.2 },
  1474. { "time": 1.0667, "x": 0.9, "y": 0.9 },
  1475. { "time": 1.2, "x": 1, "y": 1 }
  1476. ]
  1477. },
  1478. "ziti6": {
  1479. "rotate": [
  1480. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1481. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1482. { "time": 1.3333, "angle": 0 }
  1483. ],
  1484. "translate": [
  1485. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1486. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 1.3333, "x": 0, "y": 0 }
  1488. ],
  1489. "scale": [
  1490. { "time": 1.0667, "x": 1.2, "y": 1.2 },
  1491. { "time": 1.2, "x": 0.9, "y": 0.9 },
  1492. { "time": 1.3333, "x": 1, "y": 1 }
  1493. ]
  1494. },
  1495. "ziti7": {
  1496. "rotate": [
  1497. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1498. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1499. { "time": 1.4667, "angle": 0 }
  1500. ],
  1501. "translate": [
  1502. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1503. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1504. { "time": 1.4667, "x": 0, "y": 0 }
  1505. ],
  1506. "scale": [
  1507. { "time": 1.2, "x": 1.2, "y": 1.2 },
  1508. { "time": 1.3333, "x": 0.9, "y": 0.9 },
  1509. { "time": 1.4667, "x": 1, "y": 1 }
  1510. ]
  1511. },
  1512. "ziti8": {
  1513. "rotate": [
  1514. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1515. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1516. { "time": 1.6, "angle": 0 }
  1517. ],
  1518. "translate": [
  1519. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 1.6, "x": 0, "y": 0 }
  1522. ],
  1523. "scale": [
  1524. { "time": 1.3333, "x": 1.2, "y": 1.2 },
  1525. { "time": 1.4667, "x": 0.9, "y": 0.9 },
  1526. { "time": 1.6, "x": 1, "y": 1 }
  1527. ]
  1528. },
  1529. "ziti9": {
  1530. "rotate": [
  1531. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1532. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1533. { "time": 1.7333, "angle": 0 }
  1534. ],
  1535. "translate": [
  1536. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 1.7333, "x": 0, "y": 0 }
  1539. ],
  1540. "scale": [
  1541. { "time": 1.4667, "x": 1.2, "y": 1.2 },
  1542. { "time": 1.6, "x": 0.9, "y": 0.9 },
  1543. { "time": 1.7333, "x": 1, "y": 1 }
  1544. ]
  1545. },
  1546. "ziti10": {
  1547. "rotate": [
  1548. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1549. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1550. { "time": 1.8333, "angle": 0 }
  1551. ],
  1552. "translate": [
  1553. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1554. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1555. { "time": 1.8333, "x": 0, "y": 0 }
  1556. ],
  1557. "scale": [
  1558. { "time": 1.6, "x": 1.2, "y": 1.2 },
  1559. { "time": 1.7333, "x": 0.9, "y": 0.9 },
  1560. { "time": 1.8333, "x": 1, "y": 1 }
  1561. ]
  1562. },
  1563. "bone34": {
  1564. "rotate": [
  1565. { "time": 0, "angle": 0 },
  1566. { "time": 0.3333, "angle": -4.7 },
  1567. { "time": 0.5, "angle": -25.33 },
  1568. { "time": 0.8, "angle": -9.02 },
  1569. {
  1570. "time": 1.1333,
  1571. "angle": -16.65,
  1572. "curve": [ 0.25, 0, 0.75, 1 ]
  1573. },
  1574. {
  1575. "time": 1.4667,
  1576. "angle": -4.98,
  1577. "curve": [ 0.25, 0, 0.75, 1 ]
  1578. },
  1579. {
  1580. "time": 1.8,
  1581. "angle": -16.65,
  1582. "curve": [ 0.25, 0, 0.75, 1 ]
  1583. },
  1584. {
  1585. "time": 2.1,
  1586. "angle": -0.99,
  1587. "curve": [ 0.25, 0, 0.75, 1 ]
  1588. },
  1589. {
  1590. "time": 2.4667,
  1591. "angle": -21.04,
  1592. "curve": [ 0.25, 0, 0.75, 1 ]
  1593. },
  1594. {
  1595. "time": 2.7,
  1596. "angle": 2.23,
  1597. "curve": [ 0.25, 0, 0.75, 1 ]
  1598. },
  1599. { "time": 2.9667, "angle": 27.34 }
  1600. ],
  1601. "translate": [
  1602. { "time": 0, "x": 3.61, "y": 188.63, "curve": "stepped" },
  1603. { "time": 0.3333, "x": 3.61, "y": 188.63, "curve": "stepped" },
  1604. { "time": 0.5, "x": 3.61, "y": 188.63 },
  1605. { "time": 0.8, "x": 3.45, "y": 187.76 },
  1606. {
  1607. "time": 1.1333,
  1608. "x": 3.61,
  1609. "y": 188.63,
  1610. "curve": [ 0.25, 0, 0.75, 1 ]
  1611. },
  1612. {
  1613. "time": 1.4667,
  1614. "x": 3.43,
  1615. "y": 187.97,
  1616. "curve": [ 0.25, 0, 0.75, 1 ]
  1617. },
  1618. {
  1619. "time": 1.8,
  1620. "x": 3.61,
  1621. "y": 188.63,
  1622. "curve": [ 0.25, 0, 0.75, 1 ]
  1623. },
  1624. {
  1625. "time": 2.1,
  1626. "x": 3.43,
  1627. "y": 187.97,
  1628. "curve": [ 0.25, 0, 0.75, 1 ]
  1629. },
  1630. { "time": 2.4667, "x": 3.61, "y": 188.63, "curve": "stepped" },
  1631. { "time": 2.7, "x": 3.61, "y": 188.63 }
  1632. ],
  1633. "scale": [
  1634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  1638. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1639. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1640. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 2.7, "x": 1, "y": 1 }
  1644. ]
  1645. },
  1646. "bone35": {
  1647. "rotate": [
  1648. { "time": 0, "angle": -18.48 },
  1649. { "time": 0.3333, "angle": -22.07 },
  1650. { "time": 0.5, "angle": -39.03 },
  1651. { "time": 0.8, "angle": -12.9 },
  1652. { "time": 1.1333, "angle": -35.94 },
  1653. { "time": 1.4667, "angle": -12.26 },
  1654. { "time": 1.8, "angle": -35.94 },
  1655. { "time": 2.1, "angle": -21.53 },
  1656. { "time": 2.4667, "angle": -26.86 },
  1657. { "time": 2.7, "angle": -28.48 },
  1658. { "time": 2.9667, "angle": -1.11 }
  1659. ],
  1660. "translate": [
  1661. { "time": 0, "x": 0, "y": 0 },
  1662. { "time": 0.3333, "x": 2.17, "y": 0.13 },
  1663. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 2.7, "x": 0, "y": 0 }
  1671. ],
  1672. "scale": [
  1673. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1674. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1675. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 2.7, "x": 1, "y": 1 }
  1683. ]
  1684. },
  1685. "bone36": {
  1686. "rotate": [
  1687. { "time": 0, "angle": 0, "curve": "stepped" },
  1688. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1689. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1690. { "time": 0.8, "angle": 0, "curve": "stepped" },
  1691. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1692. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  1693. { "time": 1.8, "angle": 0, "curve": "stepped" },
  1694. { "time": 2.1, "angle": 0, "curve": "stepped" },
  1695. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  1696. { "time": 2.7, "angle": 0 }
  1697. ],
  1698. "translate": [
  1699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 2.7, "x": 0, "y": 0 }
  1709. ],
  1710. "scale": [
  1711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1717. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  1718. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1719. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1720. { "time": 2.7, "x": 1, "y": 1 }
  1721. ]
  1722. },
  1723. "bone37": {
  1724. "translate": [
  1725. { "time": 0, "x": -109.63, "y": -13.8 }
  1726. ],
  1727. "scale": [
  1728. { "time": 0, "x": 0.3, "y": 0.3, "curve": "stepped" },
  1729. {
  1730. "time": 0.1667,
  1731. "x": 0.3,
  1732. "y": 0.3,
  1733. "curve": [ 0.25, 0, 0.75, 1 ]
  1734. },
  1735. {
  1736. "time": 0.6667,
  1737. "x": 0.5,
  1738. "y": 0.5,
  1739. "curve": [ 0.25, 0, 0.75, 1 ]
  1740. },
  1741. { "time": 1.3667, "x": 0.3, "y": 0.3, "curve": "stepped" },
  1742. {
  1743. "time": 1.4333,
  1744. "x": 0.3,
  1745. "y": 0.3,
  1746. "curve": [ 0.25, 0, 0.75, 1 ]
  1747. },
  1748. {
  1749. "time": 2.0667,
  1750. "x": 0.5,
  1751. "y": 0.5,
  1752. "curve": [ 0.25, 0, 0.75, 1 ]
  1753. },
  1754. { "time": 2.7, "x": 0.3, "y": 0.3 }
  1755. ]
  1756. }
  1757. },
  1758. "deform": {
  1759. "default": {
  1760. "dibu": {
  1761. "dibu": [
  1762. { "time": 0.1667 },
  1763. {
  1764. "time": 0.3333,
  1765. "offset": 8,
  1766. "vertices": [ 3.57146, 20.5243, 0.21011, 10.91447 ]
  1767. },
  1768. {
  1769. "time": 0.5333,
  1770. "offset": 8,
  1771. "vertices": [ 4.73099, 22.50792, 0.03457, 9.9644 ]
  1772. },
  1773. {
  1774. "time": 0.6333,
  1775. "offset": 8,
  1776. "vertices": [ 1.4698, 11.66439, 0.29355, 5.69287 ]
  1777. },
  1778. {
  1779. "time": 2.4667,
  1780. "offset": 6,
  1781. "vertices": [ 2.52073, 15.94321, 4.43141, 25.04954, 8.87064, 13.46643 ]
  1782. },
  1783. { "time": 3.1 }
  1784. ]
  1785. },
  1786. "shenti": {
  1787. "shenti": [
  1788. { "time": 0 },
  1789. {
  1790. "time": 0.1667,
  1791. "offset": 62,
  1792. "vertices": [ -2.4136, -0.08252, -2.41499, 0, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449 ]
  1793. },
  1794. {
  1795. "time": 0.6333,
  1796. "offset": 62,
  1797. "vertices": [ -0.54336, -0.78582, -0.56992, -0.76679, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355 ]
  1798. }
  1799. ]
  1800. },
  1801. "youshou": {
  1802. "youshou": [
  1803. {
  1804. "time": 0.3333,
  1805. "vertices": [ -0.04018, -0.011, -0.02404, -0.03401, -0.03991, -0.00566, -0.02723, -0.02972, -0.03911, -0.00139, -0.02932, -0.0259, -0.00959, 0.0399, -0.03274, 0.02474, -0.03692, 0.01793, -0.03294, 0.02984, -0.0381, 0.02289, -0.03314, 0.03514, -0.03933, 0.02805, -0.02252, 0.07224, 0.00812, 0.06059, 0.0172, 0.03826, 0.00946, 0.04087, 0.01615, 0.03007, 0.01002, 0.03263, 0.01572, 0.02671, 0.01025, 0.02925, -0.00259, -0.01803, 0.00945, -0.01557, 0.01229, -0.01344, -0.0051, -0.01979, 0.00864, -0.01852, 0.01205, -0.01649, -0.00631, -0.02107, 0.00851, -0.02028, 0.01228, -0.01825, -0.00374, -0.04481, 0.02557, -0.03698, -0.02228, -0.07697, -0.03635, -0.06797, -0.01706, 0.02684, -0.01793, 0.03408, -0.01634, 0.02259, -0.02281, -0.0078, -0.01266, -0.0205, -0.00845, -0.02256, -0.01283, -0.01647, -0.0094, -0.01865, -0.02257, -0.01224, -0.00965, -0.02377 ]
  1806. }
  1807. ]
  1808. }
  1809. }
  1810. }
  1811. },
  1812. "stand2": {
  1813. "slots": {
  1814. "1": {
  1815. "color": [
  1816. { "time": 1.6, "color": "ffffff00" },
  1817. { "time": 1.6667, "color": "ffffffff", "curve": "stepped" },
  1818. { "time": 2.2, "color": "ffffffff", "curve": "stepped" },
  1819. { "time": 2.9, "color": "ffffffff" },
  1820. { "time": 3.4, "color": "ffffff00" }
  1821. ],
  1822. "attachment": [
  1823. { "time": 0, "name": null },
  1824. { "time": 1.6, "name": "1" }
  1825. ]
  1826. },
  1827. "2": {
  1828. "color": [
  1829. { "time": 1.4667, "color": "ffffff00" },
  1830. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  1831. { "time": 2.9, "color": "ffffffff" },
  1832. { "time": 3.4, "color": "ffffff00" }
  1833. ],
  1834. "attachment": [
  1835. { "time": 0, "name": null },
  1836. { "time": 1.4667, "name": "2" }
  1837. ]
  1838. },
  1839. "3": {
  1840. "color": [
  1841. { "time": 1.3333, "color": "ffffff00" },
  1842. { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
  1843. { "time": 2.9, "color": "ffffffff" },
  1844. { "time": 3.4, "color": "ffffff00" }
  1845. ],
  1846. "attachment": [
  1847. { "time": 0, "name": null },
  1848. { "time": 1.3333, "name": "3" }
  1849. ]
  1850. },
  1851. "4": {
  1852. "color": [
  1853. { "time": 1.2, "color": "ffffff00" },
  1854. { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
  1855. { "time": 2.9, "color": "ffffffff" },
  1856. { "time": 3.4, "color": "ffffff00" }
  1857. ],
  1858. "attachment": [
  1859. { "time": 0, "name": null },
  1860. { "time": 1.2, "name": "4" }
  1861. ]
  1862. },
  1863. "5": {
  1864. "color": [
  1865. { "time": 1.0667, "color": "ffffff00" },
  1866. { "time": 1.1333, "color": "ffffffff", "curve": "stepped" },
  1867. { "time": 2.9, "color": "ffffffff" },
  1868. { "time": 3.4, "color": "ffffff00" }
  1869. ],
  1870. "attachment": [
  1871. { "time": 0, "name": null },
  1872. { "time": 1.0667, "name": "5" }
  1873. ]
  1874. },
  1875. "6": {
  1876. "color": [
  1877. { "time": 0.9333, "color": "ffffff00" },
  1878. { "time": 1, "color": "ffffffff", "curve": "stepped" },
  1879. { "time": 2.9, "color": "ffffffff" },
  1880. { "time": 3.4, "color": "ffffff00" }
  1881. ],
  1882. "attachment": [
  1883. { "time": 0, "name": null },
  1884. { "time": 0.9333, "name": "6" }
  1885. ]
  1886. },
  1887. "7": {
  1888. "color": [
  1889. { "time": 0.8, "color": "ffffff00" },
  1890. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  1891. { "time": 2.9, "color": "ffffffff" },
  1892. { "time": 3.4, "color": "ffffff00" }
  1893. ],
  1894. "attachment": [
  1895. { "time": 0, "name": null },
  1896. { "time": 0.8, "name": "7" }
  1897. ]
  1898. },
  1899. "8": {
  1900. "color": [
  1901. { "time": 0.6667, "color": "ffffff00" },
  1902. { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
  1903. { "time": 2.9, "color": "ffffffff" },
  1904. { "time": 3.4, "color": "ffffff00" }
  1905. ],
  1906. "attachment": [
  1907. { "time": 0, "name": null },
  1908. { "time": 0.6667, "name": "8" }
  1909. ]
  1910. },
  1911. "9": {
  1912. "color": [
  1913. { "time": 0.4333, "color": "ffffff00" },
  1914. { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
  1915. { "time": 2.9, "color": "ffffffff" },
  1916. { "time": 3.4, "color": "ffffff00" }
  1917. ],
  1918. "attachment": [
  1919. { "time": 0, "name": null },
  1920. { "time": 0.4333, "name": "9" }
  1921. ]
  1922. },
  1923. "biyan": {
  1924. "attachment": [
  1925. { "time": 0.1, "name": "biyan" },
  1926. { "time": 0.2667, "name": null },
  1927. { "time": 1.1333, "name": "biyan" },
  1928. { "time": 1.2333, "name": null },
  1929. { "time": 2.7667, "name": "biyan" },
  1930. { "time": 2.9, "name": null }
  1931. ]
  1932. },
  1933. "star": {
  1934. "color": [
  1935. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1936. { "time": 0.1667, "color": "ffffff00" },
  1937. { "time": 0.4667, "color": "ffffffff", "curve": "stepped" },
  1938. { "time": 0.6667, "color": "ffffffff" },
  1939. { "time": 1.3667, "color": "ffffff00", "curve": "stepped" },
  1940. { "time": 1.4333, "color": "ffffff00" },
  1941. { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
  1942. { "time": 2.0667, "color": "ffffffff" },
  1943. { "time": 2.7, "color": "ffffff00" }
  1944. ]
  1945. },
  1946. "teshuzuoshou": {
  1947. "attachment": [
  1948. { "time": 0, "name": null },
  1949. { "time": 0.3333, "name": "teshuzuoshou" }
  1950. ]
  1951. },
  1952. "teshuzuoshou1": {
  1953. "attachment": [
  1954. { "time": 0, "name": null },
  1955. { "time": 0.3333, "name": "teshuzuoshou1" }
  1956. ]
  1957. },
  1958. "youyan": {
  1959. "attachment": [
  1960. { "time": 0.1, "name": null },
  1961. { "time": 0.2667, "name": "youyan" },
  1962. { "time": 1.1333, "name": null },
  1963. { "time": 1.2333, "name": "youyan" },
  1964. { "time": 2.7667, "name": null },
  1965. { "time": 2.9, "name": "youyan" }
  1966. ]
  1967. },
  1968. "zhangzuixiao": {
  1969. "attachment": [
  1970. { "time": 0, "name": null },
  1971. { "time": 0.1667, "name": "zhangzuixiao" },
  1972. { "time": 2.7667, "name": null }
  1973. ]
  1974. },
  1975. "zuiba": {
  1976. "attachment": [
  1977. { "time": 0.1667, "name": null },
  1978. { "time": 2.7667, "name": "zuiba" }
  1979. ]
  1980. },
  1981. "zuoshou": {
  1982. "attachment": [
  1983. { "time": 0.3333, "name": null },
  1984. { "time": 0.3667, "name": null }
  1985. ]
  1986. },
  1987. "zuoyan": {
  1988. "attachment": [
  1989. { "time": 0.1, "name": null },
  1990. { "time": 0.2667, "name": "zuoyan" },
  1991. { "time": 1.1333, "name": null },
  1992. { "time": 1.2333, "name": "zuoyan" },
  1993. { "time": 2.7667, "name": null },
  1994. { "time": 2.9, "name": "zuoyan" }
  1995. ]
  1996. }
  1997. },
  1998. "bones": {
  1999. "root": {
  2000. "rotate": [
  2001. { "time": 0, "angle": 0 }
  2002. ],
  2003. "translate": [
  2004. { "time": 0, "x": -0.65, "y": -0.66 }
  2005. ],
  2006. "scale": [
  2007. { "time": 0, "x": -0.65, "y": 0.65 }
  2008. ]
  2009. },
  2010. "bone": {
  2011. "rotate": [
  2012. { "time": 0, "angle": 0, "curve": "stepped" },
  2013. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2014. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2015. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2016. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2017. { "time": 2.5, "angle": 0 }
  2018. ],
  2019. "translate": [
  2020. { "time": 0, "x": 0, "y": 0 },
  2021. { "time": 0.1667, "x": 0, "y": -1.69 },
  2022. { "time": 0.3333, "x": 4.77, "y": 0, "curve": "stepped" },
  2023. { "time": 0.5, "x": 4.77, "y": 0, "curve": "stepped" },
  2024. { "time": 0.6333, "x": 4.77, "y": 0, "curve": "stepped" },
  2025. { "time": 2.5, "x": 4.77, "y": 0 }
  2026. ],
  2027. "scale": [
  2028. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2032. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2033. { "time": 2.5, "x": 1, "y": 1 }
  2034. ]
  2035. },
  2036. "bone2": {
  2037. "rotate": [
  2038. { "time": 0, "angle": 0, "curve": "stepped" },
  2039. { "time": 0.1667, "angle": 0 },
  2040. {
  2041. "time": 0.3333,
  2042. "angle": -1.89,
  2043. "curve": [ 0.25, 0, 0.75, 1 ]
  2044. },
  2045. { "time": 0.6333, "angle": -5.39, "curve": "stepped" },
  2046. {
  2047. "time": 2.5,
  2048. "angle": -5.39,
  2049. "curve": [ 0.25, 0, 0.75, 1 ]
  2050. },
  2051. { "time": 2.8, "angle": -3.73 }
  2052. ],
  2053. "translate": [
  2054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2055. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2056. {
  2057. "time": 0.3333,
  2058. "x": 0,
  2059. "y": 0,
  2060. "curve": [ 0.25, 0, 0.75, 1 ]
  2061. },
  2062. { "time": 0.6333, "x": 0.08, "y": -0.01, "curve": "stepped" },
  2063. { "time": 2.5, "x": 0.08, "y": -0.01 }
  2064. ],
  2065. "scale": [
  2066. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2068. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2069. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 2.5, "x": 1, "y": 1 }
  2071. ]
  2072. },
  2073. "bone3": {
  2074. "rotate": [
  2075. { "time": 0, "angle": 0, "curve": "stepped" },
  2076. { "time": 0.1667, "angle": 0 },
  2077. {
  2078. "time": 0.3333,
  2079. "angle": 1.92,
  2080. "curve": [ 0.25, 0, 0.75, 1 ]
  2081. },
  2082. { "time": 0.7, "angle": 1.66, "curve": "stepped" },
  2083. { "time": 2.5, "angle": 1.66 },
  2084. { "time": 2.8, "angle": 3.86 }
  2085. ],
  2086. "translate": [
  2087. { "time": 0, "x": 0, "y": 0 },
  2088. { "time": 0.1667, "x": -1.25, "y": 0.02 },
  2089. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2090. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2091. { "time": 2.5, "x": 0, "y": 0 }
  2092. ],
  2093. "scale": [
  2094. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2098. { "time": 2.5, "x": 1, "y": 1 }
  2099. ]
  2100. },
  2101. "bone4": {
  2102. "rotate": [
  2103. { "time": 0, "angle": 0, "curve": "stepped" },
  2104. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2105. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2106. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2107. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2108. { "time": 2.5, "angle": 0 }
  2109. ],
  2110. "translate": [
  2111. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2112. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 2.5, "x": 0, "y": 0 }
  2117. ],
  2118. "scale": [
  2119. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2120. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2121. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2122. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 2.5, "x": 1, "y": 1 }
  2125. ]
  2126. },
  2127. "bone5": {
  2128. "rotate": [
  2129. { "time": 0, "angle": 0, "curve": "stepped" },
  2130. { "time": 2.5, "angle": 0 },
  2131. { "time": 2.8, "angle": -1.57 }
  2132. ],
  2133. "translate": [
  2134. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2135. { "time": 2.5, "x": 0, "y": 0 }
  2136. ],
  2137. "scale": [
  2138. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 2.5, "x": 1, "y": 1 }
  2140. ]
  2141. },
  2142. "bone6": {
  2143. "rotate": [
  2144. { "time": 0, "angle": 0 },
  2145. { "time": 0.1667, "angle": 22.71 },
  2146. { "time": 0.3333, "angle": -12.75, "curve": "stepped" },
  2147. { "time": 0.3667, "angle": -12.75 }
  2148. ],
  2149. "translate": [
  2150. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2151. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2152. { "time": 0.3333, "x": 0, "y": 0 },
  2153. { "time": 0.3667, "x": -2.17, "y": 124.31 }
  2154. ],
  2155. "scale": [
  2156. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2157. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2158. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2159. { "time": 0.3667, "x": 1, "y": 1 }
  2160. ]
  2161. },
  2162. "bone7": {
  2163. "rotate": [
  2164. { "time": 0, "angle": 0 },
  2165. { "time": 0.1667, "angle": -14.42 },
  2166. { "time": 0.3333, "angle": -18.21, "curve": "stepped" },
  2167. { "time": 0.5, "angle": -18.21 }
  2168. ],
  2169. "translate": [
  2170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2173. { "time": 0.5, "x": 0, "y": 0 }
  2174. ],
  2175. "scale": [
  2176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 0.5, "x": 1, "y": 1 }
  2180. ]
  2181. },
  2182. "bone8": {
  2183. "rotate": [
  2184. { "time": 0, "angle": 0 },
  2185. { "time": 0.1667, "angle": -5.89 },
  2186. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2187. { "time": 0.5, "angle": 0 }
  2188. ],
  2189. "translate": [
  2190. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2191. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2192. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2193. { "time": 0.5, "x": 0, "y": 0 }
  2194. ],
  2195. "scale": [
  2196. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 0.5, "x": 1, "y": 1 }
  2200. ]
  2201. },
  2202. "bone9": {
  2203. "rotate": [
  2204. { "time": 0, "angle": 0 },
  2205. { "time": 0.1667, "angle": -15.35 },
  2206. {
  2207. "time": 0.3333,
  2208. "angle": 9.96,
  2209. "curve": [ 0.25, 0, 0.75, 1 ]
  2210. },
  2211. { "time": 0.6333, "angle": -2.74, "curve": "stepped" },
  2212. { "time": 2.5, "angle": -2.74 },
  2213. { "time": 2.8, "angle": -12.19 }
  2214. ],
  2215. "translate": [
  2216. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2217. { "time": 0.1667, "x": 0, "y": 0 },
  2218. {
  2219. "time": 0.3333,
  2220. "x": 1.39,
  2221. "y": -0.5,
  2222. "curve": [ 0.25, 0, 0.75, 1 ]
  2223. },
  2224. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2225. { "time": 2.5, "x": 0, "y": 0 }
  2226. ],
  2227. "scale": [
  2228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2230. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2231. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2232. { "time": 2.5, "x": 1, "y": 1 }
  2233. ]
  2234. },
  2235. "bone10": {
  2236. "rotate": [
  2237. { "time": 0, "angle": 0 },
  2238. { "time": 0.1667, "angle": -5.5 },
  2239. {
  2240. "time": 0.3333,
  2241. "angle": -51.85,
  2242. "curve": [ 0.25, 0, 0.75, 1 ]
  2243. },
  2244. { "time": 0.6333, "angle": -41.16, "curve": "stepped" },
  2245. { "time": 2.5, "angle": -41.16 },
  2246. { "time": 2.8, "angle": -19.82 }
  2247. ],
  2248. "translate": [
  2249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2252. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2253. { "time": 2.5, "x": 0, "y": 0 }
  2254. ],
  2255. "scale": [
  2256. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 2.5, "x": 1, "y": 1 }
  2261. ]
  2262. },
  2263. "bone11": {
  2264. "rotate": [
  2265. { "time": 0, "angle": 0, "curve": "stepped" },
  2266. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2267. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2268. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2269. { "time": 2.5, "angle": 0 }
  2270. ],
  2271. "translate": [
  2272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 2.5, "x": 0, "y": 0 }
  2277. ],
  2278. "scale": [
  2279. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 2.5, "x": 1, "y": 1 }
  2284. ]
  2285. },
  2286. "bone12": {
  2287. "rotate": [
  2288. { "time": 0, "angle": 0, "curve": "stepped" },
  2289. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2290. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2291. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2292. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2293. { "time": 2.5, "angle": 0 }
  2294. ],
  2295. "translate": [
  2296. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2297. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2299. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 2.5, "x": 0, "y": 0 }
  2302. ],
  2303. "scale": [
  2304. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2306. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2307. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2309. { "time": 2.5, "x": 1, "y": 1 }
  2310. ]
  2311. },
  2312. "bone13": {
  2313. "rotate": [
  2314. { "time": 0, "angle": 0 },
  2315. { "time": 0.1667, "angle": -7.67 },
  2316. { "time": 0.3333, "angle": -6.46, "curve": "stepped" },
  2317. { "time": 0.5, "angle": -6.46, "curve": "stepped" },
  2318. { "time": 0.6333, "angle": -6.46, "curve": "stepped" },
  2319. { "time": 2.5, "angle": -6.46 }
  2320. ],
  2321. "translate": [
  2322. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2323. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2324. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 2.5, "x": 0, "y": 0 }
  2328. ],
  2329. "scale": [
  2330. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 2.5, "x": 1, "y": 1 }
  2336. ]
  2337. },
  2338. "bone14": {
  2339. "rotate": [
  2340. { "time": 0, "angle": 0 },
  2341. { "time": 0.1667, "angle": 11.57 },
  2342. { "time": 0.3333, "angle": 0 }
  2343. ],
  2344. "translate": [
  2345. { "time": 0, "x": 0, "y": 0 },
  2346. { "time": 0.1667, "x": -1.72, "y": -0.21 },
  2347. { "time": 0.3333, "x": 0, "y": 0 }
  2348. ],
  2349. "scale": [
  2350. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2351. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 0.3333, "x": 1, "y": 1 }
  2353. ]
  2354. },
  2355. "bone15": {
  2356. "rotate": [
  2357. { "time": 0, "angle": 0, "curve": "stepped" },
  2358. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2359. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2360. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2361. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2362. { "time": 2.5, "angle": 0 }
  2363. ],
  2364. "translate": [
  2365. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2366. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2367. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2368. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 2.5, "x": 0, "y": 0 }
  2371. ],
  2372. "scale": [
  2373. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2374. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2375. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2376. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2377. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2378. { "time": 2.5, "x": 1, "y": 1 }
  2379. ]
  2380. },
  2381. "bone16": {
  2382. "rotate": [
  2383. { "time": 0, "angle": 0 },
  2384. { "time": 0.1667, "angle": -4.35 },
  2385. { "time": 0.3333, "angle": -15 },
  2386. { "time": 0.5, "angle": -4.67, "curve": "stepped" },
  2387. { "time": 2.5, "angle": -4.67 },
  2388. { "time": 2.8, "angle": -3.14 }
  2389. ],
  2390. "translate": [
  2391. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2393. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2394. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2395. { "time": 2.5, "x": 0, "y": 0 }
  2396. ],
  2397. "scale": [
  2398. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 2.5, "x": 1, "y": 1 }
  2403. ]
  2404. },
  2405. "bone17": {
  2406. "rotate": [
  2407. { "time": 0, "angle": 0 },
  2408. { "time": 0.1667, "angle": 9.63 },
  2409. { "time": 0.3333, "angle": 49.7 },
  2410. { "time": 0.5, "angle": 35.81, "curve": "stepped" },
  2411. { "time": 2.5, "angle": 35.81 },
  2412. { "time": 2.8, "angle": 19.94 }
  2413. ],
  2414. "translate": [
  2415. { "time": 0, "x": 0, "y": 0 },
  2416. { "time": 0.1667, "x": -1.37, "y": -0.32 },
  2417. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 2.5, "x": 0, "y": 0 }
  2420. ],
  2421. "scale": [
  2422. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2423. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2424. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 2.5, "x": 1, "y": 1 }
  2427. ]
  2428. },
  2429. "bone18": {
  2430. "rotate": [
  2431. { "time": 0, "angle": 0, "curve": "stepped" },
  2432. { "time": 0.1667, "angle": 0 },
  2433. { "time": 0.3333, "angle": -11.41, "curve": "stepped" },
  2434. { "time": 0.5, "angle": -11.41, "curve": "stepped" },
  2435. { "time": 2.5, "angle": -11.41 }
  2436. ],
  2437. "translate": [
  2438. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 2.5, "x": 0, "y": 0 }
  2443. ],
  2444. "scale": [
  2445. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2446. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 2.5, "x": 1, "y": 1 }
  2450. ]
  2451. },
  2452. "bone19": {
  2453. "rotate": [
  2454. { "time": 0, "angle": 0, "curve": "stepped" },
  2455. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2456. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2457. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2458. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2459. { "time": 2.5, "angle": 0 }
  2460. ],
  2461. "translate": [
  2462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2463. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2465. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2467. { "time": 2.5, "x": 0, "y": 0 }
  2468. ],
  2469. "scale": [
  2470. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2471. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2472. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 2.5, "x": 1, "y": 1 }
  2476. ]
  2477. },
  2478. "bone20": {
  2479. "rotate": [
  2480. { "time": 0, "angle": 0, "curve": "stepped" },
  2481. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2482. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2483. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2484. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2485. { "time": 2.5, "angle": 0 }
  2486. ],
  2487. "translate": [
  2488. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2489. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2490. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2491. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2492. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 2.5, "x": 0, "y": 0 }
  2494. ],
  2495. "scale": [
  2496. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2500. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2501. { "time": 2.5, "x": 1, "y": 1 }
  2502. ]
  2503. },
  2504. "bone21": {
  2505. "rotate": [
  2506. { "time": 0, "angle": 0, "curve": "stepped" },
  2507. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2508. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2509. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2510. { "time": 2.5, "angle": 0 }
  2511. ],
  2512. "translate": [
  2513. { "time": 0, "x": 0, "y": 0 },
  2514. { "time": 0.1667, "x": 1.03, "y": 0.06 },
  2515. { "time": 0.3333, "x": -1.91, "y": 0.44 },
  2516. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 2.5, "x": 0, "y": 0 }
  2518. ],
  2519. "scale": [
  2520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 2.5, "x": 1, "y": 1 }
  2525. ]
  2526. },
  2527. "bone22": {
  2528. "rotate": [
  2529. { "time": 0, "angle": 0 },
  2530. { "time": 0.1667, "angle": 6.17 },
  2531. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2532. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2533. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2534. { "time": 2.5, "angle": 0 }
  2535. ],
  2536. "translate": [
  2537. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2539. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2541. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2542. { "time": 2.5, "x": 0, "y": 0 }
  2543. ],
  2544. "scale": [
  2545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 2.5, "x": 1, "y": 1 }
  2551. ]
  2552. },
  2553. "bone23": {
  2554. "rotate": [
  2555. { "time": 0, "angle": 0 },
  2556. { "time": 0.1667, "angle": 6.17 },
  2557. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2558. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2559. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2560. { "time": 2.5, "angle": 0 }
  2561. ],
  2562. "translate": [
  2563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 2.5, "x": 0, "y": 0 }
  2569. ],
  2570. "scale": [
  2571. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2572. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2573. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2574. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2575. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 2.5, "x": 1, "y": 1 }
  2577. ]
  2578. },
  2579. "bone24": {
  2580. "rotate": [
  2581. { "time": 0, "angle": 0, "curve": "stepped" },
  2582. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2583. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2584. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2585. { "time": 3.2333, "angle": 0 }
  2586. ],
  2587. "translate": [
  2588. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2589. { "time": 0.1667, "x": 0, "y": 0 },
  2590. { "time": 0.3333, "x": 0.16, "y": 1.45 }
  2591. ],
  2592. "scale": [
  2593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2594. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2595. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2596. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2597. { "time": 3.2333, "x": 1, "y": 1 }
  2598. ]
  2599. },
  2600. "bone25": {
  2601. "rotate": [
  2602. { "time": 0, "angle": 0, "curve": "stepped" },
  2603. { "time": 0.1667, "angle": 0 },
  2604. {
  2605. "time": 0.3333,
  2606. "angle": -4.71,
  2607. "curve": [ 0.25, 0, 0.75, 1 ]
  2608. },
  2609. { "time": 0.8333, "angle": 0 },
  2610. { "time": 1.5667, "angle": -18.19 },
  2611. { "time": 2.3333, "angle": -16.07 },
  2612. { "time": 3.2333, "angle": 0 }
  2613. ],
  2614. "translate": [
  2615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2616. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2617. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2618. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2619. { "time": 3.2333, "x": 0, "y": 0 }
  2620. ],
  2621. "scale": [
  2622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2626. { "time": 3.2333, "x": 1, "y": 1 }
  2627. ]
  2628. },
  2629. "bone26": {
  2630. "rotate": [
  2631. { "time": 0, "angle": 0, "curve": "stepped" },
  2632. { "time": 0.1667, "angle": 0 },
  2633. {
  2634. "time": 0.3333,
  2635. "angle": -5.87,
  2636. "curve": [ 0.258, 0, 0.619, 0.45 ]
  2637. },
  2638. {
  2639. "time": 0.5333,
  2640. "angle": -5.61,
  2641. "curve": [ 0.363, 0.44, 0.755, 1 ]
  2642. },
  2643. { "time": 0.8333, "angle": 0 },
  2644. { "time": 1.5667, "angle": -0.11 },
  2645. { "time": 2.3333, "angle": -10.54 },
  2646. { "time": 3.2333, "angle": 0 }
  2647. ],
  2648. "translate": [
  2649. { "time": 0, "x": 0, "y": 0 },
  2650. { "time": 0.1667, "x": 1.03, "y": 0 },
  2651. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 3.2333, "x": 0, "y": 0 }
  2654. ],
  2655. "scale": [
  2656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 3.2333, "x": 1, "y": 1 }
  2661. ]
  2662. },
  2663. "bone27": {
  2664. "rotate": [
  2665. { "time": 0, "angle": 0, "curve": "stepped" },
  2666. { "time": 0.1667, "angle": 0 },
  2667. {
  2668. "time": 0.3333,
  2669. "angle": -5.87,
  2670. "curve": [ 0.258, 0, 0.619, 0.45 ]
  2671. },
  2672. {
  2673. "time": 0.5333,
  2674. "angle": -15.58,
  2675. "curve": [ 0.363, 0.44, 0.755, 1 ]
  2676. },
  2677. { "time": 0.8333, "angle": 0 },
  2678. { "time": 1.5667, "angle": 4.22 },
  2679. { "time": 2.3333, "angle": -10.54 },
  2680. { "time": 3.2333, "angle": 0 }
  2681. ],
  2682. "translate": [
  2683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2685. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 3.2333, "x": 0, "y": 0 }
  2688. ],
  2689. "scale": [
  2690. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 3.2333, "x": 1, "y": 1 }
  2695. ]
  2696. },
  2697. "bone28": {
  2698. "rotate": [
  2699. { "time": 0, "angle": 0, "curve": "stepped" },
  2700. { "time": 0.1667, "angle": 0 },
  2701. {
  2702. "time": 0.3333,
  2703. "angle": -5.87,
  2704. "curve": [ 0.25, 0, 0.75, 1 ]
  2705. },
  2706. { "time": 0.8333, "angle": 0 },
  2707. { "time": 1.5667, "angle": 4.22 },
  2708. { "time": 2.3333, "angle": -10.54 },
  2709. { "time": 3.2333, "angle": 0 }
  2710. ],
  2711. "translate": [
  2712. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2713. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2714. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2716. { "time": 3.2333, "x": 0, "y": 0 }
  2717. ],
  2718. "scale": [
  2719. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2720. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2721. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2722. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 3.2333, "x": 1, "y": 1 }
  2724. ]
  2725. },
  2726. "bone29": {
  2727. "rotate": [
  2728. { "time": 0, "angle": 0, "curve": "stepped" },
  2729. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2730. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2731. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2732. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2733. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2734. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2735. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2736. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2737. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  2738. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2739. { "time": 3.0333, "angle": 0 }
  2740. ],
  2741. "translate": [
  2742. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2743. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2744. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2745. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2746. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2747. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2748. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2749. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2750. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2751. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  2752. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 3.0333, "x": 0, "y": 0 }
  2754. ],
  2755. "scale": [
  2756. { "time": 0, "x": 1, "y": 1 },
  2757. { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
  2758. { "time": 0.2667, "x": 0.365, "y": 1 },
  2759. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 1.0333, "x": 1, "y": 1 },
  2761. { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
  2762. { "time": 1.2333, "x": 0.365, "y": 1 },
  2763. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2764. { "time": 2.6667, "x": 1, "y": 1 },
  2765. { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
  2766. { "time": 2.9, "x": 0.365, "y": 1 },
  2767. { "time": 3.0333, "x": 1, "y": 1 }
  2768. ]
  2769. },
  2770. "bone30": {
  2771. "rotate": [
  2772. { "time": 0, "angle": 0, "curve": "stepped" },
  2773. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2774. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2775. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2776. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2777. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2778. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2779. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2780. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2781. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  2782. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2783. { "time": 3.0333, "angle": 0 }
  2784. ],
  2785. "translate": [
  2786. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 3.0333, "x": 0, "y": 0 }
  2798. ],
  2799. "scale": [
  2800. { "time": 0, "x": 1, "y": 1 },
  2801. { "time": 0.1, "x": 0.365, "y": 1, "curve": "stepped" },
  2802. { "time": 0.2667, "x": 0.365, "y": 1 },
  2803. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 1.0333, "x": 1, "y": 1 },
  2805. { "time": 1.1333, "x": 0.365, "y": 1, "curve": "stepped" },
  2806. { "time": 1.2333, "x": 0.365, "y": 1 },
  2807. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 2.6667, "x": 1, "y": 1 },
  2809. { "time": 2.7667, "x": 0.365, "y": 1, "curve": "stepped" },
  2810. { "time": 2.9, "x": 0.365, "y": 1 },
  2811. { "time": 3.0333, "x": 1, "y": 1 }
  2812. ]
  2813. },
  2814. "bone31": {
  2815. "rotate": [
  2816. { "time": 0, "angle": 0, "curve": "stepped" },
  2817. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2818. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2819. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2820. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2821. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2822. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2823. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2824. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2825. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  2826. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2827. { "time": 3.0333, "angle": 0 }
  2828. ],
  2829. "translate": [
  2830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2835. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2836. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2837. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2838. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2839. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  2840. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 3.0333, "x": 0, "y": 0 }
  2842. ],
  2843. "scale": [
  2844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2852. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2853. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  2854. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2855. { "time": 3.0333, "x": 1, "y": 1 }
  2856. ]
  2857. },
  2858. "bone32": {
  2859. "rotate": [
  2860. { "time": 0, "angle": 0, "curve": "stepped" },
  2861. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2862. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2863. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2864. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2865. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2866. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2867. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2868. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2869. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  2870. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2871. { "time": 3.0333, "angle": 0 }
  2872. ],
  2873. "translate": [
  2874. { "time": 0, "x": 0, "y": 0 },
  2875. { "time": 0.1, "x": -1.25, "y": 0, "curve": "stepped" },
  2876. { "time": 0.2667, "x": -1.25, "y": 0 },
  2877. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2878. { "time": 1.0333, "x": 0, "y": 0 },
  2879. { "time": 1.1333, "x": -1.25, "y": 0, "curve": "stepped" },
  2880. { "time": 1.2333, "x": -1.25, "y": 0 },
  2881. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2882. { "time": 2.6667, "x": 0, "y": 0 },
  2883. { "time": 2.7667, "x": -1.25, "y": 0, "curve": "stepped" },
  2884. { "time": 2.9, "x": -1.25, "y": 0 },
  2885. { "time": 3.0333, "x": 0, "y": 0 }
  2886. ],
  2887. "scale": [
  2888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2889. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2890. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2891. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 3.0333, "x": 1, "y": 1 }
  2900. ]
  2901. },
  2902. "bone33": {
  2903. "scale": [
  2904. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 0.1667, "x": 1, "y": 0.5 },
  2906. { "time": 0.3333, "x": 1, "y": 1 }
  2907. ]
  2908. },
  2909. "ziti": {
  2910. "rotate": [
  2911. { "time": 0, "angle": 0 }
  2912. ],
  2913. "translate": [
  2914. { "time": 0, "x": -417.85, "y": -47.65 },
  2915. { "time": 3.4, "x": -399.93, "y": -47.65 }
  2916. ],
  2917. "scale": [
  2918. { "time": 0, "x": -1, "y": 1 }
  2919. ]
  2920. },
  2921. "ziti2": {
  2922. "rotate": [
  2923. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2924. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2925. { "time": 0.7, "angle": 0 }
  2926. ],
  2927. "translate": [
  2928. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 0.7, "x": 0, "y": 0 }
  2931. ],
  2932. "scale": [
  2933. { "time": 0.4333, "x": 1.2, "y": 1.2 },
  2934. { "time": 0.5667, "x": 0.9, "y": 0.9 },
  2935. { "time": 0.7, "x": 1, "y": 1 }
  2936. ]
  2937. },
  2938. "ziti3": {
  2939. "rotate": [
  2940. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2941. { "time": 0.8, "angle": 0, "curve": "stepped" },
  2942. { "time": 0.9333, "angle": 0 }
  2943. ],
  2944. "translate": [
  2945. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 0.9333, "x": 0, "y": 0 }
  2948. ],
  2949. "scale": [
  2950. { "time": 0.6667, "x": 1.2, "y": 1.2 },
  2951. { "time": 0.8, "x": 0.9, "y": 0.9 },
  2952. { "time": 0.9333, "x": 1, "y": 1 }
  2953. ]
  2954. },
  2955. "ziti4": {
  2956. "rotate": [
  2957. { "time": 0.8, "angle": 0, "curve": "stepped" },
  2958. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  2959. { "time": 1.0667, "angle": 0 }
  2960. ],
  2961. "translate": [
  2962. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  2964. { "time": 1.0667, "x": 0, "y": 0 }
  2965. ],
  2966. "scale": [
  2967. { "time": 0.8, "x": 1.2, "y": 1.2 },
  2968. { "time": 0.9333, "x": 0.9, "y": 0.9 },
  2969. { "time": 1.0667, "x": 1, "y": 1 }
  2970. ]
  2971. },
  2972. "ziti5": {
  2973. "rotate": [
  2974. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  2975. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2976. { "time": 1.2, "angle": 0 }
  2977. ],
  2978. "translate": [
  2979. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 1.2, "x": 0, "y": 0 }
  2982. ],
  2983. "scale": [
  2984. { "time": 0.9333, "x": 1.2, "y": 1.2 },
  2985. { "time": 1.0667, "x": 0.9, "y": 0.9 },
  2986. { "time": 1.2, "x": 1, "y": 1 }
  2987. ]
  2988. },
  2989. "ziti6": {
  2990. "rotate": [
  2991. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2992. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2993. { "time": 1.3333, "angle": 0 }
  2994. ],
  2995. "translate": [
  2996. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2997. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 1.3333, "x": 0, "y": 0 }
  2999. ],
  3000. "scale": [
  3001. { "time": 1.0667, "x": 1.2, "y": 1.2 },
  3002. { "time": 1.2, "x": 0.9, "y": 0.9 },
  3003. { "time": 1.3333, "x": 1, "y": 1 }
  3004. ]
  3005. },
  3006. "ziti7": {
  3007. "rotate": [
  3008. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3009. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3010. { "time": 1.4667, "angle": 0 }
  3011. ],
  3012. "translate": [
  3013. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3014. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3015. { "time": 1.4667, "x": 0, "y": 0 }
  3016. ],
  3017. "scale": [
  3018. { "time": 1.2, "x": 1.2, "y": 1.2 },
  3019. { "time": 1.3333, "x": 0.9, "y": 0.9 },
  3020. { "time": 1.4667, "x": 1, "y": 1 }
  3021. ]
  3022. },
  3023. "ziti8": {
  3024. "rotate": [
  3025. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3026. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  3027. { "time": 1.6, "angle": 0 }
  3028. ],
  3029. "translate": [
  3030. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 1.6, "x": 0, "y": 0 }
  3033. ],
  3034. "scale": [
  3035. { "time": 1.3333, "x": 1.2, "y": 1.2 },
  3036. { "time": 1.4667, "x": 0.9, "y": 0.9 },
  3037. { "time": 1.6, "x": 1, "y": 1 }
  3038. ]
  3039. },
  3040. "ziti9": {
  3041. "rotate": [
  3042. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  3043. { "time": 1.6, "angle": 0, "curve": "stepped" },
  3044. { "time": 1.7333, "angle": 0 }
  3045. ],
  3046. "translate": [
  3047. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3048. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  3049. { "time": 1.7333, "x": 0, "y": 0 }
  3050. ],
  3051. "scale": [
  3052. { "time": 1.4667, "x": 1.2, "y": 1.2 },
  3053. { "time": 1.6, "x": 0.9, "y": 0.9 },
  3054. { "time": 1.7333, "x": 1, "y": 1 }
  3055. ]
  3056. },
  3057. "ziti10": {
  3058. "rotate": [
  3059. { "time": 1.6, "angle": 0, "curve": "stepped" },
  3060. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3061. { "time": 1.8333, "angle": 0 }
  3062. ],
  3063. "translate": [
  3064. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  3065. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3066. { "time": 1.8333, "x": 0, "y": 0 }
  3067. ],
  3068. "scale": [
  3069. { "time": 1.6, "x": 1.2, "y": 1.2 },
  3070. { "time": 1.7333, "x": 0.9, "y": 0.9 },
  3071. { "time": 1.8333, "x": 1, "y": 1 }
  3072. ]
  3073. },
  3074. "bone34": {
  3075. "rotate": [
  3076. { "time": 0, "angle": 0 },
  3077. { "time": 0.3333, "angle": -4.7 },
  3078. { "time": 0.5, "angle": -25.33 },
  3079. { "time": 0.8, "angle": -9.02 },
  3080. {
  3081. "time": 1.1333,
  3082. "angle": -16.65,
  3083. "curve": [ 0.25, 0, 0.75, 1 ]
  3084. },
  3085. {
  3086. "time": 1.4667,
  3087. "angle": -4.98,
  3088. "curve": [ 0.25, 0, 0.75, 1 ]
  3089. },
  3090. {
  3091. "time": 1.8,
  3092. "angle": -16.65,
  3093. "curve": [ 0.25, 0, 0.75, 1 ]
  3094. },
  3095. {
  3096. "time": 2.1,
  3097. "angle": -0.99,
  3098. "curve": [ 0.25, 0, 0.75, 1 ]
  3099. },
  3100. {
  3101. "time": 2.4667,
  3102. "angle": -21.04,
  3103. "curve": [ 0.25, 0, 0.75, 1 ]
  3104. },
  3105. {
  3106. "time": 2.7,
  3107. "angle": 2.23,
  3108. "curve": [ 0.25, 0, 0.75, 1 ]
  3109. },
  3110. { "time": 2.9667, "angle": 27.34 }
  3111. ],
  3112. "translate": [
  3113. { "time": 0, "x": 3.61, "y": 188.63, "curve": "stepped" },
  3114. { "time": 0.3333, "x": 3.61, "y": 188.63, "curve": "stepped" },
  3115. { "time": 0.5, "x": 3.61, "y": 188.63 },
  3116. { "time": 0.8, "x": 3.45, "y": 187.76 },
  3117. {
  3118. "time": 1.1333,
  3119. "x": 3.61,
  3120. "y": 188.63,
  3121. "curve": [ 0.25, 0, 0.75, 1 ]
  3122. },
  3123. {
  3124. "time": 1.4667,
  3125. "x": 3.43,
  3126. "y": 187.97,
  3127. "curve": [ 0.25, 0, 0.75, 1 ]
  3128. },
  3129. {
  3130. "time": 1.8,
  3131. "x": 3.61,
  3132. "y": 188.63,
  3133. "curve": [ 0.25, 0, 0.75, 1 ]
  3134. },
  3135. {
  3136. "time": 2.1,
  3137. "x": 3.43,
  3138. "y": 187.97,
  3139. "curve": [ 0.25, 0, 0.75, 1 ]
  3140. },
  3141. { "time": 2.4667, "x": 3.61, "y": 188.63, "curve": "stepped" },
  3142. { "time": 2.7, "x": 3.61, "y": 188.63 }
  3143. ],
  3144. "scale": [
  3145. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3151. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  3153. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3154. { "time": 2.7, "x": 1, "y": 1 }
  3155. ]
  3156. },
  3157. "bone35": {
  3158. "rotate": [
  3159. { "time": 0, "angle": -18.48 },
  3160. { "time": 0.3333, "angle": -22.07 },
  3161. { "time": 0.5, "angle": -39.03 },
  3162. { "time": 0.8, "angle": -12.9 },
  3163. { "time": 1.1333, "angle": -35.94 },
  3164. { "time": 1.4667, "angle": -12.26 },
  3165. { "time": 1.8, "angle": -35.94 },
  3166. { "time": 2.1, "angle": -21.53 },
  3167. { "time": 2.4667, "angle": -26.86 },
  3168. { "time": 2.7, "angle": -28.48 },
  3169. { "time": 2.9667, "angle": -1.11 }
  3170. ],
  3171. "translate": [
  3172. { "time": 0, "x": 0, "y": 0 },
  3173. { "time": 0.3333, "x": 2.17, "y": 0.13 },
  3174. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3175. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  3176. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3177. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3178. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3179. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  3180. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3181. { "time": 2.7, "x": 0, "y": 0 }
  3182. ],
  3183. "scale": [
  3184. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3185. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3186. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3187. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  3188. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3189. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3190. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3191. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  3192. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3193. { "time": 2.7, "x": 1, "y": 1 }
  3194. ]
  3195. },
  3196. "bone36": {
  3197. "rotate": [
  3198. { "time": 0, "angle": 0, "curve": "stepped" },
  3199. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3200. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3201. { "time": 0.8, "angle": 0, "curve": "stepped" },
  3202. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3203. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  3204. { "time": 1.8, "angle": 0, "curve": "stepped" },
  3205. { "time": 2.1, "angle": 0, "curve": "stepped" },
  3206. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  3207. { "time": 2.7, "angle": 0 }
  3208. ],
  3209. "translate": [
  3210. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3211. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3212. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3219. { "time": 2.7, "x": 0, "y": 0 }
  3220. ],
  3221. "scale": [
  3222. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3224. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3225. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  3226. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3227. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3228. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3229. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  3230. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3231. { "time": 2.7, "x": 1, "y": 1 }
  3232. ]
  3233. },
  3234. "bone37": {
  3235. "translate": [
  3236. { "time": 0, "x": -109.63, "y": -13.8 }
  3237. ],
  3238. "scale": [
  3239. { "time": 0, "x": 0.3, "y": 0.3, "curve": "stepped" },
  3240. {
  3241. "time": 0.1667,
  3242. "x": 0.3,
  3243. "y": 0.3,
  3244. "curve": [ 0.25, 0, 0.75, 1 ]
  3245. },
  3246. {
  3247. "time": 0.6667,
  3248. "x": 0.5,
  3249. "y": 0.5,
  3250. "curve": [ 0.25, 0, 0.75, 1 ]
  3251. },
  3252. { "time": 1.3667, "x": 0.3, "y": 0.3, "curve": "stepped" },
  3253. {
  3254. "time": 1.4333,
  3255. "x": 0.3,
  3256. "y": 0.3,
  3257. "curve": [ 0.25, 0, 0.75, 1 ]
  3258. },
  3259. {
  3260. "time": 2.0667,
  3261. "x": 0.5,
  3262. "y": 0.5,
  3263. "curve": [ 0.25, 0, 0.75, 1 ]
  3264. },
  3265. { "time": 2.7, "x": 0.3, "y": 0.3 }
  3266. ]
  3267. }
  3268. },
  3269. "deform": {
  3270. "default": {
  3271. "dibu": {
  3272. "dibu": [
  3273. { "time": 0.1667 },
  3274. {
  3275. "time": 0.3333,
  3276. "offset": 8,
  3277. "vertices": [ 3.57146, 20.5243, 0.21011, 10.91447 ]
  3278. },
  3279. {
  3280. "time": 0.5333,
  3281. "offset": 8,
  3282. "vertices": [ 4.73099, 22.50792, 0.03457, 9.9644 ]
  3283. },
  3284. {
  3285. "time": 0.6333,
  3286. "offset": 8,
  3287. "vertices": [ 1.4698, 11.66439, 0.29355, 5.69287 ]
  3288. },
  3289. {
  3290. "time": 2.4667,
  3291. "offset": 6,
  3292. "vertices": [ 2.52073, 15.94321, 4.43141, 25.04954, 8.87064, 13.46643 ]
  3293. },
  3294. { "time": 3.1 }
  3295. ]
  3296. },
  3297. "shenti": {
  3298. "shenti": [
  3299. { "time": 0 },
  3300. {
  3301. "time": 0.1667,
  3302. "offset": 62,
  3303. "vertices": [ -2.4136, -0.08252, -2.41499, 0, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449, -2.4136, -0.08252, -2.41471, -0.03449 ]
  3304. },
  3305. {
  3306. "time": 0.6333,
  3307. "offset": 62,
  3308. "vertices": [ -0.54336, -0.78582, -0.56992, -0.76679, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355, -0.54336, -0.78582, -0.48427, -0.82355 ]
  3309. }
  3310. ]
  3311. },
  3312. "youshou": {
  3313. "youshou": [
  3314. {
  3315. "time": 0.3333,
  3316. "vertices": [ -0.04018, -0.011, -0.02404, -0.03401, -0.03991, -0.00566, -0.02723, -0.02972, -0.03911, -0.00139, -0.02932, -0.0259, -0.00959, 0.0399, -0.03274, 0.02474, -0.03692, 0.01793, -0.03294, 0.02984, -0.0381, 0.02289, -0.03314, 0.03514, -0.03933, 0.02805, -0.02252, 0.07224, 0.00812, 0.06059, 0.0172, 0.03826, 0.00946, 0.04087, 0.01615, 0.03007, 0.01002, 0.03263, 0.01572, 0.02671, 0.01025, 0.02925, -0.00259, -0.01803, 0.00945, -0.01557, 0.01229, -0.01344, -0.0051, -0.01979, 0.00864, -0.01852, 0.01205, -0.01649, -0.00631, -0.02107, 0.00851, -0.02028, 0.01228, -0.01825, -0.00374, -0.04481, 0.02557, -0.03698, -0.02228, -0.07697, -0.03635, -0.06797, -0.01706, 0.02684, -0.01793, 0.03408, -0.01634, 0.02259, -0.02281, -0.0078, -0.01266, -0.0205, -0.00845, -0.02256, -0.01283, -0.01647, -0.0094, -0.01865, -0.02257, -0.01224, -0.00965, -0.02377 ]
  3317. }
  3318. ]
  3319. }
  3320. }
  3321. }
  3322. },
  3323. "walk1": {
  3324. "slots": {
  3325. "1": {
  3326. "attachment": [
  3327. { "time": 0, "name": null }
  3328. ]
  3329. },
  3330. "2": {
  3331. "attachment": [
  3332. { "time": 0, "name": null }
  3333. ]
  3334. },
  3335. "3": {
  3336. "attachment": [
  3337. { "time": 0, "name": null }
  3338. ]
  3339. },
  3340. "4": {
  3341. "attachment": [
  3342. { "time": 0, "name": null }
  3343. ]
  3344. },
  3345. "5": {
  3346. "attachment": [
  3347. { "time": 0, "name": null }
  3348. ]
  3349. },
  3350. "6": {
  3351. "attachment": [
  3352. { "time": 0, "name": null }
  3353. ]
  3354. },
  3355. "7": {
  3356. "attachment": [
  3357. { "time": 0, "name": null }
  3358. ]
  3359. },
  3360. "8": {
  3361. "attachment": [
  3362. { "time": 0, "name": null }
  3363. ]
  3364. },
  3365. "9": {
  3366. "attachment": [
  3367. { "time": 0, "name": null }
  3368. ]
  3369. },
  3370. "biyan": {
  3371. "attachment": [
  3372. { "time": 1.1, "name": "biyan" },
  3373. { "time": 1.2333, "name": null }
  3374. ]
  3375. },
  3376. "star": {
  3377. "attachment": [
  3378. { "time": 0, "name": null }
  3379. ]
  3380. },
  3381. "teshuzuoshou": {
  3382. "attachment": [
  3383. { "time": 0, "name": null }
  3384. ]
  3385. },
  3386. "teshuzuoshou1": {
  3387. "attachment": [
  3388. { "time": 0, "name": null }
  3389. ]
  3390. },
  3391. "youyan": {
  3392. "attachment": [
  3393. { "time": 1.1, "name": null },
  3394. { "time": 1.2333, "name": "youyan" }
  3395. ]
  3396. },
  3397. "zhangzuixiao": {
  3398. "attachment": [
  3399. { "time": 0, "name": null }
  3400. ]
  3401. },
  3402. "zuoyan": {
  3403. "attachment": [
  3404. { "time": 1.1, "name": null },
  3405. { "time": 1.2333, "name": "zuoyan" }
  3406. ]
  3407. }
  3408. },
  3409. "bones": {
  3410. "bone": {
  3411. "translate": [
  3412. { "time": 0, "x": 0, "y": 0 },
  3413. { "time": 0.1667, "x": 0, "y": 1.12 },
  3414. { "time": 0.5, "x": 0, "y": 0 },
  3415. { "time": 0.6667, "x": 0, "y": 1.12 },
  3416. { "time": 1, "x": 0, "y": 0 },
  3417. { "time": 1.1667, "x": 0, "y": 1.12 },
  3418. { "time": 1.5, "x": 0, "y": 0 },
  3419. { "time": 1.6667, "x": 0, "y": 1.12 },
  3420. { "time": 2, "x": 0, "y": 0 }
  3421. ]
  3422. },
  3423. "bone6": {
  3424. "rotate": [
  3425. {
  3426. "time": 0,
  3427. "angle": -311.26,
  3428. "curve": [ 0.25, 0, 0.75, 1 ]
  3429. },
  3430. {
  3431. "time": 0.5,
  3432. "angle": 16.66,
  3433. "curve": [ 0.25, 0, 0.75, 1 ]
  3434. },
  3435. {
  3436. "time": 1,
  3437. "angle": -311.26,
  3438. "curve": [ 0.25, 0, 0.75, 1 ]
  3439. },
  3440. {
  3441. "time": 1.5,
  3442. "angle": 16.66,
  3443. "curve": [ 0.25, 0, 0.75, 1 ]
  3444. },
  3445. { "time": 2, "angle": -311.26 }
  3446. ],
  3447. "translate": [
  3448. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3451. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3452. { "time": 2, "x": 0, "y": 0 }
  3453. ],
  3454. "scale": [
  3455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3458. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 2, "x": 1, "y": 1 }
  3460. ]
  3461. },
  3462. "bone7": {
  3463. "rotate": [
  3464. {
  3465. "time": 0,
  3466. "angle": -1.38,
  3467. "curve": [ 0.25, 0, 0.75, 1 ]
  3468. },
  3469. {
  3470. "time": 0.5,
  3471. "angle": -19.02,
  3472. "curve": [ 0.25, 0, 0.75, 1 ]
  3473. },
  3474. {
  3475. "time": 1,
  3476. "angle": -1.38,
  3477. "curve": [ 0.25, 0, 0.75, 1 ]
  3478. },
  3479. {
  3480. "time": 1.5,
  3481. "angle": -19.02,
  3482. "curve": [ 0.25, 0, 0.75, 1 ]
  3483. },
  3484. { "time": 2, "angle": -1.38 }
  3485. ],
  3486. "translate": [
  3487. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3488. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3489. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3490. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3491. { "time": 2, "x": 0, "y": 0 }
  3492. ],
  3493. "scale": [
  3494. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 2, "x": 1, "y": 1 }
  3499. ]
  3500. },
  3501. "bone9": {
  3502. "rotate": [
  3503. {
  3504. "time": 0,
  3505. "angle": 327.03,
  3506. "curve": [ 0.25, 0, 0.75, 1 ]
  3507. },
  3508. {
  3509. "time": 0.5,
  3510. "angle": -3.36,
  3511. "curve": [ 0.25, 0, 0.75, 1 ]
  3512. },
  3513. {
  3514. "time": 1,
  3515. "angle": 327.03,
  3516. "curve": [ 0.25, 0, 0.75, 1 ]
  3517. },
  3518. {
  3519. "time": 1.5,
  3520. "angle": -3.36,
  3521. "curve": [ 0.25, 0, 0.75, 1 ]
  3522. },
  3523. { "time": 2, "angle": 327.03 }
  3524. ]
  3525. },
  3526. "bone10": {
  3527. "rotate": [
  3528. {
  3529. "time": 0,
  3530. "angle": -22.03,
  3531. "curve": [ 0.25, 0, 0.75, 1 ]
  3532. },
  3533. {
  3534. "time": 0.5,
  3535. "angle": -9.19,
  3536. "curve": [ 0.25, 0, 0.75, 1 ]
  3537. },
  3538. {
  3539. "time": 1,
  3540. "angle": -22.03,
  3541. "curve": [ 0.25, 0, 0.75, 1 ]
  3542. },
  3543. {
  3544. "time": 1.5,
  3545. "angle": -9.19,
  3546. "curve": [ 0.25, 0, 0.75, 1 ]
  3547. },
  3548. { "time": 2, "angle": -22.03 }
  3549. ]
  3550. },
  3551. "bone13": {
  3552. "rotate": [
  3553. { "time": 0, "angle": 19.04 },
  3554. { "time": 0.1667, "angle": -4.28 },
  3555. { "time": 0.3333, "angle": -20.77 },
  3556. { "time": 0.5, "angle": -29.84 },
  3557. { "time": 0.6667, "angle": -14.9 },
  3558. { "time": 0.8333, "angle": 2.07 },
  3559. { "time": 1, "angle": 19.04 },
  3560. { "time": 1.1667, "angle": -4.28 },
  3561. { "time": 1.3333, "angle": -20.77 },
  3562. { "time": 1.5, "angle": -29.84 },
  3563. { "time": 1.6667, "angle": -14.9 },
  3564. { "time": 1.8333, "angle": 2.07 },
  3565. { "time": 2, "angle": 19.04 }
  3566. ]
  3567. },
  3568. "bone14": {
  3569. "rotate": [
  3570. { "time": 0, "angle": 0 },
  3571. { "time": 0.1667, "angle": 38.95 },
  3572. { "time": 0.3333, "angle": 35.2 },
  3573. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3574. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3575. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3576. { "time": 1, "angle": 0 },
  3577. { "time": 1.1667, "angle": 38.95 },
  3578. { "time": 1.3333, "angle": 35.2 },
  3579. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3580. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3581. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3582. { "time": 2, "angle": 0 }
  3583. ],
  3584. "translate": [
  3585. { "time": 0, "x": 0, "y": 0 },
  3586. { "time": 0.1667, "x": -2.57, "y": -1.74 },
  3587. { "time": 0.3333, "x": -2.09, "y": -1.23 },
  3588. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3591. { "time": 1, "x": 0, "y": 0 },
  3592. { "time": 1.1667, "x": -2.57, "y": -1.74 },
  3593. { "time": 1.3333, "x": -2.09, "y": -1.23 },
  3594. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 2, "x": 0, "y": 0 }
  3598. ]
  3599. },
  3600. "bone16": {
  3601. "rotate": [
  3602. { "time": 0, "angle": -12.22 },
  3603. { "time": 0.1667, "angle": -2.11 },
  3604. { "time": 0.3333, "angle": 20.53 },
  3605. { "time": 0.5, "angle": 36.9 },
  3606. { "time": 0.6667, "angle": 12.42 },
  3607. { "time": 0.8333, "angle": -10.13 },
  3608. { "time": 1, "angle": -12.22 },
  3609. { "time": 1.1667, "angle": -2.11 },
  3610. { "time": 1.3333, "angle": 20.53 },
  3611. { "time": 1.5, "angle": 36.9 },
  3612. { "time": 1.6667, "angle": 12.42 },
  3613. { "time": 1.8333, "angle": -10.13 },
  3614. { "time": 2, "angle": -12.22 }
  3615. ],
  3616. "translate": [
  3617. { "time": 0, "x": 0, "y": 0 },
  3618. { "time": 0.1667, "x": 0.66, "y": -0.24 },
  3619. { "time": 0.3333, "x": 1.31, "y": -0.48 },
  3620. { "time": 0.5, "x": 1.97, "y": -0.72 },
  3621. { "time": 0.6667, "x": 1.31, "y": -0.48 },
  3622. { "time": 0.8333, "x": 0.66, "y": -0.24 },
  3623. { "time": 1, "x": 0, "y": 0 },
  3624. { "time": 1.1667, "x": 0.66, "y": -0.24 },
  3625. { "time": 1.3333, "x": 1.31, "y": -0.48 },
  3626. { "time": 1.5, "x": 1.97, "y": -0.72 },
  3627. { "time": 1.6667, "x": 1.31, "y": -0.48 },
  3628. { "time": 1.8333, "x": 0.66, "y": -0.24 },
  3629. { "time": 2, "x": 0, "y": 0 }
  3630. ]
  3631. },
  3632. "bone17": {
  3633. "rotate": [
  3634. { "time": 0, "angle": 0 },
  3635. { "time": 0.1667, "angle": 12.81 },
  3636. { "time": 0.3333, "angle": 7.36 },
  3637. { "time": 0.5, "angle": 0 },
  3638. { "time": 0.6667, "angle": 33.21 },
  3639. { "time": 0.8333, "angle": 30.63 },
  3640. { "time": 1, "angle": 0 },
  3641. { "time": 1.1667, "angle": 12.81 },
  3642. { "time": 1.3333, "angle": 7.36 },
  3643. { "time": 1.5, "angle": 0 },
  3644. { "time": 1.6667, "angle": 33.21 },
  3645. { "time": 1.8333, "angle": 30.63 },
  3646. { "time": 2, "angle": 0 }
  3647. ],
  3648. "translate": [
  3649. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3651. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3652. { "time": 0.5, "x": 0, "y": 0 },
  3653. { "time": 0.6667, "x": -1.73, "y": -1.19 },
  3654. { "time": 0.8333, "x": -1.65, "y": -1.12 },
  3655. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 1.5, "x": 0, "y": 0 },
  3659. { "time": 1.6667, "x": -1.73, "y": -1.19 },
  3660. { "time": 1.8333, "x": -1.65, "y": -1.12 },
  3661. { "time": 2, "x": 0, "y": 0 }
  3662. ]
  3663. },
  3664. "bone18": {
  3665. "rotate": [
  3666. { "time": 0, "angle": -10.3, "curve": "stepped" },
  3667. { "time": 0.1667, "angle": -10.3 },
  3668. { "time": 0.3333, "angle": -28.83 },
  3669. { "time": 0.5, "angle": -10.3, "curve": "stepped" },
  3670. { "time": 0.6667, "angle": -10.3, "curve": "stepped" },
  3671. { "time": 0.8333, "angle": -10.3, "curve": "stepped" },
  3672. { "time": 1, "angle": -10.3, "curve": "stepped" },
  3673. { "time": 1.1667, "angle": -10.3 },
  3674. { "time": 1.3333, "angle": -28.83 },
  3675. { "time": 1.5, "angle": -10.3, "curve": "stepped" },
  3676. { "time": 1.6667, "angle": -10.3, "curve": "stepped" },
  3677. { "time": 1.8333, "angle": -10.3, "curve": "stepped" },
  3678. { "time": 2, "angle": -10.3 }
  3679. ]
  3680. },
  3681. "bone19": {
  3682. "rotate": [
  3683. { "time": 0, "angle": 347.15 },
  3684. { "time": 0.5, "angle": 0 },
  3685. { "time": 1, "angle": 347.15 },
  3686. { "time": 1.5, "angle": 0 },
  3687. { "time": 2, "angle": 347.15 }
  3688. ]
  3689. },
  3690. "bone20": {
  3691. "rotate": [
  3692. { "time": 0, "angle": 20.13 },
  3693. { "time": 0.5, "angle": 0 },
  3694. { "time": 1, "angle": 20.13 },
  3695. { "time": 1.5, "angle": 0 },
  3696. { "time": 2, "angle": 20.13 }
  3697. ],
  3698. "translate": [
  3699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 2, "x": 0, "y": 0 }
  3704. ],
  3705. "scale": [
  3706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3707. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3709. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3710. { "time": 2, "x": 1, "y": 1 }
  3711. ]
  3712. },
  3713. "bone21": {
  3714. "rotate": [
  3715. { "time": 0, "angle": -6.25 },
  3716. { "time": 0.5, "angle": 7.9 },
  3717. { "time": 1, "angle": -6.25 },
  3718. { "time": 1.5, "angle": 7.9 },
  3719. { "time": 2, "angle": -6.25 }
  3720. ]
  3721. },
  3722. "bone22": {
  3723. "rotate": [
  3724. { "time": 0, "angle": 3.53 },
  3725. { "time": 0.5, "angle": 7.9 },
  3726. { "time": 1, "angle": 3.53 },
  3727. { "time": 1.5, "angle": 7.9 },
  3728. { "time": 2, "angle": 3.53 }
  3729. ]
  3730. },
  3731. "bone23": {
  3732. "rotate": [
  3733. { "time": 0, "angle": -2.4 },
  3734. { "time": 0.5, "angle": 7.9 },
  3735. { "time": 1, "angle": -2.4 },
  3736. { "time": 1.5, "angle": 7.9 },
  3737. { "time": 2, "angle": -2.4 }
  3738. ],
  3739. "translate": [
  3740. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3741. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3742. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3743. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3744. { "time": 2, "x": 0, "y": 0 }
  3745. ],
  3746. "scale": [
  3747. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3748. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3749. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3750. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3751. { "time": 2, "x": 1, "y": 1 }
  3752. ]
  3753. },
  3754. "bone25": {
  3755. "rotate": [
  3756. {
  3757. "time": 0,
  3758. "angle": -4.45,
  3759. "curve": [ 0.25, 0, 0.75, 1 ]
  3760. },
  3761. {
  3762. "time": 0.5,
  3763. "angle": 0,
  3764. "curve": [ 0.25, 0, 0.75, 1 ]
  3765. },
  3766. {
  3767. "time": 1,
  3768. "angle": -4.45,
  3769. "curve": [ 0.25, 0, 0.75, 1 ]
  3770. },
  3771. {
  3772. "time": 1.5,
  3773. "angle": 0,
  3774. "curve": [ 0.25, 0, 0.75, 1 ]
  3775. },
  3776. { "time": 2, "angle": -4.45 }
  3777. ],
  3778. "translate": [
  3779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3780. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3781. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3782. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3783. { "time": 2, "x": 0, "y": 0 }
  3784. ],
  3785. "scale": [
  3786. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 2, "x": 1, "y": 1 }
  3791. ]
  3792. },
  3793. "bone26": {
  3794. "rotate": [
  3795. {
  3796. "time": 0,
  3797. "angle": -2.2,
  3798. "curve": [ 0.25, 0, 0.75, 1 ]
  3799. },
  3800. {
  3801. "time": 0.5,
  3802. "angle": 0,
  3803. "curve": [ 0.25, 0, 0.75, 1 ]
  3804. },
  3805. {
  3806. "time": 1,
  3807. "angle": -2.2,
  3808. "curve": [ 0.25, 0, 0.75, 1 ]
  3809. },
  3810. {
  3811. "time": 1.5,
  3812. "angle": 0,
  3813. "curve": [ 0.25, 0, 0.75, 1 ]
  3814. },
  3815. { "time": 2, "angle": -2.2 }
  3816. ],
  3817. "translate": [
  3818. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3819. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3820. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3821. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3822. { "time": 2, "x": 0, "y": 0 }
  3823. ],
  3824. "scale": [
  3825. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3826. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3827. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3828. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3829. { "time": 2, "x": 1, "y": 1 }
  3830. ]
  3831. },
  3832. "bone27": {
  3833. "rotate": [
  3834. {
  3835. "time": 0,
  3836. "angle": -2.2,
  3837. "curve": [ 0.25, 0, 0.75, 1 ]
  3838. },
  3839. {
  3840. "time": 0.5,
  3841. "angle": 0,
  3842. "curve": [ 0.25, 0, 0.75, 1 ]
  3843. },
  3844. {
  3845. "time": 1,
  3846. "angle": -2.2,
  3847. "curve": [ 0.25, 0, 0.75, 1 ]
  3848. },
  3849. {
  3850. "time": 1.5,
  3851. "angle": 0,
  3852. "curve": [ 0.25, 0, 0.75, 1 ]
  3853. },
  3854. { "time": 2, "angle": -2.2 }
  3855. ]
  3856. },
  3857. "bone28": {
  3858. "rotate": [
  3859. {
  3860. "time": 0,
  3861. "angle": -2.2,
  3862. "curve": [ 0.25, 0, 0.75, 1 ]
  3863. },
  3864. {
  3865. "time": 0.5,
  3866. "angle": 0,
  3867. "curve": [ 0.25, 0, 0.75, 1 ]
  3868. },
  3869. {
  3870. "time": 1,
  3871. "angle": -2.2,
  3872. "curve": [ 0.25, 0, 0.75, 1 ]
  3873. },
  3874. {
  3875. "time": 1.5,
  3876. "angle": 0,
  3877. "curve": [ 0.25, 0, 0.75, 1 ]
  3878. },
  3879. { "time": 2, "angle": -2.2 }
  3880. ]
  3881. },
  3882. "bone29": {
  3883. "rotate": [
  3884. { "time": 0, "angle": 0, "curve": "stepped" },
  3885. { "time": 1, "angle": 0, "curve": "stepped" },
  3886. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3887. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3888. { "time": 1.4, "angle": 0 }
  3889. ],
  3890. "translate": [
  3891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 1.4, "x": 0, "y": 0 }
  3896. ],
  3897. "scale": [
  3898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3899. { "time": 1, "x": 1, "y": 1 },
  3900. { "time": 1.1, "x": 0.434, "y": 1, "curve": "stepped" },
  3901. { "time": 1.2333, "x": 0.434, "y": 1 },
  3902. { "time": 1.4, "x": 1, "y": 1 }
  3903. ]
  3904. },
  3905. "bone30": {
  3906. "rotate": [
  3907. { "time": 0, "angle": 0, "curve": "stepped" },
  3908. { "time": 1, "angle": 0, "curve": "stepped" },
  3909. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3910. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3911. { "time": 1.4, "angle": 0 }
  3912. ],
  3913. "translate": [
  3914. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3915. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3916. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3917. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3918. { "time": 1.4, "x": 0, "y": 0 }
  3919. ],
  3920. "scale": [
  3921. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3922. { "time": 1, "x": 1, "y": 1 },
  3923. { "time": 1.1, "x": 0.434, "y": 1, "curve": "stepped" },
  3924. { "time": 1.2333, "x": 0.434, "y": 1 },
  3925. { "time": 1.4, "x": 1, "y": 1 }
  3926. ]
  3927. },
  3928. "bone31": {
  3929. "translate": [
  3930. { "time": 0, "x": -0.6, "y": -1 }
  3931. ]
  3932. },
  3933. "bone32": {
  3934. "rotate": [
  3935. { "time": 0, "angle": 0, "curve": "stepped" },
  3936. { "time": 1, "angle": 0, "curve": "stepped" },
  3937. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3938. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3939. { "time": 1.4, "angle": 0 }
  3940. ],
  3941. "translate": [
  3942. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3943. { "time": 1, "x": 0, "y": 0 },
  3944. { "time": 1.1, "x": -1.27, "y": 0, "curve": "stepped" },
  3945. { "time": 1.2333, "x": -1.27, "y": 0 },
  3946. { "time": 1.4, "x": 0, "y": 0 }
  3947. ],
  3948. "scale": [
  3949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3952. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 1.4, "x": 1, "y": 1 }
  3954. ]
  3955. },
  3956. "bone3": {
  3957. "rotate": [
  3958. {
  3959. "time": 0,
  3960. "angle": 0,
  3961. "curve": [ 0.25, 0, 0.75, 1 ]
  3962. },
  3963. {
  3964. "time": 0.5,
  3965. "angle": -1,
  3966. "curve": [ 0.25, 0, 0.75, 1 ]
  3967. },
  3968. {
  3969. "time": 1,
  3970. "angle": 0,
  3971. "curve": [ 0.25, 0, 0.75, 1 ]
  3972. },
  3973. {
  3974. "time": 1.5,
  3975. "angle": -1,
  3976. "curve": [ 0.25, 0, 0.75, 1 ]
  3977. },
  3978. { "time": 2, "angle": 0 }
  3979. ]
  3980. },
  3981. "root": {
  3982. "scale": [
  3983. { "time": 0, "x": 0.65, "y": 0.65 }
  3984. ]
  3985. }
  3986. },
  3987. "deform": {
  3988. "default": {
  3989. "shenti": {
  3990. "shenti": [
  3991. {
  3992. "time": 0,
  3993. "offset": 28,
  3994. "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
  3995. },
  3996. { "time": 0.5 },
  3997. {
  3998. "time": 1,
  3999. "offset": 28,
  4000. "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
  4001. },
  4002. { "time": 1.5 },
  4003. {
  4004. "time": 2,
  4005. "offset": 28,
  4006. "vertices": [ -0.15454, 4.52438, -0.06472, 4.52657, -0.04253, 2.97472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.05297, 1.5511, 0, 1.55201, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185, -0.05297, 1.5511, -0.02219, 1.55185 ]
  4007. }
  4008. ]
  4009. },
  4010. "zuotui": {
  4011. "zuotui": [
  4012. {
  4013. "time": 0,
  4014. "offset": 4,
  4015. "vertices": [ -5.20358, 0.95535 ]
  4016. }
  4017. ]
  4018. }
  4019. }
  4020. }
  4021. }
  4022. }
  4023. }