60022.json 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785
  1. {
  2. "skeleton": { "hash": "/r3aYkZBh8xtRwmQTJDxa/M5K5c", "spine": "3.6.53", "width": 279.21, "height": 197, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -0.52, "y": -0.04 },
  6. { "name": "bone2", "parent": "bone", "x": -0.99, "y": 60.46 },
  7. { "name": "bone3", "parent": "bone2", "length": 16.12, "rotation": 90, "y": 0.25 },
  8. { "name": "bone4", "parent": "bone3", "length": 26.1, "rotation": -3.81, "x": 16.12 },
  9. { "name": "bone5", "parent": "bone4", "length": 7.7, "rotation": 0.12, "x": 26.1 },
  10. { "name": "bone6", "parent": "bone4", "length": 20.47, "rotation": 157.85, "x": 23.67, "y": 10.47, "color": "b71010ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 17.57, "rotation": -15.71, "x": 20.47, "color": "b71010ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 13.61, "rotation": -7.14, "x": 17.57, "color": "b71010ff" },
  13. { "name": "bone9", "parent": "bone4", "length": 21.63, "rotation": -146.97, "x": 24.26, "y": -12.91, "color": "2862cfff" },
  14. { "name": "bone10", "parent": "bone9", "length": 19.17, "rotation": 8.32, "x": 21.63, "color": "2862cfff" },
  15. { "name": "bone11", "parent": "bone10", "length": 11.58, "rotation": 2.98, "x": 19.17, "color": "2862cfff" },
  16. { "name": "bone12", "parent": "bone2", "length": 12.8, "rotation": -90, "x": -0.39, "y": -1.15 },
  17. { "name": "bone13", "parent": "bone2", "length": 23.06, "rotation": -92.39, "x": -9.83, "y": -6.75, "color": "0b9e1bff" },
  18. { "name": "bone14", "parent": "bone13", "length": 22.44, "rotation": -0.88, "x": 23.06, "color": "0b9e1bff" },
  19. { "name": "bone15", "parent": "bone14", "length": 15.37, "rotation": -72.26, "x": 24.68, "y": -0.03, "color": "0b9e1bff" },
  20. { "name": "bone16", "parent": "bone2", "length": 25.22, "rotation": -84.9, "x": 12.25, "y": -5.79, "color": "ca0eadff" },
  21. { "name": "bone17", "parent": "bone16", "length": 23.58, "rotation": 2.7, "x": 25.92, "y": 0.05, "color": "ca0eadff" },
  22. { "name": "bone18", "parent": "bone17", "length": 11.86, "rotation": -87.7, "x": 25.28, "y": -0.7, "color": "ca0eadff" },
  23. { "name": "bone19", "parent": "bone4", "length": 8.97, "rotation": -173.12, "x": 24, "y": -7.63, "color": "2de9aaff" },
  24. { "name": "bone20", "parent": "bone19", "length": 9.35, "rotation": 3.82, "x": 8.97, "color": "2de9aaff" },
  25. { "name": "bone21", "parent": "bone20", "length": 8.89, "rotation": 1.39, "x": 9.35, "color": "2de9aaff" },
  26. { "name": "bone22", "parent": "bone21", "length": 8.63, "rotation": 2.41, "x": 9.05, "y": -0.02, "color": "2de9aaff" },
  27. { "name": "bone23", "parent": "bone22", "length": 5.71, "rotation": 0.62, "x": 8.63, "color": "2de9aaff" },
  28. { "name": "bone24", "parent": "bone23", "length": 5.59, "rotation": 1.93, "x": 5.71, "color": "2de9aaff" },
  29. { "name": "bone25", "parent": "bone4", "length": 9.01, "rotation": 177.7, "x": 24.17, "y": 9.06, "color": "ecf26fff" },
  30. { "name": "bone26", "parent": "bone25", "length": 9.33, "rotation": 0.21, "x": 9.01, "color": "ecf26fff" },
  31. { "name": "bone27", "parent": "bone26", "length": 9.87, "rotation": -2.49, "x": 9.33, "color": "ecf26fff" },
  32. { "name": "bone28", "parent": "bone27", "length": 8.92, "rotation": -0.9, "x": 9.87, "color": "ecf26fff" },
  33. { "name": "bone29", "parent": "bone28", "length": 6.6, "rotation": -4.74, "x": 8.92, "color": "ecf26fff" },
  34. { "name": "bone30", "parent": "bone29", "length": 4.77, "rotation": 0.47, "x": 6.6, "color": "ecf26fff" },
  35. { "name": "bone31", "parent": "bone5", "length": 63.1, "rotation": 6.16, "x": 6.39, "y": 0.5 },
  36. { "name": "bone32", "parent": "bone31", "length": 12.05, "rotation": 147.22, "x": 82.08, "y": 8.96, "color": "f66767ff" },
  37. { "name": "bone33", "parent": "bone32", "length": 12.36, "rotation": 9.06, "x": 12.27, "y": -0.06, "color": "f66767ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 13.61, "rotation": 3.45, "x": 12.68, "y": -0.39, "color": "f66767ff" },
  39. { "name": "bone35", "parent": "bone34", "length": 10.99, "rotation": 1.74, "x": 13.92, "y": 0.1, "color": "f66767ff" },
  40. { "name": "bone36", "parent": "bone31", "length": 12.63, "rotation": 168.78, "x": 83.28, "y": -3.9, "color": "f747b0ff" },
  41. { "name": "bone37", "parent": "bone36", "length": 12.21, "rotation": -1.83, "x": 12.76, "y": 0.18, "color": "f747b0ff" },
  42. { "name": "bone38", "parent": "bone37", "length": 9.47, "rotation": 5.73, "x": 12.36, "y": 0.03, "color": "f747b0ff" },
  43. { "name": "bone39", "parent": "bone38", "length": 8.65, "rotation": 1.66, "x": 10.78, "y": -0.21, "color": "f747b0ff" },
  44. { "name": "bone40", "parent": "bone31", "length": 13.6, "rotation": -157.41, "x": 81.33, "y": -11.99, "color": "976edbff" },
  45. { "name": "bone41", "parent": "bone40", "length": 10.99, "rotation": -12.44, "x": 14.47, "y": -0.41, "color": "976edbff" },
  46. { "name": "bone42", "parent": "bone41", "length": 9.6, "rotation": -12.62, "x": 11.45, "y": -0.1, "color": "976edbff" },
  47. { "name": "bone43", "parent": "bone42", "length": 10.4, "x": 9.92, "color": "976edbff" },
  48. { "name": "bone44", "parent": "bone5", "length": 24.73, "rotation": -165.87, "x": 81.61, "y": -12.11, "color": "f51333ff" },
  49. { "name": "bone45", "parent": "bone44", "length": 13.55, "rotation": -2.98, "x": 26.15, "y": -0.26, "color": "f51333ff" },
  50. { "name": "bone46", "parent": "bone45", "length": 11.68, "rotation": -7.46, "x": 14.67, "y": -0.15, "color": "f51333ff" },
  51. { "name": "bone47", "parent": "bone46", "length": 13.28, "x": 11.84, "color": "f51333ff" },
  52. { "name": "bone48", "parent": "bone31", "length": 21.99, "rotation": -153.29, "x": 77.54, "y": -25.6, "color": "71ea8eff" },
  53. { "name": "bone49", "parent": "bone48", "length": 19.55, "rotation": -21.18, "x": 22.13, "y": -0.08, "color": "71ea8eff" },
  54. { "name": "bone50", "parent": "bone49", "length": 14.31, "rotation": -2.22, "x": 19.87, "y": -0.04, "color": "71ea8eff" },
  55. { "name": "bone51", "parent": "bone50", "length": 11.04, "rotation": -7.43, "x": 16.06, "y": -0.18, "color": "71ea8eff" },
  56. { "name": "bone55", "parent": "bone31", "length": 12.98, "rotation": -0.64, "x": 16.1, "y": 17.75 },
  57. { "name": "bone56", "parent": "bone31", "length": 12.31, "rotation": 1.39, "x": 16.06, "y": -8.77 },
  58. { "name": "bone57", "parent": "bone31", "x": 32.16, "y": 5.73 },
  59. { "name": "bone58", "parent": "bone31", "x": 19.34, "y": 6.28 },
  60. { "name": "bone59", "parent": "bone31", "x": 12.92, "y": 4.76 },
  61. { "name": "bone60", "parent": "bone4", "length": 7.96, "rotation": 179.66, "x": 29.32, "y": 2.06 },
  62. { "name": "bone61", "parent": "bone4", "length": 20.99, "rotation": 143.21, "x": 35.38, "y": -176.85, "color": "3445abff" },
  63. { "name": "bone62", "parent": "bone61", "length": 18.89, "rotation": 121.14, "x": 22.77, "y": 0.16, "color": "3445abff" },
  64. { "name": "bone63", "parent": "bone62", "length": 14.5, "rotation": -0.4, "x": 18.89, "color": "3445abff" },
  65. { "name": "bone64", "parent": "bone4", "length": 17.88, "rotation": -147.84, "x": 41.55, "y": -235.15, "color": "e57e0aff" },
  66. { "name": "bone65", "parent": "bone64", "length": 19.33, "rotation": -105.35, "x": 19.84, "y": 0.59, "color": "e57e0aff" },
  67. { "name": "bone66", "parent": "bone65", "length": 11.1, "rotation": 1.04, "x": 19.33, "color": "e57e0aff" },
  68. { "name": "huo", "parent": "root", "length": 10, "rotation": 88.84, "x": 214.37, "y": 85.8, "color": "0c5089ff" },
  69. { "name": "huo2", "parent": "huo", "length": 14.02, "rotation": 1.94, "x": 10.9, "y": -0.08, "color": "0c5089ff" },
  70. { "name": "huo3", "parent": "huo2", "length": 17.11, "rotation": -3.36, "x": 14.02, "color": "0c5089ff" },
  71. { "name": "huo4", "parent": "huo3", "length": 15.3, "rotation": -17.23, "x": 17.11, "color": "0c5089ff" }
  72. ],
  73. "slots": [
  74. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  75. { "name": "zuojiao", "bone": "bone13", "attachment": "zuojiao" },
  76. { "name": "kudang", "bone": "bone12", "attachment": "kudang" },
  77. { "name": "youjiap", "bone": "bone16", "attachment": "youjiap" },
  78. { "name": "zuoshou2", "bone": "bone61" },
  79. { "name": "shangshen", "bone": "bone3", "attachment": "shangshen" },
  80. { "name": "waitaoyou", "bone": "bone19", "attachment": "waitaoyou" },
  81. { "name": "waitaozuo", "bone": "bone25", "attachment": "waitaozuo" },
  82. { "name": "xianlian", "bone": "bone60", "attachment": "xianlian" },
  83. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  84. { "name": "youshou2", "bone": "bone64" },
  85. { "name": "toufa6", "bone": "bone31", "attachment": "toufa6" },
  86. { "name": "tou", "bone": "bone31", "attachment": "tou" },
  87. { "name": "youyan", "bone": "bone56", "attachment": "youyan" },
  88. { "name": "zuoyan", "bone": "bone55", "attachment": "zuoyan" },
  89. { "name": "biaoqing", "bone": "bone59" },
  90. { "name": "meimao", "bone": "bone57", "attachment": "meimao" },
  91. { "name": "biyan", "bone": "bone58" },
  92. { "name": "toufa5", "bone": "bone48", "attachment": "toufa5" },
  93. { "name": "toufa4", "bone": "bone44", "attachment": "toufa4" },
  94. { "name": "toufa3", "bone": "bone36", "attachment": "toufa3" },
  95. { "name": "toufa2", "bone": "bone40", "attachment": "toufa2" },
  96. { "name": "toufa1", "bone": "bone32", "attachment": "toufa1" },
  97. { "name": "hua", "bone": "huo", "attachment": "hua" },
  98. { "name": "zuoshou3", "bone": "bone62" },
  99. { "name": "youshou3", "bone": "bone65" }
  100. ],
  101. "skins": {
  102. "default": {
  103. "biaoqing": {
  104. "biaoqing": { "x": 1.23, "y": -0.94, "rotation": -92.47, "width": 41, "height": 28 }
  105. },
  106. "biyan": {
  107. "biyan": { "x": -1.13, "y": -1.13, "rotation": -92.47, "width": 46, "height": 8 }
  108. },
  109. "hua": {
  110. "hua": {
  111. "type": "mesh",
  112. "uvs": [ 0.8166, 1, 0.5021, 1, 0.2301, 1, 0.04325, 0.65378, 0, 0.57365, 0, 0.46438, 0, 0.40872, 0, 0.36235, 0, 0.27887, 0, 0.19168, 0, 0.10264, 0, 0, 0.6126, 0, 1, 0, 0.8846, 0.62538, 0.48935, 0.6451, 0.4851, 0.4677, 0.52335, 0.1893, 0.48715, 0.55334, 0.90107, 0.53613, 0.91591, 0.45569, 0.5009, 0.35274, 0.93561, 0.34892, 0.49517, 0.3944, 0.92865, 0.38665, 0.96492, 0.19008, 0.51163, 0.27458, 0.94978, 0.27216, 0.56685, 0.09702, 0.98384, 0.08757 ],
  113. "triangles": [ 29, 12, 13, 28, 11, 12, 28, 12, 29, 10, 11, 28, 17, 10, 28, 25, 28, 29, 17, 28, 25, 9, 10, 17, 27, 17, 25, 26, 9, 17, 0, 25, 29, 0, 29, 13, 26, 17, 27, 8, 9, 26, 22, 26, 27, 21, 8, 26, 21, 26, 22, 7, 8, 21, 24, 21, 22, 23, 7, 21, 23, 21, 24, 6, 7, 23, 20, 23, 24, 23, 16, 6, 16, 23, 20, 0, 24, 22, 0, 22, 27, 16, 5, 6, 19, 16, 20, 18, 16, 19, 18, 4, 5, 18, 5, 16, 14, 18, 19, 3, 4, 18, 15, 18, 14, 15, 3, 18, 2, 3, 15, 0, 1, 15, 2, 15, 1, 14, 0, 15, 0, 14, 19, 0, 19, 20, 0, 20, 24, 0, 27, 25 ],
  114. "vertices": [ 1, 64, -12.19, -13.96, 1, 1, 64, -12.44, -1.38, 1, 1, 64, -12.66, 9.49, 1, 1, 64, 11.07, 17.45, 1, 3, 64, 16.57, 19.29, 0.19999, 65, 6.32, 19.17, 0.65422, 66, -8.81, 18.69, 0.14579, 4, 64, 24.1, 19.44, 0.0517, 65, 13.86, 19.07, 0.55605, 66, -1.28, 19.02, 0.38147, 67, -23.19, 12.73, 0.01078, 4, 64, 27.94, 19.52, 0.01843, 65, 17.7, 19.01, 0.42424, 66, 2.56, 19.2, 0.51892, 67, -19.58, 14.03, 0.03841, 4, 64, 31.14, 19.58, 0.00555, 65, 20.9, 18.97, 0.30829, 66, 5.76, 19.34, 0.60257, 67, -16.57, 15.11, 0.08359, 4, 64, 36.9, 19.7, 4.0E-5, 65, 26.66, 18.89, 0.14271, 66, 11.51, 19.6, 0.61981, 67, -11.15, 17.06, 0.23744, 3, 65, 32.67, 18.81, 0.04853, 66, 17.52, 19.87, 0.46834, 67, -5.49, 19.1, 0.48313, 3, 65, 38.82, 18.72, 0.00963, 66, 23.66, 20.14, 0.27453, 67, 0.29, 21.18, 0.71584, 2, 66, 30.73, 20.46, 0.17685, 67, 6.96, 23.58, 0.82315, 1, 67, 15.26, 0.53, 1, 2, 66, 32.53, -19.5, 0.06511, 67, 20.51, -14.05, 0.93489, 1, 64, 13.71, -16.16, 1, 1, 64, 12.03, -0.38, 1, 3, 64, 24.27, 0.04, 6.5E-4, 65, 13.36, -0.33, 0.91651, 66, -0.63, -0.37, 0.08284, 1, 67, 1.76, -0.54, 1, 2, 64, 18.36, -0.16, 0.00383, 65, 7.45, -0.33, 0.99617, 4, 64, 19.88, -16.69, 0.27361, 65, 8.41, -16.91, 0.48407, 66, -4.6, -17.2, 0.24022, 67, -15.64, -22.86, 0.0021, 4, 64, 25.44, -17.17, 0.11823, 65, 13.96, -17.57, 0.38389, 66, 0.97, -17.55, 0.47159, 67, -10.22, -21.54, 0.02629, 4, 64, 32.21, -0.43, 2.1E-4, 65, 21.29, -1.07, 0.00165, 66, 7.32, -0.65, 0.9981, 67, -9.16, -3.51, 4.0E-5, 4, 64, 32.82, -17.81, 0.02718, 65, 21.31, -18.46, 0.16354, 66, 8.36, -18, 0.65194, 67, -3.02, -19.79, 0.15734, 3, 64, 29.33, -0.26, 4.4E-4, 65, 18.41, -0.8, 0.00478, 66, 4.44, -0.55, 0.99478, 4, 64, 30.22, -17.59, 0.04851, 65, 18.71, -18.15, 0.23608, 66, 5.75, -17.84, 0.62228, 67, -5.56, -20.41, 0.09313, 4, 64, 43.81, -18.76, 2.7E-4, 65, 32.25, -19.79, 0.01519, 66, 19.36, -18.68, 0.35949, 67, 7.69, -17.18, 0.62505, 3, 65, 26.67, -1.58, 2.0E-5, 66, 12.73, -0.83, 0.99323, 67, -3.94, -2.09, 0.00676, 4, 64, 38.13, -18.27, 0.00575, 65, 26.6, -19.1, 0.06267, 66, 13.68, -18.33, 0.57384, 67, 2.16, -18.53, 0.35774, 1, 67, 8.34, -0.02, 1, 3, 65, 39.32, -20.64, 6.0E-4, 66, 26.46, -19.12, 0.12981, 67, 14.6, -15.49, 0.86959 ],
  115. "hull": 14,
  116. "edges": [ 0, 28, 26, 0, 0, 2, 2, 4, 2, 30, 22, 24, 24, 26, 4, 6, 6, 8, 6, 30, 30, 28, 30, 36, 36, 32, 8, 36, 38, 28, 36, 38, 8, 10, 10, 32, 40, 38, 32, 40, 14, 42, 42, 44, 10, 12, 12, 14, 32, 46, 46, 42, 12, 46, 40, 48, 48, 44, 46, 48, 18, 34, 34, 50, 14, 16, 16, 18, 34, 52, 52, 42, 16, 52, 44, 54, 54, 50, 52, 54, 18, 20, 20, 22, 24, 56, 56, 34, 20, 56, 26, 58, 58, 50, 56, 58 ],
  117. "width": 40,
  118. "height": 69
  119. }
  120. },
  121. "kudang": {
  122. "kudang": {
  123. "type": "mesh",
  124. "uvs": [ 1, 0.69726, 0.47509, 1, 0, 0.69726, 0, 0, 0.48633, 0, 1, 0 ],
  125. "triangles": [ 4, 5, 0, 2, 3, 4, 1, 2, 4, 0, 1, 4 ],
  126. "vertices": [ 11.01, 23.11, 17.07, 1.06, 11.01, -18.89, -2.93, -18.89, -2.93, 1.53, -2.93, 23.11 ],
  127. "hull": 6,
  128. "edges": [ 6, 8, 8, 10, 8, 2, 4, 6, 2, 4, 0, 10, 2, 0 ],
  129. "width": 42,
  130. "height": 20
  131. }
  132. },
  133. "meimao": {
  134. "meimao": { "x": 0.53, "y": -1.2, "rotation": -92.47, "width": 44, "height": 7 }
  135. },
  136. "shangshen": {
  137. "shangshen": {
  138. "type": "mesh",
  139. "uvs": [ 0.88258, 0.11385, 0.88083, 0.13283, 0.88151, 0.14526, 1, 0.16018, 1, 0.60706, 1, 0.63545, 1, 0.67292, 1, 1, 0.5305, 1, 0, 1, 0, 0.91081, 0.06198, 0.67438, 0.07121, 0.63918, 0.07909, 0.60913, 0.19793, 0.15584, 0.36123, 0.14933, 0.36446, 0.13585, 0.36726, 0.12019, 0.39213, 0, 0.64119, 0, 0.88647, 0, 0.57109, 0.63812, 0.62275, 0.15209, 0.56728, 0.67209, 0.57387, 0.61194, 0.62521, 0.13787, 0.62667, 0.11972 ],
  140. "triangles": [ 0, 19, 20, 26, 18, 19, 26, 19, 0, 17, 18, 26, 1, 26, 0, 25, 17, 26, 16, 17, 25, 25, 26, 1, 22, 16, 25, 15, 16, 22, 2, 22, 25, 2, 25, 1, 24, 15, 22, 24, 22, 2, 2, 3, 4, 4, 24, 2, 13, 14, 15, 24, 13, 15, 24, 4, 5, 21, 13, 24, 21, 24, 5, 12, 13, 21, 23, 12, 21, 21, 5, 6, 23, 21, 6, 11, 12, 23, 8, 9, 10, 8, 11, 23, 8, 10, 11, 23, 6, 7, 8, 23, 7 ],
  141. "vertices": [ 2, 4, 31.25, -7.25, 0.10787, 5, 5.13, -7.26, 0.89213, 2, 4, 30.13, -7.28, 0.19167, 5, 4.01, -7.28, 0.80833, 2, 4, 29.4, -7.34, 0.27362, 5, 3.28, -7.35, 0.72638, 2, 4, 28.75, -10.83, 0.48065, 5, 2.63, -10.84, 0.51935, 1, 4, 2.44, -12.58, 1, 1, 4, 0.77, -12.7, 1, 1, 4, -1.44, -12.84, 1, 1, 4, -20.69, -14.13, 1, 1, 4, -21.6, -0.54, 1, 1, 4, -22.62, 14.81, 1, 1, 4, -17.37, 15.16, 1, 1, 4, -3.33, 14.29, 1, 1, 4, -1.24, 14.16, 1, 1, 4, 0.54, 14.05, 1, 2, 4, 27.45, 12.39, 0.72326, 5, 1.38, 12.39, 0.27674, 2, 4, 28.15, 7.69, 0.44883, 5, 2.07, 7.69, 0.55117, 2, 4, 28.95, 7.65, 0.31831, 5, 2.87, 7.65, 0.68169, 2, 4, 29.88, 7.63, 0.21944, 5, 3.8, 7.63, 0.78056, 1, 5, 10.92, 7.36, 1, 1, 5, 11.39, 0.16, 1, 1, 5, 11.84, -6.94, 1, 1, 4, -0.22, -0.3, 1, 1, 5, 2.4, 0.11, 1, 1, 4, -2.22, -0.32, 1, 1, 4, 1.33, -0.27, 1, 2, 4, 29.34, 0.1, 1.8E-4, 5, 3.24, 0.09, 0.99982, 2, 4, 30.41, 0.13, 1.3E-4, 5, 4.31, 0.12, 0.99987 ],
  142. "hull": 21,
  143. "edges": [ 18, 20, 28, 30, 4, 6, 14, 16, 16, 18, 36, 38, 38, 40, 24, 42, 42, 10, 20, 22, 22, 24, 16, 46, 46, 42, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 6, 8, 8, 10, 48, 8, 30, 44, 44, 4, 30, 32, 50, 44, 32, 50, 4, 2, 50, 2, 32, 34, 34, 36, 38, 52, 52, 50, 34, 52, 2, 0, 0, 40, 52, 0 ],
  144. "width": 29,
  145. "height": 59
  146. }
  147. },
  148. "tou": {
  149. "tou": {
  150. "type": "mesh",
  151. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  152. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  153. "vertices": [ -6.76, -39.82, -3.57, 34.11, 82.35, 30.41, 79.16, -43.53 ],
  154. "hull": 4,
  155. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  156. "width": 74,
  157. "height": 86
  158. }
  159. },
  160. "toufa1": {
  161. "toufa1": {
  162. "type": "mesh",
  163. "uvs": [ 0.89793, 0.17885, 0.82683, 0.30344, 0.78814, 0.39064, 0.74594, 0.48569, 0.7533, 0.60136, 0.76026, 0.71069, 0.83822, 0.88476, 0.90181, 1, 0.25159, 1, 0, 1, 0, 0.86583, 0, 0.66569, 0.08687, 0.50823, 0.16137, 0.37319, 0.23028, 0.27918, 0.29515, 0.19069, 0.42586, 0.08528, 0.53159, 0, 0.74003, 0, 1, 0, 0.57515, 0.2557, 0.45381, 0.45069, 0.34804, 0.71819, 0.28987, 0.88816, 0.40355, 0.57781, 0.5131, 0.35542, 0.65417, 0.13314 ],
  164. "triangles": [ 5, 22, 24, 5, 24, 4, 23, 10, 11, 22, 23, 11, 23, 22, 5, 23, 5, 6, 8, 9, 10, 23, 8, 10, 8, 23, 6, 7, 8, 6, 13, 14, 21, 24, 13, 21, 12, 13, 24, 24, 21, 4, 22, 12, 24, 11, 12, 22, 25, 15, 20, 14, 15, 25, 25, 20, 2, 21, 14, 25, 3, 25, 2, 21, 25, 3, 21, 3, 4, 26, 17, 18, 16, 17, 26, 0, 18, 19, 26, 18, 0, 20, 16, 26, 15, 16, 20, 1, 26, 0, 20, 26, 1, 2, 20, 1 ],
  165. "vertices": [ 2, 32, 0.36, 10.6, 0.98235, 33, -10.07, 12.4, 0.01765, 3, 32, 8, 11.36, 0.71803, 33, -2.41, 11.95, 0.27951, 35, -27.83, 13.97, 0.00246, 3, 32, 13.1, 12.32, 0.3545, 33, 2.77, 12.09, 0.62216, 35, -22.66, 13.65, 0.02334, 4, 32, 18.65, 13.37, 0.08677, 33, 8.42, 12.25, 0.79571, 34, -3.49, 12.88, 4.6E-4, 35, -17.02, 13.3, 0.11706, 4, 32, 24.07, 16.92, 0.00636, 33, 14.34, 14.91, 0.59331, 34, 2.57, 15.17, 0.02119, 35, -10.88, 15.41, 0.37914, 3, 33, 19.93, 17.42, 0.32124, 34, 8.31, 17.34, 0.00925, 35, -5.09, 17.4, 0.66952, 2, 33, 27.74, 24.22, 0.128, 35, 3.31, 23.47, 0.872, 2, 33, 32.72, 29.23, 0.10984, 35, 8.72, 28.01, 0.89016, 3, 33, 43.32, 1.96, 5.0E-5, 34, 30.73, 0.5, 0.00102, 35, 16.82, -0.11, 0.99893, 2, 34, 34.19, -10.28, 0.04301, 35, 19.95, -10.99, 0.95699, 2, 34, 27.03, -12.58, 0.16944, 35, 12.73, -13.07, 0.83056, 2, 34, 16.36, -16, 0.70605, 35, 1.96, -16.17, 0.29395, 3, 33, 20.34, -14.93, 0.00529, 34, 6.77, -14.98, 0.97792, 35, -7.6, -14.85, 0.01678, 2, 33, 12.08, -14.55, 0.19171, 34, -1.45, -14.1, 0.80829, 2, 33, 6.05, -13.57, 0.52785, 34, -7.41, -12.75, 0.47215, 3, 32, 14.63, -12.48, 0.02335, 33, 0.37, -12.64, 0.76216, 34, -13.02, -11.49, 0.21448, 3, 32, 6.56, -10.38, 0.4394, 33, -7.26, -9.3, 0.52933, 34, -20.44, -7.69, 0.03127, 3, 32, 0.04, -8.69, 0.83169, 33, -13.43, -6.6, 0.16768, 34, -26.44, -4.62, 6.3E-4, 2, 32, -4.7, -0.59, 0.9992, 33, -16.83, 2.15, 8.0E-4, 1, 32, -10.6, 9.51, 1, 2, 32, 11.41, 0.23, 0.99999, 35, -27.27, 2.35, 1.0E-5, 2, 33, 11.36, -0.71, 0.64447, 34, -1.34, -0.24, 0.35553, 2, 34, 14.37, -0.19, 0.08012, 35, 0.45, -0.31, 0.91988, 2, 34, 24.24, 0.22, 6.0E-4, 35, 10.32, -0.19, 0.9994, 1, 34, 6.13, -0.22, 1, 2, 33, 5.42, -0.16, 0.99708, 34, -7.24, 0.67, 0.00292, 3, 32, 3.69, -0.16, 0.99742, 33, -8.48, 1.25, 0.00257, 34, -21.03, 2.91, 1.0E-5 ],
  166. "hull": 20,
  167. "edges": [ 36, 38, 16, 18, 34, 36, 14, 16, 18, 20, 20, 22, 16, 46, 46, 44, 20, 46, 10, 12, 12, 14, 46, 12, 22, 44, 44, 10, 26, 42, 42, 6, 30, 40, 40, 2, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 26, 28, 28, 30, 40, 50, 50, 42, 28, 50, 2, 4, 4, 6, 50, 4, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0 ],
  168. "width": 45,
  169. "height": 56
  170. }
  171. },
  172. "toufa2": {
  173. "toufa2": {
  174. "type": "mesh",
  175. "uvs": [ 0.6565, 0.12087, 0.77621, 0.23526, 0.87951, 0.36533, 1, 0.53104, 1, 0.70541, 1, 0.83549, 1, 1, 0.58816, 1, 0.19616, 1, 0.2084, 0.92747, 0.21865, 0.82824, 0.21999, 0.73595, 0.21205, 0.62013, 0.18636, 0.45946, 0.14054, 0.32613, 0, 0.08202, 0, 0, 0.26502, 0, 0.47691, 0, 0.52459, 0.37424, 0.57756, 0.51857, 0.59345, 0.66111, 0.42919, 0.2141, 0.60609, 0.89396, 0.60622, 0.78209 ],
  176. "triangles": [ 24, 21, 4, 11, 21, 24, 10, 11, 24, 24, 4, 5, 23, 10, 24, 23, 24, 5, 9, 10, 23, 7, 9, 23, 8, 9, 7, 23, 5, 6, 7, 23, 6, 12, 20, 21, 11, 12, 21, 13, 22, 19, 20, 19, 1, 20, 1, 2, 20, 12, 13, 20, 13, 19, 3, 21, 20, 3, 20, 2, 21, 3, 4, 15, 16, 17, 22, 17, 18, 22, 18, 0, 14, 15, 17, 14, 17, 22, 19, 22, 0, 19, 0, 1, 13, 14, 22 ],
  177. "vertices": [ 2, 40, 7.26, 9.73, 0.9941, 41, -9.22, 8.35, 0.0059, 2, 40, 14.84, 11.08, 0.7416, 41, -2.12, 11.3, 0.2584, 4, 40, 22.94, 11.51, 0.27868, 41, 5.7, 13.46, 0.71868, 42, -8.58, 11.98, 3.0E-5, 43, -18.5, 11.98, 0.00261, 4, 40, 33.08, 11.69, 0.05177, 41, 15.57, 15.82, 0.78373, 42, 0.54, 16.44, 0.06837, 43, -9.38, 16.44, 0.09614, 4, 40, 41.77, 7.63, 0.00362, 41, 24.93, 13.73, 0.40555, 42, 10.13, 16.44, 0.14788, 43, 0.21, 16.44, 0.44295, 3, 41, 31.91, 12.16, 0.1534, 42, 17.28, 16.44, 0.07079, 43, 7.36, 16.44, 0.77581, 3, 41, 40.74, 10.19, 0.05004, 42, 26.33, 16.44, 0.0099, 43, 16.41, 16.44, 0.94006, 2, 41, 37.41, -4.68, 9.0E-4, 43, 16.41, 1.2, 0.9991, 2, 42, 26.33, -13.3, 0.01043, 43, 16.41, -13.3, 0.98957, 2, 42, 22.34, -12.85, 0.03403, 43, 12.42, -12.85, 0.96597, 3, 41, 25.2, -15.96, 0.00751, 42, 16.88, -12.47, 0.16602, 43, 6.96, -12.47, 0.82647, 3, 41, 20.26, -14.8, 0.06084, 42, 11.81, -12.42, 0.39361, 43, 1.89, -12.42, 0.54555, 3, 41, 13.98, -13.7, 0.2959, 42, 5.44, -12.71, 0.53547, 43, -4.48, -12.71, 0.16864, 4, 40, 16.76, -13.91, 0.05561, 41, 5.15, -12.7, 0.76152, 42, -3.4, -13.66, 0.17893, 43, -13.32, -13.66, 0.00394, 3, 40, 9.4, -12.34, 0.45442, 41, -2.38, -12.75, 0.52892, 42, -10.73, -15.36, 0.01667, 2, 40, -4.96, -11.37, 0.98491, 41, -16.61, -14.89, 0.01509, 2, 40, -9.05, -9.46, 0.99998, 41, -21.02, -13.9, 2.0E-5, 2, 40, -4.9, -0.57, 0.99998, 41, -18.87, -4.33, 2.0E-5, 1, 40, -1.57, 6.53, 1, 2, 40, 17.82, -0.59, 0.02165, 41, 3.31, 0.54, 0.97835, 4, 40, 25.84, -2.18, 0.00265, 41, 11.48, 0.72, 0.98189, 42, -0.15, 0.81, 0.01508, 43, -10.07, 0.81, 3.8E-4, 3, 41, 19.26, -0.42, 0.03956, 42, 7.69, 1.4, 0.84773, 43, -2.23, 1.4, 0.11272, 2, 40, 8.34, -0.06, 0.9992, 41, -6.06, -0.98, 8.0E-4, 2, 41, 31.86, -2.76, 0.00393, 43, 10.58, 1.87, 0.99607, 3, 41, 25.86, -1.41, 0.01429, 42, 14.34, 1.87, 0.01922, 43, 4.42, 1.87, 0.96649 ],
  178. "hull": 19,
  179. "edges": [ 30, 32, 30, 28, 24, 22, 2, 4, 4, 6, 32, 34, 34, 36, 38, 40, 40, 42, 12, 14, 14, 16, 34, 44, 44, 38, 28, 44, 2, 0, 0, 36, 44, 0, 24, 26, 26, 28, 26, 38, 38, 2, 24, 40, 40, 4, 22, 42, 42, 6, 16, 18, 14, 46, 18, 46, 10, 12, 46, 10, 18, 20, 20, 22, 42, 48, 48, 46, 20, 48, 6, 8, 8, 10, 48, 8 ],
  180. "width": 37,
  181. "height": 55
  182. }
  183. },
  184. "toufa3": {
  185. "toufa3": {
  186. "type": "mesh",
  187. "uvs": [ 1, 0.19795, 1, 0.29029, 1, 0.42222, 1, 0.53906, 1, 0.66156, 1, 0.76898, 1, 0.88018, 1, 1, 0.31185, 1, 0, 1, 0, 0.86887, 0, 0.74825, 0, 0.63895, 0, 0.52964, 0, 0.43164, 0, 0.30725, 0, 0.17156, 0, 0, 0.52885, 0, 1, 0, 0.44485, 0.3016, 0.36785, 0.53529, 0.32935, 0.74637, 0.40373, 0.4264, 0.34794, 0.64447, 0.32091, 0.86877, 0.47691, 0.1865 ],
  188. "triangles": [ 11, 12, 22, 25, 11, 22, 10, 11, 25, 25, 22, 6, 8, 9, 10, 25, 8, 10, 25, 6, 7, 8, 25, 7, 21, 13, 14, 23, 21, 14, 24, 12, 13, 21, 24, 13, 21, 3, 4, 24, 21, 4, 22, 12, 24, 24, 4, 5, 22, 24, 5, 22, 5, 6, 20, 26, 1, 20, 1, 2, 23, 15, 20, 23, 20, 2, 14, 15, 23, 23, 2, 3, 21, 23, 3, 26, 16, 17, 18, 26, 17, 18, 19, 0, 26, 18, 0, 26, 0, 1, 20, 16, 26, 15, 16, 20 ],
  189. "vertices": [ 3, 36, 5.52, 14.77, 0.42207, 37, -7.7, 14.35, 0.57764, 38, -18.54, 16.25, 2.9E-4, 3, 36, 10.27, 15.5, 0.1729, 37, -2.98, 15.23, 0.81508, 38, -13.75, 16.66, 0.01202, 3, 36, 17.05, 16.55, 0.01214, 37, 3.76, 16.49, 0.88071, 38, -6.92, 17.24, 0.10714, 3, 37, 9.73, 17.61, 0.68999, 38, -0.86, 17.75, 0.30958, 39, -11.11, 18.29, 4.3E-4, 3, 37, 16, 18.77, 0.42798, 38, 5.48, 18.29, 0.57202, 39, -4.75, 18.65, 0, 3, 37, 21.49, 19.8, 0.21639, 38, 11.05, 18.76, 0.71121, 39, 0.83, 18.96, 0.07241, 3, 37, 27.17, 20.86, 0.08524, 38, 16.81, 19.25, 0.70129, 39, 6.6, 19.28, 0.21347, 3, 37, 33.3, 22, 0.04865, 38, 23.02, 19.78, 0.67292, 39, 12.82, 19.62, 0.27843, 3, 37, 36.83, 3.06, 1.1E-4, 38, 24.65, 0.58, 0.02685, 39, 13.89, 0.38, 0.97304, 1, 39, 14.37, -8.33, 1, 2, 38, 18.59, -8.7, 0.01092, 39, 7.56, -8.71, 0.98908, 3, 36, 38.06, -8.55, 9.0E-5, 38, 12.34, -9.23, 0.25074, 39, 1.3, -9.06, 0.74917, 4, 36, 32.44, -9.42, 0.01384, 37, 19.98, -8.97, 0.01255, 38, 6.68, -9.71, 0.67448, 39, -4.37, -9.38, 0.29912, 4, 36, 26.82, -10.28, 0.10828, 37, 14.39, -10.01, 0.16302, 38, 1.01, -10.19, 0.66801, 39, -10.05, -9.69, 0.06069, 4, 36, 21.79, -11.05, 0.35177, 37, 9.38, -10.94, 0.29195, 38, -4.06, -10.62, 0.35112, 39, -15.14, -9.97, 0.00516, 3, 36, 15.4, -12.04, 0.79814, 37, 3.02, -12.13, 0.11925, 38, -10.51, -11.17, 0.08261, 3, 36, 8.42, -13.11, 0.99284, 37, -3.91, -13.43, 9.1E-4, 38, -17.54, -11.76, 0.00625, 1, 36, -0.4, -14.47, 1, 2, 36, -2.65, 0.17, 0.99473, 37, -15.4, -0.51, 0.00527, 2, 36, -4.65, 13.21, 0.77067, 37, -17.82, 12.46, 0.22933, 1, 37, 0.45, 0.06, 1, 1, 38, 0.44, 0.1, 1, 3, 37, 23.78, 1.12, 5.5E-4, 38, 11.46, -0.05, 0.0086, 39, 0.69, 0.14, 0.99086, 1, 37, 7.04, 0.12, 1, 2, 37, 18.47, 0.66, 3.1E-4, 38, 6.14, 0.02, 0.99969, 3, 37, 30.08, 2.06, 1.9E-4, 38, 17.83, 0.25, 0.0032, 39, 7.06, 0.26, 0.99661, 2, 36, 7.16, 0.21, 0.99274, 37, -5.6, -0.16, 0.00726 ],
  190. "hull": 20,
  191. "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 30, 40, 40, 2, 26, 42, 42, 6, 22, 44, 44, 10, 26, 28, 28, 30, 40, 46, 46, 42, 28, 46, 2, 4, 4, 6, 46, 4, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 18, 20, 20, 22, 16, 50, 50, 44, 20, 50, 10, 12, 12, 14, 50, 12, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0 ],
  192. "width": 28,
  193. "height": 52
  194. }
  195. },
  196. "toufa4": {
  197. "toufa4": {
  198. "type": "mesh",
  199. "uvs": [ 0.53663, 0.10065, 0.63594, 0.22885, 0.68152, 0.30761, 0.73224, 0.39528, 0.75874, 0.48091, 0.79024, 0.58272, 0.79787, 0.70488, 0.80288, 0.78522, 0.80288, 0.89883, 0.80288, 1, 0.5694, 1, 0.32901, 1, 0.34181, 0.90867, 0.35429, 0.81954, 0.35719, 0.74142, 0.36061, 0.64965, 0.34506, 0.58459, 0.32883, 0.5167, 0.27019, 0.44599, 0.21683, 0.38165, 0.12161, 0.3106, 0.04085, 0.27157, 0, 0.24981, 0, 0, 0.34797, 0, 0.3609, 0.18803, 0.52517, 0.45402, 0.57887, 0.63249, 0.57571, 0.80238, 0.4505, 0.30137, 0.24887, 0.12966, 0.48632, 0.37459, 0.55141, 0.54121, 0.57712, 0.72696, 0.57249, 0.90334 ],
  200. "triangles": [ 28, 33, 7, 13, 14, 28, 28, 7, 8, 34, 13, 28, 34, 28, 8, 12, 13, 34, 10, 12, 34, 11, 12, 10, 34, 8, 9, 10, 34, 9, 15, 32, 27, 27, 5, 6, 33, 15, 27, 33, 27, 6, 14, 15, 33, 33, 6, 7, 28, 14, 33, 30, 23, 24, 25, 24, 0, 30, 24, 25, 21, 22, 23, 30, 21, 23, 29, 25, 0, 29, 0, 1, 20, 21, 30, 20, 30, 25, 31, 29, 1, 31, 1, 2, 19, 20, 25, 19, 25, 29, 18, 19, 29, 18, 29, 31, 26, 31, 2, 26, 2, 3, 17, 18, 31, 17, 31, 26, 32, 26, 3, 32, 3, 4, 16, 17, 26, 32, 16, 26, 27, 32, 4, 27, 4, 5, 15, 16, 32 ],
  201. "vertices": [ 1, 44, -0.58, 5.45, 1, 1, 44, 10.42, 7.86, 1, 2, 45, -9.54, 8.46, 0.00855, 44, 17.06, 8.68, 0.99145, 2, 45, -2.21, 9.75, 0.32425, 44, 24.45, 9.59, 0.67575, 3, 45, 4.82, 10, 0.82916, 44, 31.48, 9.48, 0.16539, 46, -11.08, 8.79, 0.00545, 4, 45, 13.18, 10.31, 0.70181, 44, 39.84, 9.35, 0.00311, 46, -2.83, 10.17, 0.29457, 47, -14.67, 10.17, 5.1E-4, 3, 45, 23.03, 9.36, 0.07229, 46, 7.06, 10.51, 0.73337, 47, -4.78, 10.51, 0.19433, 3, 45, 29.51, 8.73, 9.3E-4, 46, 13.57, 10.73, 0.34614, 47, 1.73, 10.73, 0.65293, 2, 46, 22.77, 10.73, 0.01411, 47, 10.93, 10.73, 0.98589, 1, 47, 19.13, 10.73, 1, 1, 47, 19.13, 0.45, 1, 1, 47, 19.13, -10.12, 1, 2, 46, 23.57, -9.56, 9.7E-4, 47, 11.73, -9.56, 0.99903, 2, 46, 16.35, -9.01, 0.13999, 47, 4.51, -9.01, 0.86001, 3, 45, 23.45, -10.25, 0.00286, 46, 10.02, -8.88, 0.6434, 47, -1.82, -8.88, 0.35374, 3, 45, 16.1, -9.14, 0.24491, 46, 2.59, -8.73, 0.74037, 47, -9.25, -8.73, 0.01472, 2, 45, 10.79, -9.13, 0.72133, 46, -2.68, -9.42, 0.27867, 3, 45, 5.24, -9.13, 0.92319, 44, 30.9, -9.65, 0.04522, 46, -8.18, -10.13, 0.03159, 2, 45, -0.77, -10.94, 0.57793, 44, 24.8, -11.15, 0.42207, 2, 45, -6.25, -12.59, 0.20323, 44, 19.25, -12.51, 0.79677, 2, 45, -12.5, -16, 0.0288, 44, 12.83, -15.59, 0.9712, 2, 45, -16.09, -19.11, 0.00383, 44, 9.08, -18.51, 0.99617, 2, 45, -18.07, -20.67, 8.9E-4, 44, 7.02, -19.96, 0.99911, 1, 44, -12.88, -16.3, 1, 1, 44, -10.1, -1.24, 1, 1, 44, 4.98, -3.44, 1, 2, 45, 1.33, 0.1, 0.99887, 44, 27.48, -0.23, 0.00113, 2, 45, 15.97, 0.56, 0.04124, 46, 1.2, 0.87, 0.95876, 2, 46, 14.96, 0.73, 0.01163, 47, 3.12, 0.73, 0.98837, 2, 45, -11.36, -1.56, 0.00277, 44, 14.72, -1.22, 0.99723, 1, 44, -0.56, -7.43, 1, 2, 45, -5.27, -0.76, 0.01413, 44, 20.84, -0.75, 0.98587, 2, 45, 8.48, 0.32, 0.99968, 44, 34.63, -0.38, 3.2E-4, 3, 45, 23.55, -0.51, 3.0E-5, 46, 8.85, 0.79, 0.98239, 47, -2.99, 0.79, 0.01759, 1, 47, 11.3, 0.59, 1 ],
  202. "hull": 25,
  203. "edges": [ 46, 48, 48, 0, 44, 46, 18, 20, 20, 22, 50, 58, 38, 58, 0, 2, 58, 2, 38, 40, 40, 50, 50, 0, 40, 42, 42, 44, 46, 60, 60, 50, 42, 60, 60, 48, 34, 52, 52, 6, 34, 36, 36, 38, 52, 62, 62, 58, 36, 62, 2, 4, 4, 6, 62, 4, 30, 54, 54, 10, 30, 32, 32, 34, 52, 64, 64, 54, 32, 64, 6, 8, 8, 10, 64, 8, 26, 28, 28, 30, 54, 66, 66, 56, 28, 66, 10, 12, 12, 14, 66, 12, 26, 56, 56, 14, 22, 24, 24, 26, 20, 68, 68, 56, 24, 68, 14, 16, 16, 18, 68, 16 ],
  204. "width": 44,
  205. "height": 81
  206. }
  207. },
  208. "toufa5": {
  209. "toufa5": {
  210. "type": "mesh",
  211. "uvs": [ 0.58603, 0.06694, 0.75648, 0.15679, 0.88065, 0.28534, 0.94057, 0.42669, 1, 0.56689, 1, 0.64224, 0.99999, 0.75694, 1, 0.84324, 1, 0.93319, 0.80791, 0.9865, 0.62105, 1, 0.60952, 0.91134, 0.59411, 0.81844, 0.56937, 0.74784, 0.54171, 0.66889, 0.49209, 0.57294, 0.4435, 0.49024, 0.35102, 0.38497, 0.23803, 0.25294, 0, 0.11479, 0, 0, 0.3382, 0, 0.43441, 0.1253, 0.6793, 0.3863, 0.78216, 0.6218, 0.79686, 0.7913, 0.57572, 0.25807, 0.72634, 0.496, 0.80208, 0.88352, 0.78999, 0.71208 ],
  212. "triangles": [ 25, 12, 29, 25, 6, 7, 28, 25, 7, 12, 25, 28, 11, 12, 28, 28, 7, 8, 9, 28, 8, 11, 28, 9, 10, 11, 9, 24, 4, 5, 14, 27, 24, 29, 24, 5, 13, 14, 24, 29, 13, 24, 6, 29, 5, 25, 29, 6, 12, 13, 29, 27, 23, 2, 16, 17, 26, 16, 26, 23, 3, 27, 2, 15, 16, 23, 27, 15, 23, 24, 27, 3, 24, 3, 4, 14, 15, 27, 20, 18, 19, 22, 21, 0, 22, 20, 21, 22, 18, 20, 26, 22, 0, 26, 0, 1, 17, 18, 22, 17, 22, 26, 23, 26, 1, 23, 1, 2 ],
  213. "vertices": [ 1, 48, 0.06, 6.33, 1, 1, 48, 10.41, 10.12, 1, 2, 48, 22.35, 10.42, 0.77641, 49, -3.59, 9.87, 0.22359, 2, 48, 33.66, 7.47, 0.0418, 49, 8.02, 11.2, 0.9582, 2, 49, 19.53, 12.53, 0.72792, 50, -0.82, 12.55, 0.27208, 3, 49, 25.5, 11.69, 0.33527, 50, 5.18, 11.94, 0.65534, 51, -12.36, 10.61, 0.00939, 3, 49, 34.59, 10.41, 0.02494, 50, 14.3, 11.02, 0.63316, 51, -3.19, 10.87, 0.34191, 2, 50, 21.17, 10.32, 0.16593, 51, 3.71, 11.07, 0.83407, 2, 50, 28.33, 9.6, 0.00741, 51, 10.9, 11.28, 0.99259, 1, 51, 15.44, 2, 1, 1, 51, 16.78, -7.12, 1, 2, 50, 24.67, -9.26, 0.00645, 51, 9.71, -7.89, 0.99355, 2, 50, 17.2, -9.26, 0.28604, 51, 2.3, -8.86, 0.71396, 2, 50, 11.46, -9.9, 0.74759, 51, -3.31, -10.24, 0.25241, 3, 49, 24.49, -10.85, 0.0455, 50, 5.04, -10.62, 0.92451, 51, -9.58, -11.78, 0.02999, 2, 49, 16.55, -12.19, 0.48055, 50, -2.84, -12.26, 0.51945, 3, 48, 26.22, -16.27, 0.0237, 49, 9.67, -13.62, 0.81267, 50, -9.67, -13.97, 0.16363, 3, 48, 16.66, -16.13, 0.34462, 49, 0.7, -16.94, 0.63812, 50, -18.5, -17.63, 0.01727, 2, 48, 4.74, -15.81, 0.86198, 49, -10.53, -20.95, 0.13802, 2, 48, -10.6, -20.61, 0.99793, 49, -23.1, -30.97, 0.00207, 1, 48, -18.62, -16.13, 1, 1, 48, -10.54, -1.66, 1, 2, 48, 0.51, -2.43, 0.99532, 49, -19.31, -10, 0.00468, 2, 49, 3.04, -1.03, 0.99898, 50, -16.78, -1.63, 0.00102, 2, 49, 22.4, 1.34, 0.04838, 50, 2.47, 1.49, 0.95162, 2, 50, 16.04, 0.84, 0.17638, 51, -0.16, 1, 0.82362, 2, 48, 13.16, -1.56, 0.95241, 49, -7.83, -4.62, 0.04759, 1, 49, 12.05, 0.04, 1, 1, 51, 7.21, 1.47, 1, 2, 49, 29.6, 0.72, 0.00371, 50, 9.7, 1.14, 0.99629 ],
  214. "hull": 22,
  215. "edges": [ 40, 42, 42, 0, 0, 2, 2, 4, 16, 18, 18, 20, 38, 40, 36, 38, 40, 44, 32, 34, 34, 36, 44, 52, 52, 46, 34, 52, 52, 2, 28, 30, 30, 32, 46, 54, 54, 48, 30, 54, 4, 6, 6, 8, 54, 6, 20, 22, 22, 24, 18, 56, 56, 50, 22, 56, 12, 14, 14, 16, 56, 14, 24, 26, 26, 28, 48, 58, 58, 50, 26, 58, 8, 10, 10, 12, 58, 10, 28, 48, 48, 8, 32, 46, 46, 4, 36, 44, 44, 0, 24, 50, 50, 12 ],
  216. "width": 49,
  217. "height": 80
  218. }
  219. },
  220. "toufa6": {
  221. "toufa6": {
  222. "type": "mesh",
  223. "uvs": [ 0.56622, 0.2293, 0.84138, 0.51677, 1, 0.51471, 1, 0.88077, 0.74172, 1, 0.22822, 1, 0, 0.90145, 0, 0.30996, 0.13505, 0.10934, 0.27155, 0, 0.56839, 0, 0.14589, 0.76909, 0.21955, 0.8725, 0.74172, 0.88905, 0.88255, 0.77736 ],
  224. "triangles": [ 0, 9, 10, 8, 0, 7, 0, 8, 9, 11, 0, 1, 11, 7, 0, 14, 1, 2, 12, 11, 1, 1, 13, 12, 14, 2, 3, 14, 13, 1, 6, 7, 11, 6, 11, 12, 5, 12, 13, 6, 12, 5, 3, 4, 13, 3, 13, 14, 5, 13, 4 ],
  225. "vertices": [ 66.44, -9.51, 40.17, -31.51, 39.78, -44.83, 7.59, -43.44, -1.96, -21.31, -0.1, 21.78, 9.39, 40.56, 61.4, 38.32, 78.55, 26.22, 87.66, 14.35, 86.59, -10.56, 20.5, 27.82, 11.14, 22.03, 7.8, -21.73, 17.11, -33.98 ],
  226. "hull": 11,
  227. "edges": [ 8, 6, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
  228. "width": 84,
  229. "height": 88
  230. }
  231. },
  232. "waitaoyou": {
  233. "waitaoyou": {
  234. "type": "mesh",
  235. "uvs": [ 0.70352, 0.20717, 0.76349, 0.3103, 0.80612, 0.3859, 0.85219, 0.47278, 0.90084, 0.56023, 0.95155, 0.65136, 0.99999, 0.75357, 1, 0.87242, 1, 1, 0.4933, 1, 0, 1, 0, 0.92305, 1.0E-5, 0.82778, 0, 0.73983, 0, 0.62412, 0, 0.53251, 0, 0.43608, 0.00392, 0.34216, 0.00784, 0.22735, 0, 0, 0.1983, 0, 0.58917, 0, 0.24112, 0.21933, 0.32423, 0.4269, 0.37029, 0.60301, 0.43398, 0.79891, 0.40755, 0.70931, 0.46224, 0.89472, 0.35945, 0.52153, 0.29624, 0.33199 ],
  236. "triangles": [ 7, 27, 6, 11, 25, 27, 10, 11, 27, 9, 27, 7, 10, 27, 9, 9, 7, 8, 25, 26, 5, 25, 5, 6, 12, 26, 25, 27, 25, 6, 11, 12, 25, 14, 28, 24, 26, 24, 4, 26, 4, 5, 13, 14, 24, 13, 24, 26, 12, 13, 26, 28, 23, 2, 28, 2, 3, 15, 23, 28, 24, 28, 3, 24, 3, 4, 14, 15, 28, 29, 0, 1, 17, 22, 29, 23, 29, 1, 23, 1, 2, 16, 17, 29, 16, 29, 23, 15, 16, 23, 22, 20, 21, 22, 21, 0, 18, 19, 20, 18, 20, 22, 29, 22, 0, 17, 18, 22 ],
  237. "vertices": [ 3, 19, 6.23, 11.08, 0.61078, 20, -2, 11.23, 0.36183, 21, -11.07, 11.51, 0.02739, 4, 19, 12.07, 12.2, 0.19907, 20, 3.91, 11.97, 0.6062, 21, -5.15, 12.1, 0.19424, 23, -22.17, 12.95, 4.9E-4, 4, 19, 16.36, 13, 0.0515, 20, 8.23, 12.48, 0.50703, 21, -0.81, 12.5, 0.43448, 23, -17.82, 13.12, 0.00699, 5, 19, 21.27, 13.84, 0.00411, 20, 13.19, 12.99, 0.26588, 21, 4.16, 12.9, 0.68377, 22, -4.34, 13.11, 0.00785, 23, -12.83, 13.25, 0.03838, 5, 20, 18.2, 13.57, 0.09566, 21, 9.18, 13.35, 0.69552, 22, 0.69, 13.35, 0.07188, 23, -7.8, 13.44, 0.12789, 24, -13.05, 13.89, 0.00906, 5, 20, 23.41, 14.16, 0.02129, 21, 14.4, 13.82, 0.46762, 22, 5.93, 13.6, 0.13857, 23, -2.55, 13.63, 0.29489, 24, -7.8, 13.9, 0.07762, 5, 20, 29.23, 14.63, 9.9E-4, 21, 20.23, 14.14, 0.21253, 22, 11.77, 13.68, 0.08339, 23, 3.29, 13.65, 0.40356, 24, -1.96, 13.72, 0.29954, 4, 21, 26.82, 13.19, 0.05202, 22, 18.31, 12.45, 0.0097, 23, 9.81, 12.34, 0.23339, 24, 4.52, 12.2, 0.70489, 3, 21, 33.89, 12.16, 0.00422, 23, 16.82, 10.94, 0.07123, 24, 11.47, 10.56, 0.92455, 1, 24, 8.68, -1.28, 1, 4, 21, 30.43, -11.59, 2.0E-5, 22, 20.88, -12.46, 0.00489, 23, 12.11, -12.59, 0.16484, 24, 5.97, -12.8, 0.83025, 4, 21, 26.17, -10.97, 3.0E-5, 22, 16.64, -11.66, 0.04786, 23, 7.89, -11.75, 0.23866, 24, 1.78, -11.81, 0.71346, 4, 21, 20.89, -10.2, 3.0E-5, 22, 11.4, -10.67, 0.27795, 23, 2.65, -10.7, 0.37487, 24, -3.41, -10.59, 0.34715, 3, 22, 6.56, -9.76, 0.6751, 23, -2.17, -9.73, 0.23677, 24, -8.21, -9.46, 0.08813, 5, 20, 19.16, -8.33, 0.004, 21, 9.6, -8.56, 0.0918, 22, 0.19, -8.56, 0.88144, 23, -8.53, -8.46, 0.02106, 24, -14.52, -7.98, 0.0017, 3, 20, 14.06, -7.71, 0.11963, 21, 4.53, -7.83, 0.42969, 22, -4.85, -7.6, 0.45068, 3, 20, 8.7, -7.07, 0.62443, 21, -0.82, -7.05, 0.29218, 22, -10.15, -6.6, 0.08339, 4, 19, 12.88, -6.1, 0.07571, 20, 3.49, -6.34, 0.90749, 21, -6.01, -6.2, 0.0133, 22, -15.3, -5.54, 0.00351, 2, 19, 6.46, -5.66, 0.82534, 20, -2.88, -5.48, 0.17466, 1, 19, -6.26, -5.16, 1, 1, 19, -6, -0.41, 1, 2, 19, -5.5, 8.96, 0.99805, 20, -13.85, 9.9, 0.00195, 1, 19, 6.32, -0.04, 1, 3, 20, 9.12, 0.72, 0.74559, 21, -0.2, 0.73, 0.25441, 23, -17.83, 1.33, 0, 3, 20, 19.05, 0.64, 4.0E-4, 22, 0.68, 0.4, 0.99878, 23, -7.94, 0.48, 8.2E-4, 2, 23, 3.11, -0.17, 0.99472, 24, -2.6, -0.08, 0.00528, 4, 20, 25.07, 0.81, 0, 21, 15.73, 0.43, 0.00201, 22, 6.7, 0.17, 0.99316, 23, -1.93, 0.19, 0.00483, 2, 23, 8.51, -0.56, 0.00543, 24, 2.78, -0.65, 0.99457, 3, 20, 14.49, 0.93, 0.00333, 21, 5.16, 0.8, 0.9961, 23, -12.47, 1.12, 5.7E-4, 3, 19, 12.69, 0.94, 0.00294, 20, 3.77, 0.69, 0.99566, 21, -5.56, 0.83, 0.0014 ],
  238. "hull": 22,
  239. "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 36, 38, 44, 40, 36, 44, 0, 42, 44, 0, 32, 46, 46, 4, 28, 48, 48, 8, 24, 50, 50, 12, 24, 26, 26, 28, 48, 52, 52, 50, 26, 52, 8, 10, 10, 12, 52, 10, 20, 22, 22, 24, 18, 54, 54, 50, 22, 54, 12, 14, 14, 16, 54, 14, 28, 30, 30, 32, 46, 56, 56, 48, 30, 56, 4, 6, 6, 8, 56, 6, 32, 34, 34, 36, 44, 58, 58, 46, 34, 58, 0, 2, 2, 4, 58, 2 ],
  240. "width": 24,
  241. "height": 56
  242. }
  243. },
  244. "waitaozuo": {
  245. "waitaozuo": {
  246. "type": "mesh",
  247. "uvs": [ 1, 0.11755, 1, 0.24344, 1, 0.32401, 1, 0.41969, 1, 0.5053, 0.99998, 0.60769, 1, 0.69497, 0.99999, 0.76883, 0.99999, 0.84437, 1, 0.91822, 1, 1, 0.26458, 1, 0, 1, 0, 0.88633, 1.0E-5, 0.79401, 2.0E-5, 0.71847, 0, 0.63119, 0.07149, 0.55187, 0.13179, 0.46641, 0.20819, 0.38357, 0.26573, 0.29893, 0.3422, 0.21283, 0.41144, 0.11674, 0.5048, 0, 0.74502, 0, 1, 0, 0.63459, 0.22985, 0.54934, 0.4073, 0.45587, 0.57932, 0.42584, 0.66435, 0.35967, 0.81639, 0.31332, 0.89856, 0.38729, 0.73629, 0.51195, 0.48511, 0.59454, 0.31322, 0.68901, 0.11658 ],
  248. "triangles": [ 11, 31, 10, 31, 9, 10, 31, 11, 13, 11, 12, 13, 31, 30, 9, 31, 13, 14, 30, 8, 9, 30, 31, 14, 30, 32, 8, 32, 7, 8, 32, 30, 15, 30, 14, 15, 32, 29, 7, 7, 29, 6, 29, 32, 16, 32, 15, 16, 29, 28, 6, 28, 5, 6, 16, 17, 29, 29, 17, 28, 28, 33, 5, 5, 33, 4, 17, 18, 28, 28, 18, 33, 33, 27, 4, 27, 3, 4, 18, 19, 33, 33, 19, 27, 27, 34, 3, 34, 2, 3, 19, 20, 27, 27, 20, 34, 34, 26, 2, 20, 21, 34, 26, 1, 2, 34, 21, 26, 26, 35, 1, 35, 0, 1, 21, 22, 26, 26, 22, 35, 35, 24, 0, 24, 25, 0, 22, 23, 35, 35, 23, 24 ],
  249. "vertices": [ 2, 25, 1.33, 5.32, 0.99982, 26, -7.66, 5.35, 1.8E-4, 2, 25, 8.34, 6.07, 0.58442, 26, -0.65, 6.07, 0.41558, 3, 25, 12.83, 6.55, 0.10169, 26, 3.84, 6.54, 0.85024, 27, -5.77, 6.29, 0.04807, 4, 25, 18.15, 7.12, 1.7E-4, 26, 9.17, 7.09, 0.50526, 27, -0.47, 7.08, 0.49402, 28, -10.44, 6.91, 5.6E-4, 3, 26, 13.94, 7.58, 0.08972, 27, 4.27, 7.78, 0.83994, 28, -5.71, 7.69, 0.07035, 4, 26, 19.64, 8.17, 2.9E-4, 27, 9.95, 8.61, 0.50359, 28, -0.05, 8.61, 0.47986, 29, -9.65, 7.84, 0.01627, 4, 27, 14.78, 9.33, 0.13671, 28, 4.77, 9.4, 0.69289, 29, -4.91, 9.03, 0.1586, 30, -11.43, 9.12, 0.0118, 4, 27, 18.87, 9.93, 0.02291, 28, 8.85, 10.07, 0.48503, 29, -0.9, 10.03, 0.39709, 30, -7.41, 10.09, 0.09497, 4, 27, 23.06, 10.55, 4.4E-4, 28, 13.03, 10.75, 0.1977, 29, 3.21, 11.06, 0.48569, 30, -3.3, 11.08, 0.31617, 3, 28, 17.11, 11.42, 0.04798, 29, 7.22, 12.06, 0.36356, 30, 0.72, 12.05, 0.58846, 3, 28, 21.63, 12.16, 0.00465, 29, 11.66, 13.17, 0.27005, 30, 5.17, 13.13, 0.7253, 1, 30, 8.28, 0.26, 1, 1, 30, 9.39, -4.37, 1, 3, 28, 18.25, -6.63, 0.00696, 29, 9.85, -5.84, 0.14609, 30, 3.21, -5.86, 0.84694, 3, 28, 13.15, -7.47, 0.18237, 29, 4.83, -7.09, 0.58015, 30, -1.82, -7.08, 0.23748, 4, 27, 18.71, -8.29, 0.01024, 28, 8.97, -8.15, 0.57107, 29, 0.73, -8.12, 0.39456, 30, -5.93, -8.07, 0.02413, 3, 27, 13.88, -9, 0.13919, 28, 4.15, -8.94, 0.76968, 29, -4.01, -9.3, 0.09113, 4, 26, 18.25, -8.77, 0.00363, 27, 9.29, -8.38, 0.5008, 28, -0.44, -8.39, 0.48877, 29, -8.63, -9.13, 0.0068, 3, 26, 13.38, -8.19, 0.11369, 27, 4.4, -8, 0.78133, 28, -5.34, -8.09, 0.10498, 4, 25, 17.66, -7.26, 8.0E-5, 26, 8.62, -7.3, 0.55791, 27, -0.39, -7.32, 0.43827, 28, -10.14, -7.48, 0.00374, 3, 25, 12.84, -6.74, 0.08317, 26, 3.8, -6.75, 0.86412, 27, -5.23, -6.99, 0.05271, 2, 25, 7.9, -5.88, 0.63626, 26, -1.14, -5.88, 0.36374, 2, 25, 2.41, -5.22, 0.99767, 26, -6.62, -5.19, 0.00233, 1, 25, -4.27, -4.24, 1, 1, 25, -4.73, 0.06, 1, 1, 25, -5.22, 4.62, 1, 2, 25, 8.28, -0.55, 0.94603, 26, -0.73, -0.55, 0.05397, 2, 26, 9.31, -1.05, 0.51187, 27, 0.03, -1.05, 0.48813, 2, 27, 9.8, -1.31, 0.5107, 28, -0.04, -1.31, 0.4893, 2, 28, 4.75, -1.07, 0.99994, 29, -4.07, -1.42, 6.0E-5, 3, 28, 13.34, -0.87, 0.00479, 29, 4.48, -0.51, 0.99217, 30, -2.12, -0.49, 0.00304, 2, 29, 9.15, -0.2, 5.0E-5, 30, 2.55, -0.22, 0.99995, 2, 28, 8.83, -1.11, 0.57409, 29, 0.01, -1.11, 0.42591, 3, 26, 13.72, -1.27, 0.00161, 27, 4.44, -1.08, 0.99737, 28, -5.41, -1.17, 0.00102, 1, 26, 3.99, -0.78, 1, 1, 25, 1.87, -0.25, 1 ],
  250. "hull": 26,
  251. "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 42, 52, 52, 2, 38, 54, 54, 6, 32, 34, 34, 56, 56, 10, 58, 56, 32, 58, 10, 12, 58, 12, 28, 60, 60, 16, 24, 26, 26, 28, 22, 62, 62, 60, 26, 62, 16, 18, 18, 20, 62, 18, 28, 30, 30, 32, 58, 64, 64, 60, 30, 64, 12, 14, 14, 16, 64, 14, 34, 36, 36, 38, 54, 66, 66, 56, 36, 66, 6, 8, 8, 10, 66, 8, 38, 40, 40, 42, 52, 68, 68, 54, 40, 68, 2, 4, 4, 6, 68, 4, 42, 44, 44, 46, 48, 70, 70, 52, 44, 70, 2, 0, 0, 50, 70, 0 ],
  252. "width": 18,
  253. "height": 56
  254. }
  255. },
  256. "xianlian": {
  257. "xianlian": { "x": 3.8, "y": 2.61, "rotation": 94.15, "width": 13, "height": 12 }
  258. },
  259. "youjiap": {
  260. "youjiap": {
  261. "type": "mesh",
  262. "uvs": [ 1, 0.47967, 1, 0.50404, 1, 0.52305, 1, 0.83179, 1, 0.85187, 0.99999, 0.87435, 1, 1, 0.25314, 1, 0.24707, 0.95972, 0.23829, 0.90151, 0.41846, 0.86646, 0.41413, 0.84784, 0.40919, 0.82662, 0.35012, 0.54698, 0.34463, 0.52097, 0.33875, 0.49317, 0.23457, 0, 0.63571, 0, 1, 0, 0.80334, 0.87153, 0.73324, 0.50621, 0.79553, 0.82951, 0.79899, 0.84811, 0.73838, 0.53288, 0.72826, 0.48033 ],
  263. "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 21, 23, 2, 12, 13, 23, 13, 20, 23, 13, 14, 20, 2, 23, 1, 23, 20, 1, 1, 20, 0, 19, 5, 6, 5, 19, 4, 10, 22, 19, 19, 22, 4, 10, 11, 22, 4, 22, 3, 11, 21, 22, 22, 21, 3, 11, 12, 21, 21, 2, 3, 12, 23, 21, 14, 24, 20, 14, 15, 24, 20, 24, 0, 15, 17, 24, 15, 16, 17, 0, 24, 18, 24, 17, 18 ],
  264. "vertices": [ 2, 16, 24.7, 10.32, 0.45804, 17, -0.73, 10.31, 0.54196, 2, 16, 26.18, 10.18, 0.3438, 17, 0.74, 10.1, 0.6562, 2, 16, 27.34, 10.08, 0.26042, 17, 1.89, 9.95, 0.73958, 2, 17, 20.55, 7.39, 0.98139, 18, -8.27, -4.41, 0.01861, 2, 17, 21.76, 7.22, 0.94838, 18, -8.06, -3.2, 0.05162, 2, 17, 23.12, 7.04, 0.88196, 18, -7.82, -1.85, 0.11804, 2, 17, 30.71, 6, 0.29823, 18, -6.47, 5.69, 0.70177, 1, 18, 19.26, 1.11, 1, 2, 17, 24.7, -19.78, 6.0E-5, 18, 19.04, -1.34, 0.99994, 2, 17, 21.14, -19.6, 0.004, 18, 18.72, -4.89, 0.996, 2, 17, 19.88, -13.06, 0.21657, 18, 12.14, -5.89, 0.78343, 2, 17, 18.74, -13.06, 0.34978, 18, 12.09, -7.04, 0.65022, 2, 17, 17.43, -13.05, 0.46774, 18, 12.03, -8.34, 0.53226, 3, 16, 26.77, -12.71, 0.42425, 17, 0.25, -12.79, 0.56761, 18, 11.08, -25.5, 0.00814, 3, 16, 25.17, -12.76, 0.54015, 17, -1.35, -12.76, 0.45604, 18, 10.99, -27.09, 0.0038, 3, 16, 23.46, -12.81, 0.65975, 17, -3.06, -12.73, 0.33894, 18, 10.89, -28.8, 0.00132, 1, 16, -6.82, -13.77, 1, 1, 16, -5.58, 0.21, 1, 1, 16, -4.44, 12.91, 1, 1, 17, 22.02, 0.24, 1, 2, 16, 25.48, 0.87, 0.43325, 17, -0.39, 0.84, 0.56675, 1, 17, 19.44, 0.32, 1, 1, 17, 20.58, 0.29, 1, 2, 16, 27.12, 0.91, 0.05986, 17, 1.24, 0.79, 0.94014, 2, 16, 23.9, 0.84, 0.86937, 17, -1.98, 0.88, 0.13063 ],
  265. "hull": 19,
  266. "edges": [ 20, 18, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 28, 40, 40, 2, 24, 42, 42, 6, 20, 22, 22, 24, 38, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 24, 26, 26, 28, 40, 46, 46, 42, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 40, 30, 48, 2, 0, 0, 36, 48, 0 ],
  267. "width": 35,
  268. "height": 61
  269. }
  270. },
  271. "youshou": {
  272. "youshou": {
  273. "type": "mesh",
  274. "uvs": [ 0.53623, 0.32096, 0.55353, 0.34325, 0.58098, 0.3619, 0.90254, 0.5804, 0.94339, 0.60817, 1, 0.64663, 1, 1, 0.71029, 1, 0.57128, 0.88243, 0.54349, 0.85893, 0.51663, 0.83621, 0.23198, 0.58183, 0.20611, 0.551, 0.18533, 0.52623, 0, 0.30532, 0, 0, 0.28705, 0, 0.39678, 0.43917, 0.73223, 0.75594, 0.70594, 0.73111, 0.68024, 0.70684, 0.4194, 0.46053, 0.3767, 0.41694 ],
  275. "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 8, 19, 18, 8, 9, 19, 9, 20, 19, 18, 4, 5, 18, 19, 4, 19, 3, 4, 19, 20, 3, 9, 10, 20, 11, 21, 10, 10, 21, 20, 21, 2, 20, 20, 2, 3, 11, 17, 21, 11, 12, 17, 12, 22, 17, 21, 1, 2, 21, 17, 1, 17, 0, 1, 17, 22, 0, 12, 13, 22, 13, 14, 22, 0, 22, 16, 16, 22, 15, 22, 14, 15 ],
  276. "vertices": [ 2, 9, 19.74, 7.37, 0.63467, 10, -0.81, 7.57, 0.36533, 2, 9, 21.06, 7.37, 0.47061, 10, 0.5, 7.37, 0.52939, 2, 9, 22.4, 7.78, 0.30624, 10, 1.89, 7.59, 0.69376, 2, 10, 18.15, 10.1, 0.44739, 11, -0.5, 10.14, 0.55261, 2, 10, 20.21, 10.42, 0.28748, 11, 1.58, 10.35, 0.71252, 2, 10, 23.07, 10.86, 0.15044, 11, 4.46, 10.64, 0.84956, 1, 11, 18.43, -1.3, 1, 1, 11, 11.47, -9.45, 1, 2, 10, 23.13, -9.19, 0.15829, 11, 3.48, -9.39, 0.84171, 2, 10, 21.54, -9.26, 0.2688, 11, 1.88, -9.37, 0.7312, 2, 10, 19.99, -9.33, 0.40128, 11, 0.34, -9.36, 0.59872, 2, 9, 26.08, -9.07, 0.20983, 10, 3.09, -9.62, 0.79017, 2, 9, 24.21, -9.13, 0.34456, 10, 1.23, -9.4, 0.65544, 2, 9, 22.71, -9.17, 0.47994, 10, -0.26, -9.23, 0.52006, 1, 9, 9.34, -9.55, 1, 1, 9, -4.52, -1.8, 1, 1, 9, 0.67, 7.47, 1, 2, 9, 22.58, -0.13, 0.00445, 10, 0.92, -0.27, 0.99555, 1, 11, 2.35, -0.58, 1, 2, 10, 19.93, -0.45, 0.0147, 11, 0.73, -0.49, 0.9853, 2, 10, 18.35, -0.43, 0.97853, 11, -0.84, -0.39, 0.02147, 1, 10, 2.31, -0.28, 1, 2, 9, 21.21, -0.22, 0.84445, 10, -0.45, -0.15, 0.15555 ],
  277. "hull": 17,
  278. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 36, 12, 14, 16, 16, 36, 36, 10, 16, 18, 38, 36, 18, 38, 8, 10, 38, 8, 18, 20, 40, 38, 20, 40, 6, 8, 40, 6, 24, 34, 34, 2, 22, 24, 34, 42, 22, 42, 2, 4, 42, 4, 20, 22, 4, 6, 24, 26, 26, 28, 30, 44, 44, 34, 26, 44, 2, 0, 0, 32, 44, 0 ],
  279. "width": 37,
  280. "height": 52
  281. }
  282. },
  283. "youshou2": {
  284. "youshou2": {
  285. "type": "mesh",
  286. "uvs": [ 1, 0.53266, 1, 1, 0.31353, 1, 0, 0.56584, 0, 0, 0.57308, 0 ],
  287. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  288. "vertices": [ 17.53, 6.29, 28.64, 0.3, 22.77, -10.58, 9.77, -9.98, -3.67, -2.73, 1.22, 6.35 ],
  289. "hull": 6,
  290. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  291. "width": 18,
  292. "height": 27
  293. }
  294. },
  295. "youshou3": {
  296. "youshou3": {
  297. "type": "mesh",
  298. "uvs": [ 0.80096, 0.25107, 0.79047, 1, 0.34185, 1, 0.30448, 1, 0.26648, 1, 0, 1, 0, 0.67162, 0, 0, 0.27448, 0, 0.31248, 0, 0.34062, 0, 0.80447, 0, 0.31048, 0.53295, 0.27471, 0.54892, 0.34271, 0.51443 ],
  299. "triangles": [ 9, 12, 8, 13, 8, 12, 13, 6, 7, 13, 7, 8, 4, 5, 6, 13, 4, 6, 3, 13, 12, 4, 13, 3, 3, 12, 2, 0, 10, 11, 14, 10, 0, 9, 14, 12, 9, 10, 14, 2, 12, 14, 1, 14, 0, 2, 14, 1 ],
  300. "vertices": [ 1, 62, -6.54, 0.89, 1, 1, 62, -2.97, 13.91, 1, 2, 62, 19.76, 8.66, 0.59303, 63, 0.58, 8.65, 0.40697, 2, 62, 21.65, 8.22, 0.38688, 63, 2.47, 8.18, 0.61312, 2, 62, 23.58, 7.78, 0.20121, 63, 4.38, 7.7, 0.79879, 1, 63, 17.83, 4.34, 1, 1, 63, 16.39, -1.39, 1, 2, 62, 33.03, -12.88, 2.6E-4, 63, 13.46, -13.12, 0.99974, 2, 62, 19.12, -9.67, 0.44749, 63, -0.38, -9.66, 0.55251, 2, 62, 17.2, -9.22, 0.60626, 63, -2.3, -9.18, 0.39374, 2, 62, 15.77, -8.89, 0.71761, 63, -3.72, -8.83, 0.28239, 1, 62, -7.73, -3.47, 1, 2, 62, 19.46, 0.1, 0.35683, 63, 0.13, 0.1, 0.64317, 2, 62, 21.33, -0.04, 0.00472, 63, 2, -0.07, 0.99528, 1, 62, 17.75, 0.15, 1 ],
  301. "hull": 12,
  302. "edges": [ 10, 12, 12, 14, 2, 0, 0, 22, 18, 24, 24, 6, 14, 16, 16, 18, 12, 26, 26, 24, 16, 26, 6, 8, 8, 10, 26, 8, 18, 20, 20, 22, 0, 28, 28, 24, 20, 28, 2, 4, 4, 6, 28, 4 ],
  303. "width": 52,
  304. "height": 18
  305. }
  306. },
  307. "youyan": {
  308. "youyan": { "x": 4.53, "y": -0.31, "rotation": -93.86, "width": 18, "height": 20 }
  309. },
  310. "zuojiao": {
  311. "zuojiao": {
  312. "type": "mesh",
  313. "uvs": [ 0.68703, 0.45136, 0.68651, 0.47746, 0.68603, 0.5014, 0.67955, 0.82526, 0.67911, 0.84713, 0.67866, 0.86996, 0.67606, 1, 0, 1, 0, 0.95199, 0, 0.87062, 0.18606, 0.84437, 0.18629, 0.82522, 0.18659, 0.79958, 0.19018, 0.49617, 0.19048, 0.4709, 0.19085, 0.4397, 0.19606, 0, 0.46832, 0, 0.69606, 0, 0.40963, 0.857, 0.4113, 0.83267, 0.41259, 0.81377, 0.4355, 0.47928, 0.43381, 0.50396, 0.43748, 0.45026 ],
  314. "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 6, 19, 5, 5, 19, 4, 4, 19, 20, 19, 10, 20, 4, 20, 3, 3, 20, 21, 10, 11, 20, 20, 11, 21, 21, 23, 3, 3, 23, 2, 11, 12, 21, 21, 12, 23, 12, 13, 23, 23, 22, 2, 22, 23, 14, 2, 22, 1, 23, 13, 14, 22, 24, 1, 24, 22, 15, 1, 24, 0, 22, 14, 15, 24, 17, 0, 0, 17, 18, 15, 16, 24, 24, 16, 17 ],
  315. "vertices": [ 2, 13, 21.09, 11.35, 0.61885, 14, -2.14, 11.32, 0.38115, 2, 13, 22.66, 11.39, 0.49896, 14, -0.58, 11.39, 0.50104, 2, 13, 24.09, 11.43, 0.38959, 14, 0.86, 11.45, 0.61041, 2, 14, 20.27, 12.26, 0.69643, 15, -13.05, -0.45, 0.30357, 2, 14, 21.59, 12.32, 0.6123, 15, -12.71, 0.82, 0.3877, 2, 14, 22.95, 12.38, 0.52017, 15, -12.35, 2.14, 0.47983, 2, 14, 30.75, 12.71, 0.18484, 15, -10.28, 9.66, 0.81516, 1, 15, 19.17, 2.06, 1, 1, 15, 18.46, -0.73, 1, 2, 14, 24.74, -18.11, 5.0E-5, 15, 17.24, -5.46, 0.99995, 2, 14, 22.69, -9.84, 0.22006, 15, 8.73, -4.89, 0.77994, 2, 14, 21.54, -9.9, 0.38262, 15, 8.44, -6, 0.61738, 2, 14, 20, -9.97, 0.55562, 15, 8.04, -7.49, 0.44438, 2, 13, 24.71, -10.87, 0.38289, 14, 1.82, -10.85, 0.61711, 2, 13, 23.2, -10.92, 0.50713, 14, 0.3, -10.92, 0.49287, 2, 13, 21.32, -10.99, 0.65895, 14, -1.57, -11.01, 0.34105, 1, 13, -5.04, -11.85, 1, 1, 13, -5.55, 0.39, 1, 1, 13, -5.98, 10.63, 1, 2, 14, 22.87, 0.25, 0.93542, 15, -0.82, -1.64, 0.06458, 1, 14, 21.41, 0.24, 1, 1, 14, 20.27, 0.23, 1, 2, 13, 23.24, 0.11, 0.38712, 14, 0.18, 0.12, 0.61287, 1, 14, 1.66, 0.12, 1, 2, 13, 21.5, 0.13, 0.99876, 14, -1.57, 0.11, 0.00124 ],
  316. "hull": 19,
  317. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 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 ],
  318. "width": 45,
  319. "height": 60
  320. }
  321. },
  322. "zuoshou": {
  323. "zuoshou": {
  324. "type": "mesh",
  325. "uvs": [ 1, 0.30154, 0.78695, 0.52391, 0.76089, 0.55111, 0.74079, 0.57308, 0.48704, 0.85047, 0.46048, 0.87951, 0.43596, 0.90632, 0.35026, 1, 0, 1, 0, 0.67737, 0.1345, 0.58112, 0.16834, 0.5569, 0.19631, 0.53688, 0.45519, 0.35163, 0.48826, 0.32796, 0.51022, 0.29825, 0.7306, 0, 1, 0, 0.60229, 0.44757, 0.31975, 0.73727, 0.57725, 0.47325, 0.63022, 0.41614, 0.28591, 0.75658, 0.34523, 0.7112 ],
  326. "triangles": [ 22, 11, 19, 10, 11, 22, 6, 19, 5, 22, 19, 6, 22, 8, 9, 22, 9, 10, 7, 22, 6, 8, 22, 7, 13, 14, 20, 20, 18, 3, 23, 12, 13, 23, 13, 20, 23, 11, 12, 19, 11, 23, 4, 23, 20, 4, 20, 3, 19, 23, 4, 5, 19, 4, 21, 16, 17, 21, 15, 16, 17, 0, 21, 14, 15, 21, 18, 14, 21, 20, 14, 18, 1, 21, 0, 2, 21, 1, 18, 21, 2, 3, 18, 2 ],
  327. "vertices": [ 1, 6, 6.63, 11.67, 1, 2, 6, 19.85, 8.39, 0.65967, 7, -2.86, 7.91, 0.34033, 2, 6, 21.47, 7.99, 0.48643, 7, -1.2, 7.96, 0.51357, 2, 6, 22.76, 7.7, 0.34504, 7, 0.12, 8.03, 0.65496, 2, 7, 16.78, 8.93, 0.63201, 8, -1.89, 8.76, 0.36799, 2, 7, 18.52, 9.03, 0.46631, 8, -0.18, 9.07, 0.53369, 2, 7, 20.13, 9.11, 0.32289, 8, 1.41, 9.36, 0.67711, 2, 7, 25.75, 9.42, 0.05941, 8, 6.95, 10.36, 0.94059, 1, 8, 17.76, 0.9, 1, 2, 7, 23.98, -11.39, 0.10163, 8, 7.78, -10.51, 0.89837, 2, 7, 16.93, -10.28, 0.48535, 8, 0.65, -10.28, 0.51465, 2, 7, 15.16, -10, 0.62916, 8, -1.15, -10.22, 0.37084, 3, 6, 31, -13.11, 1.3E-4, 7, 13.69, -9.77, 0.73677, 8, -2.63, -10.18, 0.2631, 2, 6, 18.53, -7.38, 0.56449, 7, 0.13, -7.63, 0.43551, 2, 6, 16.93, -6.65, 0.76423, 7, -1.6, -7.36, 0.23577, 2, 6, 15.28, -6.45, 0.89971, 7, -3.24, -7.62, 0.10029, 1, 6, -1.28, -4.47, 1, 1, 6, -6.11, 5.46, 1, 2, 6, 19.94, 0.01, 0.94897, 7, -0.51, -0.13, 0.05103, 2, 7, 17.36, 0.27, 0.68153, 8, -0.24, 0.24, 0.31847, 1, 7, 1.07, -0.09, 1, 1, 6, 18.11, 0.4, 1, 1, 8, 1.41, 0.01, 1, 1, 7, 15.75, 0.24, 1 ],
  328. "hull": 18,
  329. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 4, 6, 36, 40, 6, 40, 26, 28, 40, 26, 28, 30, 30, 32, 34, 42, 42, 36, 30, 42, 0, 2, 2, 4, 42, 2, 10, 38, 38, 22, 18, 20, 20, 22, 20, 44, 10, 12, 12, 14, 44, 12, 6, 8, 8, 10, 38, 46, 46, 40, 8, 46, 22, 24, 24, 26, 46, 24 ],
  330. "width": 41,
  331. "height": 47
  332. }
  333. },
  334. "zuoshou2": {
  335. "zuoshou2": {
  336. "type": "mesh",
  337. "uvs": [ 1, 0.60166, 0.58525, 1, 0, 1, 0, 0.48166, 0.54146, 0, 1, 0 ],
  338. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  339. "vertices": [ 9.51, 9.89, 22.51, 10.64, 29.74, 2.2, 19.51, -6.57, 3.31, -6.91, -2.36, -0.29 ],
  340. "hull": 6,
  341. "edges": [ 2, 4, 0, 10, 2, 0, 4, 6, 8, 10, 6, 8 ],
  342. "width": 19,
  343. "height": 26
  344. }
  345. },
  346. "zuoshou3": {
  347. "zuoshou3": {
  348. "type": "mesh",
  349. "uvs": [ 1, 0.68624, 1, 1, 0.69688, 1, 0.65814, 1, 0.6092, 1, 0.21012, 1, 0.20487, 0.46526, 0.2003, 0, 0.65814, 0, 0.70912, 0, 0.74582, 0, 1, 0, 0.67501, 0.59702, 0.71174, 0.6071, 0.62977, 0.58434 ],
  350. "triangles": [ 13, 12, 10, 13, 10, 11, 0, 13, 11, 13, 3, 12, 13, 2, 3, 0, 2, 13, 2, 0, 1, 6, 7, 8, 14, 6, 8, 9, 14, 8, 12, 14, 9, 10, 12, 9, 5, 6, 14, 4, 5, 14, 4, 14, 12, 3, 4, 12 ],
  351. "vertices": [ 1, 60, 16.46, 0.96, 1, 1, 60, 17.43, -4.6, 1, 2, 59, 21.04, -7.27, 0.41253, 60, 2.2, -7.25, 0.58747, 2, 59, 19.09, -7.59, 0.62197, 60, 0.25, -7.59, 0.37803, 2, 59, 16.62, -8, 0.83934, 60, -2.21, -8.02, 0.16066, 1, 59, -3.45, -11.35, 1, 1, 59, -5.3, -1.9, 1, 1, 59, -6.91, 6.32, 1, 2, 59, 16.13, 10.16, 0.78064, 60, -2.83, 10.14, 0.21936, 2, 59, 18.69, 10.59, 0.58369, 60, -0.27, 10.59, 0.41631, 2, 59, 20.54, 10.9, 0.43244, 60, 1.57, 10.91, 0.56756, 2, 59, 33.32, 13.03, 0.00294, 60, 14.35, 13.13, 0.99706, 2, 59, 18.74, -0.3, 0.66319, 60, -0.14, -0.3, 0.33681, 2, 59, 20.62, -0.17, 0.00645, 60, 1.73, -0.15, 0.99355, 2, 59, 16.43, -0.45, 0.99866, 60, -2.45, -0.47, 0.00134 ],
  352. "hull": 12,
  353. "edges": [ 10, 12, 12, 14, 2, 0, 0, 22, 18, 24, 24, 6, 18, 20, 20, 22, 0, 26, 26, 24, 20, 26, 2, 4, 4, 6, 26, 4, 6, 8, 8, 10, 12, 28, 28, 24, 8, 28, 14, 16, 16, 18, 28, 16 ],
  354. "width": 51,
  355. "height": 18
  356. }
  357. },
  358. "zuoyan": {
  359. "zuoyan": { "x": 6.17, "y": 0.81, "rotation": -91.83, "width": 17, "height": 19 }
  360. }
  361. }
  362. },
  363. "animations": {
  364. "stand1": {
  365. "slots": {
  366. "biaoqing": {
  367. "attachment": [
  368. { "time": 0.1667, "name": "biaoqing" }
  369. ]
  370. },
  371. "biyan": {
  372. "attachment": [
  373. { "time": 0.2, "name": null }
  374. ]
  375. },
  376. "hua": {
  377. "color": [
  378. { "time": 0, "color": "ffffff00" },
  379. { "time": 0.2, "color": "ffffffff" }
  380. ],
  381. "attachment": [
  382. { "time": 0, "name": "hua" }
  383. ]
  384. },
  385. "youshou": {
  386. "attachment": [
  387. { "time": 0.1667, "name": null },
  388. { "time": 0.2667, "name": null }
  389. ]
  390. },
  391. "youshou2": {
  392. "attachment": [
  393. { "time": 0.1667, "name": "youshou2" }
  394. ]
  395. },
  396. "youshou3": {
  397. "attachment": [
  398. { "time": 0.1667, "name": "youshou3" }
  399. ]
  400. },
  401. "youyan": {
  402. "attachment": [
  403. { "time": 0.2, "name": null },
  404. { "time": 0.3333, "name": null }
  405. ]
  406. },
  407. "zuoshou": {
  408. "attachment": [
  409. { "time": 0.1667, "name": null },
  410. { "time": 0.2667, "name": null }
  411. ]
  412. },
  413. "zuoshou2": {
  414. "attachment": [
  415. { "time": 0.1667, "name": "zuoshou2" }
  416. ]
  417. },
  418. "zuoshou3": {
  419. "attachment": [
  420. { "time": 0.1667, "name": "zuoshou3" }
  421. ]
  422. },
  423. "zuoyan": {
  424. "attachment": [
  425. { "time": 0.2, "name": null },
  426. { "time": 0.3333, "name": null }
  427. ]
  428. }
  429. },
  430. "bones": {
  431. "root": {
  432. "rotate": [
  433. { "time": 0, "angle": 0 }
  434. ],
  435. "translate": [
  436. { "time": 0, "x": 0, "y": 0 }
  437. ],
  438. "scale": [
  439. { "time": 0, "x": 0.65, "y": 0.65 }
  440. ]
  441. },
  442. "bone": {
  443. "rotate": [
  444. { "time": 0, "angle": 0, "curve": "stepped" },
  445. { "time": 0.1, "angle": 0, "curve": "stepped" },
  446. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  447. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  448. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  449. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  450. { "time": 1.4, "angle": 0, "curve": "stepped" },
  451. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  452. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  453. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  454. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  455. { "time": 3, "angle": 0 }
  456. ],
  457. "translate": [
  458. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  459. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  460. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  461. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  462. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  463. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  464. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  465. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  466. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  467. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  468. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  469. { "time": 3, "x": 0, "y": 0 }
  470. ],
  471. "scale": [
  472. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  473. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  474. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  475. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  476. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  477. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  478. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  479. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  480. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  481. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  482. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  483. { "time": 3, "x": 1, "y": 1 }
  484. ]
  485. },
  486. "bone2": {
  487. "rotate": [
  488. { "time": 0, "angle": 0, "curve": "stepped" },
  489. { "time": 0.1, "angle": 0, "curve": "stepped" },
  490. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  491. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  492. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  493. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  494. { "time": 1.4, "angle": 0, "curve": "stepped" },
  495. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  496. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  497. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  498. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  499. { "time": 3, "angle": 0 }
  500. ],
  501. "translate": [
  502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  503. { "time": 0.1, "x": 0, "y": 0 },
  504. { "time": 0.2667, "x": 0, "y": 0.93 },
  505. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  506. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  507. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  508. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  509. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  513. { "time": 3, "x": 0, "y": 0 }
  514. ],
  515. "scale": [
  516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  520. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  521. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  522. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  523. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  524. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  525. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  526. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  527. { "time": 3, "x": 1, "y": 1 }
  528. ]
  529. },
  530. "bone3": {
  531. "rotate": [
  532. { "time": 0, "angle": 0, "curve": "stepped" },
  533. { "time": 0.1, "angle": 0, "curve": "stepped" },
  534. { "time": 0.2667, "angle": 0 },
  535. { "time": 0.4333, "angle": 3.25, "curve": "stepped" },
  536. { "time": 0.7333, "angle": 3.25, "curve": "stepped" },
  537. { "time": 1.0667, "angle": 3.25, "curve": "stepped" },
  538. { "time": 1.4, "angle": 3.25, "curve": "stepped" },
  539. { "time": 1.7333, "angle": 3.25, "curve": "stepped" },
  540. { "time": 2.0333, "angle": 3.25, "curve": "stepped" },
  541. { "time": 2.3333, "angle": 3.25, "curve": "stepped" },
  542. { "time": 2.6667, "angle": 3.25, "curve": "stepped" },
  543. { "time": 3, "angle": 3.25 }
  544. ],
  545. "translate": [
  546. { "time": 0, "x": 0, "y": 0 },
  547. { "time": 0.1, "x": 0, "y": -1.62 },
  548. { "time": 0.2667, "x": 0, "y": 1.9 },
  549. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  550. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  551. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  552. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  553. { "time": 2.6667, "x": 0, "y": 0 }
  554. ],
  555. "scale": [
  556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  557. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  558. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  559. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  560. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  561. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  565. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 3, "x": 1, "y": 1 }
  568. ]
  569. },
  570. "bone4": {
  571. "rotate": [
  572. { "time": 0, "angle": 0, "curve": "stepped" },
  573. { "time": 0.1, "angle": 0, "curve": "stepped" },
  574. { "time": 0.2667, "angle": 0 },
  575. { "time": 0.4333, "angle": -7.3 },
  576. { "time": 0.7333, "angle": 0 },
  577. { "time": 1.0667, "angle": -7.3 },
  578. { "time": 1.4, "angle": 0 },
  579. { "time": 1.7333, "angle": -7.3 },
  580. { "time": 2.0333, "angle": 0 },
  581. { "time": 2.3333, "angle": -7.3 },
  582. { "time": 2.6667, "angle": 0 },
  583. { "time": 3, "angle": -7.3 }
  584. ],
  585. "translate": [
  586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  589. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  590. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  591. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  592. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  593. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  594. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  595. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  596. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  597. { "time": 3, "x": 0, "y": 0 }
  598. ],
  599. "scale": [
  600. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  602. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  603. { "time": 0.4333, "x": 1, "y": 1 },
  604. { "time": 0.7333, "x": 1.017, "y": 1 },
  605. { "time": 1.0667, "x": 1, "y": 1 },
  606. { "time": 1.4, "x": 1.017, "y": 1 },
  607. { "time": 1.7333, "x": 1, "y": 1 },
  608. { "time": 2.0333, "x": 1.017, "y": 1 },
  609. { "time": 2.3333, "x": 1, "y": 1 },
  610. { "time": 2.6667, "x": 1.017, "y": 1 },
  611. { "time": 3, "x": 1, "y": 1 }
  612. ]
  613. },
  614. "bone5": {
  615. "rotate": [
  616. { "time": 0, "angle": 0, "curve": "stepped" },
  617. { "time": 0.1, "angle": 0, "curve": "stepped" },
  618. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  619. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  620. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  621. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  622. { "time": 1.4, "angle": 0, "curve": "stepped" },
  623. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  624. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  625. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  626. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  627. { "time": 3, "angle": 0 }
  628. ],
  629. "translate": [
  630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  632. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  633. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  634. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  635. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  636. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  637. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  638. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  639. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  641. { "time": 3, "x": 0, "y": 0 }
  642. ],
  643. "scale": [
  644. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  645. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  646. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  647. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  648. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  649. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  650. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  651. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  652. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  655. { "time": 3, "x": 1, "y": 1 }
  656. ]
  657. },
  658. "bone6": {
  659. "rotate": [
  660. { "time": 0, "angle": 0 },
  661. { "time": 0.1, "angle": 5.92 },
  662. { "time": 0.2667, "angle": -13.77, "curve": "stepped" },
  663. { "time": 0.4333, "angle": -13.77, "curve": "stepped" },
  664. { "time": 0.7333, "angle": -13.77, "curve": "stepped" },
  665. { "time": 1.0667, "angle": -13.77, "curve": "stepped" },
  666. { "time": 1.4, "angle": -13.77, "curve": "stepped" },
  667. { "time": 1.7333, "angle": -13.77, "curve": "stepped" },
  668. { "time": 2.0333, "angle": -13.77, "curve": "stepped" },
  669. { "time": 2.3333, "angle": -13.77, "curve": "stepped" },
  670. { "time": 2.6667, "angle": -13.77, "curve": "stepped" },
  671. { "time": 3, "angle": -13.77 }
  672. ],
  673. "translate": [
  674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  675. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  676. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  677. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  678. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  679. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  684. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  685. { "time": 3, "x": 0, "y": 0 }
  686. ],
  687. "scale": [
  688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  695. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  696. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  697. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  698. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 3, "x": 1, "y": 1 }
  700. ]
  701. },
  702. "bone7": {
  703. "rotate": [
  704. { "time": 0, "angle": 0 },
  705. { "time": 0.1, "angle": 5.5 },
  706. { "time": 0.2667, "angle": 55.49, "curve": "stepped" },
  707. { "time": 0.4333, "angle": 55.49, "curve": "stepped" },
  708. { "time": 0.7333, "angle": 55.49, "curve": "stepped" },
  709. { "time": 1.0667, "angle": 55.49, "curve": "stepped" },
  710. { "time": 1.4, "angle": 55.49, "curve": "stepped" },
  711. { "time": 1.7333, "angle": 55.49, "curve": "stepped" },
  712. { "time": 2.0333, "angle": 55.49, "curve": "stepped" },
  713. { "time": 2.3333, "angle": 55.49, "curve": "stepped" },
  714. { "time": 2.6667, "angle": 55.49, "curve": "stepped" },
  715. { "time": 3, "angle": 55.49 }
  716. ],
  717. "translate": [
  718. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  719. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  720. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  721. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  722. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  723. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  724. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  725. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  726. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  727. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  729. { "time": 3, "x": 0, "y": 0 }
  730. ],
  731. "scale": [
  732. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  733. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  734. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  735. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  736. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  738. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  739. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  740. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  741. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  742. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  743. { "time": 3, "x": 1, "y": 1 }
  744. ]
  745. },
  746. "bone8": {
  747. "rotate": [
  748. { "time": 0, "angle": 0, "curve": "stepped" },
  749. { "time": 0.1, "angle": 0, "curve": "stepped" },
  750. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  751. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  752. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  753. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  754. { "time": 1.4, "angle": 0, "curve": "stepped" },
  755. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  756. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  757. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  758. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  759. { "time": 3, "angle": 0 }
  760. ],
  761. "translate": [
  762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  769. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  770. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  771. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  772. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  773. { "time": 3, "x": 0, "y": 0 }
  774. ],
  775. "scale": [
  776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  777. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  778. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  779. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  780. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  781. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  782. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  783. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  784. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  785. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  787. { "time": 3, "x": 1, "y": 1 }
  788. ]
  789. },
  790. "bone9": {
  791. "rotate": [
  792. { "time": 0, "angle": 0 },
  793. { "time": 0.1, "angle": -4.7 },
  794. { "time": 0.2667, "angle": 8.61, "curve": "stepped" },
  795. { "time": 0.4333, "angle": 8.61, "curve": "stepped" },
  796. { "time": 0.7333, "angle": 8.61, "curve": "stepped" },
  797. { "time": 1.0667, "angle": 8.61, "curve": "stepped" },
  798. { "time": 1.4, "angle": 8.61, "curve": "stepped" },
  799. { "time": 1.7333, "angle": 8.61, "curve": "stepped" },
  800. { "time": 2.0333, "angle": 8.61, "curve": "stepped" },
  801. { "time": 2.3333, "angle": 8.61, "curve": "stepped" },
  802. { "time": 2.6667, "angle": 8.61, "curve": "stepped" },
  803. { "time": 3, "angle": 8.61 }
  804. ],
  805. "translate": [
  806. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  807. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  808. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  809. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  810. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  811. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  816. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  817. { "time": 3, "x": 0, "y": 0 }
  818. ],
  819. "scale": [
  820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  821. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  822. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  823. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  824. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  825. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  826. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  827. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  828. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  829. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  830. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  831. { "time": 3, "x": 1, "y": 1 }
  832. ]
  833. },
  834. "bone10": {
  835. "rotate": [
  836. { "time": 0, "angle": 0 },
  837. { "time": 0.1, "angle": -6.03 },
  838. { "time": 0.2667, "angle": -95.19, "curve": "stepped" },
  839. { "time": 0.4333, "angle": -95.19, "curve": "stepped" },
  840. { "time": 0.7333, "angle": -95.19, "curve": "stepped" },
  841. { "time": 1.0667, "angle": -95.19, "curve": "stepped" },
  842. { "time": 1.4, "angle": -95.19, "curve": "stepped" },
  843. { "time": 1.7333, "angle": -95.19, "curve": "stepped" },
  844. { "time": 2.0333, "angle": -95.19, "curve": "stepped" },
  845. { "time": 2.3333, "angle": -95.19, "curve": "stepped" },
  846. { "time": 2.6667, "angle": -95.19, "curve": "stepped" },
  847. { "time": 3, "angle": -95.19 }
  848. ],
  849. "translate": [
  850. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  852. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  857. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  858. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  859. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  860. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  861. { "time": 3, "x": 0, "y": 0 }
  862. ],
  863. "scale": [
  864. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  868. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  869. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  870. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  871. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  872. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  873. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  874. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  875. { "time": 3, "x": 1, "y": 1 }
  876. ]
  877. },
  878. "bone11": {
  879. "rotate": [
  880. { "time": 0, "angle": 0, "curve": "stepped" },
  881. { "time": 0.1, "angle": 0, "curve": "stepped" },
  882. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  883. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  884. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  885. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  886. { "time": 1.4, "angle": 0, "curve": "stepped" },
  887. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  888. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  889. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  890. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  891. { "time": 3, "angle": 0 }
  892. ],
  893. "translate": [
  894. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  897. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  898. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  899. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 3, "x": 0, "y": 0 }
  906. ],
  907. "scale": [
  908. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  909. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  910. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 3, "x": 1, "y": 1 }
  920. ]
  921. },
  922. "bone12": {
  923. "rotate": [
  924. { "time": 0, "angle": 0, "curve": "stepped" },
  925. { "time": 0.1, "angle": 0, "curve": "stepped" },
  926. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  927. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  928. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  929. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  930. { "time": 1.4, "angle": 0, "curve": "stepped" },
  931. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  932. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  933. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  934. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  935. { "time": 3, "angle": 0 }
  936. ],
  937. "translate": [
  938. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  939. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  943. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  944. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  949. { "time": 3, "x": 0, "y": 0 }
  950. ],
  951. "scale": [
  952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  955. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  956. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  957. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  958. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 3, "x": 1, "y": 1 }
  964. ]
  965. },
  966. "bone13": {
  967. "rotate": [
  968. { "time": 0, "angle": 0 },
  969. { "time": 0.1, "angle": -5.83 },
  970. { "time": 0.2667, "angle": 0 },
  971. { "time": 0.5, "angle": -5.83 },
  972. { "time": 0.7333, "angle": 0 },
  973. { "time": 1.0667, "angle": -5.83 },
  974. { "time": 1.4, "angle": 0 },
  975. { "time": 1.7333, "angle": -5.83 },
  976. { "time": 2.0333, "angle": 0 },
  977. { "time": 2.3333, "angle": -5.83 },
  978. { "time": 2.6667, "angle": 0 },
  979. { "time": 3, "angle": -5.83 }
  980. ],
  981. "translate": [
  982. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  992. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 3, "x": 0, "y": 0 }
  994. ],
  995. "scale": [
  996. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1004. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1005. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1006. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1007. { "time": 3, "x": 1, "y": 1 }
  1008. ]
  1009. },
  1010. "bone14": {
  1011. "rotate": [
  1012. { "time": 0, "angle": 0 },
  1013. { "time": 0.1, "angle": 10.26 },
  1014. { "time": 0.2667, "angle": 0 },
  1015. { "time": 0.5, "angle": 10.26 },
  1016. { "time": 0.7333, "angle": 0 },
  1017. { "time": 1.0667, "angle": 10.26 },
  1018. { "time": 1.4, "angle": 0 },
  1019. { "time": 1.7333, "angle": 10.26 },
  1020. { "time": 2.0333, "angle": 0 },
  1021. { "time": 2.3333, "angle": 10.26 },
  1022. { "time": 2.6667, "angle": 0 },
  1023. { "time": 3, "angle": 10.26 }
  1024. ],
  1025. "translate": [
  1026. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 3, "x": 0, "y": 0 }
  1038. ],
  1039. "scale": [
  1040. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1051. { "time": 3, "x": 1, "y": 1 }
  1052. ]
  1053. },
  1054. "bone15": {
  1055. "rotate": [
  1056. { "time": 0, "angle": 0, "curve": "stepped" },
  1057. { "time": 0.1, "angle": 0 },
  1058. { "time": 0.2667, "angle": 6.04 },
  1059. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1060. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1061. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1062. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1063. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1064. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1065. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1066. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1067. { "time": 3, "angle": 0 }
  1068. ],
  1069. "translate": [
  1070. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 3, "x": 0, "y": 0 }
  1082. ],
  1083. "scale": [
  1084. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 3, "x": 1, "y": 1 }
  1096. ]
  1097. },
  1098. "bone16": {
  1099. "rotate": [
  1100. { "time": 0, "angle": 0 },
  1101. { "time": 0.1, "angle": -4.57 },
  1102. { "time": 0.2667, "angle": 0 },
  1103. { "time": 0.5, "angle": -4.57 },
  1104. { "time": 0.7333, "angle": 0 },
  1105. { "time": 1.0667, "angle": -4.57 },
  1106. { "time": 1.4, "angle": 0 },
  1107. { "time": 1.7333, "angle": -4.57 },
  1108. { "time": 2.0333, "angle": 0 },
  1109. { "time": 2.3333, "angle": -4.57 },
  1110. { "time": 2.6667, "angle": 0 },
  1111. { "time": 3, "angle": -4.57 }
  1112. ],
  1113. "translate": [
  1114. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 3, "x": 0, "y": 0 }
  1126. ],
  1127. "scale": [
  1128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1130. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 3, "x": 1, "y": 1 }
  1140. ]
  1141. },
  1142. "bone17": {
  1143. "rotate": [
  1144. { "time": 0, "angle": 0 },
  1145. { "time": 0.1, "angle": 10.7 },
  1146. { "time": 0.2667, "angle": 0 },
  1147. { "time": 0.5, "angle": 10.7 },
  1148. { "time": 0.7333, "angle": 0 },
  1149. { "time": 1.0667, "angle": 10.7 },
  1150. { "time": 1.4, "angle": 0 },
  1151. { "time": 1.7333, "angle": 10.7 },
  1152. { "time": 2.0333, "angle": 0 },
  1153. { "time": 2.3333, "angle": 10.7 },
  1154. { "time": 2.6667, "angle": 0 },
  1155. { "time": 3, "angle": 10.7 }
  1156. ],
  1157. "translate": [
  1158. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1159. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1160. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1161. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1162. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1166. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1167. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1168. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1169. { "time": 3, "x": 0, "y": 0 }
  1170. ],
  1171. "scale": [
  1172. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1175. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1176. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1177. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1178. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1179. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1182. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 3, "x": 1, "y": 1 }
  1184. ]
  1185. },
  1186. "bone18": {
  1187. "rotate": [
  1188. { "time": 0, "angle": 0 },
  1189. { "time": 0.1, "angle": -6.57 },
  1190. { "time": 0.2667, "angle": 4.19 },
  1191. { "time": 0.5, "angle": -6.57 },
  1192. { "time": 0.7333, "angle": 0 },
  1193. { "time": 1.0667, "angle": -6.57 },
  1194. { "time": 1.4, "angle": 0 },
  1195. { "time": 1.7333, "angle": -6.57 },
  1196. { "time": 2.0333, "angle": 0 },
  1197. { "time": 2.3333, "angle": -6.57 },
  1198. { "time": 2.6667, "angle": 0 },
  1199. { "time": 3, "angle": -6.57 }
  1200. ],
  1201. "translate": [
  1202. { "time": 0, "x": 0, "y": 0 },
  1203. { "time": 0.1, "x": 0.53, "y": -0.62 },
  1204. { "time": 0.2667, "x": 0, "y": 0 },
  1205. { "time": 0.5, "x": 0.53, "y": -0.62 },
  1206. { "time": 0.7333, "x": 0, "y": 0 },
  1207. { "time": 1.0667, "x": 0.53, "y": -0.62 },
  1208. { "time": 1.4, "x": 0, "y": 0 },
  1209. { "time": 1.7333, "x": 0.53, "y": -0.62 },
  1210. { "time": 2.0333, "x": 0, "y": 0 },
  1211. { "time": 2.3333, "x": 0.53, "y": -0.62 },
  1212. { "time": 2.6667, "x": 0, "y": 0 },
  1213. { "time": 3, "x": 0.53, "y": -0.62 }
  1214. ],
  1215. "scale": [
  1216. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1217. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1218. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1219. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1220. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1221. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1223. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1227. { "time": 3, "x": 1, "y": 1 }
  1228. ]
  1229. },
  1230. "bone19": {
  1231. "rotate": [
  1232. { "time": 0, "angle": 0, "curve": "stepped" },
  1233. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1234. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1235. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1236. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1237. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1238. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1239. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1240. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1241. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1242. { "time": 3, "angle": 0 }
  1243. ],
  1244. "translate": [
  1245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1250. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1253. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1254. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 3, "x": 0, "y": 0 }
  1256. ],
  1257. "scale": [
  1258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1260. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1261. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1262. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1263. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1264. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1265. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1266. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1267. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1268. { "time": 3, "x": 1, "y": 1 }
  1269. ]
  1270. },
  1271. "bone20": {
  1272. "rotate": [
  1273. { "time": 0, "angle": 0 },
  1274. { "time": 0.1, "angle": 4.91 },
  1275. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1276. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1277. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1278. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1279. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1280. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1281. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1282. { "time": 3, "angle": 0 }
  1283. ],
  1284. "translate": [
  1285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1294. { "time": 3, "x": 0, "y": 0 }
  1295. ],
  1296. "scale": [
  1297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1301. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1302. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1303. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1304. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1305. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1306. { "time": 3, "x": 1, "y": 1 }
  1307. ]
  1308. },
  1309. "bone21": {
  1310. "rotate": [
  1311. { "time": 0, "angle": 0 },
  1312. { "time": 0.1, "angle": 4.91 },
  1313. { "time": 0.7333, "angle": 0 },
  1314. { "time": 1.1333, "angle": -4.4 },
  1315. { "time": 1.7333, "angle": 0 },
  1316. { "time": 2, "angle": -4.4 },
  1317. { "time": 2.5667, "angle": 0 },
  1318. { "time": 3, "angle": -4.08 }
  1319. ],
  1320. "translate": [
  1321. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1324. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 3, "x": 0, "y": 0 }
  1327. ],
  1328. "scale": [
  1329. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1330. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1331. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1332. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1333. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 3, "x": 1, "y": 1 }
  1335. ]
  1336. },
  1337. "bone22": {
  1338. "rotate": [
  1339. { "time": 0, "angle": 0 },
  1340. { "time": 0.1, "angle": 4.91 },
  1341. { "time": 0.7333, "angle": -3.27 },
  1342. { "time": 1.2333, "angle": 7.84 },
  1343. { "time": 1.7333, "angle": -3.27 },
  1344. { "time": 2.1, "angle": 7.84 },
  1345. { "time": 2.5667, "angle": -3.27 },
  1346. { "time": 3, "angle": 5.66 }
  1347. ],
  1348. "translate": [
  1349. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1350. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1351. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1352. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1353. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1354. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1355. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1356. { "time": 3, "x": 0, "y": 0 }
  1357. ],
  1358. "scale": [
  1359. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1360. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1361. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1362. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1363. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1364. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1365. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1366. { "time": 3, "x": 1, "y": 1 }
  1367. ]
  1368. },
  1369. "bone23": {
  1370. "rotate": [
  1371. { "time": 0, "angle": 0 },
  1372. { "time": 0.1, "angle": 4.91 },
  1373. { "time": 0.7333, "angle": -3.27 },
  1374. { "time": 1.2333, "angle": 7.84 },
  1375. { "time": 1.7333, "angle": -3.27 },
  1376. { "time": 2.1, "angle": 7.84 },
  1377. { "time": 2.5667, "angle": -3.27 },
  1378. { "time": 3, "angle": 5.66 }
  1379. ],
  1380. "translate": [
  1381. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 3, "x": 0, "y": 0 }
  1389. ],
  1390. "scale": [
  1391. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1398. { "time": 3, "x": 1, "y": 1 }
  1399. ]
  1400. },
  1401. "bone24": {
  1402. "rotate": [
  1403. { "time": 0, "angle": 0 },
  1404. { "time": 0.1, "angle": 4.91 },
  1405. { "time": 0.7333, "angle": -3.27 },
  1406. { "time": 1.2333, "angle": 7.84 },
  1407. { "time": 1.7333, "angle": -3.27 },
  1408. { "time": 2.1, "angle": 7.84 },
  1409. { "time": 2.5667, "angle": -3.27 },
  1410. { "time": 3, "angle": 5.66 }
  1411. ],
  1412. "translate": [
  1413. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1414. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1415. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1416. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1417. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1418. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1419. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1420. { "time": 3, "x": 0, "y": 0 }
  1421. ],
  1422. "scale": [
  1423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1424. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1425. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1426. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1427. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1428. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1429. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1430. { "time": 3, "x": 1, "y": 1 }
  1431. ]
  1432. },
  1433. "bone25": {
  1434. "rotate": [
  1435. { "time": 0, "angle": 0, "curve": "stepped" },
  1436. { "time": 0.1, "angle": 0 },
  1437. { "time": 0.4333, "angle": -356.02 },
  1438. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1439. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1440. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1441. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1442. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1443. { "time": 3, "angle": 0 }
  1444. ],
  1445. "translate": [
  1446. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1448. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1449. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1450. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1451. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  1454. { "time": 3, "x": 0, "y": 0 }
  1455. ],
  1456. "scale": [
  1457. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1461. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1462. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1463. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1464. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 3, "x": 1, "y": 1 }
  1466. ]
  1467. },
  1468. "bone26": {
  1469. "rotate": [
  1470. { "time": 0, "angle": 0 },
  1471. { "time": 0.1, "angle": -6.17 },
  1472. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1473. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1474. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1475. { "time": 3, "angle": 0 }
  1476. ],
  1477. "translate": [
  1478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1479. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1480. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1482. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1483. { "time": 3, "x": 0, "y": 0 }
  1484. ],
  1485. "scale": [
  1486. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1487. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 3, "x": 1, "y": 1 }
  1492. ]
  1493. },
  1494. "bone27": {
  1495. "rotate": [
  1496. { "time": 0, "angle": 0 },
  1497. { "time": 0.1, "angle": -6.17 },
  1498. { "time": 0.7333, "angle": 0 },
  1499. { "time": 1.2, "angle": -7.12 },
  1500. { "time": 1.7333, "angle": 0 },
  1501. { "time": 2.0667, "angle": -7.12 },
  1502. { "time": 2.5667, "angle": 0 },
  1503. { "time": 3, "angle": -5.78 }
  1504. ],
  1505. "translate": [
  1506. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1507. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1508. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1509. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 3, "x": 0, "y": 0 }
  1512. ],
  1513. "scale": [
  1514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1515. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1516. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1517. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 3, "x": 1, "y": 1 }
  1520. ]
  1521. },
  1522. "bone28": {
  1523. "rotate": [
  1524. { "time": 0, "angle": 0 },
  1525. { "time": 0.1, "angle": -6.17 },
  1526. { "time": 0.7333, "angle": 0 },
  1527. { "time": 1.2, "angle": -7.12 },
  1528. { "time": 1.7333, "angle": 0 },
  1529. { "time": 2.0667, "angle": -7.12 },
  1530. { "time": 2.5667, "angle": 0 },
  1531. { "time": 3, "angle": -5.78 }
  1532. ],
  1533. "translate": [
  1534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1535. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1536. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 3, "x": 0, "y": 0 }
  1540. ],
  1541. "scale": [
  1542. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1543. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1547. { "time": 3, "x": 1, "y": 1 }
  1548. ]
  1549. },
  1550. "bone29": {
  1551. "rotate": [
  1552. { "time": 0, "angle": 0 },
  1553. { "time": 0.1, "angle": -6.17 },
  1554. { "time": 0.7333, "angle": 0 },
  1555. { "time": 1.2, "angle": -7.12 },
  1556. { "time": 1.7333, "angle": 0 },
  1557. { "time": 2.0667, "angle": -7.12 },
  1558. { "time": 2.5667, "angle": 0 },
  1559. { "time": 3, "angle": -5.78 }
  1560. ],
  1561. "translate": [
  1562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 3, "x": 0, "y": 0 }
  1568. ],
  1569. "scale": [
  1570. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 3, "x": 1, "y": 1 }
  1576. ]
  1577. },
  1578. "bone30": {
  1579. "rotate": [
  1580. { "time": 0, "angle": 0 },
  1581. { "time": 0.1, "angle": -6.17 },
  1582. { "time": 0.7333, "angle": 0 },
  1583. { "time": 1.2, "angle": -7.12 },
  1584. { "time": 1.7333, "angle": 0 },
  1585. { "time": 2.0667, "angle": -7.12 },
  1586. { "time": 2.5667, "angle": 0 },
  1587. { "time": 3, "angle": -5.78 }
  1588. ],
  1589. "translate": [
  1590. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1594. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1595. { "time": 3, "x": 0, "y": 0 }
  1596. ],
  1597. "scale": [
  1598. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1600. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1601. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1602. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1603. { "time": 3, "x": 1, "y": 1 }
  1604. ]
  1605. },
  1606. "bone31": {
  1607. "rotate": [
  1608. { "time": 0, "angle": 0, "curve": "stepped" },
  1609. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1610. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1611. { "time": 0.4333, "angle": 0 },
  1612. { "time": 0.7333, "angle": -4.32 },
  1613. { "time": 1.0667, "angle": 0 },
  1614. { "time": 1.4, "angle": -4.32 },
  1615. { "time": 1.7333, "angle": 0 },
  1616. { "time": 2.0333, "angle": -4.32 },
  1617. { "time": 2.3333, "angle": 0 },
  1618. { "time": 2.6667, "angle": -4.32 },
  1619. { "time": 3, "angle": 0 }
  1620. ],
  1621. "translate": [
  1622. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1623. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1624. { "time": 0.2667, "x": 0, "y": 0 },
  1625. { "time": 0.4333, "x": -3.09, "y": -0.33 },
  1626. { "time": 0.7333, "x": -1.31, "y": -0.04 },
  1627. { "time": 1.0667, "x": -3.09, "y": -0.33 },
  1628. { "time": 1.4, "x": -1.31, "y": -0.04 },
  1629. { "time": 1.7333, "x": -3.09, "y": -0.33 },
  1630. { "time": 2.0333, "x": -1.31, "y": -0.04 },
  1631. { "time": 2.3333, "x": -3.09, "y": -0.33 },
  1632. { "time": 2.6667, "x": -1.31, "y": -0.04 },
  1633. { "time": 3, "x": -3.09, "y": -0.33 }
  1634. ],
  1635. "scale": [
  1636. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1638. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1639. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1640. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1647. { "time": 3, "x": 1, "y": 1 }
  1648. ]
  1649. },
  1650. "bone32": {
  1651. "rotate": [
  1652. { "time": 0, "angle": 0, "curve": "stepped" },
  1653. { "time": 0.1, "angle": 0 },
  1654. { "time": 0.4333, "angle": 2.11 },
  1655. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1656. { "time": 0.7333, "angle": 0 },
  1657. { "time": 1.0667, "angle": -2.86 },
  1658. { "time": 1.4, "angle": 0 },
  1659. { "time": 1.7333, "angle": -2.86 },
  1660. { "time": 2.0333, "angle": 0 },
  1661. { "time": 2.3333, "angle": -2.86 },
  1662. { "time": 2.6667, "angle": 0 },
  1663. { "time": 3, "angle": -2.86 }
  1664. ],
  1665. "translate": [
  1666. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2.6667, "x": 0, "y": 0 }
  1673. ],
  1674. "scale": [
  1675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 2.6667, "x": 1, "y": 1 }
  1682. ]
  1683. },
  1684. "bone33": {
  1685. "rotate": [
  1686. { "time": 0, "angle": 0, "curve": "stepped" },
  1687. { "time": 0.1, "angle": 0 },
  1688. { "time": 0.4333, "angle": -2.03 },
  1689. { "time": 0.5, "angle": -4.84 },
  1690. { "time": 0.7333, "angle": -4.2 },
  1691. { "time": 1.0667, "angle": 5.2 },
  1692. { "time": 1.4, "angle": -4.2 },
  1693. { "time": 1.7333, "angle": 5.2 },
  1694. { "time": 2.0333, "angle": -4.2 },
  1695. { "time": 2.3333, "angle": 5.2 },
  1696. { "time": 2.6667, "angle": -4.2 },
  1697. { "time": 3, "angle": 5.2 }
  1698. ],
  1699. "translate": [
  1700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 2.6667, "x": 0, "y": 0 }
  1707. ],
  1708. "scale": [
  1709. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1710. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 2.6667, "x": 1, "y": 1 }
  1716. ]
  1717. },
  1718. "bone34": {
  1719. "rotate": [
  1720. { "time": 0, "angle": 0 },
  1721. { "time": 0.1, "angle": -1.94 },
  1722. { "time": 0.4333, "angle": 8.87 },
  1723. { "time": 0.7333, "angle": -4.2 },
  1724. { "time": 1.0667, "angle": 10.93 },
  1725. { "time": 1.4, "angle": -4.2 },
  1726. { "time": 1.7333, "angle": 10.93 },
  1727. { "time": 2.0333, "angle": -4.2 },
  1728. { "time": 2.3333, "angle": 10.93 },
  1729. { "time": 2.6667, "angle": -4.2 },
  1730. { "time": 3, "angle": 10.93 }
  1731. ],
  1732. "translate": [
  1733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1734. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1735. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1736. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1737. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1738. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1739. { "time": 2.6667, "x": 0, "y": 0 }
  1740. ],
  1741. "scale": [
  1742. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1743. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1744. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1745. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1746. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1747. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1748. { "time": 2.6667, "x": 1, "y": 1 }
  1749. ]
  1750. },
  1751. "bone35": {
  1752. "rotate": [
  1753. { "time": 0, "angle": 0 },
  1754. { "time": 0.1, "angle": -1.94 },
  1755. { "time": 0.4, "angle": 0 },
  1756. { "time": 0.7333, "angle": -4.2, "curve": "stepped" },
  1757. { "time": 1.4, "angle": -4.2, "curve": "stepped" },
  1758. { "time": 2.0333, "angle": -4.2, "curve": "stepped" },
  1759. { "time": 2.6667, "angle": -4.2 }
  1760. ],
  1761. "translate": [
  1762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1763. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1764. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1766. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 2.6667, "x": 0, "y": 0 }
  1769. ],
  1770. "scale": [
  1771. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1772. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1773. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1774. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1775. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1776. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1777. { "time": 2.6667, "x": 1, "y": 1 }
  1778. ]
  1779. },
  1780. "bone36": {
  1781. "rotate": [
  1782. { "time": 0, "angle": 0, "curve": "stepped" },
  1783. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1784. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1785. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1786. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1787. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1788. { "time": 2.6667, "angle": 0 }
  1789. ],
  1790. "translate": [
  1791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 2.6667, "x": 0, "y": 0 }
  1798. ],
  1799. "scale": [
  1800. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1806. { "time": 2.6667, "x": 1, "y": 1 }
  1807. ]
  1808. },
  1809. "bone37": {
  1810. "rotate": [
  1811. { "time": 0, "angle": 0 },
  1812. { "time": 0.1, "angle": -5.81 },
  1813. { "time": 0.4333, "angle": 5.18 },
  1814. { "time": 0.5, "angle": 0 },
  1815. { "time": 0.7333, "angle": -10.14 },
  1816. { "time": 1.0667, "angle": 5.18 },
  1817. { "time": 1.4, "angle": -10.14 },
  1818. { "time": 1.7333, "angle": 5.18 },
  1819. { "time": 2.0333, "angle": -10.14 },
  1820. { "time": 2.3333, "angle": 5.18 },
  1821. { "time": 2.6667, "angle": -10.14 },
  1822. { "time": 3, "angle": 5.18 }
  1823. ],
  1824. "translate": [
  1825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1826. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1827. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1828. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1829. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1830. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1831. { "time": 2.6667, "x": 0, "y": 0 }
  1832. ],
  1833. "scale": [
  1834. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 2.6667, "x": 1, "y": 1 }
  1841. ]
  1842. },
  1843. "bone38": {
  1844. "rotate": [
  1845. { "time": 0, "angle": 0 },
  1846. { "time": 0.1, "angle": 0.35 },
  1847. { "time": 0.5, "angle": 0 },
  1848. { "time": 0.7333, "angle": -10.14, "curve": "stepped" },
  1849. { "time": 1.4, "angle": -10.14, "curve": "stepped" },
  1850. { "time": 2.0333, "angle": -10.14, "curve": "stepped" },
  1851. { "time": 2.6667, "angle": -10.14 }
  1852. ],
  1853. "translate": [
  1854. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1855. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1860. { "time": 2.6667, "x": 0, "y": 0 }
  1861. ],
  1862. "scale": [
  1863. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 2.6667, "x": 1, "y": 1 }
  1870. ]
  1871. },
  1872. "bone39": {
  1873. "rotate": [
  1874. { "time": 0, "angle": 0, "curve": "stepped" },
  1875. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1876. { "time": 0.5, "angle": 0 },
  1877. { "time": 0.7333, "angle": -10.14, "curve": "stepped" },
  1878. { "time": 1.4, "angle": -10.14, "curve": "stepped" },
  1879. { "time": 2.0333, "angle": -10.14, "curve": "stepped" },
  1880. { "time": 2.6667, "angle": -10.14 }
  1881. ],
  1882. "translate": [
  1883. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1885. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1886. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1887. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1888. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 2.6667, "x": 0, "y": 0 }
  1890. ],
  1891. "scale": [
  1892. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1894. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1897. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1898. { "time": 2.6667, "x": 1, "y": 1 }
  1899. ]
  1900. },
  1901. "bone40": {
  1902. "rotate": [
  1903. { "time": 0, "angle": 0, "curve": "stepped" },
  1904. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1905. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1906. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1907. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1908. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1909. { "time": 2.6667, "angle": 0 }
  1910. ],
  1911. "translate": [
  1912. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1915. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1916. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1917. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1918. { "time": 2.6667, "x": 0, "y": 0 }
  1919. ],
  1920. "scale": [
  1921. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1924. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1925. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1926. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1927. { "time": 2.6667, "x": 1, "y": 1 }
  1928. ]
  1929. },
  1930. "bone41": {
  1931. "rotate": [
  1932. { "time": 0, "angle": 0 },
  1933. { "time": 0.1, "angle": -6.48 },
  1934. { "time": 0.4333, "angle": 6.46 },
  1935. { "time": 0.7333, "angle": -19.94 },
  1936. { "time": 1.0667, "angle": 6.46 },
  1937. { "time": 1.4, "angle": -19.94 },
  1938. { "time": 1.7333, "angle": 6.46 },
  1939. { "time": 2.0333, "angle": -19.94 },
  1940. { "time": 2.3333, "angle": 6.46 },
  1941. { "time": 2.6667, "angle": -19.94 },
  1942. { "time": 3, "angle": 6.46 }
  1943. ],
  1944. "translate": [
  1945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1946. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1947. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1948. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1949. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1950. { "time": 2.6667, "x": 0, "y": 0 }
  1951. ],
  1952. "scale": [
  1953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1957. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1958. { "time": 2.6667, "x": 1, "y": 1 }
  1959. ]
  1960. },
  1961. "bone42": {
  1962. "rotate": [
  1963. { "time": 0, "angle": 0 },
  1964. { "time": 0.1, "angle": -6.13 },
  1965. { "time": 0.4333, "angle": 6.51 },
  1966. { "time": 0.7333, "angle": 0 },
  1967. { "time": 1.0667, "angle": 6.51 },
  1968. { "time": 1.4, "angle": 0 },
  1969. { "time": 1.7333, "angle": 6.51 },
  1970. { "time": 2.0333, "angle": 0 },
  1971. { "time": 2.3333, "angle": 6.51 },
  1972. { "time": 2.6667, "angle": 0 },
  1973. { "time": 3, "angle": 6.51 }
  1974. ],
  1975. "translate": [
  1976. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1979. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1980. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1981. { "time": 2.6667, "x": 0, "y": 0 }
  1982. ],
  1983. "scale": [
  1984. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 2.6667, "x": 1, "y": 1 }
  1990. ]
  1991. },
  1992. "bone43": {
  1993. "rotate": [
  1994. { "time": 0, "angle": 0, "curve": "stepped" },
  1995. { "time": 0.1, "angle": 0 },
  1996. { "time": 0.4333, "angle": 7.54 },
  1997. { "time": 0.7333, "angle": 0 },
  1998. { "time": 1.0667, "angle": 7.54 },
  1999. { "time": 1.4, "angle": 0 },
  2000. { "time": 1.7333, "angle": 7.54 },
  2001. { "time": 2.0333, "angle": 0 },
  2002. { "time": 2.3333, "angle": 7.54 },
  2003. { "time": 2.6667, "angle": 0 },
  2004. { "time": 3, "angle": 7.54 }
  2005. ],
  2006. "translate": [
  2007. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 2.6667, "x": 0, "y": 0 }
  2013. ],
  2014. "scale": [
  2015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2017. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 2.6667, "x": 1, "y": 1 }
  2021. ]
  2022. },
  2023. "bone44": {
  2024. "rotate": [
  2025. { "time": 0, "angle": 0, "curve": "stepped" },
  2026. { "time": 0.1, "angle": 0 },
  2027. { "time": 0.4333, "angle": 2.98 },
  2028. { "time": 0.7333, "angle": 0 },
  2029. { "time": 1.0667, "angle": 2.98 },
  2030. { "time": 1.4, "angle": 0 },
  2031. { "time": 1.7333, "angle": 2.98 },
  2032. { "time": 2.0333, "angle": 0 },
  2033. { "time": 2.3333, "angle": 2.98 },
  2034. { "time": 2.6667, "angle": 0 },
  2035. { "time": 3, "angle": 2.98 }
  2036. ],
  2037. "translate": [
  2038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 2.6667, "x": 0, "y": 0 }
  2044. ],
  2045. "scale": [
  2046. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2047. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 2.6667, "x": 1, "y": 1 }
  2052. ]
  2053. },
  2054. "bone45": {
  2055. "rotate": [
  2056. { "time": 0, "angle": 0, "curve": "stepped" },
  2057. { "time": 0.1, "angle": 0 },
  2058. { "time": 0.4333, "angle": 4.84 },
  2059. { "time": 0.7333, "angle": 2.32 },
  2060. { "time": 1.0667, "angle": 4.84 },
  2061. { "time": 1.4, "angle": 2.32 },
  2062. { "time": 1.7333, "angle": 4.84 },
  2063. { "time": 2.0333, "angle": 2.32 },
  2064. { "time": 2.3333, "angle": 4.84 },
  2065. { "time": 2.6667, "angle": 2.32 },
  2066. { "time": 3, "angle": 4.84 }
  2067. ],
  2068. "translate": [
  2069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2077. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2078. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2079. { "time": 3, "x": 0, "y": 0 }
  2080. ],
  2081. "scale": [
  2082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2083. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2084. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2085. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2086. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2087. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 3, "x": 1, "y": 1 }
  2093. ]
  2094. },
  2095. "bone46": {
  2096. "rotate": [
  2097. { "time": 0, "angle": 0 },
  2098. { "time": 0.1, "angle": -5.43 },
  2099. { "time": 0.4333, "angle": 4.84 },
  2100. { "time": 0.7333, "angle": 2.32 },
  2101. { "time": 1.0667, "angle": 4.84 },
  2102. { "time": 1.4, "angle": 2.32 },
  2103. { "time": 1.7333, "angle": 4.84 },
  2104. { "time": 2.0333, "angle": 2.32 },
  2105. { "time": 2.3333, "angle": 4.84 },
  2106. { "time": 2.6667, "angle": 2.32 },
  2107. { "time": 3, "angle": 4.84 }
  2108. ],
  2109. "translate": [
  2110. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2111. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2112. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2117. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 3, "x": 0, "y": 0 }
  2121. ],
  2122. "scale": [
  2123. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2125. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2126. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2130. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2131. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 3, "x": 1, "y": 1 }
  2134. ]
  2135. },
  2136. "bone47": {
  2137. "rotate": [
  2138. { "time": 0, "angle": 0 },
  2139. { "time": 0.1, "angle": -5.43 },
  2140. { "time": 0.4333, "angle": 4.84 },
  2141. { "time": 0.7333, "angle": 2.32 },
  2142. { "time": 1.0667, "angle": 4.84 },
  2143. { "time": 1.4, "angle": 2.32 },
  2144. { "time": 1.7333, "angle": 4.84 },
  2145. { "time": 2.0333, "angle": 2.32 },
  2146. { "time": 2.3333, "angle": 4.84 },
  2147. { "time": 2.6667, "angle": 2.32 },
  2148. { "time": 3, "angle": 4.84 }
  2149. ],
  2150. "translate": [
  2151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2152. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2153. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2155. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2156. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2157. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2160. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2161. { "time": 3, "x": 0, "y": 0 }
  2162. ],
  2163. "scale": [
  2164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2165. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2170. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2171. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2172. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2173. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2174. { "time": 3, "x": 1, "y": 1 }
  2175. ]
  2176. },
  2177. "bone48": {
  2178. "rotate": [
  2179. { "time": 0, "angle": 0, "curve": "stepped" },
  2180. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2181. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2182. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2183. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2184. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2185. { "time": 2.6667, "angle": 0 }
  2186. ],
  2187. "translate": [
  2188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2189. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2190. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2191. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2192. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2193. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2194. { "time": 2.6667, "x": 0, "y": 0 }
  2195. ],
  2196. "scale": [
  2197. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2201. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2202. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2203. { "time": 2.6667, "x": 1, "y": 1 }
  2204. ]
  2205. },
  2206. "bone49": {
  2207. "rotate": [
  2208. { "time": 0, "angle": 0 },
  2209. { "time": 0.1, "angle": -2.89 },
  2210. { "time": 0.2667, "angle": 3.72 },
  2211. { "time": 0.4333, "angle": 10.13 },
  2212. { "time": 0.7333, "angle": 5.06 },
  2213. { "time": 1.0667, "angle": 10.13 },
  2214. { "time": 1.4, "angle": 5.06 },
  2215. { "time": 1.7333, "angle": 10.13 },
  2216. { "time": 2.0333, "angle": 5.06 },
  2217. { "time": 2.3333, "angle": 10.13 },
  2218. { "time": 2.6667, "angle": 5.06 },
  2219. { "time": 3, "angle": 10.13 }
  2220. ],
  2221. "translate": [
  2222. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2223. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2224. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2225. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2226. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2227. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2228. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2229. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2230. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2231. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2232. { "time": 3, "x": 0, "y": 0 }
  2233. ],
  2234. "scale": [
  2235. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2236. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2237. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2238. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2239. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2240. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2241. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2242. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2243. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2244. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2245. { "time": 3, "x": 1, "y": 1 }
  2246. ]
  2247. },
  2248. "bone50": {
  2249. "rotate": [
  2250. { "time": 0, "angle": 0 },
  2251. { "time": 0.1, "angle": 5.07 },
  2252. { "time": 0.2667, "angle": -6.03 },
  2253. { "time": 0.4333, "angle": -0.21 },
  2254. { "time": 0.7333, "angle": -13.56 },
  2255. { "time": 1.0667, "angle": 10.13 },
  2256. { "time": 1.4, "angle": -13.56 },
  2257. { "time": 1.7333, "angle": 10.13 },
  2258. { "time": 2.0333, "angle": -13.56 },
  2259. { "time": 2.3333, "angle": 10.13 },
  2260. { "time": 2.6667, "angle": -13.56 },
  2261. { "time": 3, "angle": 10.13 }
  2262. ],
  2263. "translate": [
  2264. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2265. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2266. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2267. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2268. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2269. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2270. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2271. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 3, "x": 0, "y": 0 }
  2275. ],
  2276. "scale": [
  2277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2278. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2279. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 3, "x": 1, "y": 1 }
  2288. ]
  2289. },
  2290. "bone51": {
  2291. "rotate": [
  2292. { "time": 0, "angle": 0, "curve": "stepped" },
  2293. { "time": 0.1, "angle": 0 },
  2294. { "time": 0.4333, "angle": 10.13 },
  2295. { "time": 0.7333, "angle": 5.06 },
  2296. { "time": 1.0667, "angle": 10.13 },
  2297. { "time": 1.4, "angle": 5.06 },
  2298. { "time": 1.7333, "angle": 10.13 },
  2299. { "time": 2.0333, "angle": 5.06 },
  2300. { "time": 2.3333, "angle": 10.13 },
  2301. { "time": 2.6667, "angle": 5.06 },
  2302. { "time": 3, "angle": 10.13 }
  2303. ],
  2304. "translate": [
  2305. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 2.6667, "x": 0, "y": 0 }
  2312. ],
  2313. "scale": [
  2314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2317. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2318. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2319. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2320. { "time": 2.6667, "x": 1, "y": 1 }
  2321. ]
  2322. },
  2323. "bone55": {
  2324. "rotate": [
  2325. { "time": 0, "angle": 0, "curve": "stepped" },
  2326. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2327. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2328. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2329. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2330. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2331. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2332. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2333. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2334. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2335. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2336. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2337. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2338. { "time": 3, "angle": 0 }
  2339. ],
  2340. "translate": [
  2341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2342. { "time": 0.0667, "x": 0, "y": 0 },
  2343. { "time": 0.2, "x": -0.01, "y": -0.79, "curve": "stepped" },
  2344. { "time": 0.2667, "x": -0.01, "y": -0.79 },
  2345. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2347. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2348. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2349. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2350. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2351. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2352. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2353. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2354. { "time": 3, "x": 0, "y": 0 }
  2355. ],
  2356. "scale": [
  2357. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2358. { "time": 0.0667, "x": 1, "y": 1 },
  2359. { "time": 0.2, "x": 0.634, "y": 1, "curve": "stepped" },
  2360. { "time": 0.2667, "x": 0.634, "y": 1 },
  2361. { "time": 0.3333, "x": 0.431, "y": 1 },
  2362. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2365. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2366. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2368. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2370. { "time": 3, "x": 1, "y": 1 }
  2371. ]
  2372. },
  2373. "bone56": {
  2374. "rotate": [
  2375. { "time": 0, "angle": 0, "curve": "stepped" },
  2376. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2377. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2378. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2379. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2380. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2381. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2382. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2383. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2384. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2385. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2386. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2387. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2388. { "time": 3, "angle": 0 }
  2389. ],
  2390. "translate": [
  2391. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 0.0667, "x": 0, "y": 0 },
  2393. { "time": 0.2, "x": 0.02, "y": -0.79, "curve": "stepped" },
  2394. { "time": 0.2667, "x": 0.02, "y": -0.79 },
  2395. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2396. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2397. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2398. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2399. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2400. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2401. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2402. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2404. { "time": 3, "x": 0, "y": 0 }
  2405. ],
  2406. "scale": [
  2407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2408. { "time": 0.0667, "x": 1, "y": 1 },
  2409. { "time": 0.2, "x": 0.614, "y": 1, "curve": "stepped" },
  2410. { "time": 0.2667, "x": 0.614, "y": 1 },
  2411. { "time": 0.3333, "x": 0.343, "y": 1 },
  2412. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2415. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2416. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2417. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2418. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2419. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2420. { "time": 3, "x": 1, "y": 1 }
  2421. ]
  2422. },
  2423. "bone57": {
  2424. "rotate": [
  2425. { "time": 0, "angle": 0, "curve": "stepped" },
  2426. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2427. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2428. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2429. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2430. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2431. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2432. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2433. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2434. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2435. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2436. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2437. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2438. { "time": 3, "angle": 0 }
  2439. ],
  2440. "translate": [
  2441. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 0.0667, "x": 0, "y": 0 },
  2443. { "time": 0.2, "x": -0.67, "y": -1.05 },
  2444. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2445. { "time": 0.4333, "x": 0, "y": 0 },
  2446. { "time": 0.7333, "x": 0, "y": 1.16 },
  2447. { "time": 1.0667, "x": 0, "y": 0 },
  2448. { "time": 1.4, "x": 0, "y": 1.16 },
  2449. { "time": 1.7333, "x": 0, "y": 0 },
  2450. { "time": 2.0333, "x": 0, "y": 1.16 },
  2451. { "time": 2.3333, "x": 0, "y": 0 },
  2452. { "time": 2.6667, "x": 0, "y": 1.16 },
  2453. { "time": 3, "x": 0, "y": 0 }
  2454. ],
  2455. "scale": [
  2456. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2459. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2460. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2461. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2462. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2463. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2464. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2465. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2466. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2467. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 3, "x": 1, "y": 1 }
  2470. ]
  2471. },
  2472. "bone58": {
  2473. "rotate": [
  2474. { "time": 0, "angle": 0, "curve": "stepped" },
  2475. { "time": 0.0667, "angle": 0 }
  2476. ],
  2477. "translate": [
  2478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 0.0667, "x": 0, "y": 0 }
  2480. ],
  2481. "scale": [
  2482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 0.0667, "x": 1, "y": 1 }
  2484. ]
  2485. },
  2486. "bone59": {
  2487. "rotate": [
  2488. { "time": 0, "angle": 0, "curve": "stepped" },
  2489. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2490. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2491. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2492. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2493. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2494. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2495. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2496. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2497. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2498. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2499. { "time": 3, "angle": 0 }
  2500. ],
  2501. "translate": [
  2502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 0.4333, "x": 0, "y": 0 },
  2506. { "time": 0.7333, "x": 0, "y": 1.46 },
  2507. { "time": 1.0667, "x": 0, "y": 0 },
  2508. { "time": 1.4, "x": 0, "y": 1.46 },
  2509. { "time": 1.7333, "x": 0, "y": 0 },
  2510. { "time": 2.0333, "x": 0, "y": 1.46 },
  2511. { "time": 2.3333, "x": 0, "y": 0 },
  2512. { "time": 2.6667, "x": 0, "y": 1.46 },
  2513. { "time": 3, "x": 0, "y": 0 }
  2514. ],
  2515. "scale": [
  2516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 3, "x": 1, "y": 1 }
  2528. ]
  2529. },
  2530. "bone60": {
  2531. "rotate": [
  2532. { "time": 0, "angle": 0, "curve": "stepped" },
  2533. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2534. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2535. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2536. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  2537. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2538. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2539. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2540. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2541. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2542. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2543. { "time": 3, "angle": 0 }
  2544. ],
  2545. "translate": [
  2546. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2548. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2549. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2550. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2551. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2552. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2553. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2554. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2555. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2556. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2557. { "time": 3, "x": 0, "y": 0 }
  2558. ],
  2559. "scale": [
  2560. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2561. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2562. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2565. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2567. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2568. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2569. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2570. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2571. { "time": 3, "x": 1, "y": 1 }
  2572. ]
  2573. },
  2574. "bone61": {
  2575. "rotate": [
  2576. { "time": 0, "angle": 0, "curve": "stepped" },
  2577. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2578. { "time": 0.1667, "angle": 0 },
  2579. { "time": 0.3333, "angle": -2.41, "curve": "stepped" },
  2580. { "time": 0.4333, "angle": -2.41, "curve": "stepped" },
  2581. { "time": 0.7333, "angle": -2.41, "curve": "stepped" },
  2582. { "time": 1.0667, "angle": -2.41, "curve": "stepped" },
  2583. { "time": 1.4, "angle": -2.41, "curve": "stepped" },
  2584. { "time": 1.7333, "angle": -2.41, "curve": "stepped" },
  2585. { "time": 2.0333, "angle": -2.41, "curve": "stepped" },
  2586. { "time": 2.3333, "angle": -2.41, "curve": "stepped" },
  2587. { "time": 2.6667, "angle": -2.41, "curve": "stepped" },
  2588. { "time": 3, "angle": -2.41 }
  2589. ],
  2590. "translate": [
  2591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 0.1667, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2594. { "time": 0.3333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2595. { "time": 0.4333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2596. { "time": 0.7333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2597. { "time": 1.0667, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2598. { "time": 1.4, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2599. { "time": 1.7333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2600. { "time": 2.0333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2601. { "time": 2.3333, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2602. { "time": 2.6667, "x": -11.4, "y": 187.48, "curve": "stepped" },
  2603. { "time": 3, "x": -11.4, "y": 187.48 }
  2604. ],
  2605. "scale": [
  2606. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2607. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2608. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2609. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2610. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2611. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2612. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2613. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2614. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2615. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2616. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2617. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2618. { "time": 3, "x": 1, "y": 1 }
  2619. ]
  2620. },
  2621. "bone62": {
  2622. "rotate": [
  2623. { "time": 0, "angle": 0, "curve": "stepped" },
  2624. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2625. { "time": 0.1667, "angle": -45.01 },
  2626. { "time": 0.3333, "angle": -27.88 },
  2627. { "time": 0.4333, "angle": -32.72, "curve": "stepped" },
  2628. { "time": 0.5, "angle": -32.72, "curve": "stepped" },
  2629. { "time": 1.0667, "angle": -32.72, "curve": "stepped" },
  2630. { "time": 1.4, "angle": -32.72, "curve": "stepped" },
  2631. { "time": 1.7333, "angle": -32.72, "curve": "stepped" },
  2632. { "time": 2.0333, "angle": -32.72, "curve": "stepped" },
  2633. { "time": 2.3333, "angle": -32.72, "curve": "stepped" },
  2634. { "time": 2.6667, "angle": -32.72, "curve": "stepped" },
  2635. { "time": 3, "angle": -32.72 }
  2636. ],
  2637. "translate": [
  2638. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2639. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2640. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2642. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2644. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2645. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2646. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2647. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2648. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2649. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2650. { "time": 3, "x": 0, "y": 0 }
  2651. ],
  2652. "scale": [
  2653. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2655. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2656. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2661. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2662. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2663. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2664. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2665. { "time": 3, "x": 1, "y": 1 }
  2666. ]
  2667. },
  2668. "bone63": {
  2669. "rotate": [
  2670. { "time": 0, "angle": 0, "curve": "stepped" },
  2671. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2672. { "time": 0.1667, "angle": 25.4, "curve": "stepped" },
  2673. { "time": 0.3333, "angle": 25.4, "curve": "stepped" },
  2674. { "time": 0.4333, "angle": 25.4, "curve": "stepped" },
  2675. { "time": 0.5, "angle": 25.4, "curve": "stepped" },
  2676. { "time": 1.0667, "angle": 25.4, "curve": "stepped" },
  2677. { "time": 1.4, "angle": 25.4, "curve": "stepped" },
  2678. { "time": 1.7333, "angle": 25.4, "curve": "stepped" },
  2679. { "time": 2.0333, "angle": 25.4, "curve": "stepped" },
  2680. { "time": 2.3333, "angle": 25.4, "curve": "stepped" },
  2681. { "time": 2.6667, "angle": 25.4, "curve": "stepped" },
  2682. { "time": 3, "angle": 25.4 }
  2683. ],
  2684. "translate": [
  2685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2688. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2689. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2690. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2692. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2695. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2696. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2697. { "time": 3, "x": 0, "y": 0 }
  2698. ],
  2699. "scale": [
  2700. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2701. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 3, "x": 1, "y": 1 }
  2713. ]
  2714. },
  2715. "bone64": {
  2716. "rotate": [
  2717. { "time": 0, "angle": 0, "curve": "stepped" },
  2718. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2719. { "time": 0.1667, "angle": 0 },
  2720. { "time": 0.3333, "angle": 3.73, "curve": "stepped" },
  2721. { "time": 0.4333, "angle": 3.73, "curve": "stepped" },
  2722. { "time": 0.7333, "angle": 3.73, "curve": "stepped" },
  2723. { "time": 1.0667, "angle": 3.73, "curve": "stepped" },
  2724. { "time": 1.4, "angle": 3.73, "curve": "stepped" },
  2725. { "time": 1.7333, "angle": 3.73, "curve": "stepped" },
  2726. { "time": 2.0333, "angle": 3.73, "curve": "stepped" },
  2727. { "time": 2.3333, "angle": 3.73, "curve": "stepped" },
  2728. { "time": 2.6667, "angle": 3.73, "curve": "stepped" },
  2729. { "time": 3, "angle": 3.73 }
  2730. ],
  2731. "translate": [
  2732. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 0.1667, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2735. { "time": 0.3333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2736. { "time": 0.4333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2737. { "time": 0.7333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2738. { "time": 1.0667, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2739. { "time": 1.4, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2740. { "time": 1.7333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2741. { "time": 2.0333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2742. { "time": 2.3333, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2743. { "time": 2.6667, "x": -16.97, "y": 221.77, "curve": "stepped" },
  2744. { "time": 3, "x": -16.97, "y": 221.77 }
  2745. ],
  2746. "scale": [
  2747. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2759. { "time": 3, "x": 1, "y": 1 }
  2760. ]
  2761. },
  2762. "bone65": {
  2763. "rotate": [
  2764. { "time": 0, "angle": 0, "curve": "stepped" },
  2765. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2766. { "time": 0.1667, "angle": 12.05 },
  2767. { "time": 0.3333, "angle": 5.73 },
  2768. { "time": 0.5, "angle": 6.02, "curve": "stepped" },
  2769. { "time": 1.4, "angle": 6.02, "curve": "stepped" },
  2770. { "time": 2.0333, "angle": 6.02, "curve": "stepped" },
  2771. { "time": 2.6667, "angle": 6.02 }
  2772. ],
  2773. "translate": [
  2774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2775. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2776. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2777. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2778. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2779. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2780. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2781. { "time": 2.6667, "x": 0, "y": 0 }
  2782. ],
  2783. "scale": [
  2784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2785. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2787. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2789. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2790. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2791. { "time": 2.6667, "x": 1, "y": 1 }
  2792. ]
  2793. },
  2794. "bone66": {
  2795. "rotate": [
  2796. { "time": 0, "angle": 0, "curve": "stepped" },
  2797. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2798. { "time": 0.1667, "angle": -11.05, "curve": "stepped" },
  2799. { "time": 0.3333, "angle": -11.05, "curve": "stepped" },
  2800. { "time": 0.4333, "angle": -11.05, "curve": "stepped" },
  2801. { "time": 0.5, "angle": -11.05, "curve": "stepped" },
  2802. { "time": 1.0667, "angle": -11.05, "curve": "stepped" },
  2803. { "time": 1.4, "angle": -11.05, "curve": "stepped" },
  2804. { "time": 1.7333, "angle": -11.05, "curve": "stepped" },
  2805. { "time": 2.0333, "angle": -11.05, "curve": "stepped" },
  2806. { "time": 2.3333, "angle": -11.05, "curve": "stepped" },
  2807. { "time": 2.6667, "angle": -11.05, "curve": "stepped" },
  2808. { "time": 3, "angle": -11.05 }
  2809. ],
  2810. "translate": [
  2811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2812. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2813. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2814. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2815. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2820. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 3, "x": 0, "y": 0 }
  2824. ],
  2825. "scale": [
  2826. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2836. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2837. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2838. { "time": 3, "x": 1, "y": 1 }
  2839. ]
  2840. },
  2841. "huo": {
  2842. "rotate": [
  2843. { "time": 0, "angle": 0, "curve": "stepped" },
  2844. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2845. { "time": 0.2667, "angle": 0 },
  2846. { "time": 0.4333, "angle": -4.75 },
  2847. { "time": 0.7333, "angle": 3.24 },
  2848. { "time": 1.0667, "angle": -4.75 },
  2849. { "time": 1.4, "angle": 3.24 },
  2850. { "time": 1.7333, "angle": -4.75 },
  2851. { "time": 2.0333, "angle": 3.24 },
  2852. { "time": 2.3333, "angle": -4.75 },
  2853. { "time": 2.6667, "angle": 3.24 },
  2854. { "time": 3, "angle": -4.75 }
  2855. ],
  2856. "translate": [
  2857. { "time": 0, "x": -215.42, "y": 20.76, "curve": "stepped" },
  2858. { "time": 0.2, "x": -215.42, "y": 20.76 },
  2859. { "time": 0.2667, "x": -215.97, "y": -6.08 },
  2860. { "time": 0.4333, "x": -215.85, "y": -7.11 },
  2861. { "time": 0.7333, "x": -216.37, "y": -7.13 },
  2862. { "time": 1.0667, "x": -215.85, "y": -7.11 },
  2863. { "time": 1.4, "x": -216.37, "y": -7.13 },
  2864. { "time": 1.7333, "x": -215.85, "y": -7.11 },
  2865. { "time": 2.0333, "x": -216.37, "y": -7.13 },
  2866. { "time": 2.3333, "x": -215.85, "y": -7.11 },
  2867. { "time": 2.6667, "x": -216.37, "y": -7.13 },
  2868. { "time": 3, "x": -215.85, "y": -7.11 }
  2869. ],
  2870. "scale": [
  2871. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2877. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2878. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2879. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2880. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2881. { "time": 3, "x": 1, "y": 1 }
  2882. ]
  2883. },
  2884. "huo2": {
  2885. "rotate": [
  2886. { "time": 0.2667, "angle": -7.37 },
  2887. { "time": 0.4333, "angle": 0 },
  2888. { "time": 0.7333, "angle": -6.35 },
  2889. { "time": 1.0667, "angle": 0 },
  2890. { "time": 1.4, "angle": -6.35 },
  2891. { "time": 1.7333, "angle": 0 },
  2892. { "time": 2.0333, "angle": -6.35 },
  2893. { "time": 2.3333, "angle": 0 },
  2894. { "time": 2.6667, "angle": -6.35 },
  2895. { "time": 3, "angle": 0 }
  2896. ],
  2897. "translate": [
  2898. { "time": 0.2667, "x": 0, "y": 0 },
  2899. { "time": 0.4333, "x": 0.09, "y": 0, "curve": "stepped" },
  2900. { "time": 1.0667, "x": 0.09, "y": 0, "curve": "stepped" },
  2901. { "time": 1.7333, "x": 0.09, "y": 0, "curve": "stepped" },
  2902. { "time": 2.3333, "x": 0.09, "y": 0, "curve": "stepped" },
  2903. { "time": 3, "x": 0.09, "y": 0 }
  2904. ],
  2905. "scale": [
  2906. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 3, "x": 1, "y": 1 }
  2912. ]
  2913. },
  2914. "huo3": {
  2915. "rotate": [
  2916. { "time": 0.2667, "angle": -7.37 },
  2917. { "time": 0.4333, "angle": 0 },
  2918. { "time": 0.7333, "angle": 14.79 },
  2919. { "time": 1.0667, "angle": 0 },
  2920. { "time": 1.4, "angle": 14.79 },
  2921. { "time": 1.7333, "angle": 0 },
  2922. { "time": 2.0333, "angle": 14.79 },
  2923. { "time": 2.3333, "angle": 0 },
  2924. { "time": 2.6667, "angle": 14.79 },
  2925. { "time": 3, "angle": 0 }
  2926. ],
  2927. "translate": [
  2928. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 3, "x": 0, "y": 0 }
  2934. ],
  2935. "scale": [
  2936. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 3, "x": 1, "y": 1 }
  2942. ]
  2943. },
  2944. "huo4": {
  2945. "rotate": [
  2946. { "time": 0.2667, "angle": -7.37 },
  2947. { "time": 0.4333, "angle": 0 },
  2948. { "time": 0.7333, "angle": 23.19 },
  2949. { "time": 1.0667, "angle": 0 },
  2950. { "time": 1.4, "angle": 23.19 },
  2951. { "time": 1.7333, "angle": 0 },
  2952. { "time": 2.0333, "angle": 23.19 },
  2953. { "time": 2.3333, "angle": 0 },
  2954. { "time": 2.6667, "angle": 23.19 },
  2955. { "time": 3, "angle": 0 }
  2956. ],
  2957. "translate": [
  2958. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2959. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2960. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2961. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 3, "x": 0, "y": 0 }
  2964. ],
  2965. "scale": [
  2966. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2967. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2969. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2970. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2971. { "time": 3, "x": 1, "y": 1 }
  2972. ]
  2973. }
  2974. },
  2975. "deform": {
  2976. "default": {
  2977. "toufa6": {
  2978. "toufa6": [
  2979. { "time": 0 },
  2980. {
  2981. "time": 0.1,
  2982. "offset": 6,
  2983. "vertices": [ -1.78224, -1.08017, -0.13704, -3.17607, -1.22971, -1.68252, -4.92086, -0.07698 ]
  2984. },
  2985. { "time": 0.2667 },
  2986. {
  2987. "time": 0.4333,
  2988. "offset": 8,
  2989. "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -0.53738, -1.77346, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
  2990. },
  2991. { "time": 0.7333 },
  2992. {
  2993. "time": 1.0667,
  2994. "offset": 8,
  2995. "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
  2996. },
  2997. { "time": 1.4 },
  2998. {
  2999. "time": 1.7333,
  3000. "offset": 8,
  3001. "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
  3002. },
  3003. { "time": 2.0333 },
  3004. {
  3005. "time": 2.3333,
  3006. "offset": 8,
  3007. "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
  3008. },
  3009. { "time": 2.6667 },
  3010. {
  3011. "time": 3,
  3012. "offset": 8,
  3013. "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
  3014. }
  3015. ]
  3016. }
  3017. }
  3018. }
  3019. },
  3020. "walk1": {
  3021. "slots": {
  3022. "biyan": {
  3023. "attachment": [
  3024. { "time": 1.1, "name": "biyan" },
  3025. { "time": 1.2, "name": null }
  3026. ]
  3027. },
  3028. "hua": {
  3029. "attachment": [
  3030. { "time": 0, "name": null }
  3031. ]
  3032. },
  3033. "youyan": {
  3034. "attachment": [
  3035. { "time": 1.1, "name": null },
  3036. { "time": 1.2, "name": "youyan" }
  3037. ]
  3038. },
  3039. "zuoyan": {
  3040. "attachment": [
  3041. { "time": 1.1, "name": null },
  3042. { "time": 1.2, "name": "zuoyan" }
  3043. ]
  3044. }
  3045. },
  3046. "bones": {
  3047. "root": {
  3048. "rotate": [
  3049. { "time": 0, "angle": 0 }
  3050. ],
  3051. "translate": [
  3052. { "time": 0, "x": 0, "y": 0 }
  3053. ],
  3054. "scale": [
  3055. { "time": 0, "x": 0.65, "y": 0.65 }
  3056. ]
  3057. },
  3058. "bone": {
  3059. "rotate": [
  3060. { "time": 0, "angle": 0, "curve": "stepped" },
  3061. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3062. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3063. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3064. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3065. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3066. { "time": 1, "angle": 0, "curve": "stepped" },
  3067. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3068. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3069. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3070. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3071. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3072. { "time": 2, "angle": 0 }
  3073. ],
  3074. "translate": [
  3075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3076. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3077. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3078. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3079. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3080. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3081. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3082. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3083. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3084. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3085. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3086. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3087. { "time": 2, "x": 0, "y": 0 }
  3088. ],
  3089. "scale": [
  3090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3091. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3092. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3093. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3094. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3095. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3096. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3097. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3098. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3099. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3100. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3101. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3102. { "time": 2, "x": 1, "y": 1 }
  3103. ]
  3104. },
  3105. "bone2": {
  3106. "rotate": [
  3107. { "time": 0, "angle": 0, "curve": "stepped" },
  3108. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3109. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3110. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3111. { "time": 1, "angle": 0, "curve": "stepped" },
  3112. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3113. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3114. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3115. { "time": 2, "angle": 0 }
  3116. ],
  3117. "translate": [
  3118. { "time": 0, "x": 0, "y": 0 },
  3119. { "time": 0.1667, "x": 0, "y": 1 },
  3120. { "time": 0.5, "x": 0, "y": 0 },
  3121. { "time": 0.6667, "x": 0, "y": 1 },
  3122. { "time": 1, "x": 0, "y": 0 },
  3123. { "time": 1.1667, "x": 0, "y": 1 },
  3124. { "time": 1.5, "x": 0, "y": 0 },
  3125. { "time": 1.6667, "x": 0, "y": 1 },
  3126. { "time": 2, "x": 0, "y": 0 }
  3127. ],
  3128. "scale": [
  3129. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3130. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3131. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3132. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3133. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3134. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3135. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3136. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3137. { "time": 2, "x": 1, "y": 1 }
  3138. ]
  3139. },
  3140. "bone3": {
  3141. "rotate": [
  3142. { "time": 0, "angle": 0, "curve": "stepped" },
  3143. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3144. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3145. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3146. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3147. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3148. { "time": 1, "angle": 0, "curve": "stepped" },
  3149. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3150. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3151. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3152. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3153. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3154. { "time": 2, "angle": 0 }
  3155. ],
  3156. "translate": [
  3157. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3163. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3164. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3165. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3166. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3168. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3169. { "time": 2, "x": 0, "y": 0 }
  3170. ],
  3171. "scale": [
  3172. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 2, "x": 1, "y": 1 }
  3185. ]
  3186. },
  3187. "bone4": {
  3188. "rotate": [
  3189. {
  3190. "time": 0,
  3191. "angle": -0.19,
  3192. "curve": [ 0.25, 0, 0.75, 1 ]
  3193. },
  3194. {
  3195. "time": 0.5,
  3196. "angle": 0.81,
  3197. "curve": [ 0.25, 0, 0.75, 1 ]
  3198. },
  3199. {
  3200. "time": 1,
  3201. "angle": -0.19,
  3202. "curve": [ 0.25, 0, 0.75, 1 ]
  3203. },
  3204. {
  3205. "time": 1.5,
  3206. "angle": 0.81,
  3207. "curve": [ 0.25, 0, 0.75, 1 ]
  3208. },
  3209. { "time": 2, "angle": -0.19 }
  3210. ],
  3211. "translate": [
  3212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 2, "x": 0, "y": 0 }
  3217. ],
  3218. "scale": [
  3219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 2, "x": 1, "y": 1 }
  3224. ]
  3225. },
  3226. "bone5": {
  3227. "rotate": [
  3228. { "time": 0, "angle": 0, "curve": "stepped" },
  3229. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3230. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3231. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3232. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3233. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3234. { "time": 1, "angle": 0, "curve": "stepped" },
  3235. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3236. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3237. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3238. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3239. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3240. { "time": 2, "angle": 0 }
  3241. ],
  3242. "translate": [
  3243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3246. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3247. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3248. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3249. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3250. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3255. { "time": 2, "x": 0, "y": 0 }
  3256. ],
  3257. "scale": [
  3258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 2, "x": 1, "y": 1 }
  3271. ]
  3272. },
  3273. "bone6": {
  3274. "rotate": [
  3275. {
  3276. "time": 0,
  3277. "angle": -308.26,
  3278. "curve": [ 0.25, 0, 0.75, 1 ]
  3279. },
  3280. {
  3281. "time": 0.5,
  3282. "angle": 0.14,
  3283. "curve": [ 0.25, 0, 0.75, 1 ]
  3284. },
  3285. {
  3286. "time": 1,
  3287. "angle": -308.26,
  3288. "curve": [ 0.25, 0, 0.75, 1 ]
  3289. },
  3290. {
  3291. "time": 1.5,
  3292. "angle": 0.14,
  3293. "curve": [ 0.25, 0, 0.75, 1 ]
  3294. },
  3295. { "time": 2, "angle": -308.26 }
  3296. ],
  3297. "translate": [
  3298. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 2, "x": 0, "y": 0 }
  3303. ],
  3304. "scale": [
  3305. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3308. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 2, "x": 1, "y": 1 }
  3310. ]
  3311. },
  3312. "bone7": {
  3313. "rotate": [
  3314. { "time": 0, "angle": 0, "curve": "stepped" },
  3315. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3316. { "time": 1, "angle": 0, "curve": "stepped" },
  3317. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3318. { "time": 2, "angle": 0 }
  3319. ],
  3320. "translate": [
  3321. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3322. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3323. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3324. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3325. { "time": 2, "x": 0, "y": 0 }
  3326. ],
  3327. "scale": [
  3328. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3329. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3331. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 2, "x": 1, "y": 1 }
  3333. ]
  3334. },
  3335. "bone8": {
  3336. "rotate": [
  3337. { "time": 0, "angle": 0, "curve": "stepped" },
  3338. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3339. { "time": 1, "angle": 0, "curve": "stepped" },
  3340. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3341. { "time": 2, "angle": 0 }
  3342. ],
  3343. "translate": [
  3344. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 2, "x": 0, "y": 0 }
  3349. ],
  3350. "scale": [
  3351. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 2, "x": 1, "y": 1 }
  3356. ]
  3357. },
  3358. "bone9": {
  3359. "rotate": [
  3360. {
  3361. "time": 0,
  3362. "angle": 316.69,
  3363. "curve": [ 0.25, 0, 0.75, 1 ]
  3364. },
  3365. {
  3366. "time": 0.5,
  3367. "angle": -1.14,
  3368. "curve": [ 0.25, 0, 0.75, 1 ]
  3369. },
  3370. {
  3371. "time": 1,
  3372. "angle": 316.69,
  3373. "curve": [ 0.25, 0, 0.75, 1 ]
  3374. },
  3375. {
  3376. "time": 1.5,
  3377. "angle": -1.14,
  3378. "curve": [ 0.25, 0, 0.75, 1 ]
  3379. },
  3380. { "time": 2, "angle": 316.69 }
  3381. ],
  3382. "translate": [
  3383. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 2, "x": 0, "y": 0 }
  3388. ],
  3389. "scale": [
  3390. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3391. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3392. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3393. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3394. { "time": 2, "x": 1, "y": 1 }
  3395. ]
  3396. },
  3397. "bone10": {
  3398. "rotate": [
  3399. {
  3400. "time": 0,
  3401. "angle": -25.04,
  3402. "curve": [ 0.25, 0, 0.75, 1 ]
  3403. },
  3404. {
  3405. "time": 0.5,
  3406. "angle": -11.38,
  3407. "curve": [ 0.25, 0, 0.75, 1 ]
  3408. },
  3409. {
  3410. "time": 1,
  3411. "angle": -25.04,
  3412. "curve": [ 0.25, 0, 0.75, 1 ]
  3413. },
  3414. {
  3415. "time": 1.5,
  3416. "angle": -11.38,
  3417. "curve": [ 0.25, 0, 0.75, 1 ]
  3418. },
  3419. { "time": 2, "angle": -25.04 }
  3420. ],
  3421. "translate": [
  3422. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3423. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3424. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3425. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 2, "x": 0, "y": 0 }
  3427. ],
  3428. "scale": [
  3429. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3430. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3431. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3432. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3433. { "time": 2, "x": 1, "y": 1 }
  3434. ]
  3435. },
  3436. "bone11": {
  3437. "rotate": [
  3438. { "time": 0, "angle": 0, "curve": "stepped" },
  3439. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3440. { "time": 1, "angle": 0, "curve": "stepped" },
  3441. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3442. { "time": 2, "angle": 0 }
  3443. ],
  3444. "translate": [
  3445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 2, "x": 0, "y": 0 }
  3450. ],
  3451. "scale": [
  3452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3453. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 2, "x": 1, "y": 1 }
  3457. ]
  3458. },
  3459. "bone12": {
  3460. "rotate": [
  3461. { "time": 0, "angle": 0, "curve": "stepped" },
  3462. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3463. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3464. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3465. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3466. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3467. { "time": 1, "angle": 0, "curve": "stepped" },
  3468. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3469. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3470. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3471. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3472. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3473. { "time": 2, "angle": 0 }
  3474. ],
  3475. "translate": [
  3476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3486. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3487. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3488. { "time": 2, "x": 0, "y": 0 }
  3489. ],
  3490. "scale": [
  3491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3492. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3493. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3499. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3500. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3501. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 2, "x": 1, "y": 1 }
  3504. ]
  3505. },
  3506. "bone13": {
  3507. "rotate": [
  3508. { "time": 0, "angle": -12.76 },
  3509. { "time": 0.1667, "angle": -3.88 },
  3510. { "time": 0.3333, "angle": 22.84 },
  3511. { "time": 0.5, "angle": 42.33 },
  3512. { "time": 0.6667, "angle": 13.94 },
  3513. { "time": 0.8333, "angle": -8.39 },
  3514. { "time": 1, "angle": -12.76 },
  3515. { "time": 1.1667, "angle": -3.88 },
  3516. { "time": 1.3333, "angle": 22.84 },
  3517. { "time": 1.5, "angle": 42.33 },
  3518. { "time": 1.6667, "angle": 13.94 },
  3519. { "time": 1.8333, "angle": -8.39 },
  3520. { "time": 2, "angle": -12.76 }
  3521. ],
  3522. "translate": [
  3523. { "time": 0, "x": 0.32, "y": 1.17, "curve": "stepped" },
  3524. { "time": 1, "x": 0.32, "y": 1.17, "curve": "stepped" },
  3525. { "time": 2, "x": 0.32, "y": 1.17 }
  3526. ],
  3527. "scale": [
  3528. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3529. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3530. { "time": 2, "x": 1, "y": 1 }
  3531. ]
  3532. },
  3533. "bone14": {
  3534. "rotate": [
  3535. { "time": 0, "angle": 0 },
  3536. { "time": 0.1667, "angle": 10.34 },
  3537. { "time": 0.3333, "angle": 12.23 },
  3538. { "time": 0.5, "angle": 0 },
  3539. { "time": 0.6667, "angle": 46.41 },
  3540. { "time": 0.8333, "angle": 41.46 },
  3541. { "time": 1, "angle": 0 },
  3542. { "time": 1.1667, "angle": 10.34 },
  3543. { "time": 1.3333, "angle": 12.23 },
  3544. { "time": 1.5, "angle": 0 },
  3545. { "time": 1.6667, "angle": 46.41 },
  3546. { "time": 1.8333, "angle": 41.46 },
  3547. { "time": 2, "angle": 0 }
  3548. ],
  3549. "translate": [
  3550. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 0.5, "x": 0, "y": 0 },
  3554. { "time": 0.6667, "x": -0.38, "y": -0.39 },
  3555. { "time": 0.8333, "x": -0.65, "y": -0.56 },
  3556. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3557. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3558. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3559. { "time": 1.5, "x": 0, "y": 0 },
  3560. { "time": 1.6667, "x": -0.38, "y": -0.39 },
  3561. { "time": 1.8333, "x": -0.65, "y": -0.56 },
  3562. { "time": 2, "x": 0, "y": 0 }
  3563. ],
  3564. "scale": [
  3565. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3566. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3567. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3568. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3569. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3570. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3571. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3572. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3573. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3575. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3576. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 2, "x": 1, "y": 1 }
  3578. ]
  3579. },
  3580. "bone15": {
  3581. "rotate": [
  3582. { "time": 0, "angle": -11.49 },
  3583. { "time": 0.1667, "angle": -6.37 },
  3584. { "time": 0.3333, "angle": -28.82 },
  3585. { "time": 0.5, "angle": 0 },
  3586. { "time": 0.6667, "angle": -9.87 },
  3587. { "time": 0.8333, "angle": -11.89 },
  3588. { "time": 1, "angle": -11.49 },
  3589. { "time": 1.1667, "angle": -6.37 },
  3590. { "time": 1.3333, "angle": -28.82 },
  3591. { "time": 1.5, "angle": 0 },
  3592. { "time": 1.6667, "angle": -9.87 },
  3593. { "time": 1.8333, "angle": -11.89 },
  3594. { "time": 2, "angle": -11.49 }
  3595. ],
  3596. "translate": [
  3597. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3599. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3600. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3601. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3602. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3603. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3604. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3605. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3606. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3607. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3608. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3609. { "time": 2, "x": 0, "y": 0 }
  3610. ],
  3611. "scale": [
  3612. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3613. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3614. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3615. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3616. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3617. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3618. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3619. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3620. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3621. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3622. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3623. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 2, "x": 1, "y": 1 }
  3625. ]
  3626. },
  3627. "bone16": {
  3628. "rotate": [
  3629. { "time": 0, "angle": 18.24 },
  3630. { "time": 0.1667, "angle": -12.25 },
  3631. { "time": 0.3333, "angle": -29.17 },
  3632. { "time": 0.5, "angle": -30.91 },
  3633. { "time": 0.6667, "angle": -15.23 },
  3634. { "time": 0.8333, "angle": 0.45 },
  3635. { "time": 1, "angle": 18.24 },
  3636. { "time": 1.1667, "angle": -12.25 },
  3637. { "time": 1.3333, "angle": -29.17 },
  3638. { "time": 1.5, "angle": -30.91 },
  3639. { "time": 1.6667, "angle": -15.23 },
  3640. { "time": 1.8333, "angle": 0.45 },
  3641. { "time": 2, "angle": 18.24 }
  3642. ],
  3643. "translate": [
  3644. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3648. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3649. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3651. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3652. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3653. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3654. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3655. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 2, "x": 0, "y": 0 }
  3657. ],
  3658. "scale": [
  3659. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 2, "x": 1, "y": 1 }
  3672. ]
  3673. },
  3674. "bone17": {
  3675. "rotate": [
  3676. { "time": 0, "angle": 0 },
  3677. { "time": 0.1667, "angle": 43.83 },
  3678. { "time": 0.3333, "angle": 34.96 },
  3679. { "time": 0.5, "angle": 0 },
  3680. { "time": 0.6667, "angle": 3.9 },
  3681. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3682. { "time": 1, "angle": 0 },
  3683. { "time": 1.1667, "angle": 43.83 },
  3684. { "time": 1.3333, "angle": 34.96 },
  3685. { "time": 1.5, "angle": 0 },
  3686. { "time": 1.6667, "angle": 3.9 },
  3687. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3688. { "time": 2, "angle": 0 }
  3689. ],
  3690. "translate": [
  3691. { "time": 0, "x": 0, "y": 0 },
  3692. { "time": 0.1667, "x": -3.07, "y": -1.32 },
  3693. { "time": 0.3333, "x": -1.39, "y": -1.49 },
  3694. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3695. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3696. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3697. { "time": 1, "x": 0, "y": 0 },
  3698. { "time": 1.1667, "x": -3.07, "y": -1.32 },
  3699. { "time": 1.3333, "x": -1.39, "y": -1.49 },
  3700. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1.8333, "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.1667, "x": 1, "y": 1, "curve": "stepped" },
  3708. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3710. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3711. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3712. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3713. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3714. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3715. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3716. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3717. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 2, "x": 1, "y": 1 }
  3719. ]
  3720. },
  3721. "bone18": {
  3722. "rotate": [
  3723. { "time": 0, "angle": 0, "curve": "stepped" },
  3724. { "time": 0.1667, "angle": 0 },
  3725. { "time": 0.3333, "angle": 14.2 },
  3726. { "time": 0.5, "angle": 2.79 },
  3727. { "time": 0.6667, "angle": 13.88 },
  3728. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3729. { "time": 1, "angle": 0, "curve": "stepped" },
  3730. { "time": 1.1667, "angle": 0 },
  3731. { "time": 1.3333, "angle": 14.2 },
  3732. { "time": 1.5, "angle": 2.79 },
  3733. { "time": 1.6667, "angle": 13.88 },
  3734. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3735. { "time": 2, "angle": 0 }
  3736. ],
  3737. "translate": [
  3738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3739. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3741. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3742. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3743. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3744. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3745. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3746. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3747. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3748. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3749. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3750. { "time": 2, "x": 0, "y": 0 }
  3751. ],
  3752. "scale": [
  3753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3755. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3756. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3757. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3758. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3760. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3762. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 2, "x": 1, "y": 1 }
  3766. ]
  3767. },
  3768. "bone19": {
  3769. "rotate": [
  3770. { "time": 0, "angle": 4.84 },
  3771. { "time": 0.5, "angle": 1.78 },
  3772. { "time": 1, "angle": 4.84 },
  3773. { "time": 1.5, "angle": 1.78 },
  3774. { "time": 2, "angle": 4.84 }
  3775. ],
  3776. "translate": [
  3777. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3778. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3779. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3780. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3781. { "time": 2, "x": 0, "y": 0 }
  3782. ],
  3783. "scale": [
  3784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3785. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3786. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 2, "x": 1, "y": 1 }
  3789. ]
  3790. },
  3791. "bone20": {
  3792. "rotate": [
  3793. { "time": 0, "angle": -11.19 },
  3794. { "time": 0.5, "angle": 1.78 },
  3795. { "time": 1, "angle": -11.19 },
  3796. { "time": 1.5, "angle": 1.78 },
  3797. { "time": 2, "angle": -11.19 }
  3798. ],
  3799. "translate": [
  3800. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3801. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3802. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3803. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3804. { "time": 2, "x": 0, "y": 0 }
  3805. ],
  3806. "scale": [
  3807. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3808. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3809. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3810. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3811. { "time": 2, "x": 1, "y": 1 }
  3812. ]
  3813. },
  3814. "bone21": {
  3815. "rotate": [
  3816. { "time": 0, "angle": 3.85 },
  3817. { "time": 0.5, "angle": 1.78 },
  3818. { "time": 1, "angle": 3.85 },
  3819. { "time": 1.5, "angle": 1.78 },
  3820. { "time": 2, "angle": 3.85 }
  3821. ],
  3822. "translate": [
  3823. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3824. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3825. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3826. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3827. { "time": 2, "x": 0, "y": 0 }
  3828. ],
  3829. "scale": [
  3830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3831. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3832. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3833. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3834. { "time": 2, "x": 1, "y": 1 }
  3835. ]
  3836. },
  3837. "bone22": {
  3838. "rotate": [
  3839. { "time": 0, "angle": 1.55 },
  3840. { "time": 0.5, "angle": 1.78 },
  3841. { "time": 1, "angle": 1.55 },
  3842. { "time": 1.5, "angle": 1.78 },
  3843. { "time": 2, "angle": 1.55 }
  3844. ],
  3845. "translate": [
  3846. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3850. { "time": 2, "x": 0, "y": 0 }
  3851. ],
  3852. "scale": [
  3853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 2, "x": 1, "y": 1 }
  3858. ]
  3859. },
  3860. "bone23": {
  3861. "rotate": [
  3862. { "time": 0, "angle": -4.42 },
  3863. { "time": 0.5, "angle": 1.78 },
  3864. { "time": 1, "angle": -4.42 },
  3865. { "time": 1.5, "angle": 1.78 },
  3866. { "time": 2, "angle": -4.42 }
  3867. ],
  3868. "translate": [
  3869. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3870. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3871. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3872. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3873. { "time": 2, "x": 0, "y": 0 }
  3874. ],
  3875. "scale": [
  3876. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3877. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3878. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3879. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3880. { "time": 2, "x": 1, "y": 1 }
  3881. ]
  3882. },
  3883. "bone24": {
  3884. "rotate": [
  3885. { "time": 0, "angle": -4.42 },
  3886. { "time": 0.5, "angle": 1.78 },
  3887. { "time": 1, "angle": -4.42 },
  3888. { "time": 1.5, "angle": 1.78 },
  3889. { "time": 2, "angle": -4.42 }
  3890. ],
  3891. "translate": [
  3892. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 2, "x": 0, "y": 0 }
  3897. ],
  3898. "scale": [
  3899. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3900. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3901. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3902. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3903. { "time": 2, "x": 1, "y": 1 }
  3904. ]
  3905. },
  3906. "bone25": {
  3907. "rotate": [
  3908. { "time": 0, "angle": 0, "curve": "stepped" },
  3909. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3910. { "time": 1, "angle": 0, "curve": "stepped" },
  3911. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3912. { "time": 2, "angle": 0 }
  3913. ],
  3914. "translate": [
  3915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3916. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3917. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3918. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3919. { "time": 2, "x": 0, "y": 0 }
  3920. ],
  3921. "scale": [
  3922. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 2, "x": 1, "y": 1 }
  3927. ]
  3928. },
  3929. "bone26": {
  3930. "rotate": [
  3931. { "time": 0, "angle": -5.41 },
  3932. { "time": 0.5, "angle": 0.5 },
  3933. { "time": 1, "angle": -5.41 },
  3934. { "time": 1.5, "angle": 0.5 },
  3935. { "time": 2, "angle": -5.41 }
  3936. ],
  3937. "translate": [
  3938. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3939. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3940. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3941. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3942. { "time": 2, "x": 0, "y": 0 }
  3943. ],
  3944. "scale": [
  3945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3946. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3947. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 2, "x": 1, "y": 1 }
  3950. ]
  3951. },
  3952. "bone27": {
  3953. "rotate": [
  3954. { "time": 0, "angle": -5.41 },
  3955. { "time": 0.5, "angle": 0.5 },
  3956. { "time": 1, "angle": -5.41 },
  3957. { "time": 1.5, "angle": 0.5 },
  3958. { "time": 2, "angle": -5.41 }
  3959. ],
  3960. "translate": [
  3961. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3962. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3963. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3964. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3965. { "time": 2, "x": 0, "y": 0 }
  3966. ],
  3967. "scale": [
  3968. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3969. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3970. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 2, "x": 1, "y": 1 }
  3973. ]
  3974. },
  3975. "bone28": {
  3976. "rotate": [
  3977. { "time": 0, "angle": -5.41 },
  3978. { "time": 0.5, "angle": 0.5 },
  3979. { "time": 1, "angle": -5.41 },
  3980. { "time": 1.5, "angle": 0.5 },
  3981. { "time": 2, "angle": -5.41 }
  3982. ],
  3983. "translate": [
  3984. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3985. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3986. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3987. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3988. { "time": 2, "x": 0, "y": 0 }
  3989. ],
  3990. "scale": [
  3991. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3992. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3993. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3994. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3995. { "time": 2, "x": 1, "y": 1 }
  3996. ]
  3997. },
  3998. "bone29": {
  3999. "rotate": [
  4000. { "time": 0, "angle": -5.41 },
  4001. { "time": 0.5, "angle": 0.5 },
  4002. { "time": 1, "angle": -5.41 },
  4003. { "time": 1.5, "angle": 0.5 },
  4004. { "time": 2, "angle": -5.41 }
  4005. ],
  4006. "translate": [
  4007. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4008. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4009. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4010. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4011. { "time": 2, "x": 0, "y": 0 }
  4012. ],
  4013. "scale": [
  4014. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 2, "x": 1, "y": 1 }
  4019. ]
  4020. },
  4021. "bone30": {
  4022. "rotate": [
  4023. { "time": 0, "angle": -5.41 },
  4024. { "time": 0.5, "angle": 0.5 },
  4025. { "time": 1, "angle": -5.41 },
  4026. { "time": 1.5, "angle": 0.5 },
  4027. { "time": 2, "angle": -5.41 }
  4028. ],
  4029. "translate": [
  4030. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4031. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4032. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4033. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4034. { "time": 2, "x": 0, "y": 0 }
  4035. ],
  4036. "scale": [
  4037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4038. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4039. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4040. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4041. { "time": 2, "x": 1, "y": 1 }
  4042. ]
  4043. },
  4044. "bone31": {
  4045. "rotate": [
  4046. {
  4047. "time": 0,
  4048. "angle": -1.36,
  4049. "curve": [ 0.25, 0, 0.75, 1 ]
  4050. },
  4051. {
  4052. "time": 0.5,
  4053. "angle": -0.94,
  4054. "curve": [ 0.25, 0, 0.75, 1 ]
  4055. },
  4056. {
  4057. "time": 1,
  4058. "angle": -1.36,
  4059. "curve": [ 0.25, 0, 0.75, 1 ]
  4060. },
  4061. {
  4062. "time": 1.5,
  4063. "angle": -0.94,
  4064. "curve": [ 0.25, 0, 0.75, 1 ]
  4065. },
  4066. { "time": 2, "angle": -1.36 }
  4067. ],
  4068. "translate": [
  4069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 1, "x": 0, "y": 0 }
  4071. ],
  4072. "scale": [
  4073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4074. { "time": 1, "x": 1, "y": 1 }
  4075. ]
  4076. },
  4077. "bone32": {
  4078. "rotate": [
  4079. { "time": 0, "angle": 0, "curve": "stepped" },
  4080. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4081. { "time": 1, "angle": 0, "curve": "stepped" },
  4082. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4083. { "time": 2, "angle": 0 }
  4084. ],
  4085. "translate": [
  4086. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4090. { "time": 2, "x": 0, "y": 0 }
  4091. ],
  4092. "scale": [
  4093. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 2, "x": 1, "y": 1 }
  4098. ]
  4099. },
  4100. "bone33": {
  4101. "rotate": [
  4102. { "time": 0, "angle": 0, "curve": "stepped" },
  4103. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4104. { "time": 1, "angle": 0, "curve": "stepped" },
  4105. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4106. { "time": 2, "angle": 0 }
  4107. ],
  4108. "translate": [
  4109. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4110. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4111. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4112. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4113. { "time": 2, "x": 0, "y": 0 }
  4114. ],
  4115. "scale": [
  4116. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4119. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4120. { "time": 2, "x": 1, "y": 1 }
  4121. ]
  4122. },
  4123. "bone34": {
  4124. "rotate": [
  4125. { "time": 0, "angle": 0 },
  4126. { "time": 0.5, "angle": -5.95 },
  4127. { "time": 1, "angle": 0 },
  4128. { "time": 1.5, "angle": -5.95 },
  4129. { "time": 2, "angle": 0 }
  4130. ],
  4131. "translate": [
  4132. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 2, "x": 0, "y": 0 }
  4137. ],
  4138. "scale": [
  4139. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4140. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4141. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4142. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4143. { "time": 2, "x": 1, "y": 1 }
  4144. ]
  4145. },
  4146. "bone35": {
  4147. "rotate": [
  4148. { "time": 0, "angle": 0, "curve": "stepped" },
  4149. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4150. { "time": 1, "angle": 0, "curve": "stepped" },
  4151. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4152. { "time": 2, "angle": 0 }
  4153. ],
  4154. "translate": [
  4155. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4156. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4157. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4158. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4159. { "time": 2, "x": 0, "y": 0 }
  4160. ],
  4161. "scale": [
  4162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4164. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4165. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4166. { "time": 2, "x": 1, "y": 1 }
  4167. ]
  4168. },
  4169. "bone36": {
  4170. "rotate": [
  4171. { "time": 0, "angle": 0, "curve": "stepped" },
  4172. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4173. { "time": 1, "angle": 0, "curve": "stepped" },
  4174. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4175. { "time": 2, "angle": 0 }
  4176. ],
  4177. "translate": [
  4178. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4181. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4182. { "time": 2, "x": 0, "y": 0 }
  4183. ],
  4184. "scale": [
  4185. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4186. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4187. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4188. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4189. { "time": 2, "x": 1, "y": 1 }
  4190. ]
  4191. },
  4192. "bone37": {
  4193. "rotate": [
  4194. { "time": 0, "angle": 0 },
  4195. { "time": 0.5, "angle": -5.73 },
  4196. { "time": 1, "angle": 0 },
  4197. { "time": 1.5, "angle": -5.73 },
  4198. { "time": 2, "angle": 0 }
  4199. ],
  4200. "translate": [
  4201. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4202. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4203. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4204. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4205. { "time": 2, "x": 0, "y": 0 }
  4206. ],
  4207. "scale": [
  4208. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4211. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4212. { "time": 2, "x": 1, "y": 1 }
  4213. ]
  4214. },
  4215. "bone38": {
  4216. "rotate": [
  4217. { "time": 0, "angle": 0, "curve": "stepped" },
  4218. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4219. { "time": 1, "angle": 0, "curve": "stepped" },
  4220. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4221. { "time": 2, "angle": 0 }
  4222. ],
  4223. "translate": [
  4224. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4225. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4226. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4227. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4228. { "time": 2, "x": 0, "y": 0 }
  4229. ],
  4230. "scale": [
  4231. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4232. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4233. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4234. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4235. { "time": 2, "x": 1, "y": 1 }
  4236. ]
  4237. },
  4238. "bone39": {
  4239. "rotate": [
  4240. { "time": 0, "angle": 0, "curve": "stepped" },
  4241. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4242. { "time": 1, "angle": 0, "curve": "stepped" },
  4243. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4244. { "time": 2, "angle": 0 }
  4245. ],
  4246. "translate": [
  4247. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4248. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 2, "x": 0, "y": 0 }
  4252. ],
  4253. "scale": [
  4254. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4255. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4256. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4257. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4258. { "time": 2, "x": 1, "y": 1 }
  4259. ]
  4260. },
  4261. "bone40": {
  4262. "rotate": [
  4263. { "time": 0, "angle": 0, "curve": "stepped" },
  4264. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4265. { "time": 1, "angle": 0, "curve": "stepped" },
  4266. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4267. { "time": 2, "angle": 0 }
  4268. ],
  4269. "translate": [
  4270. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4271. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4272. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4273. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4274. { "time": 2, "x": 0, "y": 0 }
  4275. ],
  4276. "scale": [
  4277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4278. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4279. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 2, "x": 1, "y": 1 }
  4282. ]
  4283. },
  4284. "bone41": {
  4285. "rotate": [
  4286. { "time": 0, "angle": 0 },
  4287. { "time": 0.5, "angle": -7.39 },
  4288. { "time": 1, "angle": 0 },
  4289. { "time": 1.5, "angle": -7.39 },
  4290. { "time": 2, "angle": 0 }
  4291. ],
  4292. "translate": [
  4293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4294. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4295. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4296. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4297. { "time": 2, "x": 0, "y": 0 }
  4298. ],
  4299. "scale": [
  4300. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4302. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4303. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4304. { "time": 2, "x": 1, "y": 1 }
  4305. ]
  4306. },
  4307. "bone42": {
  4308. "rotate": [
  4309. { "time": 0, "angle": 0, "curve": "stepped" },
  4310. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4311. { "time": 1, "angle": 0, "curve": "stepped" },
  4312. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4313. { "time": 2, "angle": 0 }
  4314. ],
  4315. "translate": [
  4316. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4317. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4318. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4319. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4320. { "time": 2, "x": 0, "y": 0 }
  4321. ],
  4322. "scale": [
  4323. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4327. { "time": 2, "x": 1, "y": 1 }
  4328. ]
  4329. },
  4330. "bone43": {
  4331. "rotate": [
  4332. { "time": 0, "angle": 0, "curve": "stepped" },
  4333. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4334. { "time": 1, "angle": 0, "curve": "stepped" },
  4335. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4336. { "time": 2, "angle": 0 }
  4337. ],
  4338. "translate": [
  4339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4342. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4343. { "time": 2, "x": 0, "y": 0 }
  4344. ],
  4345. "scale": [
  4346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4347. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4349. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4350. { "time": 2, "x": 1, "y": 1 }
  4351. ]
  4352. },
  4353. "bone44": {
  4354. "rotate": [
  4355. { "time": 0, "angle": 0, "curve": "stepped" },
  4356. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4357. { "time": 1, "angle": 0, "curve": "stepped" },
  4358. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4359. { "time": 2, "angle": 0 }
  4360. ],
  4361. "translate": [
  4362. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4363. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4366. { "time": 2, "x": 0, "y": 0 }
  4367. ],
  4368. "scale": [
  4369. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 2, "x": 1, "y": 1 }
  4374. ]
  4375. },
  4376. "bone45": {
  4377. "rotate": [
  4378. { "time": 0, "angle": 4.37 },
  4379. { "time": 0.5, "angle": 0 },
  4380. { "time": 1, "angle": 4.37 },
  4381. { "time": 1.5, "angle": 0 },
  4382. { "time": 2, "angle": 4.37 }
  4383. ],
  4384. "translate": [
  4385. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4386. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4387. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4388. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4389. { "time": 2, "x": 0, "y": 0 }
  4390. ],
  4391. "scale": [
  4392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4393. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4395. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4396. { "time": 2, "x": 1, "y": 1 }
  4397. ]
  4398. },
  4399. "bone46": {
  4400. "rotate": [
  4401. { "time": 0, "angle": 7.19 },
  4402. { "time": 0.5, "angle": 0.32 },
  4403. { "time": 1, "angle": 7.19 },
  4404. { "time": 1.5, "angle": 0.32 },
  4405. { "time": 2, "angle": 7.19 }
  4406. ],
  4407. "translate": [
  4408. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4409. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4410. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4411. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4412. { "time": 2, "x": 0, "y": 0 }
  4413. ],
  4414. "scale": [
  4415. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4416. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4419. { "time": 2, "x": 1, "y": 1 }
  4420. ]
  4421. },
  4422. "bone47": {
  4423. "rotate": [
  4424. { "time": 0, "angle": 0 },
  4425. { "time": 0.5, "angle": 0.32 },
  4426. { "time": 1, "angle": 0 },
  4427. { "time": 1.5, "angle": 0.32 },
  4428. { "time": 2, "angle": 0 }
  4429. ],
  4430. "translate": [
  4431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4432. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4435. { "time": 2, "x": 0, "y": 0 }
  4436. ],
  4437. "scale": [
  4438. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 2, "x": 1, "y": 1 }
  4443. ]
  4444. },
  4445. "bone48": {
  4446. "rotate": [
  4447. { "time": 0, "angle": 0, "curve": "stepped" },
  4448. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4449. { "time": 1, "angle": 0, "curve": "stepped" },
  4450. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4451. { "time": 2, "angle": 0 }
  4452. ],
  4453. "translate": [
  4454. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4455. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4456. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4457. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4458. { "time": 2, "x": 0, "y": 0 }
  4459. ],
  4460. "scale": [
  4461. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 2, "x": 1, "y": 1 }
  4466. ]
  4467. },
  4468. "bone49": {
  4469. "rotate": [
  4470. { "time": 0, "angle": 0, "curve": "stepped" },
  4471. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4472. { "time": 1, "angle": 0, "curve": "stepped" },
  4473. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4474. { "time": 2, "angle": 0 }
  4475. ],
  4476. "translate": [
  4477. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4480. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4481. { "time": 2, "x": 0, "y": 0 }
  4482. ],
  4483. "scale": [
  4484. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4485. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 2, "x": 1, "y": 1 }
  4489. ]
  4490. },
  4491. "bone50": {
  4492. "rotate": [
  4493. { "time": 0, "angle": 0 },
  4494. { "time": 0.5, "angle": -5.71 },
  4495. { "time": 1, "angle": 0 },
  4496. { "time": 1.5, "angle": -5.71 },
  4497. { "time": 2, "angle": 0 }
  4498. ],
  4499. "translate": [
  4500. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4501. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4502. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4503. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4504. { "time": 2, "x": 0, "y": 0 }
  4505. ],
  4506. "scale": [
  4507. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4508. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4509. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4511. { "time": 2, "x": 1, "y": 1 }
  4512. ]
  4513. },
  4514. "bone51": {
  4515. "rotate": [
  4516. { "time": 0, "angle": 0 },
  4517. { "time": 0.5, "angle": -5.71 },
  4518. { "time": 1, "angle": 0 },
  4519. { "time": 1.5, "angle": -5.71 },
  4520. { "time": 2, "angle": 0 }
  4521. ],
  4522. "translate": [
  4523. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4524. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4527. { "time": 2, "x": 0, "y": 0 }
  4528. ],
  4529. "scale": [
  4530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 2, "x": 1, "y": 1 }
  4535. ]
  4536. },
  4537. "bone55": {
  4538. "rotate": [
  4539. { "time": 0, "angle": 0, "curve": "stepped" },
  4540. { "time": 1, "angle": 0, "curve": "stepped" },
  4541. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4542. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4543. { "time": 1.3333, "angle": 0 }
  4544. ],
  4545. "translate": [
  4546. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 1.3333, "x": 0, "y": 0 }
  4551. ],
  4552. "scale": [
  4553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4554. { "time": 1, "x": 1, "y": 1 },
  4555. { "time": 1.1, "x": 0.56, "y": 1, "curve": "stepped" },
  4556. { "time": 1.2, "x": 0.56, "y": 1 },
  4557. { "time": 1.3333, "x": 1, "y": 1 }
  4558. ]
  4559. },
  4560. "bone56": {
  4561. "rotate": [
  4562. { "time": 0, "angle": 0, "curve": "stepped" },
  4563. { "time": 1, "angle": 0, "curve": "stepped" },
  4564. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4565. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4566. { "time": 1.3333, "angle": 0 }
  4567. ],
  4568. "translate": [
  4569. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4570. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4571. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4572. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 1.3333, "x": 0, "y": 0 }
  4574. ],
  4575. "scale": [
  4576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 1, "x": 1, "y": 1 },
  4578. { "time": 1.1, "x": 0.544, "y": 1, "curve": "stepped" },
  4579. { "time": 1.2, "x": 0.544, "y": 1 },
  4580. { "time": 1.3333, "x": 1, "y": 1 }
  4581. ]
  4582. },
  4583. "bone57": {
  4584. "rotate": [
  4585. { "time": 0, "angle": 0, "curve": "stepped" },
  4586. { "time": 1, "angle": 0, "curve": "stepped" },
  4587. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4588. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4589. { "time": 1.3333, "angle": 0 }
  4590. ],
  4591. "translate": [
  4592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4593. { "time": 1, "x": 0, "y": 0 },
  4594. { "time": 1.1, "x": -2.13, "y": 0, "curve": "stepped" },
  4595. { "time": 1.2, "x": -2.13, "y": 0 },
  4596. { "time": 1.3333, "x": 0, "y": 0 }
  4597. ],
  4598. "scale": [
  4599. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4601. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 1.3333, "x": 1, "y": 1 }
  4604. ]
  4605. },
  4606. "bone58": {
  4607. "rotate": [
  4608. { "time": 0, "angle": 0, "curve": "stepped" },
  4609. { "time": 1, "angle": 0, "curve": "stepped" },
  4610. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4611. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4612. { "time": 1.3333, "angle": 0 }
  4613. ],
  4614. "translate": [
  4615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4618. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4619. { "time": 1.3333, "x": 0, "y": 0 }
  4620. ],
  4621. "scale": [
  4622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 1.3333, "x": 1, "y": 1 }
  4627. ]
  4628. },
  4629. "bone59": {
  4630. "rotate": [
  4631. { "time": 0, "angle": 0, "curve": "stepped" },
  4632. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4633. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4634. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4635. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4636. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4637. { "time": 1, "angle": 0, "curve": "stepped" },
  4638. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4639. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4640. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4641. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4642. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4643. { "time": 2, "angle": 0 }
  4644. ],
  4645. "translate": [
  4646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4647. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4649. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4650. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4654. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4655. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4657. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4658. { "time": 2, "x": 0, "y": 0 }
  4659. ],
  4660. "scale": [
  4661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4662. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4664. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4665. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4666. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4667. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4668. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4669. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4670. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4671. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4672. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4673. { "time": 2, "x": 1, "y": 1 }
  4674. ]
  4675. },
  4676. "bone60": {
  4677. "rotate": [
  4678. { "time": 0, "angle": 0, "curve": "stepped" },
  4679. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4680. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4681. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4682. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4683. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4684. { "time": 1, "angle": 0, "curve": "stepped" },
  4685. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4686. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4687. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4688. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4689. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4690. { "time": 2, "angle": 0 }
  4691. ],
  4692. "translate": [
  4693. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4694. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4695. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4696. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4697. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4698. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4699. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4700. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 2, "x": 0, "y": 0 }
  4706. ],
  4707. "scale": [
  4708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4709. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4710. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4713. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 2, "x": 1, "y": 1 }
  4721. ]
  4722. }
  4723. },
  4724. "deform": {
  4725. "default": {
  4726. "shangshen": {
  4727. "shangshen": [
  4728. {
  4729. "time": 0,
  4730. "offset": 24,
  4731. "vertices": [ -0.82372, 3.20028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
  4732. },
  4733. { "time": 0.5 },
  4734. {
  4735. "time": 1,
  4736. "offset": 24,
  4737. "vertices": [ -0.82372, 3.20028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
  4738. },
  4739. { "time": 1.5 },
  4740. {
  4741. "time": 2,
  4742. "offset": 24,
  4743. "vertices": [ -0.82372, 3.20028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
  4744. }
  4745. ]
  4746. },
  4747. "toufa6": {
  4748. "toufa6": [
  4749. { "time": 0 },
  4750. {
  4751. "time": 0.5,
  4752. "offset": 8,
  4753. "vertices": [ 0.07813, 2.92895, 3.33906, 4.30756, 1.86678, 4.05367, 0, 0, 0, 0, 0, 0, 0, 0, 0.01571, 0.58578 ]
  4754. },
  4755. { "time": 1 },
  4756. {
  4757. "time": 1.5,
  4758. "offset": 8,
  4759. "vertices": [ 0.07813, 2.92895, 3.33906, 4.30756, 1.86678, 4.05367, 0, 0, 0, 0, 0, 0, 0, 0, 0.01571, 0.58578 ]
  4760. },
  4761. { "time": 2 }
  4762. ]
  4763. },
  4764. "youjiap": {
  4765. "youjiap": [
  4766. { "time": 0 },
  4767. {
  4768. "time": 0.5,
  4769. "offset": 68,
  4770. "vertices": [ 8.40677, 2.56524 ]
  4771. },
  4772. { "time": 1 },
  4773. {
  4774. "time": 1.5,
  4775. "offset": 68,
  4776. "vertices": [ 8.40677, 2.56524 ]
  4777. },
  4778. { "time": 2 }
  4779. ]
  4780. }
  4781. }
  4782. }
  4783. }
  4784. }
  4785. }