69008.json 224 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821
  1. {
  2. "skeleton": { "hash": "yGHS41sg6G0GkVzx6JLYbter/MQ", "spine": "3.6.53", "width": 110, "height": 192, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.19, "y": -0.68 },
  6. { "name": "bone2", "parent": "bone", "y": 56.28 },
  7. { "name": "bone3", "parent": "bone2", "length": 15.54, "rotation": 89.05, "x": 0.2, "y": 1.28 },
  8. { "name": "bone4", "parent": "bone3", "length": 15.03, "rotation": 2.93, "x": 15.54 },
  9. { "name": "bone5", "parent": "bone4", "length": 12.95, "rotation": -1.97, "x": 15.03 },
  10. { "name": "bone6", "parent": "bone5", "length": 22.79, "rotation": 140.44, "x": 12.19, "y": 5.94, "color": "2f78fbff" },
  11. { "name": "bone7", "parent": "bone6", "length": 20.79, "rotation": 0.9, "x": 22.79, "color": "2f78fbff" },
  12. { "name": "bone8", "parent": "bone7", "length": 12.89, "rotation": -0.93, "x": 23.83, "y": -0.75, "color": "2f78fbff" },
  13. { "name": "bone9", "parent": "bone5", "length": 25, "rotation": -154.07, "x": 12.96, "y": -20.99 },
  14. { "name": "bone10", "parent": "bone9", "length": 25, "rotation": 3.56, "x": 26.15, "y": 0.19 },
  15. { "name": "bone11", "parent": "bone10", "length": 10.59, "rotation": -1.54, "x": 25.4, "y": 0.13 },
  16. { "name": "bone12", "parent": "bone5", "length": 15.88, "rotation": 176.55, "x": 6.5, "y": 8.72 },
  17. { "name": "bone13", "parent": "bone12", "length": 10.34, "rotation": -0.79, "x": 15.88 },
  18. { "name": "bone14", "parent": "bone13", "length": 10.63, "rotation": -13.55, "x": 10.34 },
  19. { "name": "bone15", "parent": "bone5", "length": 14.52, "rotation": -179.25, "x": 6.5, "y": -11.14 },
  20. { "name": "bone16", "parent": "bone15", "length": 10.62, "rotation": 7.52, "x": 14.52 },
  21. { "name": "bone17", "parent": "bone16", "length": 10.94, "rotation": 16.5, "x": 10.62 },
  22. { "name": "bone18", "parent": "bone5", "x": 11.69, "y": -1.3 },
  23. { "name": "bone19", "parent": "bone5", "length": 42.66, "rotation": 2.19, "x": 15.9, "y": -0.71 },
  24. { "name": "bone20", "parent": "bone19", "length": 12.28, "rotation": -1.5, "x": 18.81, "y": 15.57 },
  25. { "name": "bone21", "parent": "bone19", "length": 12.14, "rotation": -3.58, "x": 17.75, "y": -8.23 },
  26. { "name": "bone22", "parent": "bone19", "length": 5.94, "rotation": 2.1, "x": 18.5, "y": 3.59 },
  27. { "name": "bone23", "parent": "bone19", "length": 5.93, "rotation": 0.68, "x": 29.5, "y": 4.5 },
  28. { "name": "bone24", "parent": "bone19", "length": 6.57, "rotation": 146.63, "x": 53.84, "y": 25.34 },
  29. { "name": "bone25", "parent": "bone24", "length": 6.01, "rotation": 21.26, "x": 6.57 },
  30. { "name": "bone26", "parent": "bone25", "length": 7.13, "rotation": 14.69, "x": 6.01 },
  31. { "name": "bone27", "parent": "bone19", "length": 8.17, "rotation": -127.6, "x": 55.53, "y": -8.05 },
  32. { "name": "bone28", "parent": "bone27", "length": 7.75, "rotation": -30.95, "x": 8.17 },
  33. { "name": "bone29", "parent": "bone28", "length": 8.44, "rotation": -21.62, "x": 7.75 },
  34. { "name": "bone30", "parent": "bone19", "length": 7.84, "rotation": 29.7, "x": 53.39, "y": 17.96 },
  35. { "name": "bone31", "parent": "bone30", "length": 7.17, "rotation": -10.09, "x": 7.84 },
  36. { "name": "bone32", "parent": "bone19", "length": 12.84, "rotation": 18.76, "x": 52.55, "y": 11.62 },
  37. { "name": "bone33", "parent": "bone32", "length": 11.1, "rotation": -11.73, "x": 12.84 },
  38. { "name": "bone34", "parent": "bone33", "length": 7.87, "rotation": -25.6, "x": 11.1 },
  39. { "name": "bone35", "parent": "bone19", "length": 12.83, "rotation": 5.1, "x": 52.06, "y": 6.45 },
  40. { "name": "bone36", "parent": "bone35", "length": 12.96, "rotation": -13.85, "x": 12.83 },
  41. { "name": "bone37", "parent": "bone36", "length": 10.45, "rotation": -30.96, "x": 12.98, "y": -0.15 },
  42. { "name": "bone38", "parent": "bone19", "length": 15.36, "rotation": -34.19, "x": 52.55, "y": -0.08 },
  43. { "name": "bone39", "parent": "bone38", "length": 12.17, "rotation": -16.94, "x": 15.36 },
  44. { "name": "bone40", "parent": "bone39", "length": 13.86, "rotation": -24.94, "x": 12.17 },
  45. { "name": "bone41", "parent": "bone19", "length": 11.23, "rotation": -73.75, "x": 58.07, "y": -18.36 },
  46. { "name": "bone42", "parent": "bone41", "length": 8.71, "rotation": -8.65, "x": 11.23 },
  47. { "name": "bone43", "parent": "bone42", "length": 6.41, "rotation": -16.41, "x": 8.86, "y": -0.03 },
  48. { "name": "bone44", "parent": "bone19", "length": 5.85, "rotation": -108.33, "x": 51.45, "y": -21.07 },
  49. { "name": "bone45", "parent": "bone44", "length": 5.43, "rotation": -1.3, "x": 6.1, "y": 0.22 },
  50. { "name": "bone46", "parent": "bone45", "length": 4.56, "rotation": -18.31, "x": 5.43 },
  51. { "name": "bone47", "parent": "bone19", "length": 7.16, "rotation": -110.25, "x": 52.97, "y": -31.79 },
  52. { "name": "bone48", "parent": "bone47", "length": 5.16, "rotation": -9.24, "x": 7.16 },
  53. { "name": "bone49", "parent": "bone48", "length": 4.3, "rotation": 0.73, "x": 5.16 },
  54. { "name": "bone50", "parent": "bone2", "length": 9.63, "rotation": 90, "x": 1.47, "y": -11.55 },
  55. { "name": "bone51", "parent": "bone2", "length": 15.75, "rotation": -90, "x": -6.41, "y": -13.05 },
  56. { "name": "bone52", "parent": "bone51", "length": 14.25, "rotation": 1.01, "x": 15.75 },
  57. { "name": "bone53", "parent": "bone52", "length": 12.57, "rotation": -73.65, "x": 18.36, "y": -1.2 },
  58. { "name": "bone54", "parent": "bone2", "length": 15.97, "rotation": -83.71, "x": 13.97, "y": -12.8, "color": "2f78fbff" },
  59. { "name": "bone55", "parent": "bone54", "length": 16.57, "rotation": -1.1, "x": 15.97, "color": "2f78fbff" },
  60. { "name": "bone56", "parent": "bone55", "length": 12.86, "rotation": -79.4, "x": 18.64, "y": -0.69, "color": "2f78fbff" },
  61. { "name": "bone57", "parent": "bone2", "length": 6, "rotation": -70.1, "x": -4.91, "y": 2.09 },
  62. { "name": "bone58", "parent": "bone57", "length": 8, "rotation": -0.67, "x": 6.02, "y": 0.6 },
  63. { "name": "bone59", "parent": "bone58", "length": 6.62, "rotation": 3.25, "x": 9.39, "y": 0.9 },
  64. { "name": "bone60", "parent": "bone57", "length": 8, "rotation": 16.29, "x": 9.76, "y": 13.44 },
  65. { "name": "bone61", "parent": "bone60", "length": 6, "rotation": -1.86, "x": 8.31, "y": 0.1 },
  66. { "name": "bone62", "parent": "bone61", "length": 6, "rotation": 1.43, "x": 6.43, "y": 0.2 },
  67. { "name": "bone63", "parent": "bone19", "length": 4.64, "rotation": -2.19, "x": 4.8, "y": 2.54 }
  68. ],
  69. "slots": [
  70. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  71. { "name": "houba", "bone": "bone57", "color": "9b9b9bff", "attachment": "houba" },
  72. { "name": "zuotui", "bone": "bone51", "attachment": "zuotui" },
  73. { "name": "youtui", "bone": "bone54", "attachment": "youtui" },
  74. { "name": "kudang", "bone": "bone50", "attachment": "kudang" },
  75. { "name": "shenti", "bone": "bone3", "attachment": "shenti" },
  76. { "name": "youwaitao", "bone": "bone15", "attachment": "youwaitao" },
  77. { "name": "zuowaitao", "bone": "bone12", "attachment": "zuowaitao" },
  78. { "name": "lingjie", "bone": "bone18", "attachment": "lingjie" },
  79. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  80. { "name": "lian", "bone": "bone19", "attachment": "lian" },
  81. { "name": "zuiba", "bone": "bone63", "attachment": "zuiba" },
  82. { "name": "yaoya", "bone": "bone63" },
  83. { "name": "zuoyan1", "bone": "bone20", "attachment": "zuoyan1" },
  84. { "name": "youyan1", "bone": "bone21", "attachment": "youyan1" },
  85. { "name": "zuoyan2", "bone": "bone20" },
  86. { "name": "youyan2", "bone": "bone21" },
  87. { "name": "biyan", "bone": "bone22" },
  88. { "name": "meimao1", "bone": "bone23", "attachment": "meimao1" },
  89. { "name": "meimao2", "bone": "bone23" },
  90. { "name": "toufa10", "bone": "bone19", "attachment": "toufa10" },
  91. { "name": "toufa9", "bone": "bone47", "attachment": "toufa9" },
  92. { "name": "toufa8", "bone": "bone44", "attachment": "toufa8" },
  93. { "name": "toufa7", "bone": "bone41", "attachment": "toufa7" },
  94. { "name": "toufa6", "bone": "bone38", "attachment": "toufa6" },
  95. { "name": "toufa5", "bone": "bone30", "attachment": "toufa5" },
  96. { "name": "toufa4", "bone": "bone32", "attachment": "toufa4" },
  97. { "name": "toufa3", "bone": "bone35", "attachment": "toufa3" },
  98. { "name": "toufa2", "bone": "bone27", "attachment": "toufa2" },
  99. { "name": "toufa1", "bone": "bone24", "attachment": "toufa1" }
  100. ],
  101. "skins": {
  102. "default": {
  103. "biyan": {
  104. "biyan": { "x": 1.73, "y": -1.13, "rotation": -94.29, "width": 45, "height": 9 }
  105. },
  106. "houba": {
  107. "houba": {
  108. "type": "mesh",
  109. "uvs": [ 0.91888, 0.26999, 0.93646, 0.36555, 0.95472, 0.46474, 0.97127, 0.55468, 0.98786, 0.64483, 1, 0.71082, 1, 0.78641, 1, 0.8655, 1, 1, 0.91687, 1, 0.84376, 0.93739, 0.80227, 0.90186, 0.74703, 0.85455, 0.70979, 0.82266, 0.63329, 0.71771, 0.55597, 0.61164, 0.50827, 0.54619, 0.47697, 0.50325, 0.50044, 0.62321, 0.52368, 0.74195, 0.53781, 0.81417, 0.54906, 0.87168, 0.57416, 1, 0.5207, 1, 0.39401, 1, 0.35869, 0.94336, 0.31323, 0.87045, 0.25055, 0.76992, 0.16511, 0.63288, 0, 0.36807, 1.0E-5, 0.03758, 0.40764, 0.01996, 0.86919, 0, 0.27397, 0.44346, 0.38367, 0.69362, 0.70275, 0.52986, 0.81344, 0.70041, 0.48869, 0.92843, 0.43368, 0.80543, 0.46143, 0.86748, 0.32825, 0.56723, 0.65866, 0.45368, 0.7578, 0.61468, 0.88522, 0.81568, 0.96189, 0.93879, 0.91985, 0.8713, 0.85306, 0.76404 ],
  110. "triangles": [ 36, 42, 3, 4, 36, 3, 46, 36, 4, 5, 46, 4, 43, 46, 5, 6, 43, 5, 13, 36, 46, 12, 46, 43, 45, 43, 6, 7, 45, 6, 11, 12, 43, 11, 43, 45, 10, 11, 45, 44, 45, 7, 10, 45, 44, 9, 10, 44, 44, 7, 8, 9, 44, 8, 41, 0, 1, 2, 35, 1, 42, 35, 2, 3, 42, 2, 14, 35, 42, 14, 42, 36, 13, 14, 36, 12, 13, 46, 41, 31, 32, 41, 32, 0, 17, 33, 31, 35, 41, 1, 41, 17, 31, 16, 17, 41, 15, 16, 41, 35, 15, 41, 14, 15, 35, 34, 18, 19, 38, 34, 19, 38, 19, 20, 39, 38, 20, 26, 27, 38, 26, 38, 39, 39, 20, 21, 37, 39, 21, 25, 26, 39, 25, 39, 37, 24, 25, 37, 22, 23, 37, 24, 37, 23, 22, 37, 21, 40, 33, 17, 40, 17, 18, 28, 33, 40, 34, 40, 18, 27, 28, 40, 27, 40, 34, 27, 34, 38, 33, 30, 31, 29, 30, 33, 28, 29, 33 ],
  111. "vertices": [ 3, 60, 10.29, 11.88, 0.08224, 61, 1.6, 11.84, 0.63114, 62, -4.54, 11.76, 0.28662, 3, 60, 12.71, 10.48, 0.02261, 61, 4.05, 10.52, 0.53935, 62, -2.12, 10.37, 0.43804, 3, 60, 15.21, 9.02, 9.6E-4, 61, 6.6, 9.15, 0.34884, 62, 0.4, 8.94, 0.6502, 2, 61, 8.92, 7.9, 0.15166, 62, 2.68, 7.63, 0.84834, 2, 61, 11.23, 6.65, 0.0297, 62, 4.96, 6.33, 0.9703, 2, 61, 12.93, 5.74, 0.00244, 62, 6.64, 5.37, 0.99756, 1, 62, 8.1, 3.85, 1, 1, 62, 9.63, 2.25, 1, 1, 62, 12.24, -0.47, 1, 2, 61, 16.04, -2.62, 8.5E-4, 62, 9.54, -3.06, 0.99915, 2, 61, 12.48, -3.72, 0.07488, 62, 5.95, -4.07, 0.92512, 3, 60, 18.63, -4.58, 0.00438, 61, 10.46, -4.34, 0.24584, 62, 3.91, -4.65, 0.74978, 3, 60, 15.91, -5.33, 0.04807, 61, 7.77, -5.17, 0.62875, 62, 1.2, -5.41, 0.32318, 3, 60, 14.08, -5.83, 0.12285, 61, 5.95, -5.73, 0.77479, 62, -0.63, -5.92, 0.10236, 4, 58, 14.5, 9.88, 6.8E-4, 59, 5.61, 8.67, 0.00137, 60, 9.56, -6.06, 0.56452, 61, 1.44, -6.11, 0.43343, 4, 58, 10.2, 8.33, 0.03887, 59, 1.22, 7.37, 0.02249, 60, 4.99, -6.28, 0.91968, 61, -3.12, -6.49, 0.01896, 3, 58, 7.54, 7.37, 0.14599, 59, -1.48, 6.56, 0.07381, 60, 2.17, -6.43, 0.78019, 3, 58, 5.8, 6.75, 0.33275, 59, -3.26, 6.04, 0.20381, 60, 0.32, -6.52, 0.46344, 3, 58, 9.24, 6, 0.1295, 59, 0.14, 5.1, 0.78237, 60, 3.39, -8.24, 0.08813, 2, 59, 3.5, 4.17, 0.99123, 60, 6.44, -9.94, 0.00877, 2, 59, 5.54, 3.6, 0.99943, 60, 8.29, -10.97, 5.7E-4, 1, 59, 7.17, 3.15, 1, 1, 59, 10.8, 2.14, 1, 1, 59, 9.49, 0.13, 1, 2, 58, 16.04, -3.39, 0.0651, 59, 6.39, -4.66, 0.9349, 3, 57, 19.84, -3.54, 8.8E-4, 58, 13.87, -3.98, 0.18154, 59, 4.19, -5.13, 0.81758, 3, 57, 17.04, -4.28, 0.02282, 58, 11.08, -4.75, 0.51602, 59, 1.37, -5.74, 0.46116, 3, 57, 13.19, -5.29, 0.1898, 58, 7.24, -5.8, 0.77018, 59, -2.53, -6.58, 0.04002, 2, 57, 7.93, -6.67, 0.78136, 58, 2, -7.24, 0.21864, 1, 57, -2.22, -9.33, 1, 1, 57, -10.2, -4.65, 1, 4, 57, -1.36, 11.42, 0.24905, 58, -7.5, 10.74, 0.24057, 60, -11.24, 1.18, 0.50899, 61, -19.58, 0.45, 0.0014, 3, 60, 3.48, 15.84, 0.2749, 61, -5.34, 15.58, 0.60756, 62, -11.39, 15.67, 0.11754, 2, 57, 5.83, 0.24, 0.63322, 58, -0.18, -0.36, 0.36678, 3, 58, 8.35, 0.46, 0.71769, 59, -1.06, -0.39, 0.2807, 60, 0.93, -13.28, 0.00162, 3, 59, 2.89, 14.16, 1.0E-5, 60, 8.22, -0.09, 0.42432, 61, -0.09, -0.18, 0.57567, 2, 60, 15.12, -0.14, 7.6E-4, 62, 0.37, -0.23, 0.99924, 1, 59, 7.02, 0.01, 1, 2, 58, 12.19, 0.86, 0.00609, 59, 2.79, -0.2, 0.99391, 2, 58, 14.31, 1.09, 4.3E-4, 59, 4.92, -0.1, 0.99957, 3, 58, 4.04, 0.04, 0.99884, 59, -5.39, -0.56, 6.1E-4, 60, -3.32, -12.42, 5.5E-4, 3, 60, 5.31, 0.1, 0.99103, 61, -3, -0.09, 0.00857, 62, -9.44, -0.06, 3.9E-4, 2, 60, 11.65, -0.11, 0.00193, 61, 3.34, -0.1, 0.99807, 2, 61, 11.37, 0.01, 0.00502, 62, 4.94, -0.32, 0.99498, 1, 62, 9.81, -0.42, 1, 2, 61, 13.58, 0.02, 6.6E-4, 62, 7.14, -0.37, 0.99934, 3, 60, 17.64, -0.21, 1.0E-4, 61, 9.33, 0, 0.01335, 62, 2.89, -0.28, 0.98654 ],
  112. "hull": 33,
  113. "edges": [ 60, 66, 58, 60, 46, 48, 44, 46, 16, 18, 60, 62, 62, 64, 54, 68, 34, 36, 68, 36, 46, 74, 48, 74, 42, 44, 74, 42, 52, 54, 68, 76, 52, 76, 36, 38, 76, 38, 48, 50, 50, 52, 74, 78, 78, 76, 50, 78, 38, 40, 40, 42, 78, 40, 54, 56, 56, 58, 66, 80, 80, 68, 56, 80, 80, 34, 30, 70, 70, 2, 30, 32, 32, 34, 62, 82, 82, 70, 32, 82, 2, 0, 0, 64, 82, 0, 26, 72, 72, 6, 26, 28, 28, 30, 70, 84, 84, 72, 28, 84, 2, 4, 4, 6, 84, 4, 22, 86, 86, 10, 16, 88, 18, 88, 14, 16, 88, 14, 18, 20, 20, 22, 86, 90, 90, 88, 20, 90, 10, 12, 12, 14, 90, 12, 22, 24, 24, 26, 72, 92, 92, 86, 24, 92, 6, 8, 8, 10, 92, 8 ],
  114. "width": 45,
  115. "height": 28
  116. }
  117. },
  118. "kudang": {
  119. "kudang": {
  120. "type": "mesh",
  121. "uvs": [ 1, 0.54538, 1, 1, 0, 1, 0, 0.53228, 0, 0, 1, 0 ],
  122. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  123. "vertices": [ 5.04, -21.38, -4.05, -21.38, -4.05, 14.62, 5.31, 14.62, 15.95, 14.62, 15.95, -21.38 ],
  124. "hull": 6,
  125. "edges": [ 2, 4, 8, 10, 2, 0, 0, 10, 4, 6, 6, 8 ],
  126. "width": 36,
  127. "height": 20
  128. }
  129. },
  130. "lian": {
  131. "lian": {
  132. "type": "mesh",
  133. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  134. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  135. "vertices": [ -3.99, -43.08, -1.28, 27.87, 75.67, 24.93, 72.96, -46.02 ],
  136. "hull": 4,
  137. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  138. "width": 71,
  139. "height": 77
  140. }
  141. },
  142. "lingjie": {
  143. "lingjie": {
  144. "type": "mesh",
  145. "uvs": [ 1, 1, 0.48516, 1, 0, 1, 0, 0, 0.48111, 0, 1, 0 ],
  146. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  147. "vertices": [ -8.13, -11.61, -8.13, 0.75, -8.13, 12.39, 5.87, 12.39, 5.87, 0.84, 5.87, -11.61 ],
  148. "hull": 6,
  149. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  150. "width": 24,
  151. "height": 14
  152. }
  153. },
  154. "meimao1": {
  155. "meimao1": { "x": 3.29, "y": -1.49, "rotation": -92.86, "width": 47, "height": 8 }
  156. },
  157. "meimao2": {
  158. "meimao2": { "x": 4.81, "y": -1.07, "rotation": -92.86, "width": 42, "height": 11 }
  159. },
  160. "shenti": {
  161. "shenti": {
  162. "type": "mesh",
  163. "uvs": [ 1, 0.18102, 1, 0.21902, 1, 0.25892, 1, 0.48515, 1, 0.52251, 1, 0.55576, 1, 0.72961, 1, 0.78471, 1, 0.84836, 1, 1, 0.4196, 1, 0, 1, 0, 0.84646, 0, 0.78661, 0, 0.72866, 0, 0.55291, 0, 0.50636, 0, 0.46351, 0, 0.24718, 0, 0.21237, 0, 0.17342, 0, 0, 0.43946, 0, 1, 0, 0.40769, 0.47054, 0.41166, 0.72768, 0.42213, 0.25664, 0.42455, 0.22089, 0.42735, 0.17938, 0.40836, 0.514, 0.40898, 0.5539, 0.41318, 0.77995, 0.41512, 0.8464 ],
  164. "triangles": [ 10, 8, 9, 11, 32, 10, 10, 32, 8, 11, 12, 32, 32, 7, 8, 12, 31, 32, 12, 13, 31, 32, 31, 7, 13, 25, 31, 13, 14, 25, 31, 6, 7, 31, 25, 6, 25, 5, 6, 14, 30, 25, 14, 15, 30, 25, 30, 5, 30, 4, 5, 15, 29, 30, 30, 29, 4, 15, 16, 29, 29, 3, 4, 16, 24, 29, 29, 24, 3, 16, 17, 24, 24, 17, 18, 24, 26, 3, 26, 2, 3, 26, 24, 18, 26, 27, 2, 27, 1, 2, 27, 26, 19, 26, 18, 19, 27, 28, 1, 28, 27, 20, 28, 0, 1, 27, 19, 20, 28, 22, 0, 22, 23, 0, 22, 28, 21, 28, 20, 21 ],
  165. "vertices": [ 3, 5, 16.7, -20.91, 0.95215, 4, 31, -21.48, 0.04754, 3, 47.6, -19.86, 3.2E-4, 3, 5, 14.42, -20.91, 0.92282, 4, 28.72, -21.4, 0.07558, 3, 45.32, -19.9, 0.0016, 3, 5, 12.02, -20.91, 0.88029, 4, 26.33, -21.31, 0.11488, 3, 42.92, -19.94, 0.00482, 3, 5, -1.55, -20.91, 0.40077, 4, 12.76, -20.85, 0.46909, 3, 29.35, -20.17, 0.13014, 3, 5, -3.79, -20.91, 0.31109, 4, 10.52, -20.77, 0.50623, 3, 27.11, -20.2, 0.18269, 3, 5, -5.79, -20.91, 0.23948, 4, 8.53, -20.7, 0.5208, 3, 25.11, -20.24, 0.23972, 3, 5, -16.22, -20.91, 0.03075, 4, -1.9, -20.34, 0.31912, 3, 14.68, -20.41, 0.65013, 3, 5, -19.53, -20.91, 0.01075, 4, -5.2, -20.23, 0.21483, 3, 11.38, -20.47, 0.77443, 3, 5, -23.34, -20.91, 0.00169, 4, -9.02, -20.1, 0.11491, 3, 7.56, -20.53, 0.8834, 2, 4, -18.11, -19.78, 0.01735, 3, -1.54, -20.68, 0.98265, 2, 4, -17.41, 0.52, 1.0E-4, 3, -1.88, -0.37, 0.9999, 2, 4, -16.91, 15.2, 0.09073, 3, -2.12, 14.31, 0.90927, 2, 4, -7.7, 14.88, 0.2951, 3, 7.09, 14.47, 0.7049, 2, 4, -4.11, 14.76, 0.47799, 3, 10.68, 14.53, 0.52201, 3, 5, -16.16, 14.09, 0.00133, 4, -0.64, 14.64, 0.67432, 3, 14.16, 14.58, 0.32435, 3, 5, -5.62, 14.09, 0.16297, 4, 9.9, 14.27, 0.8274, 3, 24.7, 14.76, 0.00963, 3, 5, -2.82, 14.09, 0.2899, 4, 12.69, 14.18, 0.70944, 3, 27.49, 14.81, 6.6E-4, 2, 5, -0.25, 14.09, 0.43629, 4, 15.26, 14.09, 0.56371, 2, 5, 12.73, 14.09, 0.96374, 4, 28.23, 13.64, 0.03626, 2, 5, 14.82, 14.09, 0.984, 4, 30.32, 13.57, 0.016, 2, 5, 17.15, 14.09, 0.99531, 4, 32.66, 13.49, 0.00469, 1, 5, 27.56, 14.09, 1, 1, 5, 27.56, -1.29, 1, 2, 5, 27.56, -20.91, 0.9997, 4, 41.85, -21.85, 3.0E-4, 3, 5, -0.68, -0.18, 0.05605, 4, 14.35, -0.16, 0.94391, 3, 29.88, 0.58, 4.0E-5, 1, 3, 14.46, 0.18, 1, 1, 5, 12.16, -0.69, 1, 1, 5, 14.3, -0.77, 1, 1, 5, 16.79, -0.87, 1, 2, 4, 11.74, -0.09, 0.99989, 3, 27.27, 0.51, 1.1E-4, 3, 5, -5.68, -0.23, 5.0E-5, 4, 9.35, -0.03, 0.99981, 3, 24.88, 0.45, 1.4E-4, 2, 4, -4.21, 0.29, 6.4E-4, 3, 11.32, 0.07, 0.99936, 1, 3, 7.34, -0.06, 1 ],
  166. "hull": 24,
  167. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 34, 48, 48, 6, 34, 36, 52, 48, 36, 52, 6, 4, 52, 4, 36, 38, 54, 52, 38, 54, 4, 2, 54, 2, 38, 40, 40, 42, 44, 56, 56, 54, 40, 56, 2, 0, 0, 46, 56, 0, 32, 34, 48, 58, 32, 58, 6, 8, 58, 8, 30, 32, 50, 60, 60, 58, 30, 60, 8, 10, 60, 10, 28, 30, 28, 50, 10, 12, 50, 12, 26, 28, 62, 50, 26, 62, 12, 14, 62, 14, 22, 24, 24, 26, 20, 64, 64, 62, 24, 64, 14, 16, 16, 18, 64, 16 ],
  168. "width": 35,
  169. "height": 60
  170. }
  171. },
  172. "toufa1": {
  173. "toufa1": {
  174. "type": "mesh",
  175. "uvs": [ 1, 0.20865, 1, 0.37323, 0.79338, 0.37234, 0.64561, 0.37162, 0.51629, 0.37115, 0.48801, 0.45475, 0.45265, 0.54198, 0.44613, 0.62984, 0.43203, 0.73907, 0.41998, 0.87843, 0.40947, 1, 0.31856, 1, 0.22083, 1, 0.13543, 0.88007, 0.03864, 0.72323, 1.0E-5, 0.54614, 1.0E-5, 0.39615, 0.06003, 0.20365, 0.20038, 0.01667, 0.47538, 1.0E-5, 0.64128, 0, 0.30492, 0.35865, 0.27538, 0.58573, 0.40142, 0.21633, 0.29013, 0.47238, 0.28831, 0.70978, 0.305, 0.86992 ],
  176. "triangles": [ 10, 11, 9, 12, 26, 11, 11, 26, 9, 12, 13, 26, 13, 25, 26, 13, 14, 25, 9, 26, 8, 26, 25, 8, 8, 25, 7, 14, 22, 25, 25, 22, 7, 14, 15, 22, 7, 22, 6, 22, 24, 6, 22, 15, 24, 15, 16, 24, 6, 24, 5, 24, 21, 5, 24, 16, 21, 5, 21, 4, 16, 17, 21, 2, 0, 1, 0, 2, 20, 20, 2, 3, 21, 23, 4, 3, 4, 23, 19, 20, 3, 19, 3, 23, 21, 17, 23, 17, 18, 23, 23, 18, 19 ],
  177. "vertices": [ 1, 24, -4.13, 11.04, 1, 1, 24, -0.75, 13.08, 1, 2, 24, 1.58, 9.18, 0.99985, 25, -1.32, 10.37, 1.5E-4, 2, 24, 3.25, 6.39, 0.9769, 25, -0.78, 7.16, 0.0231, 3, 24, 4.72, 3.95, 0.75749, 25, -0.3, 4.36, 0.2414, 26, -5, 5.82, 0.00111, 3, 24, 6.75, 4.46, 0.29104, 25, 1.79, 4.09, 0.67313, 26, -3.05, 5.03, 0.03583, 3, 24, 8.95, 4.88, 0.04232, 25, 3.98, 3.69, 0.71195, 26, -1.03, 4.08, 0.24573, 3, 24, 10.83, 5.85, 5.7E-4, 25, 6.08, 3.91, 0.30924, 26, 1.06, 3.76, 0.69019, 2, 25, 8.72, 4.06, 0.01976, 26, 3.65, 3.24, 0.98024, 1, 26, 6.96, 2.69, 1, 1, 26, 9.85, 2.22, 1, 1, 26, 9.68, 0.23, 1, 1, 26, 9.5, -1.91, 1, 1, 26, 6.48, -3.55, 1, 2, 25, 9.84, -4.54, 0.11839, 26, 2.55, -5.36, 0.88161, 3, 24, 14.19, -3.59, 0.00667, 25, 5.8, -6.11, 0.64678, 26, -1.75, -5.85, 0.34655, 3, 24, 11.11, -5.45, 0.13657, 25, 2.25, -6.73, 0.80521, 26, -5.34, -5.55, 0.05822, 2, 24, 6.47, -6.71, 0.6567, 25, -2.53, -6.22, 0.3433, 2, 24, 1.04, -6.4, 0.9883, 25, -7.48, -3.95, 0.0117, 1, 24, -2.44, -1.43, 1, 1, 24, -4.33, 1.69, 1, 2, 24, 6.87, -0.18, 0.12347, 25, 0.21, -0.27, 0.87653, 2, 25, 5.69, 0.03, 0.96808, 26, -0.3, 0.11, 0.03192, 1, 24, 2.85, -0.13, 1, 1, 25, 2.95, -0.12, 1, 2, 25, 8.57, 0.82, 2.8E-4, 26, 2.69, 0.14, 0.99972, 1, 26, 6.55, 0.19, 1 ],
  178. "hull": 21,
  179. "edges": [ 20, 22, 36, 38, 22, 24, 38, 40, 2, 0, 40, 0, 6, 8, 38, 6, 2, 4, 4, 6, 40, 4, 38, 46, 46, 42, 36, 46, 46, 8, 42, 48, 48, 44, 32, 48, 48, 12, 32, 34, 34, 36, 34, 42, 8, 10, 10, 12, 42, 10, 28, 30, 30, 32, 30, 44, 12, 14, 44, 14, 50, 44, 28, 50, 14, 16, 50, 16, 24, 26, 26, 28, 22, 52, 52, 50, 26, 52, 16, 18, 18, 20, 52, 18 ],
  180. "width": 22,
  181. "height": 24
  182. }
  183. },
  184. "toufa10": {
  185. "toufa10": {
  186. "type": "mesh",
  187. "uvs": [ 1, 0.37709, 1, 0.83182, 0.87012, 0.86304, 0.73277, 0.9961, 0.7246, 1, 0.65592, 0.58787, 0.11633, 0.59958, 0.07545, 0.79279, 0, 0.81035, 0, 0.26976, 0.21934, 0, 0.76548, 0 ],
  188. "triangles": [ 5, 10, 11, 5, 11, 0, 6, 9, 10, 5, 6, 10, 6, 8, 9, 7, 8, 6, 5, 0, 1, 2, 5, 1, 3, 5, 2, 4, 5, 3 ],
  189. "vertices": [ 57.59, -45.43, 29.42, -44.36, 27.85, -34.68, 19.99, -24.21, 19.78, -23.59, 45.5, -19.49, 46.3, 20.44, 34.45, 23.92, 33.57, 29.54, 67.06, 28.26, 83.16, 11.4, 81.61, -28.98 ],
  190. "hull": 12,
  191. "edges": [ 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 22, 20, 22, 16, 18, 20, 18 ],
  192. "width": 74,
  193. "height": 62
  194. }
  195. },
  196. "toufa2": {
  197. "toufa2": {
  198. "type": "mesh",
  199. "uvs": [ 0.92318, 0.20305, 0.99999, 0.39368, 0.99999, 0.57168, 0.99999, 0.69781, 1, 0.8583, 1, 1, 0.76619, 1, 0.65081, 1, 0.63072, 0.90121, 0.6102, 0.80027, 0.5963, 0.73191, 0.58125, 0.65792, 0.53354, 0.55358, 0.45411, 0.48615, 0.35573, 0.43952, 0.23169, 0.44064, 0, 0.47738, 0, 0, 0.43063, 1.0E-5, 0.60663, 1.0E-5, 0.85265, 0.07187, 0.35754, 0.16071, 0.62677, 0.30238, 0.74385, 0.56264, 0.48224, 0.22633, 0.69689, 0.41543, 0.75428, 0.76679, 0.74928, 0.66898, 0.76014, 0.88152 ],
  200. "triangles": [ 5, 28, 4, 7, 28, 6, 5, 6, 28, 7, 8, 28, 8, 9, 28, 9, 26, 28, 28, 26, 4, 26, 3, 4, 9, 10, 26, 10, 27, 26, 26, 27, 3, 10, 11, 27, 27, 2, 3, 11, 23, 27, 27, 23, 2, 11, 12, 23, 23, 1, 2, 12, 25, 23, 23, 25, 1, 12, 13, 25, 13, 22, 25, 25, 0, 1, 25, 22, 0, 13, 24, 22, 13, 14, 24, 16, 17, 15, 14, 15, 21, 14, 21, 24, 21, 15, 17, 24, 19, 22, 22, 20, 0, 22, 19, 20, 21, 18, 24, 24, 18, 19, 21, 17, 18 ],
  201. "vertices": [ 2, 27, 12.35, 7.28, 0.40386, 28, -0.16, 8.39, 0.59614, 3, 27, 17.29, 3.78, 0.03001, 28, 5.88, 7.93, 0.91225, 29, -4.66, 6.68, 0.05773, 2, 28, 10.77, 5.79, 0.44349, 29, 0.67, 6.5, 0.55651, 2, 28, 14.24, 4.27, 0.07933, 29, 4.45, 6.36, 0.92067, 2, 28, 18.65, 2.34, 3.0E-5, 29, 9.27, 6.19, 0.99997, 1, 29, 13.51, 6.04, 1, 1, 29, 13.3, -0.03, 1, 1, 29, 13.2, -3.03, 1, 1, 29, 10.22, -3.45, 1, 1, 29, 7.17, -3.87, 1, 2, 28, 10.97, -5.75, 0.00383, 29, 5.11, -4.16, 0.99617, 3, 27, 13.02, -8.99, 0.0027, 28, 8.78, -5.22, 0.09871, 29, 2.88, -4.48, 0.89859, 3, 27, 10.19, -7.16, 0.08765, 28, 5.41, -5.1, 0.52918, 29, -0.3, -5.61, 0.38318, 3, 27, 7.34, -6.71, 0.4064, 28, 2.73, -6.18, 0.50226, 29, -2.39, -7.6, 0.09134, 3, 27, 4.44, -7.05, 0.78167, 28, 0.43, -7.97, 0.20503, 29, -3.88, -10.11, 0.0133, 3, 27, 1.83, -8.95, 0.95153, 28, -0.84, -10.94, 0.04818, 29, -3.96, -13.33, 2.9E-4, 1, 27, -2.44, -13.34, 1, 1, 27, -10.74, -1.67, 1, 1, 27, -1.61, 4.82, 1, 2, 27, 2.12, 7.47, 0.99152, 28, -9.04, 3.29, 0.00848, 2, 27, 8.58, 9.42, 0.736, 28, -4.5, 8.29, 0.264, 1, 27, -0.37, -0.21, 1, 2, 27, 7.8, 0.39, 0.93712, 28, -0.52, 0.14, 0.06288, 3, 27, 14.8, -4.21, 1.0E-5, 28, 7.85, -0.2, 0.29458, 29, 0.17, -0.15, 0.70541, 1, 27, 3.41, 0.07, 1, 1, 28, 3.32, 0.45, 1, 1, 29, 6.3, -0.09, 1, 1, 29, 3.36, -0.12, 1, 1, 29, 9.74, -0.06, 1 ],
  202. "hull": 21,
  203. "edges": [ 34, 42, 10, 12, 32, 34, 32, 30, 12, 14, 30, 42, 34, 36, 42, 36, 24, 26, 26, 44, 44, 40, 26, 28, 28, 30, 42, 48, 48, 44, 28, 48, 36, 38, 38, 40, 48, 38, 44, 50, 50, 46, 24, 50, 2, 0, 0, 40, 50, 0, 22, 24, 22, 46, 46, 2, 18, 52, 52, 6, 18, 20, 20, 22, 46, 54, 54, 52, 20, 54, 2, 4, 4, 6, 54, 4, 14, 16, 16, 18, 12, 56, 56, 52, 16, 56, 6, 8, 8, 10, 56, 8 ],
  204. "width": 26,
  205. "height": 30
  206. }
  207. },
  208. "toufa3": {
  209. "toufa3": {
  210. "type": "mesh",
  211. "uvs": [ 1, 0.17011, 0.89736, 0.17807, 0.80559, 0.18518, 0.62367, 0.26832, 0.51938, 0.34099, 0.4597, 0.45643, 0.39937, 0.55272, 0.3393, 0.64857, 0.30021, 0.82788, 0.26268, 1, 0.1576, 1, 0, 1, 0, 0.7842, 0, 0.57134, 0, 0.43759, 1.0E-5, 0.29632, 0.07124, 0.13537, 0.21014, 0.01884, 0.38965, 0, 0.79642, 0, 1, 0, 0.12695, 0.58452, 0.15979, 0.34906, 0.32769, 0.07733, 0.22825, 0.21002, 0.14364, 0.46483, 0.14235, 0.79335 ],
  212. "triangles": [ 23, 17, 18, 1, 19, 20, 0, 1, 20, 2, 19, 1, 18, 19, 2, 24, 17, 23, 16, 17, 24, 3, 18, 2, 23, 18, 3, 4, 23, 3, 24, 23, 4, 5, 24, 4, 22, 24, 5, 22, 15, 16, 24, 22, 16, 14, 15, 22, 25, 14, 22, 6, 25, 22, 5, 6, 22, 13, 14, 25, 21, 13, 25, 7, 21, 25, 6, 7, 25, 12, 13, 21, 26, 21, 7, 12, 21, 26, 8, 26, 7, 11, 12, 26, 10, 26, 8, 11, 26, 10, 9, 10, 8 ],
  213. "vertices": [ 1, 37, 21.81, -21.88, 1, 1, 37, 19.22, -19.08, 1, 1, 37, 16.91, -16.57, 1, 2, 36, 14.63, -16.78, 0.0091, 37, 9.98, -13.41, 0.9909, 2, 36, 11.09, -13.3, 0.1212, 37, 5.15, -12.26, 0.8788, 2, 36, 5.9, -11.68, 0.47203, 37, -0.13, -13.53, 0.52797, 2, 36, 1.54, -9.93, 0.77598, 37, -4.78, -14.28, 0.22402, 2, 36, -2.81, -8.2, 0.94936, 37, -9.4, -15.03, 0.05064, 2, 36, -10.64, -7.64, 0.99996, 37, -16.4, -18.57, 4.0E-5, 1, 36, -18.15, -7.1, 1, 1, 36, -18.59, -3.24, 1, 1, 36, -19.26, 2.55, 1, 1, 36, -10.04, 3.61, 1, 1, 36, -0.95, 4.66, 1, 1, 36, 4.77, 5.31, 1, 1, 36, 10.8, 6.01, 1, 2, 36, 17.98, 4.18, 0.78385, 37, 2.06, 6.28, 0.21615, 2, 36, 23.54, -0.36, 0.09469, 37, 9.17, 5.26, 0.90531, 1, 37, 13.85, 0.48, 1, 1, 37, 23.02, -11.46, 1, 1, 37, 27.61, -17.43, 1, 2, 36, -0.97, -0.08, 0.99986, 37, -12, -7.12, 1.4E-4, 2, 36, 9.22, -0.13, 0.99046, 37, -3.23, -1.91, 0.00954, 2, 36, 21.54, -4.96, 0.00116, 37, 9.82, 0.27, 0.99884, 1, 37, 3.05, -0.28, 1, 2, 36, 4.21, -0.1, 0.99901, 37, -7.54, -4.47, 9.9E-4, 1, 36, -9.83, -1.67, 1 ],
  214. "hull": 21,
  215. "edges": [ 20, 22, 18, 20, 0, 40, 34, 36, 26, 42, 42, 14, 10, 44, 44, 30, 36, 46, 34, 46, 4, 6, 46, 6, 36, 4, 36, 38, 38, 40, 0, 2, 2, 4, 38, 2, 30, 32, 32, 34, 44, 48, 48, 46, 32, 48, 6, 8, 8, 10, 48, 8, 26, 28, 28, 30, 42, 50, 50, 44, 28, 50, 10, 12, 12, 14, 50, 12, 22, 24, 24, 26, 20, 52, 52, 42, 24, 52, 14, 16, 16, 18, 52, 16 ],
  216. "width": 37,
  217. "height": 43
  218. }
  219. },
  220. "toufa4": {
  221. "toufa4": {
  222. "type": "mesh",
  223. "uvs": [ 1, 0.06962, 0.84097, 0.18745, 0.66185, 0.32015, 0.66185, 0.4231, 0.66185, 0.56127, 0.75725, 0.65905, 0.84923, 0.75333, 0.92495, 0.83094, 1, 0.90787, 1, 1, 0.6902, 1, 0.56521, 0.93283, 0.40912, 0.84895, 0.2387, 0.75736, 0, 0.62908, 0, 0.45743, 0, 0.30885, 0.10631, 0.1032, 0.15966, 0, 0.52011, 0, 1, 0, 0.40266, 0.58764, 0.33241, 0.3032, 0.69268, 0.78785, 0.9144, 0.94091, 0.33954, 0.43987, 0.55642, 0.69379, 0.8042, 0.86483, 0.41487, 0.13353 ],
  224. "triangles": [ 22, 28, 2, 2, 28, 1, 16, 17, 22, 22, 17, 28, 28, 19, 1, 0, 1, 20, 17, 18, 28, 28, 18, 19, 1, 19, 20, 14, 15, 25, 3, 21, 25, 25, 16, 22, 25, 15, 16, 3, 25, 2, 2, 25, 22, 10, 24, 9, 24, 8, 9, 10, 27, 24, 10, 11, 27, 24, 7, 8, 24, 27, 7, 11, 23, 27, 11, 12, 23, 27, 6, 7, 27, 23, 6, 12, 26, 23, 12, 13, 26, 23, 5, 6, 23, 26, 5, 13, 21, 26, 13, 14, 21, 26, 4, 5, 26, 21, 4, 14, 25, 21, 4, 21, 3 ],
  225. "vertices": [ 2, 33, 18.36, -15.55, 9.0E-4, 34, 13.27, -10.88, 0.9991, 2, 33, 13.86, -11.59, 0.05767, 34, 7.51, -9.26, 0.94233, 3, 32, 20, -8.79, 3.7E-4, 33, 8.81, -7.15, 0.55352, 34, 1.02, -7.43, 0.4461, 3, 32, 15.87, -7.2, 0.0694, 33, 4.44, -6.44, 0.86898, 34, -3.22, -8.68, 0.06162, 2, 32, 10.32, -5.08, 0.75712, 33, -1.43, -5.49, 0.24288, 2, 32, 5.71, -5.36, 0.99735, 33, -5.88, -6.7, 0.00265, 1, 32, 1.27, -5.63, 1, 1, 32, -2.39, -5.85, 1, 1, 32, -6.02, -6.07, 1, 1, 32, -9.72, -4.65, 1, 1, 32, -7.5, 1.13, 1, 1, 32, -3.91, 2.44, 1, 1, 32, 0.58, 4.06, 1, 2, 32, 5.47, 5.84, 0.99307, 33, -8.4, 4.22, 0.00693, 2, 32, 12.33, 8.32, 0.62115, 33, -2.19, 8.05, 0.37885, 2, 32, 19.22, 5.69, 0.04565, 33, 5.1, 6.87, 0.95435, 2, 33, 11.4, 5.84, 0.72568, 34, -2.25, 5.4, 0.27432, 2, 33, 19.79, 2.33, 3.0E-5, 34, 6.84, 5.86, 0.99997, 1, 34, 11.4, 6.09, 1, 1, 34, 13.43, -0.83, 1, 1, 34, 16.14, -10.04, 1, 1, 32, 11.12, 0.17, 1, 2, 33, 10.58, -0.76, 0.75494, 34, -0.14, -0.91, 0.24506, 1, 32, 1, -2.17, 1, 1, 32, -6.73, -3.96, 1, 1, 33, 4.76, 0.04, 1, 1, 32, 5.75, -1.07, 1, 1, 32, -2.89, -3.07, 1, 2, 33, 17.52, -3.55, 0.00101, 34, 7.33, -0.43, 0.99899 ],
  226. "hull": 21,
  227. "edges": [ 38, 40, 36, 38, 18, 20, 0, 40, 16, 18, 28, 42, 42, 8, 24, 46, 46, 12, 18, 48, 16, 48, 48, 20, 4, 6, 6, 8, 42, 50, 50, 44, 6, 50, 28, 30, 30, 32, 50, 30, 8, 10, 10, 12, 42, 52, 52, 46, 10, 52, 24, 26, 26, 28, 52, 26, 20, 22, 22, 24, 46, 54, 54, 48, 22, 54, 12, 14, 14, 16, 54, 14, 32, 34, 34, 36, 38, 56, 56, 44, 34, 56, 0, 2, 2, 4, 56, 2, 32, 44, 44, 4 ],
  228. "width": 20,
  229. "height": 43
  230. }
  231. },
  232. "toufa5": {
  233. "toufa5": {
  234. "type": "mesh",
  235. "uvs": [ 0.4441, 0.13477, 0.48779, 0.19314, 0.54035, 0.26338, 0.61067, 0.35735, 0.68196, 0.45261, 0.76334, 0.56136, 0.82172, 0.63938, 0.90754, 0.75405, 1, 0.87761, 1, 1, 0.74298, 1, 0.51709, 0.91561, 0.25346, 0.81713, 0, 0.72244, 0, 0.56319, 0, 0.43457, 0, 0.29369, 0, 0.19365, 0, 0, 0.21946, 0, 0.34325, 0, 0.63467, 0.79186, 0.4232, 0.53461, 0.81283, 0.89336, 0.53795, 0.6742, 0.34271, 0.32341, 0.28185, 0.16372, 0.38459, 0.43331, 0.30804, 0.23242 ],
  236. "triangles": [ 26, 19, 20, 26, 20, 0, 17, 18, 19, 17, 19, 26, 28, 26, 0, 28, 0, 1, 16, 17, 26, 16, 26, 28, 25, 28, 1, 25, 1, 2, 27, 25, 2, 27, 2, 3, 25, 15, 16, 25, 16, 28, 22, 27, 3, 27, 14, 15, 27, 15, 25, 22, 14, 27, 22, 3, 4, 24, 22, 4, 24, 4, 5, 22, 13, 14, 21, 24, 5, 21, 5, 6, 23, 21, 6, 12, 13, 22, 12, 22, 24, 7, 23, 6, 23, 7, 8, 11, 12, 24, 11, 24, 21, 10, 21, 23, 11, 21, 10, 23, 8, 9, 10, 23, 9 ],
  237. "vertices": [ 1, 31, 8.17, -4.09, 1, 2, 30, 13.54, -5.42, 0.00117, 31, 6.56, -4.34, 0.99883, 2, 30, 11.58, -5.38, 0.03197, 31, 4.62, -4.64, 0.96803, 2, 30, 8.96, -5.32, 0.24789, 31, 2.03, -5.05, 0.75211, 2, 30, 6.31, -5.27, 0.67127, 31, -0.59, -5.45, 0.32873, 2, 30, 3.27, -5.2, 0.95427, 31, -3.59, -5.92, 0.04573, 2, 30, 1.1, -5.15, 0.99703, 31, -5.74, -6.25, 0.00297, 1, 30, -2.1, -5.08, 1, 1, 30, -5.55, -5.01, 1, 1, 30, -8.04, -3.46, 1, 1, 30, -5.46, 0.69, 1, 1, 30, -1.47, 3.26, 1, 2, 30, 3.18, 6.27, 0.92812, 31, -5.69, 5.35, 0.07188, 2, 30, 7.65, 9.16, 0.62536, 31, -1.79, 8.98, 0.37464, 2, 30, 10.9, 7.14, 0.35023, 31, 1.76, 7.56, 0.64977, 2, 30, 13.52, 5.51, 0.09323, 31, 4.62, 6.42, 0.90677, 2, 30, 16.39, 3.72, 0.00313, 31, 7.76, 5.16, 0.99687, 1, 31, 9.99, 4.27, 1, 1, 31, 14.31, 2.54, 1, 1, 31, 12.76, -1.33, 1, 1, 31, 11.88, -3.51, 1, 1, 30, -0.13, -0.2, 1, 1, 30, 7.23, -0.05, 1, 1, 30, -3.99, -1.79, 1, 2, 30, 3.24, -0.13, 0.99997, 31, -4.51, -0.94, 3.0E-5, 1, 31, 4.68, -0.62, 1, 1, 31, 8.67, -0.97, 1, 2, 30, 9.68, -0.71, 0.00563, 31, 1.94, -0.38, 0.99437, 1, 31, 6.95, -0.82, 1 ],
  238. "hull": 21,
  239. "edges": [ 36, 38, 38, 40, 18, 16, 18, 20, 18, 46, 46, 42, 20, 46, 20, 22, 22, 42, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 48, 10, 10, 12, 12, 14, 14, 16, 26, 44, 10, 8, 44, 8, 30, 50, 50, 4, 34, 36, 38, 52, 34, 52, 0, 40, 52, 0, 26, 28, 28, 30, 44, 54, 54, 50, 28, 54, 4, 6, 6, 8, 54, 6, 30, 32, 32, 34, 50, 56, 56, 52, 32, 56, 0, 2, 2, 4, 56, 2, 42, 12, 46, 14 ],
  240. "width": 19,
  241. "height": 24
  242. }
  243. },
  244. "toufa6": {
  245. "toufa6": {
  246. "type": "mesh",
  247. "uvs": [ 0.99999, 0.42078, 0.87799, 0.44782, 0.75689, 0.47467, 0.67583, 0.52401, 0.55726, 0.59619, 0.43075, 0.6732, 0.31181, 0.79662, 0.22055, 0.8913, 0.1158, 1, 0, 1, 0, 0.70125, 0.05611, 0.5721, 0.13032, 0.40131, 0.19407, 0.25457, 0.32612, 0.09725, 0.5053, 0, 0.66555, 0.02061, 0.76561, 0.03348, 0.99999, 0.06363, 0.27421, 0.52215, 0.4848, 0.29557, 0.85909, 0.15831, 0.11713, 0.79589, 0.38209, 0.40607, 0.18375, 0.67978, 0.62386, 0.21579, 0.74663, 0.18579 ],
  248. "triangles": [ 2, 3, 25, 3, 20, 25, 25, 26, 2, 2, 26, 1, 26, 21, 1, 1, 21, 0, 0, 21, 18, 20, 15, 25, 25, 16, 26, 25, 15, 16, 26, 17, 21, 26, 16, 17, 21, 17, 18, 4, 5, 23, 3, 4, 20, 4, 23, 20, 12, 13, 23, 23, 13, 20, 13, 14, 20, 20, 14, 15, 7, 8, 22, 8, 9, 22, 9, 10, 22, 7, 22, 6, 22, 24, 6, 6, 24, 5, 22, 10, 24, 10, 11, 24, 24, 19, 5, 24, 11, 19, 5, 19, 23, 11, 12, 19, 19, 12, 23 ],
  249. "vertices": [ 2, 39, 24.77, -18.74, 9.0E-5, 40, 19.33, -11.68, 0.99991, 2, 39, 20.04, -15.99, 0.01825, 40, 13.89, -11.18, 0.98175, 3, 38, 26.18, -17.16, 4.0E-5, 39, 15.36, -13.26, 0.13683, 40, 8.48, -10.68, 0.86314, 3, 38, 22.7, -15.13, 0.00844, 39, 11.43, -12.33, 0.35527, 40, 4.54, -11.49, 0.63629, 3, 38, 17.61, -12.16, 0.11788, 39, 5.7, -10.98, 0.64209, 40, -1.24, -12.68, 0.24003, 3, 38, 12.18, -8.99, 0.56877, 39, -0.42, -9.53, 0.40277, 40, -7.4, -13.95, 0.02846, 2, 38, 5.43, -7.04, 0.9697, 39, -7.45, -9.63, 0.0303, 2, 38, 0.25, -5.54, 0.99996, 39, -12.84, -9.7, 4.0E-5, 1, 38, -5.69, -3.82, 1, 1, 38, -8.39, 0.5, 1, 1, 38, 1.23, 6.52, 1, 2, 38, 6.7, 7.02, 0.9998, 39, -10.33, 4.2, 2.0E-4, 2, 38, 13.94, 7.7, 0.72218, 39, -3.6, 6.95, 0.27782, 3, 38, 20.15, 8.27, 0.16332, 39, 2.17, 9.31, 0.83663, 40, -12.99, 4.23, 5.0E-5, 3, 38, 28.3, 6.51, 2.8E-4, 39, 10.48, 10, 0.82171, 40, -5.75, 8.36, 0.17801, 2, 39, 18.85, 7.61, 0.16577, 40, 2.85, 9.72, 0.83423, 2, 39, 23.66, 2.39, 7.4E-4, 40, 9.41, 7.01, 0.99926, 1, 40, 13.5, 5.32, 1, 1, 40, 23.09, 1.36, 1, 3, 38, 13.4, -0.11, 0.99646, 39, -1.84, -0.67, 0.00353, 40, -12.42, -6.52, 1.0E-5, 2, 39, 10.8, -0.27, 0.972, 40, -1.13, -0.82, 0.028, 1, 40, 16.14, -0.38, 1, 1, 38, 0.91, 0.24, 1, 3, 38, 19.65, -1.79, 0.00282, 39, 4.63, -0.47, 0.99533, 40, -6.64, -3.6, 0.00185, 1, 38, 6.21, 0.09, 1, 1, 40, 5.59, 0.39, 1, 2, 39, 22.23, -4.69, 2.0E-5, 40, 11.1, -0.01, 0.99998 ],
  250. "hull": 19,
  251. "edges": [ 16, 18, 0, 36, 18, 20, 26, 28, 28, 30, 36, 42, 18, 44, 20, 44, 14, 16, 44, 14, 10, 38, 24, 26, 38, 24, 38, 46, 46, 40, 26, 46, 8, 10, 46, 8, 20, 22, 22, 24, 38, 48, 48, 44, 22, 48, 10, 12, 12, 14, 48, 12, 28, 40, 4, 6, 6, 8, 40, 6, 40, 50, 4, 50, 50, 30, 34, 36, 34, 42, 42, 0, 30, 32, 32, 34, 42, 52, 52, 50, 32, 52, 0, 2, 2, 4, 52, 2 ],
  252. "width": 44,
  253. "height": 38
  254. }
  255. },
  256. "toufa7": {
  257. "toufa7": {
  258. "type": "mesh",
  259. "uvs": [ 1, 0.33477, 1, 0.71197, 0.8995, 0.65621, 0.81593, 0.66296, 0.73702, 0.66933, 0.62362, 0.69331, 0.51987, 0.71525, 0.41123, 0.79609, 0.32469, 0.86049, 0.18807, 0.96215, 0.1372, 1, 0, 1, 0, 0.72181, 0.07031, 0.61791, 0.17974, 0.45622, 0.24671, 0.35728, 0.32854, 0.23637, 0.43318, 0.13848, 0.52139, 0.05597, 0.64913, 0.02479, 0.75068, 0, 1, 0, 0.47583, 0.48893, 0.64742, 0.34461, 0.83268, 0.28229, 0.56233, 0.41618, 0.27855, 0.70082, 0.74655, 0.31127, 0.36891, 0.60377, 0.15119, 0.83761 ],
  260. "triangles": [ 2, 0, 1, 2, 24, 0, 24, 21, 0, 24, 20, 21, 27, 3, 4, 4, 23, 27, 3, 27, 2, 27, 24, 2, 23, 19, 27, 27, 20, 24, 27, 19, 20, 9, 10, 29, 10, 11, 29, 11, 12, 29, 9, 29, 8, 29, 26, 8, 8, 26, 7, 12, 13, 29, 29, 13, 26, 26, 28, 7, 7, 28, 6, 5, 6, 22, 28, 26, 14, 6, 28, 22, 4, 5, 25, 5, 22, 25, 4, 25, 23, 26, 13, 14, 14, 15, 28, 28, 15, 22, 25, 22, 16, 22, 15, 16, 16, 17, 25, 25, 17, 23, 17, 18, 23, 23, 18, 19 ],
  261. "vertices": [ 2, 42, 18.15, -3.12, 0.02169, 43, 9.79, -0.34, 0.97831, 2, 42, 16.55, -12.41, 0.30447, 43, 10.88, -9.71, 0.69553, 2, 42, 11.43, -10.12, 0.52232, 43, 5.33, -8.95, 0.47768, 3, 41, 16.68, -10.46, 0.01368, 42, 6.96, -9.52, 0.87291, 43, 0.86, -9.64, 0.1134, 3, 41, 12.59, -9.26, 0.15072, 42, 2.73, -8.95, 0.84667, 43, -3.35, -10.29, 0.00261, 2, 41, 6.59, -7.89, 0.69096, 42, -3.4, -8.5, 0.30904, 2, 41, 1.1, -6.64, 0.9711, 42, -9.02, -8.09, 0.0289, 1, 41, -5.1, -6.7, 1, 1, 41, -10.05, -6.75, 1, 1, 41, -17.85, -6.83, 1, 1, 41, -20.75, -6.86, 1, 1, 41, -27.78, -4.52, 1, 1, 41, -25.58, 2.08, 1, 1, 41, -21.16, 3.35, 1, 1, 41, -14.28, 5.31, 1, 1, 41, -10.06, 6.51, 1, 1, 41, -4.92, 7.99, 1, 1, 41, 1.22, 8.52, 1, 2, 41, 6.39, 8.97, 0.96194, 42, -6.14, 8.14, 0.03806, 2, 41, 13.18, 7.53, 0.43781, 42, 0.79, 7.74, 0.56219, 3, 41, 18.58, 6.38, 0.04733, 42, 6.3, 7.41, 0.83271, 43, -4.55, 6.42, 0.11996, 1, 43, 8.82, 7.97, 1, 2, 41, 0.63, -0.52, 0.99979, 42, -10.4, -2.11, 2.1E-4, 1, 41, 10.57, -0.03, 1, 1, 43, 0.66, -0.08, 1, 2, 41, 5.64, -0.27, 0.99763, 42, -5.49, -1.11, 0.00237, 1, 41, -11.15, -2.18, 1, 1, 42, 4.76, -0.22, 1, 1, 41, -5.75, -1.42, 1, 1, 41, -18.75, -3.25, 1 ],
  262. "hull": 22,
  263. "edges": [ 0, 42, 48, 0, 22, 24, 40, 42, 20, 22, 0, 2, 4, 2, 12, 44, 44, 32, 32, 34, 34, 36, 44, 50, 50, 46, 34, 50, 8, 10, 10, 12, 50, 10, 28, 52, 52, 16, 36, 46, 46, 8, 40, 48, 48, 4, 36, 38, 38, 40, 46, 54, 54, 48, 38, 54, 4, 6, 6, 8, 54, 6, 28, 30, 30, 32, 44, 56, 56, 52, 30, 56, 12, 14, 14, 16, 56, 14, 24, 26, 26, 28, 22, 58, 58, 52, 26, 58, 16, 18, 18, 20, 58, 18 ],
  264. "width": 54,
  265. "height": 25
  266. }
  267. },
  268. "toufa8": {
  269. "toufa8": {
  270. "type": "mesh",
  271. "uvs": [ 0.76037, 0.15504, 0.90754, 0.36923, 1, 0.56989, 1, 1, 0.86024, 1, 0.72776, 0.92342, 0.64309, 0.87447, 0.48779, 0.81875, 0.3335, 0.76339, 0.15566, 0.72679, 0.00201, 0.69518, 0.0043, 0.34773, 0, 0, 0.27975, 0, 0.47324, 0, 0.65384, 0, 0.38294, 0.43372, 0.65814, 0.55197, 0.54206, 0.5021, 0.77508, 0.70524, 0.89545, 0.86298, 0.21888, 0.39646 ],
  272. "triangles": [ 4, 20, 3, 20, 2, 3, 4, 5, 20, 20, 5, 19, 5, 6, 19, 19, 6, 17, 20, 19, 2, 6, 7, 17, 2, 19, 1, 19, 17, 1, 1, 17, 0, 7, 18, 17, 7, 8, 18, 15, 0, 18, 17, 18, 0, 15, 18, 14, 16, 14, 18, 8, 16, 18, 8, 9, 16, 9, 21, 16, 9, 10, 21, 10, 11, 21, 21, 13, 16, 16, 13, 14, 21, 11, 13, 11, 12, 13 ],
  273. "vertices": [ 2, 45, 6.14, 5.14, 0.64726, 46, -0.94, 5.1, 0.35274, 2, 45, 9.72, 3.57, 0.08158, 46, 2.95, 4.74, 0.91842, 2, 45, 12.2, 1.83, 1.2E-4, 46, 5.86, 3.86, 0.99988, 1, 46, 8.87, -0.33, 1, 1, 46, 6.61, -1.96, 1, 3, 44, 14.29, -3.82, 0.00247, 45, 8.28, -3.85, 0.02664, 46, 3.92, -2.76, 0.97089, 3, 44, 12.5, -3.72, 0.03025, 45, 6.49, -3.8, 0.17765, 46, 2.2, -3.27, 0.7921, 3, 44, 9.33, -3.94, 0.31184, 45, 3.33, -4.09, 0.48068, 46, -0.71, -4.55, 0.20748, 3, 44, 6.18, -4.16, 0.89302, 45, 0.18, -4.39, 0.09449, 46, -3.6, -5.81, 0.01249, 1, 44, 2.64, -4.73, 1, 1, 44, -0.41, -5.22, 1, 1, 44, -1.53, -1.2, 1, 2, 44, -2.77, 2.78, 0.99975, 45, -8.93, 2.35, 2.5E-4, 2, 44, 2.6, 4.34, 0.62872, 45, -3.59, 4.03, 0.37128, 3, 44, 6.32, 5.41, 0.0601, 45, 0.1, 5.19, 0.93922, 46, -6.69, 3.26, 6.9E-4, 2, 45, 3.55, 6.27, 0.92192, 46, -3.76, 5.37, 0.07808, 3, 44, 6.03, -0.09, 0.9104, 45, -0.06, -0.31, 0.08955, 46, -5.11, -2.02, 5.0E-5, 2, 45, 5.62, -0.02, 0.09964, 46, 0.18, 0.04, 0.90036, 3, 44, 9.32, 0.01, 0.00503, 45, 3.22, -0.14, 0.99112, 46, -2.05, -0.83, 0.00385, 3, 44, 14.47, -1.04, 3.0E-5, 45, 8.4, -1.07, 3.9E-4, 46, 3.16, -0.08, 0.99958, 1, 46, 6.22, -0.21, 1, 1, 44, 2.76, -0.57, 1 ],
  274. "hull": 16,
  275. "edges": [ 22, 24, 20, 22, 6, 8, 6, 4, 2, 4, 16, 32, 28, 30, 32, 28, 32, 36, 36, 34, 30, 36, 12, 14, 14, 16, 36, 14, 12, 34, 2, 0, 0, 30, 34, 0, 8, 10, 10, 12, 38, 34, 10, 38, 38, 2, 6, 40, 40, 38, 8, 40, 40, 4, 16, 18, 18, 20, 22, 42, 42, 32, 18, 42, 24, 26, 26, 28, 42, 26 ],
  276. "width": 20,
  277. "height": 12
  278. }
  279. },
  280. "toufa9": {
  281. "toufa9": {
  282. "type": "mesh",
  283. "uvs": [ 0.67828, 0.07595, 0.76422, 0.15198, 0.88952, 0.27284, 1, 0.51305, 1, 1, 0.84793, 1, 0.66816, 0.86797, 0.57322, 0.81046, 0.45575, 0.75197, 0.30474, 0.70488, 0.11251, 0.64587, 0, 0.61133, 0, 0.22434, 0, 0, 0.35539, 0, 0.54489, 2.0E-5, 0.53502, 0.47062, 0.76388, 0.65126, 0.38355, 0.40548, 0.22201, 0.32919, 0.6388, 0.55298, 0.90182, 0.85498 ],
  284. "triangles": [ 5, 21, 4, 21, 3, 4, 5, 6, 21, 21, 6, 17, 21, 17, 3, 3, 17, 2, 6, 7, 17, 7, 20, 17, 7, 8, 20, 2, 17, 20, 2, 20, 1, 20, 16, 1, 8, 16, 20, 8, 9, 16, 9, 18, 16, 9, 10, 18, 10, 19, 18, 10, 11, 19, 11, 12, 19, 16, 0, 1, 16, 18, 0, 19, 14, 18, 18, 15, 0, 18, 14, 15, 19, 12, 14, 12, 13, 14 ],
  285. "vertices": [ 3, 47, 7.84, 6.19, 0.52734, 48, -0.32, 6.22, 0.44598, 49, -5.4, 6.29, 0.02668, 3, 47, 9.97, 5.77, 0.25002, 48, 1.85, 6.14, 0.6302, 49, -3.24, 6.18, 0.11978, 3, 47, 13.12, 5.01, 0.03307, 48, 5.07, 5.9, 0.51454, 49, -0.01, 5.9, 0.45238, 2, 48, 8.78, 4.03, 0.07851, 49, 3.66, 3.98, 0.92149, 1, 49, 6.71, -2.11, 1, 2, 48, 8.93, -3.56, 0.01052, 49, 3.72, -3.61, 0.98948, 3, 47, 11.07, -4.42, 0.00775, 48, 4.57, -3.73, 0.61696, 49, -0.64, -3.73, 0.3753, 3, 47, 8.83, -4.3, 0.12507, 48, 2.34, -3.98, 0.81595, 49, -2.87, -3.94, 0.05899, 3, 47, 6.12, -4.32, 0.55872, 48, -0.33, -4.43, 0.44123, 49, -5.55, -4.36, 5.0E-5, 2, 47, 2.76, -4.73, 0.93219, 48, -3.58, -5.37, 0.06781, 2, 47, -1.52, -5.25, 0.99989, 48, -7.72, -6.58, 1.1E-4, 1, 47, -4.02, -5.56, 1, 1, 47, -5.7, -0.41, 1, 1, 47, -6.67, 2.58, 1, 2, 47, 0.76, 5, 0.99821, 48, -7.12, 3.91, 0.00179, 3, 47, 4.72, 6.29, 0.86078, 48, -3.42, 5.82, 0.13913, 49, -8.5, 5.93, 9.0E-5, 1, 47, 6.56, -0.04, 1, 2, 48, 5.05, -0.07, 0.70394, 49, -0.12, -0.07, 0.29606, 2, 47, 3.11, -0.2, 0.99853, 48, -3.97, -0.85, 0.00147, 1, 47, -0.6, -0.29, 1, 2, 47, 9.09, -0.43, 0.00163, 48, 1.97, -0.11, 0.99837, 1, 49, 3.87, -1.27, 1 ],
  286. "hull": 16,
  287. "edges": [ 24, 26, 8, 6, 4, 6, 22, 24, 8, 10, 12, 10, 16, 32, 0, 30, 32, 0, 36, 32, 30, 36, 16, 18, 36, 18, 18, 20, 20, 22, 24, 38, 38, 36, 20, 38, 26, 28, 28, 30, 38, 28, 4, 34, 34, 12, 12, 14, 14, 16, 32, 40, 40, 34, 14, 40, 0, 2, 2, 4, 40, 2, 8, 42, 42, 34, 6, 42, 42, 10 ],
  288. "width": 22,
  289. "height": 14
  290. }
  291. },
  292. "yaoya": {
  293. "yaoya": { "x": 3.46, "y": -2.43, "rotation": -90, "width": 15, "height": 7 }
  294. },
  295. "youshou": {
  296. "youshou": {
  297. "type": "mesh",
  298. "uvs": [ 0.60331, 0.3267, 0.62314, 0.34404, 0.66421, 0.37996, 0.9353, 0.61702, 0.96335, 0.6422, 0.98815, 0.66228, 1, 1, 0.65936, 1, 0.48671, 0.81276, 0.46556, 0.78981, 0.44492, 0.76743, 0.21441, 0.51743, 0.19699, 0.49854, 0.16038, 0.45883, 0, 0.28489, 0, 0, 0.22971, 0, 0.41125, 0.38901, 0.74105, 0.7326, 0.43819, 0.41708, 0.45997, 0.43977, 0.72552, 0.71642, 0.70182, 0.69173 ],
  299. "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 18, 4, 5, 8, 21, 18, 8, 9, 21, 9, 22, 21, 9, 10, 22, 10, 20, 22, 10, 11, 20, 18, 21, 4, 21, 3, 4, 21, 22, 3, 20, 2, 22, 22, 2, 3, 11, 19, 20, 11, 12, 19, 12, 17, 19, 20, 1, 2, 20, 19, 1, 19, 0, 1, 19, 17, 0, 12, 13, 17, 13, 14, 17, 0, 17, 16, 16, 17, 15, 17, 14, 15 ],
  300. "vertices": [ 2, 9, 24.64, 8.54, 0.29684, 10, -0.99, 8.43, 0.70316, 2, 9, 26.04, 8.72, 0.18078, 10, 0.42, 8.52, 0.81922, 3, 9, 28.93, 9.09, 0.0337, 10, 3.34, 8.71, 0.96628, 11, -22.29, 7.99, 2.0E-5, 2, 10, 22.57, 9.98, 0.3743, 11, -3.1, 9.77, 0.6257, 2, 10, 24.6, 10.09, 0.21988, 11, -1.07, 9.93, 0.78012, 2, 10, 26.27, 10.26, 0.1379, 11, 0.59, 10.15, 0.8621, 1, 11, 21.09, -0.21, 1, 2, 10, 39.94, -12.21, 0.01965, 11, 14.87, -11.94, 0.98035, 2, 10, 25.54, -11.8, 0.5931, 11, 0.46, -11.92, 0.4069, 2, 10, 23.78, -11.75, 0.71354, 11, -1.3, -11.92, 0.28646, 2, 10, 22.06, -11.71, 0.81387, 11, -3.02, -11.92, 0.18613, 2, 9, 29.67, -10.78, 0.30807, 10, 2.84, -11.16, 0.69193, 2, 9, 28.22, -10.83, 0.41898, 10, 1.38, -11.12, 0.58102, 2, 9, 25.16, -10.93, 0.67101, 10, -1.67, -11.03, 0.32899, 1, 9, 11.79, -11.38, 1, 1, 9, -5.63, -2.91, 1, 1, 9, -1.71, 5.15, 1, 2, 9, 25.17, -0.05, 0.92389, 10, -0.99, -0.18, 0.07611, 2, 10, 25.68, -0.49, 0.30592, 11, 0.3, -0.61, 0.69408, 2, 9, 27.35, 0.06, 0.00641, 10, 1.19, -0.2, 0.99359, 2, 9, 29.11, 0.15, 0.00103, 10, 2.95, -0.22, 0.99897, 1, 10, 24.43, -0.47, 1, 1, 10, 22.51, -0.45, 1 ],
  301. "hull": 17,
  302. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 30, 34, 36, 12, 26, 28, 26, 34, 0, 32, 34, 0, 24, 26, 34, 38, 24, 38, 0, 2, 38, 2, 22, 24, 40, 38, 22, 40, 2, 4, 40, 4, 14, 16, 16, 36, 36, 10, 16, 18, 36, 42, 18, 42, 8, 10, 42, 8, 18, 20, 20, 22, 40, 44, 44, 42, 20, 44, 4, 6, 6, 8, 44, 6 ],
  303. "width": 39,
  304. "height": 68
  305. }
  306. },
  307. "youtui": {
  308. "youtui": {
  309. "type": "mesh",
  310. "uvs": [ 0.92904, 0.36419, 0.93573, 0.38752, 0.93989, 0.41323, 0.97692, 0.69566, 1, 0.72909, 1, 0.75774, 1, 1, 0, 1, 0, 0.83565, 0.42236, 0.76465, 0.41301, 0.72918, 0.40397, 0.69486, 0.35405, 0.44038, 0.33859, 0.40993, 0.32433, 0.38108, 0.18736, 0, 0.5169, 0, 0.89846, 1.0E-5, 0.61251, 0.39744, 0.66793, 0.8235, 0.61904, 0.42313, 0.60683, 0.37522, 0.65708, 0.76122, 0.653, 0.73006, 0.64801, 0.69193 ],
  311. "triangles": [ 7, 8, 9, 19, 7, 9, 19, 5, 6, 7, 19, 6, 11, 20, 24, 24, 2, 3, 10, 11, 24, 23, 24, 3, 10, 24, 23, 23, 3, 4, 4, 22, 23, 5, 22, 4, 9, 10, 23, 9, 23, 22, 19, 22, 5, 19, 9, 22, 11, 12, 20, 24, 20, 2, 20, 1, 2, 21, 16, 17, 21, 17, 0, 14, 15, 16, 14, 16, 21, 18, 21, 0, 18, 0, 1, 13, 14, 21, 13, 21, 18, 20, 18, 1, 12, 13, 18, 12, 18, 20 ],
  312. "vertices": [ 2, 54, 12.67, 8.7, 0.77427, 55, -3.46, 8.64, 0.22573, 2, 54, 13.83, 8.75, 0.68082, 55, -2.31, 8.71, 0.31918, 2, 54, 15.09, 8.72, 0.56688, 55, -1.05, 8.7, 0.43312, 2, 55, 12.82, 8.41, 0.95311, 56, -10.01, -4.04, 0.04689, 2, 55, 14.51, 8.86, 0.88892, 56, -10.14, -2.3, 0.11108, 2, 55, 15.91, 8.73, 0.81735, 56, -9.76, -0.95, 0.18265, 2, 55, 27.73, 7.65, 0.05111, 56, -6.53, 10.47, 0.94889, 1, 56, 18.49, 3.39, 1, 1, 56, 16.3, -4.35, 1, 2, 55, 14.89, -6.26, 0.40413, 56, 4.78, -4.71, 0.59587, 2, 55, 13.13, -6.34, 0.71538, 56, 4.54, -6.45, 0.28462, 2, 55, 11.44, -6.43, 0.86633, 56, 4.31, -8.13, 0.13367, 2, 54, 14.75, -6.57, 0.69847, 55, -1.1, -6.59, 0.30153, 2, 54, 13.22, -6.8, 0.8511, 55, -2.62, -6.85, 0.1489, 2, 54, 11.77, -7.02, 0.9346, 55, -4.06, -7.1, 0.0654, 1, 54, -7.18, -8.51, 1, 1, 54, -6.24, 0.01, 1, 1, 54, -5.15, 9.87, 1, 1, 54, 13.39, 0.34, 1, 2, 55, 18.34, -0.16, 0.12339, 56, -0.58, -0.2, 0.87661, 1, 54, 14.66, 0.37, 1, 2, 54, 12.29, 0.32, 0.99775, 55, -3.68, 0.24, 0.00225, 2, 55, 15.27, -0.17, 0.99019, 56, -1.13, -3.21, 0.00981, 2, 55, 13.74, -0.13, 0.99778, 56, -1.45, -4.71, 0.00222, 2, 55, 11.87, -0.09, 0.99902, 56, -1.83, -6.55, 9.8E-4 ],
  313. "hull": 18,
  314. "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 38, 44, 18, 44, 10, 12, 44, 10, 18, 20, 46, 44, 20, 46, 8, 10, 46, 8, 20, 22, 22, 24, 40, 48, 48, 46, 22, 48, 4, 6, 6, 8, 48, 6 ],
  315. "width": 26,
  316. "height": 49
  317. }
  318. },
  319. "youwaitao": {
  320. "youwaitao": {
  321. "type": "mesh",
  322. "uvs": [ 0.33777, 0.09612, 1, 0.15453, 1, 0.38823, 1, 0.44943, 1, 0.50836, 1, 0.56843, 1, 0.61263, 1, 0.67836, 1, 0.73049, 1, 0.79963, 1, 0.89823, 1, 1, 0.72341, 1, 0, 1, 0, 0.92543, 0, 0.83023, 0, 0.74636, 0, 0.67156, 0, 0.59563, 0, 0.53896, 0, 0.47436, 0, 0.42449, 0, 0.36103, 0, 0.06633, 0.35714, 0.54693, 0.41349, 0.74133, 0.35471, 0.4903, 0.37705, 0.6156, 0.39587, 0.68053, 0.50397, 0.81684, 0.61072, 0.90595, 0.34968, 0.37338, 0.35219, 0.43156 ],
  323. "triangles": [ 12, 10, 11, 13, 30, 12, 12, 30, 10, 13, 14, 30, 14, 29, 30, 14, 15, 29, 10, 30, 9, 30, 29, 9, 15, 25, 29, 9, 29, 8, 29, 25, 8, 15, 16, 25, 16, 28, 25, 16, 17, 28, 8, 25, 7, 25, 28, 7, 17, 27, 28, 7, 28, 6, 28, 27, 6, 17, 18, 27, 18, 24, 27, 6, 27, 5, 27, 24, 5, 18, 19, 24, 24, 4, 5, 19, 26, 24, 24, 26, 4, 19, 20, 26, 26, 3, 4, 20, 32, 26, 26, 32, 3, 20, 21, 32, 32, 2, 3, 21, 31, 32, 32, 31, 2, 21, 22, 31, 31, 1, 2, 22, 0, 31, 31, 0, 1, 22, 23, 0 ],
  324. "vertices": [ 1, 15, -14.29, -0.27, 1, 2, 15, -10.59, 14.91, 1, 16, -22.94, 18.07, 0, 3, 15, 3.43, 14.72, 0.91344, 16, -9.06, 16.05, 0.0865, 17, -14.31, 20.98, 6.0E-5, 3, 15, 7.1, 14.68, 0.81303, 16, -5.43, 15.52, 0.18283, 17, -10.97, 19.44, 0.00414, 3, 15, 10.64, 14.63, 0.65757, 16, -1.93, 15.01, 0.31831, 17, -7.76, 17.96, 0.02411, 3, 15, 14.24, 14.58, 0.45416, 16, 1.64, 14.49, 0.46537, 17, -4.49, 16.45, 0.08047, 3, 15, 16.9, 14.55, 0.30399, 16, 4.26, 14.11, 0.53561, 17, -2.08, 15.33, 0.16039, 3, 15, 20.84, 14.5, 0.13199, 16, 8.17, 13.54, 0.50931, 17, 1.5, 13.68, 0.3587, 3, 15, 23.97, 14.45, 0.0527, 16, 11.26, 13.09, 0.38199, 17, 4.34, 12.37, 0.56531, 3, 15, 28.11, 14.4, 0.00846, 16, 15.37, 12.5, 0.17695, 17, 8.1, 10.63, 0.81459, 2, 16, 21.22, 11.64, 0.02155, 17, 13.47, 8.15, 0.97845, 1, 17, 19.02, 5.59, 1, 1, 17, 16.35, -0.18, 1, 2, 16, 23.95, -11.99, 0.00296, 17, 9.38, -15.29, 0.99704, 2, 16, 19.52, -11.35, 0.04376, 17, 5.32, -13.41, 0.95624, 2, 16, 13.87, -10.53, 0.28263, 17, 0.13, -11.02, 0.71737, 3, 15, 24.62, -8.56, 0.00172, 16, 8.89, -9.8, 0.68146, 17, -4.44, -8.91, 0.31681, 3, 15, 20.13, -8.5, 0.07342, 16, 4.45, -9.16, 0.86448, 17, -8.51, -7.03, 0.0621, 3, 15, 15.57, -8.44, 0.39997, 16, -0.06, -8.5, 0.59894, 17, -12.65, -5.12, 0.00108, 2, 15, 12.17, -8.39, 0.74083, 16, -3.42, -8.01, 0.25917, 2, 15, 8.3, -8.34, 0.95516, 16, -7.26, -7.46, 0.04484, 2, 15, 5.31, -8.3, 0.99649, 16, -10.22, -7.02, 0.00351, 1, 15, 1.5, -8.25, 1, 1, 15, -16.18, -8.02, 1, 1, 15, 12.76, -0.18, 1, 2, 16, 9.96, -0.35, 0.96905, 17, -0.73, -0.15, 0.03095, 1, 15, 9.36, -0.2, 1, 1, 16, 2.38, -0.09, 1, 1, 16, 6.29, -0.23, 1, 1, 17, 4.26, -0.16, 1, 1, 17, 10.14, -0.17, 1, 1, 15, 2.35, -0.22, 1, 1, 15, 5.84, -0.21, 1 ],
  325. "hull": 24,
  326. "edges": [ 2, 0, 0, 46, 22, 24, 24, 26, 38, 48, 48, 10, 38, 40, 52, 48, 40, 52, 8, 10, 52, 8, 36, 38, 48, 54, 36, 54, 10, 12, 54, 12, 34, 36, 50, 56, 56, 54, 34, 56, 12, 14, 56, 14, 32, 34, 32, 50, 14, 16, 50, 16, 30, 32, 58, 50, 30, 58, 16, 18, 58, 18, 26, 28, 28, 30, 24, 60, 60, 58, 28, 60, 18, 20, 20, 22, 60, 20, 44, 46, 0, 62, 44, 62, 2, 4, 62, 4, 40, 42, 42, 44, 52, 64, 64, 62, 42, 64, 4, 6, 6, 8, 64, 6 ],
  327. "width": 23,
  328. "height": 60
  329. }
  330. },
  331. "youyan1": {
  332. "youyan1": { "x": 4.68, "y": -3.04, "rotation": -88.6, "width": 21, "height": 16 }
  333. },
  334. "youyan2": {
  335. "youyan2": { "x": 5.69, "y": -3.52, "rotation": -88.6, "width": 22, "height": 18 }
  336. },
  337. "zuiba": {
  338. "zuiba": { "x": 2.46, "y": -1.93, "rotation": -90, "width": 14, "height": 11 }
  339. },
  340. "zuoshou": {
  341. "zuoshou": {
  342. "type": "mesh",
  343. "uvs": [ 1, 0.33943, 0.868, 0.47294, 0.83273, 0.50862, 0.8056, 0.53606, 0.5633, 0.78115, 0.52992, 0.81491, 0.50646, 0.83864, 0.34694, 1, 0, 1, 0, 0.77669, 0.20005, 0.60279, 0.23518, 0.57225, 0.25954, 0.55108, 0.52958, 0.31633, 0.56294, 0.28733, 0.59649, 0.25817, 0.89347, 0, 0.99999, 0.04869, 0.67268, 0.37663, 0.37226, 0.68564, 0.70633, 0.35094, 0.64205, 0.40785, 0.40079, 0.65373, 0.34362, 0.71026 ],
  344. "triangles": [ 8, 23, 7, 7, 23, 6, 23, 9, 10, 23, 8, 9, 23, 19, 6, 6, 19, 5, 19, 22, 5, 10, 11, 23, 23, 11, 19, 11, 12, 19, 19, 12, 22, 5, 22, 4, 4, 21, 3, 4, 22, 21, 22, 13, 21, 22, 12, 13, 21, 18, 3, 13, 14, 21, 3, 18, 2, 18, 20, 2, 2, 20, 1, 1, 20, 0, 21, 14, 18, 14, 15, 18, 18, 15, 20, 17, 20, 16, 17, 0, 20, 20, 15, 16 ],
  345. "vertices": [ 2, 6, 9.25, 11.34, 0.99846, 7, -13.36, 11.55, 0.00154, 2, 6, 20.21, 11.49, 0.70359, 7, -2.4, 11.53, 0.29641, 2, 6, 23.14, 11.53, 0.49141, 7, 0.53, 11.53, 0.50859, 2, 6, 25.39, 11.56, 0.32806, 7, 2.78, 11.52, 0.67194, 2, 7, 22.9, 11.48, 0.63004, 8, -1.13, 12.21, 0.36996, 2, 7, 25.67, 11.48, 0.4341, 8, 1.64, 12.25, 0.5659, 2, 7, 27.62, 11.47, 0.31012, 8, 3.59, 12.28, 0.68988, 2, 7, 40.87, 11.45, 0.00392, 8, 16.84, 12.47, 0.99608, 1, 8, 28.33, -1.44, 1, 1, 8, 17.32, -10.54, 1, 2, 7, 25.79, -10.4, 0.09016, 8, 2.11, -9.62, 0.90984, 2, 7, 23.12, -10.19, 0.24051, 8, -0.56, -9.46, 0.75949, 2, 7, 21.27, -10.05, 0.38511, 8, -2.41, -9.35, 0.61489, 2, 6, 23.69, -8.46, 0.37915, 7, 0.77, -8.47, 0.62085, 2, 6, 21.16, -8.3, 0.63409, 7, -1.76, -8.28, 0.36591, 2, 6, 18.61, -8.15, 0.84204, 7, -4.31, -8.08, 0.15796, 1, 6, -3.97, -6.76, 1, 1, 6, -5.09, -0.51, 1, 1, 6, 21.93, -0.26, 1, 2, 7, 24.34, -0.09, 0.03667, 8, 0.49, 0.66, 0.96333, 1, 6, 19.55, 0.04, 1, 1, 7, 1.69, -0.24, 1, 2, 7, 21.81, -0.21, 0.72924, 8, -2.03, 0.5, 0.27076, 2, 7, 26.5, -0.27, 0.01033, 8, 2.65, 0.52, 0.98967 ],
  346. "hull": 18,
  347. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 28, 30, 30, 32, 34, 40, 40, 36, 30, 40, 0, 2, 2, 4, 40, 2, 26, 28, 36, 42, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 22, 24, 24, 26, 38, 44, 44, 42, 24, 44, 6, 8, 8, 10, 44, 8, 18, 20, 20, 22, 16, 46, 46, 38, 20, 46, 10, 12, 12, 14, 46, 12 ],
  348. "width": 52,
  349. "height": 64
  350. }
  351. },
  352. "zuotui": {
  353. "zuotui": {
  354. "type": "mesh",
  355. "uvs": [ 1, 0.38846, 1, 0.42386, 1, 0.45454, 1, 0.70597, 1, 0.74255, 1, 0.76615, 1, 1, 0, 1, 0, 0.84771, 0.43714, 0.72771, 0.43682, 0.70123, 0.43652, 0.67644, 0.43376, 0.45101, 0.43335, 0.41798, 0.43296, 0.38608, 0.42824, 0, 0.7038, 0, 1, 0, 0.69937, 0.7517, 0.69966, 0.70245, 0.69951, 0.72722, 0.70112, 0.45458, 0.70132, 0.42036, 0.7015, 0.38964 ],
  356. "triangles": [ 7, 8, 9, 7, 9, 18, 7, 18, 6, 19, 10, 11, 21, 19, 11, 3, 19, 2, 20, 10, 19, 20, 19, 3, 9, 10, 20, 20, 3, 4, 18, 9, 20, 18, 20, 4, 18, 4, 5, 18, 5, 6, 14, 15, 16, 16, 17, 0, 23, 14, 16, 0, 23, 16, 13, 14, 23, 22, 13, 23, 22, 23, 0, 1, 22, 0, 12, 13, 22, 21, 22, 1, 21, 12, 22, 2, 21, 1, 11, 12, 21, 19, 21, 2 ],
  357. "vertices": [ 2, 51, 11.97, 8.26, 0.88616, 52, -3.63, 8.32, 0.11384, 2, 51, 13.74, 8.26, 0.76302, 52, -1.86, 8.29, 0.23698, 2, 51, 15.28, 8.26, 0.62148, 52, -0.33, 8.26, 0.37852, 3, 51, 27.85, 8.26, 4.7E-4, 52, 12.24, 8.04, 0.93008, 53, -10.59, -3.27, 0.06945, 2, 52, 14.07, 8.01, 0.83372, 53, -10.04, -1.52, 0.16628, 2, 52, 15.25, 7.99, 0.74385, 53, -9.69, -0.4, 0.25615, 2, 52, 26.94, 7.79, 0.02175, 53, -6.2, 10.76, 0.97825, 1, 53, 19.57, 2.71, 1, 1, 53, 17.3, -4.56, 1, 2, 52, 13.06, -7.17, 0.49777, 53, 4.24, -6.76, 0.50223, 2, 52, 11.74, -7.16, 0.69769, 53, 3.85, -8.03, 0.30231, 2, 52, 10.5, -7.14, 0.81768, 53, 3.49, -9.22, 0.18232, 2, 51, 15.1, -7.03, 0.60416, 52, -0.77, -7.02, 0.39584, 2, 51, 13.45, -7.04, 0.78262, 52, -2.43, -7, 0.21738, 2, 51, 11.85, -7.05, 0.90218, 52, -4.02, -6.98, 0.09782, 1, 51, -7.45, -7.18, 1, 1, 51, -7.45, 0.26, 1, 1, 51, -7.45, 8.26, 1, 2, 52, 14.38, -0.11, 0.98007, 53, -2.16, -3.51, 0.01993, 2, 52, 11.92, -0.06, 0.99897, 53, -2.9, -5.86, 0.00103, 2, 52, 13.16, -0.09, 0.99851, 53, -2.53, -4.67, 0.00149, 2, 51, 15.28, 0.19, 0.89274, 52, -0.47, 0.2, 0.10726, 2, 51, 13.57, 0.19, 0.99762, 52, -2.18, 0.23, 0.00238, 2, 51, 12.03, 0.2, 0.99975, 52, -3.72, 0.26, 2.5E-4 ],
  358. "hull": 18,
  359. "edges": [ 12, 14, 14, 16, 18, 16, 30, 32, 32, 34, 36, 14, 18, 36, 12, 10, 36, 10, 22, 38, 38, 6, 18, 20, 20, 22, 36, 40, 40, 38, 20, 40, 6, 8, 8, 10, 40, 8, 22, 24, 42, 38, 24, 42, 6, 4, 42, 4, 24, 26, 44, 42, 26, 44, 4, 2, 44, 2, 26, 28, 28, 30, 32, 46, 46, 44, 28, 46, 2, 0, 0, 34, 46, 0 ],
  360. "width": 27,
  361. "height": 50
  362. }
  363. },
  364. "zuowaitao": {
  365. "zuowaitao": {
  366. "type": "mesh",
  367. "uvs": [ 0.87513, 0.24713, 0.83919, 0.31825, 0.80222, 0.39142, 0.76387, 0.46731, 0.73586, 0.52275, 0.70664, 0.58057, 0.66383, 0.6653, 0.61922, 0.75358, 0.55215, 0.88631, 0.4947, 1, 0.10804, 1, 0, 1, 0, 0.85805, 0, 0.73922, 0, 0.65073, 0, 0.57395, 0, 0.52485, 0.02433, 0.46528, 0.05529, 0.38947, 0.08811, 0.30914, 0.114, 0.24575, 0.21437, 0, 0.51887, 0, 1, 0, 0.41737, 0.51336, 0.39804, 0.74974, 0.41271, 0.57035, 0.42635, 0.46794, 0.47024, 0.24596, 0.45815, 0.30713, 0.44188, 0.38942, 0.40518, 0.66237, 0.25271, 0.87515 ],
  368. "triangles": [ 10, 32, 9, 9, 32, 8, 32, 10, 12, 10, 11, 12, 32, 25, 8, 8, 25, 7, 25, 32, 13, 32, 12, 13, 25, 13, 14, 25, 31, 7, 7, 31, 6, 31, 25, 14, 31, 26, 6, 6, 26, 5, 26, 31, 15, 31, 14, 15, 26, 24, 5, 15, 16, 26, 5, 24, 4, 26, 16, 24, 16, 17, 24, 24, 27, 4, 4, 27, 3, 24, 17, 27, 17, 18, 27, 27, 30, 3, 27, 18, 30, 3, 30, 2, 30, 29, 2, 2, 29, 1, 18, 19, 30, 30, 19, 29, 29, 28, 1, 1, 28, 0, 19, 20, 29, 29, 20, 28, 28, 22, 0, 0, 22, 23, 20, 21, 28, 28, 21, 22 ],
  369. "vertices": [ 1, 12, -0.4, 7.37, 1, 1, 12, 3.4, 6.96, 1, 1, 12, 7.31, 6.52, 1, 2, 12, 11.37, 6.08, 0.96287, 13, -4.6, 6.01, 0.03713, 2, 12, 14.33, 5.75, 0.75288, 13, -1.63, 5.73, 0.24712, 2, 12, 17.42, 5.41, 0.30268, 13, 1.47, 5.43, 0.69732, 3, 12, 21.95, 4.91, 0.00511, 13, 6, 4.99, 0.98197, 14, -5.39, 3.84, 0.01292, 2, 13, 10.73, 4.54, 0.46808, 14, -0.69, 4.5, 0.53192, 1, 14, 6.38, 5.5, 1, 1, 14, 12.43, 6.36, 1, 1, 14, 14.56, -0.27, 1, 1, 14, 15.15, -2.12, 1, 2, 13, 17.07, -6.17, 0.00543, 14, 7.99, -4.42, 0.99457, 2, 13, 10.79, -6.63, 0.41779, 14, 1.99, -6.34, 0.58221, 3, 12, 21.9, -7.06, 0.03241, 13, 6.11, -6.98, 0.8591, 14, -2.48, -7.78, 0.10849, 3, 12, 17.84, -7.31, 0.27596, 13, 2.05, -7.28, 0.71892, 14, -6.35, -9.02, 0.00512, 2, 12, 15.24, -7.46, 0.55269, 13, -0.54, -7.47, 0.44731, 2, 12, 12.06, -7.22, 0.84824, 13, -3.72, -7.27, 0.15176, 2, 12, 8.02, -6.9, 0.99018, 13, -7.77, -7.01, 0.00983, 1, 12, 3.73, -6.57, 1, 1, 12, 0.35, -6.31, 1, 1, 12, -12.76, -5.29, 1, 1, 12, -13.09, 0.19, 1, 1, 12, -13.61, 8.83, 1, 2, 12, 14.18, 0, 0.99966, 13, -1.7, -0.03, 3.4E-4, 2, 13, 10.82, 0.55, 0.15254, 14, 0.33, 0.65, 0.84746, 2, 12, 17.2, 0.1, 9.1E-4, 13, 1.32, 0.11, 0.99909, 1, 12, 11.77, 0.01, 1, 1, 12, -0.02, 0.1, 1, 1, 12, 3.22, 0.07, 1, 1, 12, 7.6, 0.04, 1, 1, 13, 6.19, 0.34, 1, 1, 14, 7.46, 0.19, 1 ],
  370. "hull": 24,
  371. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 32, 48, 48, 8, 30, 32, 48, 52, 30, 52, 8, 10, 52, 10, 32, 34, 54, 48, 34, 54, 8, 6, 54, 6, 40, 42, 44, 56, 40, 56, 0, 46, 56, 0, 38, 40, 58, 56, 38, 58, 0, 2, 58, 2, 34, 36, 36, 38, 54, 60, 60, 58, 36, 60, 2, 4, 4, 6, 60, 4, 26, 50, 50, 14, 26, 28, 28, 30, 50, 62, 62, 52, 28, 62, 10, 12, 12, 14, 62, 12, 22, 24, 24, 26, 20, 64, 64, 50, 24, 64, 14, 16, 16, 18, 64, 16 ],
  372. "width": 18,
  373. "height": 53
  374. }
  375. },
  376. "zuoyan1": {
  377. "zuoyan1": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 18, "height": 16 }
  378. },
  379. "zuoyan2": {
  380. "zuoyan2": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 20, "height": 16 }
  381. }
  382. }
  383. },
  384. "animations": {
  385. "stand1": {
  386. "slots": {
  387. "biyan": {
  388. "attachment": [
  389. { "time": 0.1, "name": "biyan" },
  390. { "time": 0.2, "name": null },
  391. { "time": 0.8667, "name": "biyan" },
  392. { "time": 0.9333, "name": null }
  393. ]
  394. },
  395. "meimao1": {
  396. "attachment": [
  397. { "time": 0.1, "name": "meimao1" },
  398. { "time": 0.7667, "name": "meimao1" }
  399. ]
  400. },
  401. "meimao2": {
  402. "attachment": [
  403. { "time": 0.1, "name": null },
  404. { "time": 0.7667, "name": null }
  405. ]
  406. },
  407. "yaoya": {
  408. "attachment": [
  409. { "time": 0, "name": null },
  410. { "time": 0.1667, "name": "yaoya" },
  411. { "time": 0.9333, "name": null },
  412. { "time": 1.9, "name": null }
  413. ]
  414. },
  415. "youyan1": {
  416. "attachment": [
  417. { "time": 0, "name": "youyan1" },
  418. { "time": 0.1, "name": null },
  419. { "time": 0.2, "name": null },
  420. { "time": 0.3, "name": null },
  421. { "time": 0.7667, "name": null },
  422. { "time": 0.9333, "name": "youyan1" },
  423. { "time": 1.9, "name": "youyan1" }
  424. ]
  425. },
  426. "youyan2": {
  427. "attachment": [
  428. { "time": 0, "name": null },
  429. { "time": 0.1, "name": null },
  430. { "time": 0.2, "name": "youyan2" },
  431. { "time": 0.3, "name": "youyan2" },
  432. { "time": 0.7667, "name": "youyan2" },
  433. { "time": 0.8667, "name": null },
  434. { "time": 0.9333, "name": null },
  435. { "time": 1.9, "name": null }
  436. ]
  437. },
  438. "zuiba": {
  439. "attachment": [
  440. { "time": 0, "name": "zuiba" },
  441. { "time": 0.1667, "name": null },
  442. { "time": 0.9333, "name": "zuiba" },
  443. { "time": 1.9, "name": "zuiba" }
  444. ]
  445. },
  446. "zuoyan1": {
  447. "attachment": [
  448. { "time": 0, "name": "zuoyan1" },
  449. { "time": 0.1, "name": null },
  450. { "time": 0.2, "name": null },
  451. { "time": 0.3, "name": null },
  452. { "time": 0.7667, "name": null },
  453. { "time": 0.8667, "name": null },
  454. { "time": 0.9333, "name": "zuoyan1" },
  455. { "time": 1.9, "name": "zuoyan1" }
  456. ]
  457. },
  458. "zuoyan2": {
  459. "attachment": [
  460. { "time": 0, "name": null },
  461. { "time": 0.1, "name": null },
  462. { "time": 0.2, "name": "zuoyan2" },
  463. { "time": 0.3, "name": "zuoyan2" },
  464. { "time": 0.7667, "name": "zuoyan2" },
  465. { "time": 0.8667, "name": null },
  466. { "time": 0.9333, "name": null },
  467. { "time": 1.9, "name": null }
  468. ]
  469. }
  470. },
  471. "bones": {
  472. "bone2": {
  473. "rotate": [
  474. { "time": 0, "angle": 0, "curve": "stepped" },
  475. { "time": 0.1667, "angle": 0 },
  476. { "time": 0.3, "angle": -20 },
  477. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  478. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  479. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  480. { "time": 1.4, "angle": 0, "curve": "stepped" },
  481. { "time": 1.9, "angle": 0 }
  482. ],
  483. "translate": [
  484. { "time": 0, "x": 0, "y": 0 },
  485. { "time": 0.1667, "x": 0, "y": -4.01 },
  486. { "time": 0.3, "x": 0, "y": 12.86 },
  487. { "time": 0.5333, "x": 0, "y": -7.98, "curve": "stepped" },
  488. { "time": 0.6667, "x": 0, "y": -7.98 },
  489. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  490. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  491. { "time": 1.9, "x": 0, "y": 0 }
  492. ],
  493. "scale": [
  494. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  496. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  497. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  498. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  499. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  500. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  501. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  502. { "time": 1.9, "x": 1, "y": 1 }
  503. ]
  504. },
  505. "bone3": {
  506. "rotate": [
  507. { "time": 0, "angle": 0, "curve": "stepped" },
  508. { "time": 0.1667, "angle": 0 },
  509. { "time": 0.3, "angle": -4.02 },
  510. { "time": 0.5333, "angle": -9.04, "curve": "stepped" },
  511. { "time": 0.6667, "angle": -9.04 },
  512. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  513. { "time": 1.4, "angle": 0, "curve": "stepped" },
  514. { "time": 1.9, "angle": 0 }
  515. ],
  516. "translate": [
  517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  518. { "time": 0.1667, "x": 0, "y": 0 },
  519. { "time": 0.3, "x": 1.96, "y": -0.35 },
  520. { "time": 0.5333, "x": 4.4, "y": -0.78, "curve": "stepped" },
  521. { "time": 0.6667, "x": 4.4, "y": -0.78 },
  522. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  523. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  524. { "time": 1.9, "x": 0, "y": 0 }
  525. ],
  526. "scale": [
  527. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  528. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  529. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  530. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  531. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  532. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  533. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  534. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  535. { "time": 1.9, "x": 1, "y": 1 }
  536. ]
  537. },
  538. "bone4": {
  539. "rotate": [
  540. { "time": 0, "angle": 0, "curve": "stepped" },
  541. { "time": 0.1667, "angle": 0 },
  542. { "time": 0.3, "angle": 26.03 },
  543. { "time": 0.5333, "angle": 8.68 },
  544. { "time": 0.6667, "angle": 9.67 },
  545. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  546. { "time": 1.4, "angle": 0, "curve": "stepped" },
  547. { "time": 1.9, "angle": 0 }
  548. ],
  549. "translate": [
  550. {
  551. "time": 0,
  552. "x": 0,
  553. "y": 0,
  554. "curve": [ 0.25, 0, 0.75, 1 ]
  555. },
  556. {
  557. "time": 0.1667,
  558. "x": -1.91,
  559. "y": -0.1,
  560. "curve": [ 0.254, 0, 0.621, 0.47 ]
  561. },
  562. {
  563. "time": 0.3,
  564. "x": -1.79,
  565. "y": -0.37,
  566. "curve": [ 0.369, 0.47, 0.753, 1 ]
  567. },
  568. { "time": 0.5333, "x": -1.64, "y": -0.73, "curve": "stepped" },
  569. {
  570. "time": 0.6667,
  571. "x": -1.64,
  572. "y": -0.73,
  573. "curve": [ 0.25, 0, 0.75, 1 ]
  574. },
  575. {
  576. "time": 1.0333,
  577. "x": 0,
  578. "y": 0,
  579. "curve": [ 0.25, 0, 0.75, 1 ]
  580. },
  581. {
  582. "time": 1.4,
  583. "x": 2.56,
  584. "y": 0.13,
  585. "curve": [ 0.25, 0, 0.75, 1 ]
  586. },
  587. { "time": 1.9, "x": 0, "y": 0 }
  588. ],
  589. "scale": [
  590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  597. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  598. { "time": 1.9, "x": 1, "y": 1 }
  599. ]
  600. },
  601. "bone5": {
  602. "rotate": [
  603. { "time": 0, "angle": 0, "curve": "stepped" },
  604. { "time": 0.1667, "angle": 0 },
  605. { "time": 0.3, "angle": 1.85 },
  606. { "time": 0.5333, "angle": 4.16, "curve": "stepped" },
  607. { "time": 0.6667, "angle": 4.16 },
  608. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  609. { "time": 1.4, "angle": 0, "curve": "stepped" },
  610. { "time": 1.9, "angle": 0 }
  611. ],
  612. "translate": [
  613. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  614. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  615. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  616. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  617. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  618. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  619. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  620. { "time": 1.9, "x": 0, "y": 0 }
  621. ],
  622. "scale": [
  623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  625. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  626. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  627. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  628. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  629. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  630. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  631. { "time": 1.9, "x": 1, "y": 1 }
  632. ]
  633. },
  634. "bone6": {
  635. "rotate": [
  636. { "time": 0, "angle": 22.32 },
  637. { "time": 0.1667, "angle": 6.94 },
  638. { "time": 0.3, "angle": 38.4 },
  639. { "time": 0.5333, "angle": 13.34, "curve": "stepped" },
  640. { "time": 0.6667, "angle": 13.34 },
  641. { "time": 1.0333, "angle": 22.32 },
  642. { "time": 1.4, "angle": 15.36 },
  643. { "time": 1.9, "angle": 22.32 }
  644. ],
  645. "translate": [
  646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  647. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  648. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  649. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  650. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  651. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  652. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  653. { "time": 1.9, "x": 0, "y": 0 }
  654. ],
  655. "scale": [
  656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  657. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  658. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  659. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  660. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  662. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  663. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 1.9, "x": 1, "y": 1 }
  665. ]
  666. },
  667. "bone7": {
  668. "rotate": [
  669. { "time": 0, "angle": 4.55 },
  670. { "time": 0.1667, "angle": 8.56 },
  671. { "time": 0.3, "angle": -41.01 },
  672. { "time": 0.5333, "angle": -30.88 },
  673. { "time": 0.6667, "angle": -26.14 },
  674. { "time": 1.0333, "angle": 4.55 },
  675. { "time": 1.4, "angle": 8.96 },
  676. { "time": 1.9, "angle": 4.55 }
  677. ],
  678. "translate": [
  679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  680. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  681. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  682. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  684. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  685. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  686. { "time": 1.9, "x": 0, "y": 0 }
  687. ],
  688. "scale": [
  689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  695. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  696. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  697. { "time": 1.9, "x": 1, "y": 1 }
  698. ]
  699. },
  700. "bone8": {
  701. "rotate": [
  702. { "time": 0, "angle": 0, "curve": "stepped" },
  703. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  704. { "time": 0.3, "angle": 0 },
  705. { "time": 0.5333, "angle": -17.06, "curve": "stepped" },
  706. { "time": 0.6667, "angle": -17.06 },
  707. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  708. { "time": 1.4, "angle": 0, "curve": "stepped" },
  709. { "time": 1.9, "angle": 0 }
  710. ],
  711. "translate": [
  712. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  713. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  714. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  715. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  718. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  719. { "time": 1.9, "x": 0, "y": 0 }
  720. ],
  721. "scale": [
  722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  726. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  728. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  729. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  730. { "time": 1.9, "x": 1, "y": 1 }
  731. ]
  732. },
  733. "bone9": {
  734. "rotate": [
  735. { "time": 0, "angle": -14 },
  736. { "time": 0.1667, "angle": -17.25 },
  737. { "time": 0.3, "angle": 308.32 },
  738. { "time": 0.5333, "angle": 20.43, "curve": "stepped" },
  739. { "time": 0.6667, "angle": 20.43 },
  740. { "time": 1.0333, "angle": -14 },
  741. { "time": 1.4, "angle": -6.02 },
  742. { "time": 1.9, "angle": -14 }
  743. ],
  744. "translate": [
  745. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 1.9, "x": 0, "y": 0 }
  753. ],
  754. "scale": [
  755. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  763. { "time": 1.9, "x": 1, "y": 1 }
  764. ]
  765. },
  766. "bone10": {
  767. "rotate": [
  768. { "time": 0, "angle": 0 },
  769. { "time": 0.1667, "angle": -35.53 },
  770. { "time": 0.3, "angle": -54 },
  771. { "time": 0.5333, "angle": -133.84 },
  772. { "time": 0.6667, "angle": -140.37 },
  773. { "time": 1.0333, "angle": 0 },
  774. { "time": 1.4, "angle": -13.26 },
  775. { "time": 1.9, "angle": 0 }
  776. ],
  777. "translate": [
  778. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  779. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  780. { "time": 0.3, "x": 0, "y": 0 },
  781. { "time": 0.5333, "x": 5.26, "y": -3.71, "curve": "stepped" },
  782. { "time": 0.6667, "x": 5.26, "y": -3.71 },
  783. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  785. { "time": 1.9, "x": 0, "y": 0 }
  786. ],
  787. "scale": [
  788. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  789. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  790. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  791. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  792. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 1.9, "x": 1, "y": 1 }
  797. ]
  798. },
  799. "bone11": {
  800. "rotate": [
  801. { "time": 0, "angle": 0, "curve": "stepped" },
  802. { "time": 0.1667, "angle": 0 },
  803. { "time": 0.3, "angle": -0.41 },
  804. { "time": 0.5333, "angle": -0.93, "curve": "stepped" },
  805. { "time": 0.6667, "angle": -0.93 },
  806. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  807. { "time": 1.4, "angle": 0, "curve": "stepped" },
  808. { "time": 1.9, "angle": 0 }
  809. ],
  810. "translate": [
  811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  816. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  817. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  818. { "time": 1.9, "x": 0, "y": 0 }
  819. ],
  820. "scale": [
  821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  822. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  823. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  824. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  825. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  826. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  827. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  828. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  829. { "time": 1.9, "x": 1, "y": 1 }
  830. ]
  831. },
  832. "bone12": {
  833. "rotate": [
  834. { "time": 0, "angle": 0, "curve": "stepped" },
  835. { "time": 0.1667, "angle": 0 },
  836. { "time": 0.3, "angle": -4.29 },
  837. { "time": 0.5333, "angle": -9.88, "curve": "stepped" },
  838. { "time": 0.6667, "angle": -9.88 },
  839. { "time": 1.0333, "angle": 0 },
  840. { "time": 1.4, "angle": -7.71 },
  841. { "time": 1.9, "angle": 0 }
  842. ],
  843. "translate": [
  844. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  845. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  846. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  847. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  848. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  849. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  850. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 1.9, "x": 0, "y": 0 }
  852. ],
  853. "scale": [
  854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 1.9, "x": 1, "y": 1 }
  863. ]
  864. },
  865. "bone13": {
  866. "rotate": [
  867. { "time": 0, "angle": 0, "curve": "stepped" },
  868. { "time": 0.1667, "angle": 0 },
  869. { "time": 0.3, "angle": -13.89 },
  870. { "time": 0.5333, "angle": -6.65, "curve": "stepped" },
  871. { "time": 0.6667, "angle": -6.65 },
  872. { "time": 1.0333, "angle": 0 },
  873. { "time": 1.4, "angle": -8.44 },
  874. { "time": 1.9, "angle": 0 }
  875. ],
  876. "translate": [
  877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  883. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 1.9, "x": 0, "y": 0 }
  885. ],
  886. "scale": [
  887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  892. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  894. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  895. { "time": 1.9, "x": 1, "y": 1 }
  896. ]
  897. },
  898. "bone14": {
  899. "rotate": [
  900. { "time": 0, "angle": 0, "curve": "stepped" },
  901. { "time": 0.1667, "angle": 0 },
  902. { "time": 0.3, "angle": -10.14 },
  903. { "time": 0.5333, "angle": 1.79, "curve": "stepped" },
  904. { "time": 0.6667, "angle": 1.79 },
  905. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  906. { "time": 1.4, "angle": 0, "curve": "stepped" },
  907. { "time": 1.9, "angle": 0 }
  908. ],
  909. "translate": [
  910. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  914. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  915. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  916. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  917. { "time": 1.9, "x": 0, "y": 0 }
  918. ],
  919. "scale": [
  920. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 1.9, "x": 1, "y": 1 }
  929. ]
  930. },
  931. "bone15": {
  932. "rotate": [
  933. { "time": 0, "angle": 0, "curve": "stepped" },
  934. { "time": 0.1667, "angle": 0 },
  935. { "time": 0.3, "angle": 7.49 },
  936. { "time": 0.5333, "angle": 2.54, "curve": "stepped" },
  937. { "time": 0.6667, "angle": 2.54 },
  938. { "time": 1.0333, "angle": 0 },
  939. { "time": 1.4, "angle": 4.76 },
  940. { "time": 1.9, "angle": 0 }
  941. ],
  942. "translate": [
  943. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  944. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  949. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 1.9, "x": 0, "y": 0 }
  951. ],
  952. "scale": [
  953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  955. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  956. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  957. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  958. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 1.9, "x": 1, "y": 1 }
  962. ]
  963. },
  964. "bone16": {
  965. "rotate": [
  966. { "time": 0, "angle": 0, "curve": "stepped" },
  967. { "time": 0.1667, "angle": 0 },
  968. { "time": 0.2333, "angle": 3.28 },
  969. { "time": 0.3, "angle": 10.26 },
  970. { "time": 0.5333, "angle": 6.7, "curve": "stepped" },
  971. { "time": 0.6667, "angle": 6.7 },
  972. { "time": 1.0333, "angle": 0 },
  973. { "time": 1.4, "angle": 8.93 },
  974. { "time": 1.9, "angle": 0 }
  975. ],
  976. "translate": [
  977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  978. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  979. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  980. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 1.9, "x": 0, "y": 0 }
  985. ],
  986. "scale": [
  987. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  988. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  989. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  991. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  992. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  993. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 1.9, "x": 1, "y": 1 }
  996. ]
  997. },
  998. "bone17": {
  999. "rotate": [
  1000. { "time": 0, "angle": 0, "curve": "stepped" },
  1001. { "time": 0.1667, "angle": 0 },
  1002. { "time": 0.2333, "angle": -0.51 },
  1003. { "time": 0.3, "angle": 6.89 },
  1004. { "time": 0.5333, "angle": 4.38, "curve": "stepped" },
  1005. { "time": 0.6667, "angle": 4.38 },
  1006. { "time": 1.0333, "angle": 0 },
  1007. { "time": 1.4, "angle": 6.6 },
  1008. { "time": 1.9, "angle": 0 }
  1009. ],
  1010. "translate": [
  1011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 1.9, "x": 0, "y": 0 }
  1019. ],
  1020. "scale": [
  1021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1027. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1028. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1029. { "time": 1.9, "x": 1, "y": 1 }
  1030. ]
  1031. },
  1032. "bone18": {
  1033. "rotate": [
  1034. { "time": 0, "angle": 0, "curve": "stepped" },
  1035. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1036. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1037. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1038. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1039. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1040. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1041. { "time": 1.9, "angle": 0 }
  1042. ],
  1043. "translate": [
  1044. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1046. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1049. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1050. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1051. { "time": 1.9, "x": 0, "y": 0 }
  1052. ],
  1053. "scale": [
  1054. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1056. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1057. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1058. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1059. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1060. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1061. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 1.9, "x": 1, "y": 1 }
  1063. ]
  1064. },
  1065. "bone19": {
  1066. "rotate": [
  1067. { "time": 0, "angle": 0 },
  1068. { "time": 0.1667, "angle": 4.87 },
  1069. { "time": 0.3, "angle": -2.21 },
  1070. { "time": 0.5333, "angle": -3.14, "curve": "stepped" },
  1071. { "time": 0.6667, "angle": -3.14 },
  1072. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1073. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1074. { "time": 1.9, "angle": 0 }
  1075. ],
  1076. "translate": [
  1077. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 0.1667, "x": 0, "y": 0 },
  1079. { "time": 0.3, "x": 0.04, "y": -1.06 },
  1080. { "time": 0.5333, "x": 0.09, "y": -2.38, "curve": "stepped" },
  1081. { "time": 0.6667, "x": 0.09, "y": -2.38 },
  1082. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  1083. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 1.9, "x": 0, "y": 0 }
  1085. ],
  1086. "scale": [
  1087. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 1.9, "x": 1, "y": 1 }
  1096. ]
  1097. },
  1098. "bone20": {
  1099. "rotate": [
  1100. { "time": 0, "angle": 0, "curve": "stepped" },
  1101. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1102. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1103. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1104. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1105. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1106. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1107. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1108. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1109. { "time": 1.9, "angle": 0 }
  1110. ],
  1111. "translate": [
  1112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1113. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1114. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 0.9333, "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.9, "x": 0, "y": 0 }
  1122. ],
  1123. "scale": [
  1124. { "time": 0, "x": 1, "y": 1 },
  1125. { "time": 0.1, "x": 0.501, "y": 1, "curve": "stepped" },
  1126. { "time": 0.2, "x": 0.501, "y": 1 },
  1127. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 0.7667, "x": 1, "y": 1 },
  1130. { "time": 0.8667, "x": 0.501, "y": 1, "curve": "stepped" },
  1131. { "time": 0.9333, "x": 0.501, "y": 1 },
  1132. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 1.9, "x": 1, "y": 1 }
  1135. ]
  1136. },
  1137. "bone21": {
  1138. "rotate": [
  1139. { "time": 0, "angle": 0, "curve": "stepped" },
  1140. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1141. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1142. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1143. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1144. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1145. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1146. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1147. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1148. { "time": 1.9, "angle": 0 }
  1149. ],
  1150. "translate": [
  1151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1152. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1159. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1160. { "time": 1.9, "x": 0, "y": 0 }
  1161. ],
  1162. "scale": [
  1163. { "time": 0, "x": 1, "y": 1 },
  1164. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  1165. { "time": 0.2, "x": 0.504, "y": 1 },
  1166. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1167. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1168. { "time": 0.7667, "x": 1, "y": 1 },
  1169. { "time": 0.8667, "x": 0.501, "y": 1 },
  1170. { "time": 0.9333, "x": 0.504, "y": 1 },
  1171. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 1.9, "x": 1, "y": 1 }
  1174. ]
  1175. },
  1176. "bone22": {
  1177. "rotate": [
  1178. { "time": 0, "angle": 0, "curve": "stepped" },
  1179. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1180. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1181. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1182. { "time": 1.9, "angle": 0 }
  1183. ],
  1184. "translate": [
  1185. { "time": 0, "x": -1.58, "y": -0.06, "curve": "stepped" },
  1186. { "time": 1.9, "x": -1.58, "y": -0.06 }
  1187. ],
  1188. "scale": [
  1189. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1190. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1191. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1192. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1193. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1194. { "time": 1.9, "x": 1, "y": 1 }
  1195. ]
  1196. },
  1197. "bone23": {
  1198. "rotate": [
  1199. { "time": 0, "angle": 0, "curve": "stepped" },
  1200. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1201. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1202. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1203. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  1204. { "time": 0.9333, "angle": 0, "curve": "stepped" },
  1205. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1206. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1207. { "time": 1.9, "angle": 0 }
  1208. ],
  1209. "translate": [
  1210. { "time": 0, "x": 0, "y": 0 },
  1211. { "time": 0.1, "x": -1.96, "y": -0.02, "curve": "stepped" },
  1212. { "time": 0.2, "x": -1.96, "y": -0.02 },
  1213. { "time": 0.3, "x": 0, "y": 0 },
  1214. { "time": 0.7667, "x": -1.96, "y": -0.02, "curve": "stepped" },
  1215. { "time": 0.9333, "x": -1.96, "y": -0.02 },
  1216. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1217. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1218. { "time": 1.9, "x": 0, "y": 0 }
  1219. ],
  1220. "scale": [
  1221. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1223. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1227. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1228. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 1.9, "x": 1, "y": 1 }
  1231. ]
  1232. },
  1233. "bone24": {
  1234. "rotate": [
  1235. { "time": 0, "angle": 0 },
  1236. { "time": 0.1667, "angle": -3.38 },
  1237. { "time": 0.3333, "angle": 0 },
  1238. { "time": 0.5667, "angle": -3.38 },
  1239. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1240. { "time": 1.0667, "angle": 0 },
  1241. { "time": 1.4, "angle": -3.38 },
  1242. { "time": 1.9, "angle": 0 }
  1243. ],
  1244. "translate": [
  1245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1250. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 1.9, "x": 0, "y": 0 }
  1253. ],
  1254. "scale": [
  1255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1256. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1257. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1258. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1260. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1261. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1262. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1263. { "time": 1.9, "x": 1, "y": 1 }
  1264. ]
  1265. },
  1266. "bone25": {
  1267. "rotate": [
  1268. { "time": 0, "angle": 0 },
  1269. { "time": 0.1667, "angle": -3.38 },
  1270. { "time": 0.3333, "angle": 0 },
  1271. { "time": 0.5667, "angle": -3.38 },
  1272. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1273. { "time": 1.0667, "angle": 0 },
  1274. { "time": 1.4, "angle": -3.38 },
  1275. { "time": 1.9, "angle": 0 }
  1276. ],
  1277. "translate": [
  1278. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1279. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1280. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1281. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1282. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1283. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1284. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1285. { "time": 1.9, "x": 0, "y": 0 }
  1286. ],
  1287. "scale": [
  1288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 1.9, "x": 1, "y": 1 }
  1297. ]
  1298. },
  1299. "bone26": {
  1300. "rotate": [
  1301. { "time": 0, "angle": 0 },
  1302. { "time": 0.1667, "angle": -3.38 },
  1303. { "time": 0.3333, "angle": 0 },
  1304. { "time": 0.5667, "angle": -3.38 },
  1305. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1306. { "time": 1.0667, "angle": 0 },
  1307. { "time": 1.4, "angle": -3.38 },
  1308. { "time": 1.9, "angle": 0 }
  1309. ],
  1310. "translate": [
  1311. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1312. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1313. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 1.9, "x": 0, "y": 0 }
  1319. ],
  1320. "scale": [
  1321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1322. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1323. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1324. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1325. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1326. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 1.9, "x": 1, "y": 1 }
  1330. ]
  1331. },
  1332. "bone27": {
  1333. "rotate": [
  1334. { "time": 0, "angle": 0 },
  1335. { "time": 0.1667, "angle": 3.97 },
  1336. { "time": 0.3333, "angle": 0 },
  1337. { "time": 0.5667, "angle": 3.97 },
  1338. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1339. { "time": 1.0667, "angle": 0 },
  1340. { "time": 1.4, "angle": 3.97 },
  1341. { "time": 1.9, "angle": 0 }
  1342. ],
  1343. "translate": [
  1344. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1345. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1346. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1347. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1348. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1349. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1350. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1351. { "time": 1.9, "x": 0, "y": 0 }
  1352. ],
  1353. "scale": [
  1354. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1355. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1356. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1357. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1358. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1359. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1360. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1361. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1362. { "time": 1.9, "x": 1, "y": 1 }
  1363. ]
  1364. },
  1365. "bone28": {
  1366. "rotate": [
  1367. { "time": 0, "angle": 0 },
  1368. { "time": 0.1667, "angle": 3.97 },
  1369. { "time": 0.3333, "angle": 0 },
  1370. { "time": 0.5667, "angle": 3.97 },
  1371. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1372. { "time": 1.0667, "angle": 0 },
  1373. { "time": 1.4, "angle": 3.97 },
  1374. { "time": 1.9, "angle": 0 }
  1375. ],
  1376. "translate": [
  1377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1378. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1379. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1380. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1381. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.9, "x": 0, "y": 0 }
  1385. ],
  1386. "scale": [
  1387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1388. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1389. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 1.9, "x": 1, "y": 1 }
  1396. ]
  1397. },
  1398. "bone29": {
  1399. "rotate": [
  1400. { "time": 0, "angle": 0 },
  1401. { "time": 0.1667, "angle": 3.97 },
  1402. { "time": 0.3333, "angle": 0 },
  1403. { "time": 0.5667, "angle": 3.97 },
  1404. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1405. { "time": 1.0667, "angle": 0 },
  1406. { "time": 1.4, "angle": 3.97 },
  1407. { "time": 1.9, "angle": 0 }
  1408. ],
  1409. "translate": [
  1410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1411. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1412. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1413. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1414. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1415. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1416. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1417. { "time": 1.9, "x": 0, "y": 0 }
  1418. ],
  1419. "scale": [
  1420. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1421. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1422. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1423. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1424. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1425. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1426. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1427. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1428. { "time": 1.9, "x": 1, "y": 1 }
  1429. ]
  1430. },
  1431. "bone30": {
  1432. "rotate": [
  1433. { "time": 0, "angle": 0 },
  1434. { "time": 0.1667, "angle": 19.71 },
  1435. { "time": 0.3333, "angle": 0 },
  1436. { "time": 0.5667, "angle": 19.71 },
  1437. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1438. { "time": 1.0667, "angle": 0 },
  1439. { "time": 1.4, "angle": 19.71 },
  1440. { "time": 1.9, "angle": 0 }
  1441. ],
  1442. "translate": [
  1443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1448. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1449. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1450. { "time": 1.9, "x": 0, "y": 0 }
  1451. ],
  1452. "scale": [
  1453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1456. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1457. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1461. { "time": 1.9, "x": 1, "y": 1 }
  1462. ]
  1463. },
  1464. "bone31": {
  1465. "rotate": [
  1466. { "time": 0, "angle": 0 },
  1467. { "time": 0.1667, "angle": -6.19 },
  1468. { "time": 0.3333, "angle": 0 },
  1469. { "time": 0.5667, "angle": -6.19 },
  1470. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1471. { "time": 1.0667, "angle": 0 },
  1472. { "time": 1.4, "angle": -6.19 },
  1473. { "time": 1.9, "angle": 0 }
  1474. ],
  1475. "translate": [
  1476. { "time": 0, "x": 0, "y": 0 },
  1477. { "time": 0.1667, "x": -0.29, "y": 0.08 },
  1478. { "time": 0.3333, "x": 0, "y": 0 },
  1479. { "time": 0.5667, "x": -0.29, "y": 0.08 },
  1480. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 1.0667, "x": 0, "y": 0 },
  1482. { "time": 1.4, "x": -0.29, "y": 0.08 },
  1483. { "time": 1.9, "x": 0, "y": 0 }
  1484. ],
  1485. "scale": [
  1486. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1487. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1494. { "time": 1.9, "x": 1, "y": 1 }
  1495. ]
  1496. },
  1497. "bone32": {
  1498. "rotate": [
  1499. { "time": 0, "angle": 0 },
  1500. { "time": 0.1667, "angle": 2.78 },
  1501. { "time": 0.3333, "angle": 0 },
  1502. { "time": 0.5667, "angle": 2.78 },
  1503. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1504. { "time": 1.0667, "angle": 0 },
  1505. { "time": 1.4, "angle": 2.78 },
  1506. { "time": 1.9, "angle": 0 }
  1507. ],
  1508. "translate": [
  1509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1512. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 1.9, "x": 0, "y": 0 }
  1517. ],
  1518. "scale": [
  1519. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 1.9, "x": 1, "y": 1 }
  1528. ]
  1529. },
  1530. "bone33": {
  1531. "rotate": [
  1532. { "time": 0, "angle": 0 },
  1533. { "time": 0.1667, "angle": 3.38 },
  1534. { "time": 0.3333, "angle": 0 },
  1535. { "time": 0.5667, "angle": 3.38 },
  1536. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1537. { "time": 1.0667, "angle": 0 },
  1538. { "time": 1.4, "angle": 3.38 },
  1539. { "time": 1.9, "angle": 0 }
  1540. ],
  1541. "translate": [
  1542. { "time": 0, "x": 0, "y": 0 },
  1543. { "time": 0.1667, "x": -1.61, "y": 0.33 },
  1544. { "time": 0.3333, "x": 0, "y": 0 },
  1545. { "time": 0.5667, "x": -1.61, "y": 0.33 },
  1546. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 1.0667, "x": 0, "y": 0 },
  1548. { "time": 1.4, "x": -1.61, "y": 0.33 },
  1549. { "time": 1.9, "x": 0, "y": 0 }
  1550. ],
  1551. "scale": [
  1552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1553. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1554. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1555. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1556. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1557. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1558. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1559. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1560. { "time": 1.9, "x": 1, "y": 1 }
  1561. ]
  1562. },
  1563. "bone34": {
  1564. "rotate": [
  1565. { "time": 0, "angle": 0, "curve": "stepped" },
  1566. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1567. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1568. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1569. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1570. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1571. { "time": 1.4, "angle": 0, "curve": "stepped" },
  1572. { "time": 1.9, "angle": 0 }
  1573. ],
  1574. "translate": [
  1575. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1576. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1577. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1578. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1579. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1580. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1581. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1582. { "time": 1.9, "x": 0, "y": 0 }
  1583. ],
  1584. "scale": [
  1585. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1587. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1588. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1589. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1590. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1591. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 1.9, "x": 1, "y": 1 }
  1594. ]
  1595. },
  1596. "bone35": {
  1597. "rotate": [
  1598. { "time": 0, "angle": 0 },
  1599. { "time": 0.1667, "angle": 1.61 },
  1600. { "time": 0.3333, "angle": 0 },
  1601. { "time": 0.5667, "angle": 1.61 },
  1602. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1603. { "time": 1.0667, "angle": 0 },
  1604. { "time": 1.4, "angle": 1.61 },
  1605. { "time": 1.9, "angle": 0 }
  1606. ],
  1607. "translate": [
  1608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 1.9, "x": 0, "y": 0 }
  1616. ],
  1617. "scale": [
  1618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1625. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1626. { "time": 1.9, "x": 1, "y": 1 }
  1627. ]
  1628. },
  1629. "bone36": {
  1630. "rotate": [
  1631. { "time": 0, "angle": 0 },
  1632. { "time": 0.1667, "angle": 0.38 },
  1633. { "time": 0.3333, "angle": 0 },
  1634. { "time": 0.5667, "angle": 0.38 },
  1635. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1636. { "time": 1.0667, "angle": 0 },
  1637. { "time": 1.4, "angle": 0.38 },
  1638. { "time": 1.9, "angle": 0 }
  1639. ],
  1640. "translate": [
  1641. { "time": 0, "x": 0, "y": 0 },
  1642. { "time": 0.1667, "x": -0.21, "y": 0.05 },
  1643. { "time": 0.3333, "x": 0, "y": 0 },
  1644. { "time": 0.5667, "x": -0.21, "y": 0.05 },
  1645. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1646. { "time": 1.0667, "x": 0, "y": 0 },
  1647. { "time": 1.4, "x": -0.21, "y": 0.05 },
  1648. { "time": 1.9, "x": 0, "y": 0 }
  1649. ],
  1650. "scale": [
  1651. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1652. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1653. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1654. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1655. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1656. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 1.9, "x": 1, "y": 1 }
  1660. ]
  1661. },
  1662. "bone37": {
  1663. "rotate": [
  1664. { "time": 0, "angle": 0 },
  1665. { "time": 0.1667, "angle": 6.36 },
  1666. { "time": 0.3333, "angle": 0 },
  1667. { "time": 0.5667, "angle": 6.36 },
  1668. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1669. { "time": 1.0667, "angle": 0 },
  1670. { "time": 1.4, "angle": 6.36 },
  1671. { "time": 1.9, "angle": 0 }
  1672. ],
  1673. "translate": [
  1674. { "time": 0, "x": 0, "y": 0 },
  1675. { "time": 0.1667, "x": -0.56, "y": 0.34 },
  1676. { "time": 0.3333, "x": 0, "y": 0 },
  1677. { "time": 0.5667, "x": -0.56, "y": 0.34 },
  1678. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1679. { "time": 1.0667, "x": 0, "y": 0 },
  1680. { "time": 1.4, "x": -0.56, "y": 0.34 },
  1681. { "time": 1.9, "x": 0, "y": 0 }
  1682. ],
  1683. "scale": [
  1684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 1.9, "x": 1, "y": 1 }
  1693. ]
  1694. },
  1695. "bone38": {
  1696. "rotate": [
  1697. { "time": 0, "angle": 0 },
  1698. { "time": 0.1667, "angle": -1.93 },
  1699. { "time": 0.3333, "angle": 0 },
  1700. { "time": 0.5667, "angle": -1.93 },
  1701. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1702. { "time": 1.0667, "angle": 0 },
  1703. { "time": 1.4, "angle": -1.93 },
  1704. { "time": 1.9, "angle": 0 }
  1705. ],
  1706. "translate": [
  1707. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1709. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1710. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1711. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1712. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1713. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1714. { "time": 1.9, "x": 0, "y": 0 }
  1715. ],
  1716. "scale": [
  1717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1718. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1719. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1720. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1721. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1722. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 1.9, "x": 1, "y": 1 }
  1726. ]
  1727. },
  1728. "bone39": {
  1729. "rotate": [
  1730. { "time": 0, "angle": 0 },
  1731. { "time": 0.1667, "angle": 11.55 },
  1732. { "time": 0.3333, "angle": 0 },
  1733. { "time": 0.5667, "angle": 11.55 },
  1734. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1735. { "time": 1.0667, "angle": 0 },
  1736. { "time": 1.4, "angle": 11.55 },
  1737. { "time": 1.9, "angle": 0 }
  1738. ],
  1739. "translate": [
  1740. { "time": 0, "x": 0, "y": 0 },
  1741. { "time": 0.1667, "x": -0.68, "y": 0.02 },
  1742. { "time": 0.3333, "x": 0, "y": 0 },
  1743. { "time": 0.5667, "x": -0.68, "y": 0.02 },
  1744. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1745. { "time": 1.0667, "x": 0, "y": 0 },
  1746. { "time": 1.4, "x": -0.68, "y": 0.02 },
  1747. { "time": 1.9, "x": 0, "y": 0 }
  1748. ],
  1749. "scale": [
  1750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1755. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 1.9, "x": 1, "y": 1 }
  1759. ]
  1760. },
  1761. "bone40": {
  1762. "rotate": [
  1763. { "time": 0, "angle": 0 },
  1764. { "time": 0.1667, "angle": 2.21 },
  1765. { "time": 0.3333, "angle": 0 },
  1766. { "time": 0.5667, "angle": 2.21 },
  1767. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1768. { "time": 1.0667, "angle": 0 },
  1769. { "time": 1.4, "angle": 2.21 },
  1770. { "time": 1.9, "angle": 0 }
  1771. ],
  1772. "translate": [
  1773. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1775. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1776. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1777. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1778. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1779. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 1.9, "x": 0, "y": 0 }
  1781. ],
  1782. "scale": [
  1783. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1784. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1785. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1789. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1790. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1791. { "time": 1.9, "x": 1, "y": 1 }
  1792. ]
  1793. },
  1794. "bone41": {
  1795. "rotate": [
  1796. { "time": 0, "angle": 0 },
  1797. { "time": 0.1667, "angle": -6.1 },
  1798. { "time": 0.3333, "angle": 0 },
  1799. { "time": 0.5667, "angle": -6.1 },
  1800. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1801. { "time": 1.0667, "angle": 0 },
  1802. { "time": 1.4, "angle": -6.1 },
  1803. { "time": 1.9, "angle": 0 }
  1804. ],
  1805. "translate": [
  1806. { "time": 0, "x": 0, "y": 0 },
  1807. { "time": 0.1667, "x": -0.91, "y": 0.5 },
  1808. { "time": 0.3333, "x": 0, "y": 0 },
  1809. { "time": 0.5667, "x": -0.91, "y": 0.5 },
  1810. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 1.0667, "x": 0, "y": 0 },
  1812. { "time": 1.4, "x": -0.91, "y": 0.5 },
  1813. { "time": 1.9, "x": 0, "y": 0 }
  1814. ],
  1815. "scale": [
  1816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 1.9, "x": 1, "y": 1 }
  1825. ]
  1826. },
  1827. "bone42": {
  1828. "rotate": [
  1829. { "time": 0, "angle": 0 },
  1830. { "time": 0.1667, "angle": -1.66 },
  1831. { "time": 0.3333, "angle": 0 },
  1832. { "time": 0.5667, "angle": -1.66 },
  1833. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1834. { "time": 1.0667, "angle": 0 },
  1835. { "time": 1.4, "angle": -1.66 },
  1836. { "time": 1.9, "angle": 0 }
  1837. ],
  1838. "translate": [
  1839. { "time": 0, "x": 0, "y": 0 },
  1840. { "time": 0.1667, "x": 0.27, "y": -0.05 },
  1841. { "time": 0.3333, "x": 0, "y": 0 },
  1842. { "time": 0.5667, "x": 0.27, "y": -0.05 },
  1843. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 1.0667, "x": 0, "y": 0 },
  1845. { "time": 1.4, "x": 0.27, "y": -0.05 },
  1846. { "time": 1.9, "x": 0, "y": 0 }
  1847. ],
  1848. "scale": [
  1849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1850. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1851. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1852. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1853. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1857. { "time": 1.9, "x": 1, "y": 1 }
  1858. ]
  1859. },
  1860. "bone43": {
  1861. "rotate": [
  1862. { "time": 0, "angle": 0 },
  1863. { "time": 0.1667, "angle": 4.84 },
  1864. { "time": 0.3333, "angle": 0 },
  1865. { "time": 0.5667, "angle": 4.84 },
  1866. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1867. { "time": 1.0667, "angle": 0 },
  1868. { "time": 1.4, "angle": 4.84 },
  1869. { "time": 1.9, "angle": 0 }
  1870. ],
  1871. "translate": [
  1872. { "time": 0, "x": 0, "y": 0 },
  1873. { "time": 0.1667, "x": 0.51, "y": -0.11 },
  1874. { "time": 0.3333, "x": 0, "y": 0 },
  1875. { "time": 0.5667, "x": 0.51, "y": -0.11 },
  1876. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1877. { "time": 1.0667, "x": 0, "y": 0 },
  1878. { "time": 1.4, "x": 0.51, "y": -0.11 },
  1879. { "time": 1.9, "x": 0, "y": 0 }
  1880. ],
  1881. "scale": [
  1882. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1883. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1884. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1885. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 1.9, "x": 1, "y": 1 }
  1891. ]
  1892. },
  1893. "bone44": {
  1894. "rotate": [
  1895. { "time": 0, "angle": 0 },
  1896. { "time": 0.1667, "angle": -19.55 },
  1897. { "time": 0.3333, "angle": 0 },
  1898. { "time": 0.5667, "angle": -19.55 },
  1899. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1900. { "time": 1.0667, "angle": 0 },
  1901. { "time": 1.4, "angle": -19.55 },
  1902. { "time": 1.9, "angle": 0 }
  1903. ],
  1904. "translate": [
  1905. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1910. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1911. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 1.9, "x": 0, "y": 0 }
  1913. ],
  1914. "scale": [
  1915. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1916. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1917. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1920. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 1.9, "x": 1, "y": 1 }
  1924. ]
  1925. },
  1926. "bone45": {
  1927. "rotate": [
  1928. { "time": 0, "angle": 0 },
  1929. { "time": 0.1667, "angle": -4.52 },
  1930. { "time": 0.3333, "angle": 0 },
  1931. { "time": 0.5667, "angle": -4.52 },
  1932. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1933. { "time": 1.0667, "angle": 0 },
  1934. { "time": 1.4, "angle": -4.52 },
  1935. { "time": 1.9, "angle": 0 }
  1936. ],
  1937. "translate": [
  1938. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1939. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1941. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1942. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1943. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1944. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1945. { "time": 1.9, "x": 0, "y": 0 }
  1946. ],
  1947. "scale": [
  1948. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1949. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1950. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1952. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 1.9, "x": 1, "y": 1 }
  1957. ]
  1958. },
  1959. "bone46": {
  1960. "rotate": [
  1961. { "time": 0, "angle": 0 },
  1962. { "time": 0.1667, "angle": -4.52 },
  1963. { "time": 0.3333, "angle": 0 },
  1964. { "time": 0.5667, "angle": -4.52 },
  1965. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1966. { "time": 1.0667, "angle": 0 },
  1967. { "time": 1.4, "angle": -4.52 },
  1968. { "time": 1.9, "angle": 0 }
  1969. ],
  1970. "translate": [
  1971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1973. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1974. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1975. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 1.9, "x": 0, "y": 0 }
  1979. ],
  1980. "scale": [
  1981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 1.9, "x": 1, "y": 1 }
  1990. ]
  1991. },
  1992. "bone47": {
  1993. "rotate": [
  1994. { "time": 0, "angle": 0 },
  1995. { "time": 0.1667, "angle": -19.04 },
  1996. { "time": 0.3333, "angle": 0 },
  1997. { "time": 0.5667, "angle": -19.04 },
  1998. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1999. { "time": 1.0667, "angle": 0 },
  2000. { "time": 1.4, "angle": -19.04 },
  2001. { "time": 1.9, "angle": 0 }
  2002. ],
  2003. "translate": [
  2004. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2005. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2006. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2007. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 1.9, "x": 0, "y": 0 }
  2012. ],
  2013. "scale": [
  2014. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2017. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 1.9, "x": 1, "y": 1 }
  2023. ]
  2024. },
  2025. "bone48": {
  2026. "rotate": [
  2027. { "time": 0, "angle": 0 },
  2028. { "time": 0.1667, "angle": -5.77 },
  2029. { "time": 0.3333, "angle": 0 },
  2030. { "time": 0.5667, "angle": -5.77 },
  2031. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2032. { "time": 1.0667, "angle": 0 },
  2033. { "time": 1.4, "angle": -5.77 },
  2034. { "time": 1.9, "angle": 0 }
  2035. ],
  2036. "translate": [
  2037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 1.9, "x": 0, "y": 0 }
  2045. ],
  2046. "scale": [
  2047. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2053. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2054. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2055. { "time": 1.9, "x": 1, "y": 1 }
  2056. ]
  2057. },
  2058. "bone49": {
  2059. "rotate": [
  2060. { "time": 0, "angle": 0 },
  2061. { "time": 0.1667, "angle": -5.77 },
  2062. { "time": 0.3333, "angle": 0 },
  2063. { "time": 0.5667, "angle": -5.77 },
  2064. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2065. { "time": 1.0667, "angle": 0 },
  2066. { "time": 1.4, "angle": -5.77 },
  2067. { "time": 1.9, "angle": 0 }
  2068. ],
  2069. "translate": [
  2070. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2077. { "time": 1.9, "x": 0, "y": 0 }
  2078. ],
  2079. "scale": [
  2080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2081. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2082. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2083. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2084. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2085. { "time": 0.8667, "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.9, "x": 1, "y": 1 }
  2089. ]
  2090. },
  2091. "bone50": {
  2092. "rotate": [
  2093. { "time": 0, "angle": 0, "curve": "stepped" },
  2094. { "time": 0.1667, "angle": 0 },
  2095. { "time": 0.3, "angle": -3.07 },
  2096. { "time": 0.5333, "angle": -6.9, "curve": "stepped" },
  2097. { "time": 0.6667, "angle": -6.9 },
  2098. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2099. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2100. { "time": 1.9, "angle": 0 }
  2101. ],
  2102. "translate": [
  2103. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 0.1667, "x": 0, "y": 0 },
  2105. { "time": 0.3, "x": 0.85, "y": 0 },
  2106. { "time": 0.5333, "x": 1.92, "y": 0, "curve": "stepped" },
  2107. { "time": 0.6667, "x": 1.92, "y": 0 },
  2108. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2109. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2110. { "time": 1.9, "x": 0, "y": 0 }
  2111. ],
  2112. "scale": [
  2113. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2115. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2116. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2117. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2118. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2119. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2120. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2121. { "time": 1.9, "x": 1, "y": 1 }
  2122. ]
  2123. },
  2124. "bone51": {
  2125. "rotate": [
  2126. { "time": 0, "angle": 0 },
  2127. { "time": 0.1667, "angle": -15.88 },
  2128. { "time": 0.2333, "angle": -63.24 },
  2129. { "time": 0.3, "angle": -80.42 },
  2130. { "time": 0.3667, "angle": -49.31 },
  2131. { "time": 0.5333, "angle": -56.8, "curve": "stepped" },
  2132. { "time": 0.6667, "angle": -56.8 },
  2133. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2134. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2135. { "time": 1.9, "angle": 0 }
  2136. ],
  2137. "translate": [
  2138. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 0.1667, "x": 0, "y": 0 },
  2140. { "time": 0.3, "x": 0.5, "y": 4.5 },
  2141. { "time": 0.3667, "x": 3.68, "y": 8.25 },
  2142. { "time": 0.5333, "x": 1.7, "y": 4.93, "curve": "stepped" },
  2143. { "time": 0.6667, "x": 1.7, "y": 4.93 },
  2144. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2145. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2146. { "time": 1.9, "x": 0, "y": 0 }
  2147. ],
  2148. "scale": [
  2149. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2150. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2153. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2154. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2155. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2156. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2157. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2158. { "time": 1.9, "x": 1, "y": 1 }
  2159. ]
  2160. },
  2161. "bone54": {
  2162. "rotate": [
  2163. { "time": 0, "angle": 0 },
  2164. { "time": 0.1667, "angle": -0.77 },
  2165. { "time": 0.3, "angle": 15.85 },
  2166. { "time": 0.5333, "angle": 18.18, "curve": "stepped" },
  2167. { "time": 0.6667, "angle": 18.18 },
  2168. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2169. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2170. { "time": 1.9, "angle": 0 }
  2171. ],
  2172. "translate": [
  2173. { "time": 0, "x": 0, "y": 0 },
  2174. { "time": 0.1667, "x": 1.36, "y": 1.1 },
  2175. { "time": 0.3, "x": 0.47, "y": 1.15 },
  2176. { "time": 0.5333, "x": 3.22, "y": 0.97, "curve": "stepped" },
  2177. { "time": 0.6667, "x": 3.22, "y": 0.97 },
  2178. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2180. { "time": 1.9, "x": 0, "y": 0 }
  2181. ],
  2182. "scale": [
  2183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2184. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2185. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2186. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2187. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2188. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2191. { "time": 1.9, "x": 1, "y": 1 }
  2192. ]
  2193. },
  2194. "bone57": {
  2195. "rotate": [
  2196. { "time": 0, "angle": 0 },
  2197. { "time": 0.1667, "angle": 5.34 },
  2198. { "time": 0.3, "angle": 5.62 },
  2199. { "time": 0.5333, "angle": 5.97, "curve": "stepped" },
  2200. { "time": 0.6667, "angle": 5.97 },
  2201. { "time": 1.0333, "angle": 0 },
  2202. { "time": 1.4, "angle": 5.97 },
  2203. { "time": 1.9, "angle": 0 }
  2204. ],
  2205. "translate": [
  2206. { "time": 0, "x": 0, "y": 0 },
  2207. { "time": 0.1667, "x": 1.73, "y": -6.26 },
  2208. { "time": 0.3, "x": 2.03, "y": -1.14 },
  2209. { "time": 0.5333, "x": 1.65, "y": -4.16, "curve": "stepped" },
  2210. { "time": 0.6667, "x": 1.65, "y": -4.16, "curve": "stepped" },
  2211. { "time": 0.8, "x": 1.65, "y": -4.16 },
  2212. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 1.9, "x": 0, "y": 0 }
  2215. ],
  2216. "scale": [
  2217. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 1.9, "x": 1, "y": 1 }
  2226. ]
  2227. },
  2228. "bone58": {
  2229. "rotate": [
  2230. { "time": 0, "angle": 0 },
  2231. { "time": 0.3, "angle": 23.8 },
  2232. { "time": 0.5333, "angle": 6.71, "curve": "stepped" },
  2233. { "time": 0.6667, "angle": 6.71 },
  2234. { "time": 1.0333, "angle": 0 },
  2235. { "time": 1.4, "angle": 15.21 },
  2236. { "time": 1.9, "angle": 0 }
  2237. ],
  2238. "translate": [
  2239. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 1.9, "x": 0, "y": 0 }
  2247. ],
  2248. "scale": [
  2249. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.9, "x": 1, "y": 1 }
  2258. ]
  2259. },
  2260. "bone60": {
  2261. "rotate": [
  2262. { "time": 0, "angle": 0 },
  2263. { "time": 0.3, "angle": 17.03 },
  2264. { "time": 0.5333, "angle": 7.76, "curve": "stepped" },
  2265. { "time": 0.6667, "angle": 7.76 },
  2266. { "time": 1.0333, "angle": 0 },
  2267. { "time": 1.4, "angle": 3.61 },
  2268. { "time": 1.9, "angle": 0 }
  2269. ],
  2270. "translate": [
  2271. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.3, "x": 0, "y": 0 },
  2274. { "time": 0.5333, "x": -2.31, "y": -2.29, "curve": "stepped" },
  2275. { "time": 0.6667, "x": -2.31, "y": -2.29 },
  2276. { "time": 0.8, "x": -4.79, "y": -0.33 },
  2277. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2279. { "time": 1.9, "x": 0, "y": 0 }
  2280. ],
  2281. "scale": [
  2282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2288. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2289. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2290. { "time": 1.9, "x": 1, "y": 1 }
  2291. ]
  2292. },
  2293. "bone61": {
  2294. "rotate": [
  2295. { "time": 0, "angle": 0 },
  2296. { "time": 0.3, "angle": 17.03 },
  2297. { "time": 0.5333, "angle": -8.9, "curve": "stepped" },
  2298. { "time": 0.6667, "angle": -8.9 },
  2299. { "time": 1.0333, "angle": 0 },
  2300. { "time": 1.4, "angle": 3.61 },
  2301. { "time": 1.9, "angle": 0 }
  2302. ],
  2303. "translate": [
  2304. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 1.9, "x": 0, "y": 0 }
  2312. ],
  2313. "scale": [
  2314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2317. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2318. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2319. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2320. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2321. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2322. { "time": 1.9, "x": 1, "y": 1 }
  2323. ]
  2324. },
  2325. "bone62": {
  2326. "rotate": [
  2327. { "time": 0, "angle": 0 },
  2328. { "time": 0.1667, "angle": -11.81 },
  2329. { "time": 0.3, "angle": 9.97 },
  2330. { "time": 0.5333, "angle": -6.15, "curve": "stepped" },
  2331. { "time": 0.6667, "angle": -6.15 },
  2332. { "time": 1.0333, "angle": 0 },
  2333. { "time": 1.4, "angle": 3.61 },
  2334. { "time": 1.9, "angle": 0 }
  2335. ],
  2336. "translate": [
  2337. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2338. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2339. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2340. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2341. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2342. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2343. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 1.9, "x": 0, "y": 0 }
  2345. ],
  2346. "scale": [
  2347. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2348. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2349. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2350. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2351. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2353. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2354. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2355. { "time": 1.9, "x": 1, "y": 1 }
  2356. ]
  2357. },
  2358. "bone63": {
  2359. "rotate": [
  2360. { "time": 0, "angle": 0, "curve": "stepped" },
  2361. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2362. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2363. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2364. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2365. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2366. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2367. { "time": 1.9, "angle": 0 }
  2368. ],
  2369. "translate": [
  2370. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 1.9, "x": 0, "y": 0 }
  2378. ],
  2379. "scale": [
  2380. { "time": 0, "x": 1, "y": 1 },
  2381. { "time": 0.1667, "x": 0.632, "y": 1, "curve": "stepped" },
  2382. { "time": 0.7333, "x": 0.632, "y": 1, "curve": "stepped" },
  2383. { "time": 0.9333, "x": 0.632, "y": 1 },
  2384. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 1.9, "x": 1, "y": 1 }
  2387. ]
  2388. },
  2389. "bone59": {
  2390. "rotate": [
  2391. { "time": 0, "angle": 0 },
  2392. { "time": 0.3, "angle": 23.8 },
  2393. { "time": 0.5333, "angle": 6.71, "curve": "stepped" },
  2394. { "time": 0.6667, "angle": 6.71 },
  2395. { "time": 1.0333, "angle": 0 },
  2396. { "time": 1.4, "angle": 15.21 },
  2397. { "time": 1.9, "angle": 0 }
  2398. ],
  2399. "translate": [
  2400. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2401. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2402. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2404. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2405. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2406. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2407. { "time": 1.9, "x": 0, "y": 0 }
  2408. ],
  2409. "scale": [
  2410. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2415. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2416. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2417. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2418. { "time": 1.9, "x": 1, "y": 1 }
  2419. ]
  2420. },
  2421. "bone": {
  2422. "rotate": [
  2423. { "time": 0, "angle": 0 }
  2424. ],
  2425. "translate": [
  2426. { "time": 0, "x": 0, "y": 0 },
  2427. { "time": 0.6667, "x": 0, "y": -1.86 }
  2428. ],
  2429. "scale": [
  2430. { "time": 0.7333, "x": 1, "y": 1 }
  2431. ]
  2432. },
  2433. "bone55": {
  2434. "rotate": [
  2435. { "time": 0, "angle": 0 },
  2436. { "time": 0.1667, "angle": 7.52 },
  2437. { "time": 0.3, "angle": 30.73 },
  2438. { "time": 0.5333, "angle": 12.48, "curve": "stepped" },
  2439. { "time": 0.6667, "angle": 12.48 },
  2440. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2441. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2442. { "time": 1.9, "angle": 0 }
  2443. ],
  2444. "translate": [
  2445. { "time": 0, "x": 0, "y": 0 },
  2446. { "time": 0.1667, "x": -2.21, "y": -0.15 },
  2447. { "time": 0.3, "x": -1.01, "y": -0.05 },
  2448. { "time": 0.5333, "x": -0.5, "y": 0.13, "curve": "stepped" },
  2449. { "time": 0.6667, "x": -0.5, "y": 0.13 },
  2450. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2451. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 1.9, "x": 0, "y": 0 }
  2453. ],
  2454. "scale": [
  2455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2459. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2460. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2461. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2462. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2463. { "time": 1.9, "x": 1, "y": 1 }
  2464. ]
  2465. },
  2466. "bone52": {
  2467. "rotate": [
  2468. { "time": 0, "angle": 0 },
  2469. { "time": 0.1667, "angle": 25.02 },
  2470. { "time": 0.2333, "angle": 44.65 },
  2471. { "time": 0.3, "angle": 11.49 },
  2472. { "time": 0.3667, "angle": 47.88 },
  2473. { "time": 0.4, "angle": 53.35 },
  2474. { "time": 0.5333, "angle": 74.54, "curve": "stepped" },
  2475. { "time": 0.6667, "angle": 74.54 },
  2476. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2477. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2478. { "time": 1.9, "angle": 0 }
  2479. ],
  2480. "translate": [
  2481. { "time": 0, "x": 0, "y": 0 },
  2482. { "time": 0.1667, "x": -3.11, "y": 0.65 },
  2483. { "time": 0.3, "x": 0.67, "y": -0.07 },
  2484. { "time": 0.5333, "x": 2.87, "y": 2.85, "curve": "stepped" },
  2485. { "time": 0.6667, "x": 2.87, "y": 2.85 },
  2486. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2488. { "time": 1.9, "x": 0, "y": 0 }
  2489. ],
  2490. "scale": [
  2491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2493. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2496. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 1.9, "x": 1, "y": 1 }
  2500. ]
  2501. },
  2502. "bone53": {
  2503. "rotate": [
  2504. { "time": 0, "angle": 0, "curve": "stepped" },
  2505. { "time": 0.1667, "angle": 0 },
  2506. { "time": 0.3, "angle": -18.3 },
  2507. { "time": 0.3667, "angle": -22.88 },
  2508. { "time": 0.5333, "angle": -20.96 },
  2509. { "time": 0.6667, "angle": -16.45 },
  2510. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2511. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2512. { "time": 1.9, "angle": 0 }
  2513. ],
  2514. "translate": [
  2515. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2518. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2519. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 1.9, "x": 0, "y": 0 }
  2523. ],
  2524. "scale": [
  2525. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2530. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 1.9, "x": 1, "y": 1 }
  2534. ]
  2535. },
  2536. "root": {
  2537. "rotate": [
  2538. { "time": 0, "angle": 0 }
  2539. ],
  2540. "translate": [
  2541. { "time": 0, "x": 0, "y": 0 }
  2542. ],
  2543. "scale": [
  2544. { "time": 0, "x": 0.65, "y": 0.65, "curve": "stepped" },
  2545. { "time": 0.7333, "x": 0.65, "y": 0.65 }
  2546. ]
  2547. },
  2548. "bone56": {
  2549. "rotate": [
  2550. { "time": 0, "angle": 0, "curve": "stepped" },
  2551. { "time": 0.1667, "angle": 0 },
  2552. { "time": 0.3, "angle": -3.06 },
  2553. { "time": 0.4667, "angle": -12.67 },
  2554. { "time": 0.5333, "angle": -27.25, "curve": "stepped" },
  2555. { "time": 0.6667, "angle": -27.25 },
  2556. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  2557. { "time": 1.4, "angle": 0, "curve": "stepped" },
  2558. { "time": 1.9, "angle": 0 }
  2559. ],
  2560. "translate": [
  2561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 0.1667, "x": 0, "y": 0 },
  2563. { "time": 0.3, "x": -0.75, "y": 0.2 },
  2564. { "time": 0.4667, "x": -1.31, "y": 0.35 },
  2565. { "time": 0.5333, "x": -1.69, "y": 0.45, "curve": "stepped" },
  2566. { "time": 0.6667, "x": -1.69, "y": 0.45 },
  2567. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 1.9, "x": 0, "y": 0 }
  2570. ],
  2571. "scale": [
  2572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2573. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2574. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2575. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 1.9, "x": 1, "y": 1 }
  2582. ]
  2583. }
  2584. },
  2585. "deform": {
  2586. "default": {
  2587. "houba": {
  2588. "houba": [
  2589. {
  2590. "time": 0,
  2591. "offset": 136,
  2592. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  2593. "curve": "stepped"
  2594. },
  2595. {
  2596. "time": 0.1667,
  2597. "offset": 136,
  2598. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  2599. "curve": "stepped"
  2600. },
  2601. {
  2602. "time": 1.0333,
  2603. "offset": 136,
  2604. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  2605. "curve": "stepped"
  2606. },
  2607. {
  2608. "time": 1.4,
  2609. "offset": 136,
  2610. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  2611. "curve": "stepped"
  2612. },
  2613. {
  2614. "time": 1.9,
  2615. "offset": 136,
  2616. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ]
  2617. }
  2618. ]
  2619. },
  2620. "shenti": {
  2621. "shenti": [
  2622. { "time": 0, "curve": "stepped" },
  2623. { "time": 0.1667 },
  2624. {
  2625. "time": 0.5333,
  2626. "offset": 116,
  2627. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ],
  2628. "curve": "stepped"
  2629. },
  2630. {
  2631. "time": 0.6667,
  2632. "offset": 116,
  2633. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  2634. },
  2635. { "time": 1.0333 },
  2636. {
  2637. "time": 1.4,
  2638. "offset": 116,
  2639. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  2640. },
  2641. { "time": 1.9 }
  2642. ]
  2643. },
  2644. "youwaitao": {
  2645. "youwaitao": [
  2646. { "time": 0, "curve": "stepped" },
  2647. { "time": 0.1667 },
  2648. {
  2649. "time": 0.5333,
  2650. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ],
  2651. "curve": "stepped"
  2652. },
  2653. {
  2654. "time": 0.6667,
  2655. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  2656. },
  2657. { "time": 1.0333 },
  2658. {
  2659. "time": 1.4,
  2660. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  2661. },
  2662. { "time": 1.9 }
  2663. ]
  2664. },
  2665. "zuotui": {
  2666. "zuotui": [
  2667. { "time": 0.1667 },
  2668. {
  2669. "time": 0.3,
  2670. "vertices": [ -8.47338, -1.5576, -8.60969, 0.31296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5.57873, -0.14952, -8.47338, -1.5576 ]
  2671. },
  2672. { "time": 0.3667 }
  2673. ]
  2674. },
  2675. "zuowaitao": {
  2676. "zuowaitao": [
  2677. { "time": 0, "curve": "stepped" },
  2678. { "time": 0.1667 },
  2679. {
  2680. "time": 0.5333,
  2681. "offset": 72,
  2682. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ],
  2683. "curve": "stepped"
  2684. },
  2685. {
  2686. "time": 0.6667,
  2687. "offset": 72,
  2688. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  2689. },
  2690. { "time": 1.0333 },
  2691. {
  2692. "time": 1.4,
  2693. "offset": 72,
  2694. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  2695. },
  2696. { "time": 1.9 }
  2697. ]
  2698. }
  2699. }
  2700. }
  2701. },
  2702. "walk1": {
  2703. "slots": {
  2704. "biyan": {
  2705. "attachment": [
  2706. { "time": 1.1, "name": "biyan" },
  2707. { "time": 1.2333, "name": null }
  2708. ]
  2709. },
  2710. "youyan1": {
  2711. "attachment": [
  2712. { "time": 1.1, "name": null },
  2713. { "time": 1.2333, "name": "youyan1" }
  2714. ]
  2715. },
  2716. "zuoyan1": {
  2717. "attachment": [
  2718. { "time": 1.1, "name": null },
  2719. { "time": 1.2333, "name": "zuoyan1" }
  2720. ]
  2721. }
  2722. },
  2723. "bones": {
  2724. "bone2": {
  2725. "rotate": [
  2726. { "time": 0, "angle": 0, "curve": "stepped" },
  2727. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2728. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2729. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2730. { "time": 1, "angle": 0, "curve": "stepped" },
  2731. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2732. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2733. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2734. { "time": 2, "angle": 0 }
  2735. ],
  2736. "translate": [
  2737. { "time": 0, "x": 0, "y": 1.51 },
  2738. { "time": 0.1667, "x": 0, "y": 0 },
  2739. { "time": 0.5, "x": 0, "y": 1.51 },
  2740. { "time": 0.6667, "x": 0, "y": 0 },
  2741. { "time": 1, "x": 0, "y": 1.51 },
  2742. { "time": 1.1667, "x": 0, "y": 0 },
  2743. { "time": 1.5, "x": 0, "y": 1.51 },
  2744. { "time": 1.6667, "x": 0, "y": 0 },
  2745. { "time": 2, "x": 0, "y": 1.51 }
  2746. ]
  2747. },
  2748. "bone3": {
  2749. "rotate": [
  2750. { "time": 0, "angle": 0, "curve": "stepped" },
  2751. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2752. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2753. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2754. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2755. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2756. { "time": 1, "angle": 0, "curve": "stepped" },
  2757. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2758. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2759. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2760. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2761. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2762. { "time": 2, "angle": 0 }
  2763. ],
  2764. "translate": [
  2765. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2766. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2767. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2771. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2772. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2773. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2774. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2775. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2776. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2777. { "time": 2, "x": 0, "y": 0 }
  2778. ],
  2779. "scale": [
  2780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2781. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2782. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2783. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2784. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2785. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2787. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2789. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2790. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2791. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2792. { "time": 2, "x": 1, "y": 1 }
  2793. ]
  2794. },
  2795. "bone4": {
  2796. "rotate": [
  2797. { "time": 0, "angle": -1.59 }
  2798. ],
  2799. "translate": [
  2800. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2804. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2805. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2806. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2807. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2808. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2809. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2810. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2811. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2812. { "time": 2, "x": 0, "y": 0 }
  2813. ],
  2814. "scale": [
  2815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2818. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2819. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2820. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 2, "x": 1, "y": 1 }
  2828. ]
  2829. },
  2830. "bone5": {
  2831. "rotate": [
  2832. { "time": 0, "angle": 0, "curve": "stepped" },
  2833. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2834. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2835. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2836. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2837. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2838. { "time": 1, "angle": 0, "curve": "stepped" },
  2839. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2840. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2841. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2842. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2843. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2844. { "time": 2, "angle": 0 }
  2845. ],
  2846. "translate": [
  2847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 2, "x": 0, "y": 0 }
  2860. ],
  2861. "scale": [
  2862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 2, "x": 1, "y": 1 }
  2875. ]
  2876. },
  2877. "bone6": {
  2878. "rotate": [
  2879. {
  2880. "time": 0,
  2881. "angle": 63.39,
  2882. "curve": [ 0.25, 0, 0.75, 1 ]
  2883. },
  2884. {
  2885. "time": 0.5,
  2886. "angle": 22.34,
  2887. "curve": [ 0.25, 0, 0.75, 1 ]
  2888. },
  2889. {
  2890. "time": 1,
  2891. "angle": 63.39,
  2892. "curve": [ 0.25, 0, 0.75, 1 ]
  2893. },
  2894. {
  2895. "time": 1.5,
  2896. "angle": 22.34,
  2897. "curve": [ 0.25, 0, 0.75, 1 ]
  2898. },
  2899. { "time": 2, "angle": 63.39 }
  2900. ],
  2901. "translate": [
  2902. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2903. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2904. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2905. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2906. { "time": 2, "x": 0, "y": 0 }
  2907. ],
  2908. "scale": [
  2909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2912. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2913. { "time": 2, "x": 1, "y": 1 }
  2914. ]
  2915. },
  2916. "bone7": {
  2917. "rotate": [
  2918. {
  2919. "time": 0,
  2920. "angle": -31.44,
  2921. "curve": [ 0.25, 0, 0.75, 1 ]
  2922. },
  2923. {
  2924. "time": 0.5,
  2925. "angle": -9,
  2926. "curve": [ 0.25, 0, 0.75, 1 ]
  2927. },
  2928. {
  2929. "time": 1,
  2930. "angle": -31.44,
  2931. "curve": [ 0.25, 0, 0.75, 1 ]
  2932. },
  2933. {
  2934. "time": 1.5,
  2935. "angle": -9,
  2936. "curve": [ 0.25, 0, 0.75, 1 ]
  2937. },
  2938. { "time": 2, "angle": -31.44 }
  2939. ],
  2940. "translate": [
  2941. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2942. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2943. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2944. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2945. { "time": 2, "x": 0, "y": 0 }
  2946. ],
  2947. "scale": [
  2948. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2952. { "time": 2, "x": 1, "y": 1 }
  2953. ]
  2954. },
  2955. "bone8": {
  2956. "rotate": [
  2957. { "time": 0, "angle": -14.39, "curve": "stepped" },
  2958. { "time": 0.1667, "angle": -14.39, "curve": "stepped" },
  2959. { "time": 0.3333, "angle": -14.39, "curve": "stepped" },
  2960. { "time": 0.5, "angle": -14.39, "curve": "stepped" },
  2961. { "time": 0.6667, "angle": -14.39, "curve": "stepped" },
  2962. { "time": 0.8333, "angle": -14.39, "curve": "stepped" },
  2963. { "time": 1, "angle": -14.39, "curve": "stepped" },
  2964. { "time": 1.1667, "angle": -14.39, "curve": "stepped" },
  2965. { "time": 1.3333, "angle": -14.39, "curve": "stepped" },
  2966. { "time": 1.5, "angle": -14.39, "curve": "stepped" },
  2967. { "time": 1.6667, "angle": -14.39, "curve": "stepped" },
  2968. { "time": 1.8333, "angle": -14.39, "curve": "stepped" },
  2969. { "time": 2, "angle": -14.39 }
  2970. ],
  2971. "translate": [
  2972. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2978. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2979. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2982. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2983. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2984. { "time": 2, "x": 0, "y": 0 }
  2985. ],
  2986. "scale": [
  2987. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2988. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2990. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2991. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2992. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2994. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2995. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2996. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2997. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2998. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2999. { "time": 2, "x": 1, "y": 1 }
  3000. ]
  3001. },
  3002. "bone9": {
  3003. "rotate": [
  3004. {
  3005. "time": 0,
  3006. "angle": -48.98,
  3007. "curve": [ 0.25, 0, 0.75, 1 ]
  3008. },
  3009. {
  3010. "time": 0.5,
  3011. "angle": -7.48,
  3012. "curve": [ 0.25, 0, 0.75, 1 ]
  3013. },
  3014. {
  3015. "time": 1,
  3016. "angle": -48.98,
  3017. "curve": [ 0.25, 0, 0.75, 1 ]
  3018. },
  3019. {
  3020. "time": 1.5,
  3021. "angle": -7.48,
  3022. "curve": [ 0.25, 0, 0.75, 1 ]
  3023. },
  3024. { "time": 2, "angle": -48.98 }
  3025. ],
  3026. "translate": [
  3027. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3028. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3029. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 2, "x": 0, "y": 0 }
  3032. ],
  3033. "scale": [
  3034. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3035. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 2, "x": 1, "y": 1 }
  3039. ]
  3040. },
  3041. "bone10": {
  3042. "rotate": [
  3043. {
  3044. "time": 0,
  3045. "angle": -19.51,
  3046. "curve": [ 0.25, 0, 0.75, 1 ]
  3047. },
  3048. {
  3049. "time": 0.5,
  3050. "angle": -19.12,
  3051. "curve": [ 0.25, 0, 0.75, 1 ]
  3052. },
  3053. {
  3054. "time": 1,
  3055. "angle": -19.51,
  3056. "curve": [ 0.25, 0, 0.75, 1 ]
  3057. },
  3058. {
  3059. "time": 1.5,
  3060. "angle": -19.12,
  3061. "curve": [ 0.25, 0, 0.75, 1 ]
  3062. },
  3063. { "time": 2, "angle": -19.51 }
  3064. ],
  3065. "translate": [
  3066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3067. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3068. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3069. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3070. { "time": 2, "x": 0, "y": 0 }
  3071. ],
  3072. "scale": [
  3073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 2, "x": 1, "y": 1 }
  3078. ]
  3079. },
  3080. "bone11": {
  3081. "rotate": [
  3082. { "time": 0, "angle": -9.05, "curve": "stepped" },
  3083. { "time": 0.1667, "angle": -9.05, "curve": "stepped" },
  3084. { "time": 0.3333, "angle": -9.05, "curve": "stepped" },
  3085. { "time": 0.5, "angle": -9.05, "curve": "stepped" },
  3086. { "time": 0.6667, "angle": -9.05, "curve": "stepped" },
  3087. { "time": 0.8333, "angle": -9.05, "curve": "stepped" },
  3088. { "time": 1, "angle": -9.05, "curve": "stepped" },
  3089. { "time": 1.1667, "angle": -9.05, "curve": "stepped" },
  3090. { "time": 1.3333, "angle": -9.05, "curve": "stepped" },
  3091. { "time": 1.5, "angle": -9.05, "curve": "stepped" },
  3092. { "time": 1.6667, "angle": -9.05, "curve": "stepped" },
  3093. { "time": 1.8333, "angle": -9.05, "curve": "stepped" },
  3094. { "time": 2, "angle": -9.05 }
  3095. ],
  3096. "translate": [
  3097. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3106. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3107. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3108. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3109. { "time": 2, "x": 0, "y": 0 }
  3110. ],
  3111. "scale": [
  3112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3118. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3119. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3120. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3121. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3124. { "time": 2, "x": 1, "y": 1 }
  3125. ]
  3126. },
  3127. "bone12": {
  3128. "rotate": [
  3129. { "time": 0, "angle": 0 },
  3130. { "time": 0.5, "angle": -6.34 },
  3131. { "time": 1, "angle": 0 },
  3132. { "time": 1.5, "angle": -6.34 },
  3133. { "time": 2, "angle": 0 }
  3134. ],
  3135. "translate": [
  3136. { "time": 0, "x": -1.44, "y": -1.02 },
  3137. { "time": 0.5, "x": 0, "y": 0 },
  3138. { "time": 1, "x": -1.44, "y": -1.02 },
  3139. { "time": 1.5, "x": 0, "y": 0 },
  3140. { "time": 2, "x": -1.44, "y": -1.02 }
  3141. ],
  3142. "scale": [
  3143. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3144. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3145. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 2, "x": 1, "y": 1 }
  3148. ]
  3149. },
  3150. "bone13": {
  3151. "rotate": [
  3152. { "time": 0, "angle": 0 },
  3153. { "time": 0.5, "angle": -6.34 },
  3154. { "time": 1, "angle": 0 },
  3155. { "time": 1.5, "angle": -6.34 },
  3156. { "time": 2, "angle": 0 }
  3157. ],
  3158. "translate": [
  3159. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3163. { "time": 2, "x": 0, "y": 0 }
  3164. ],
  3165. "scale": [
  3166. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3169. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 2, "x": 1, "y": 1 }
  3171. ]
  3172. },
  3173. "bone14": {
  3174. "rotate": [
  3175. { "time": 0, "angle": 0 },
  3176. { "time": 0.5, "angle": -6.34 },
  3177. { "time": 1, "angle": 0 },
  3178. { "time": 1.5, "angle": -6.34 },
  3179. { "time": 2, "angle": 0 }
  3180. ],
  3181. "translate": [
  3182. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3183. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3184. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3185. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3186. { "time": 2, "x": 0, "y": 0 }
  3187. ],
  3188. "scale": [
  3189. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3190. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3191. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3192. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3193. { "time": 2, "x": 1, "y": 1 }
  3194. ]
  3195. },
  3196. "bone15": {
  3197. "rotate": [
  3198. { "time": 0, "angle": 0 },
  3199. { "time": 0.5, "angle": 11.95 },
  3200. { "time": 1, "angle": 0 },
  3201. { "time": 1.5, "angle": 11.95 },
  3202. { "time": 2, "angle": 0 }
  3203. ],
  3204. "translate": [
  3205. { "time": 0, "x": -0.04, "y": 3.02 },
  3206. { "time": 0.5, "x": 0.09, "y": -0.38 },
  3207. { "time": 1, "x": -0.04, "y": 3.02 },
  3208. { "time": 1.5, "x": 0.09, "y": -0.38 },
  3209. { "time": 2, "x": -0.04, "y": 3.02 }
  3210. ],
  3211. "scale": [
  3212. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 2, "x": 1, "y": 1 }
  3217. ]
  3218. },
  3219. "bone16": {
  3220. "rotate": [
  3221. { "time": 0, "angle": 0 },
  3222. { "time": 0.5, "angle": 5.44 },
  3223. { "time": 1, "angle": 0 },
  3224. { "time": 1.5, "angle": 5.44 },
  3225. { "time": 2, "angle": 0 }
  3226. ],
  3227. "translate": [
  3228. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3230. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3232. { "time": 2, "x": 0, "y": 0 }
  3233. ],
  3234. "scale": [
  3235. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 2, "x": 1, "y": 1 }
  3240. ]
  3241. },
  3242. "bone17": {
  3243. "rotate": [
  3244. { "time": 0, "angle": 0 },
  3245. { "time": 0.5, "angle": 5.44 },
  3246. { "time": 1, "angle": 0 },
  3247. { "time": 1.5, "angle": 5.44 },
  3248. { "time": 2, "angle": 0 }
  3249. ],
  3250. "translate": [
  3251. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 1.5, "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.5, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 2, "x": 1, "y": 1 }
  3263. ]
  3264. },
  3265. "bone18": {
  3266. "rotate": [
  3267. { "time": 0, "angle": 0, "curve": "stepped" },
  3268. { "time": 1, "angle": 0, "curve": "stepped" },
  3269. { "time": 2, "angle": 0 }
  3270. ],
  3271. "translate": [
  3272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3273. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 2, "x": 0, "y": 0 }
  3275. ],
  3276. "scale": [
  3277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3278. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3279. { "time": 2, "x": 1, "y": 1 }
  3280. ]
  3281. },
  3282. "bone19": {
  3283. "rotate": [
  3284. { "time": 0, "angle": 0, "curve": "stepped" },
  3285. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3286. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3287. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3288. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3289. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3290. { "time": 1, "angle": 0, "curve": "stepped" },
  3291. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3292. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3293. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3294. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3295. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3296. { "time": 2, "angle": 0 }
  3297. ],
  3298. "translate": [
  3299. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3307. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3308. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3309. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3310. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3311. { "time": 2, "x": 0, "y": 0 }
  3312. ],
  3313. "scale": [
  3314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3320. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3322. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3324. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3325. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3326. { "time": 2, "x": 1, "y": 1 }
  3327. ]
  3328. },
  3329. "bone20": {
  3330. "rotate": [
  3331. { "time": 0, "angle": 0, "curve": "stepped" },
  3332. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3333. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3334. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3335. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3336. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3337. { "time": 1, "angle": 0, "curve": "stepped" },
  3338. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3339. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3340. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3341. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3342. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3343. { "time": 2, "angle": 0 }
  3344. ],
  3345. "translate": [
  3346. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3350. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3351. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3353. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3354. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3355. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 2, "x": 0, "y": 0 }
  3359. ],
  3360. "scale": [
  3361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 1, "x": 1, "y": 1 },
  3368. { "time": 1.1, "x": 0.514, "y": 1, "curve": "stepped" },
  3369. { "time": 1.2333, "x": 0.514, "y": 1 },
  3370. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3373. { "time": 2, "x": 1, "y": 1 }
  3374. ]
  3375. },
  3376. "bone21": {
  3377. "rotate": [
  3378. { "time": 0, "angle": 0, "curve": "stepped" },
  3379. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3380. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3381. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3382. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3383. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3384. { "time": 1, "angle": 0, "curve": "stepped" },
  3385. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3386. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3387. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3388. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3389. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3390. { "time": 2, "angle": 0 }
  3391. ],
  3392. "translate": [
  3393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3395. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3397. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3398. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3399. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3400. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3401. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3402. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3403. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3404. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3405. { "time": 2, "x": 0, "y": 0 }
  3406. ],
  3407. "scale": [
  3408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3412. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3414. { "time": 1, "x": 1, "y": 1 },
  3415. { "time": 1.1, "x": 0.591, "y": 1, "curve": "stepped" },
  3416. { "time": 1.2333, "x": 0.591, "y": 1 },
  3417. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3418. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3419. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3420. { "time": 2, "x": 1, "y": 1 }
  3421. ]
  3422. },
  3423. "bone22": {
  3424. "rotate": [
  3425. { "time": 0, "angle": 0, "curve": "stepped" },
  3426. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3427. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3428. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3429. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3430. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3431. { "time": 1, "angle": 0, "curve": "stepped" },
  3432. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3433. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3434. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3435. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3436. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3437. { "time": 2, "angle": 0 }
  3438. ],
  3439. "translate": [
  3440. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3443. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3444. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3451. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3452. { "time": 2, "x": 0, "y": 0 }
  3453. ],
  3454. "scale": [
  3455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3458. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3460. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3461. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3462. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3463. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3464. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3465. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3466. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3467. { "time": 2, "x": 1, "y": 1 }
  3468. ]
  3469. },
  3470. "bone23": {
  3471. "rotate": [
  3472. { "time": 0, "angle": 0, "curve": "stepped" },
  3473. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3474. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3475. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3476. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3477. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3478. { "time": 1, "angle": 0, "curve": "stepped" },
  3479. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3480. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3481. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3482. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3483. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3484. { "time": 2, "angle": 0 }
  3485. ],
  3486. "translate": [
  3487. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3488. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3489. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3490. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3491. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3492. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3493. { "time": 1, "x": 0, "y": 0 },
  3494. { "time": 1.1, "x": -0.84, "y": -0.01, "curve": "stepped" },
  3495. { "time": 1.2333, "x": -0.84, "y": -0.01 },
  3496. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3497. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3498. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3499. { "time": 2, "x": 0, "y": 0 }
  3500. ],
  3501. "scale": [
  3502. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3504. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3506. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3507. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3508. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3509. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3510. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3511. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3512. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3513. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3514. { "time": 2, "x": 1, "y": 1 }
  3515. ]
  3516. },
  3517. "bone24": {
  3518. "rotate": [
  3519. { "time": 0, "angle": 0 },
  3520. { "time": 0.5, "angle": -3.38 },
  3521. { "time": 1, "angle": 0 },
  3522. { "time": 1.5, "angle": -3.38 },
  3523. { "time": 2, "angle": 0 }
  3524. ],
  3525. "translate": [
  3526. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3527. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3528. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 2, "x": 0, "y": 0 }
  3531. ],
  3532. "scale": [
  3533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3534. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3535. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3536. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 2, "x": 1, "y": 1 }
  3538. ]
  3539. },
  3540. "bone25": {
  3541. "rotate": [
  3542. { "time": 0, "angle": 0 },
  3543. { "time": 0.5, "angle": -3.38 },
  3544. { "time": 1, "angle": 0 },
  3545. { "time": 1.5, "angle": -3.38 },
  3546. { "time": 2, "angle": 0 }
  3547. ],
  3548. "translate": [
  3549. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3550. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 2, "x": 0, "y": 0 }
  3554. ],
  3555. "scale": [
  3556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3559. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3560. { "time": 2, "x": 1, "y": 1 }
  3561. ]
  3562. },
  3563. "bone26": {
  3564. "rotate": [
  3565. { "time": 0, "angle": 0 },
  3566. { "time": 0.5, "angle": -3.38 },
  3567. { "time": 1, "angle": 0 },
  3568. { "time": 1.5, "angle": -3.38 },
  3569. { "time": 2, "angle": 0 }
  3570. ],
  3571. "translate": [
  3572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3574. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3575. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3576. { "time": 2, "x": 0, "y": 0 }
  3577. ],
  3578. "scale": [
  3579. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3580. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3581. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3582. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3583. { "time": 2, "x": 1, "y": 1 }
  3584. ]
  3585. },
  3586. "bone27": {
  3587. "rotate": [
  3588. { "time": 0, "angle": 0 },
  3589. { "time": 0.5, "angle": 3.97 },
  3590. { "time": 1, "angle": 0 },
  3591. { "time": 1.5, "angle": 3.97 },
  3592. { "time": 2, "angle": 0 }
  3593. ],
  3594. "translate": [
  3595. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3599. { "time": 2, "x": 0, "y": 0 }
  3600. ],
  3601. "scale": [
  3602. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 2, "x": 1, "y": 1 }
  3607. ]
  3608. },
  3609. "bone28": {
  3610. "rotate": [
  3611. { "time": 0, "angle": 0 },
  3612. { "time": 0.5, "angle": 3.97 },
  3613. { "time": 1, "angle": 0 },
  3614. { "time": 1.5, "angle": 3.97 },
  3615. { "time": 2, "angle": 0 }
  3616. ],
  3617. "translate": [
  3618. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 2, "x": 0, "y": 0 }
  3623. ],
  3624. "scale": [
  3625. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 2, "x": 1, "y": 1 }
  3630. ]
  3631. },
  3632. "bone29": {
  3633. "rotate": [
  3634. { "time": 0, "angle": 0 },
  3635. { "time": 0.5, "angle": 3.97 },
  3636. { "time": 1, "angle": 0 },
  3637. { "time": 1.5, "angle": 3.97 },
  3638. { "time": 2, "angle": 0 }
  3639. ],
  3640. "translate": [
  3641. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 2, "x": 0, "y": 0 }
  3646. ],
  3647. "scale": [
  3648. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 2, "x": 1, "y": 1 }
  3653. ]
  3654. },
  3655. "bone30": {
  3656. "rotate": [
  3657. { "time": 0, "angle": 0 },
  3658. { "time": 0.5, "angle": 19.71 },
  3659. { "time": 1, "angle": 0 },
  3660. { "time": 1.5, "angle": 19.71 },
  3661. { "time": 2, "angle": 0 }
  3662. ],
  3663. "translate": [
  3664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3668. { "time": 2, "x": 0, "y": 0 }
  3669. ],
  3670. "scale": [
  3671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 2, "x": 1, "y": 1 }
  3676. ]
  3677. },
  3678. "bone31": {
  3679. "rotate": [
  3680. { "time": 0, "angle": 0 },
  3681. { "time": 0.5, "angle": -6.19 },
  3682. { "time": 1, "angle": 0 },
  3683. { "time": 1.5, "angle": -6.19 },
  3684. { "time": 2, "angle": 0 }
  3685. ],
  3686. "translate": [
  3687. { "time": 0, "x": 0, "y": 0 },
  3688. { "time": 0.5, "x": -0.29, "y": 0.08 },
  3689. { "time": 1, "x": 0, "y": 0 },
  3690. { "time": 1.5, "x": -0.29, "y": 0.08 },
  3691. { "time": 2, "x": 0, "y": 0 }
  3692. ],
  3693. "scale": [
  3694. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 2, "x": 1, "y": 1 }
  3699. ]
  3700. },
  3701. "bone32": {
  3702. "rotate": [
  3703. { "time": 0, "angle": 0 },
  3704. { "time": 0.5, "angle": 2.78 },
  3705. { "time": 1, "angle": 0 },
  3706. { "time": 1.5, "angle": 2.78 },
  3707. { "time": 2, "angle": 0 }
  3708. ],
  3709. "translate": [
  3710. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 2, "x": 0, "y": 0 }
  3715. ],
  3716. "scale": [
  3717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 2, "x": 1, "y": 1 }
  3722. ]
  3723. },
  3724. "bone33": {
  3725. "rotate": [
  3726. { "time": 0, "angle": -10.54 },
  3727. { "time": 0.5, "angle": 3.38 },
  3728. { "time": 1, "angle": -10.54 },
  3729. { "time": 1.5, "angle": 3.38 },
  3730. { "time": 2, "angle": -10.54 }
  3731. ],
  3732. "translate": [
  3733. { "time": 0, "x": 0, "y": 0 },
  3734. { "time": 0.5, "x": -1.61, "y": 0.33 },
  3735. { "time": 1, "x": 0, "y": 0 },
  3736. { "time": 1.5, "x": -1.61, "y": 0.33 },
  3737. { "time": 2, "x": 0, "y": 0 }
  3738. ],
  3739. "scale": [
  3740. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3741. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3742. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3743. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3744. { "time": 2, "x": 1, "y": 1 }
  3745. ]
  3746. },
  3747. "bone34": {
  3748. "rotate": [
  3749. { "time": 0, "angle": 0, "curve": "stepped" },
  3750. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3751. { "time": 1, "angle": 0, "curve": "stepped" },
  3752. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3753. { "time": 2, "angle": 0 }
  3754. ],
  3755. "translate": [
  3756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3757. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3758. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3759. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3760. { "time": 2, "x": 0, "y": 0 }
  3761. ],
  3762. "scale": [
  3763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 2, "x": 1, "y": 1 }
  3768. ]
  3769. },
  3770. "bone35": {
  3771. "rotate": [
  3772. { "time": 0, "angle": 0 },
  3773. { "time": 0.5, "angle": 1.61 },
  3774. { "time": 1, "angle": 0 },
  3775. { "time": 1.5, "angle": 1.61 },
  3776. { "time": 2, "angle": 0 }
  3777. ],
  3778. "translate": [
  3779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3780. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3781. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3782. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3783. { "time": 2, "x": 0, "y": 0 }
  3784. ],
  3785. "scale": [
  3786. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 2, "x": 1, "y": 1 }
  3791. ]
  3792. },
  3793. "bone36": {
  3794. "rotate": [
  3795. { "time": 0, "angle": -6.52 },
  3796. { "time": 0.5, "angle": 0.38 },
  3797. { "time": 1, "angle": -6.52 },
  3798. { "time": 1.5, "angle": 0.38 },
  3799. { "time": 2, "angle": -6.52 }
  3800. ],
  3801. "translate": [
  3802. { "time": 0, "x": 0, "y": 0 },
  3803. { "time": 0.5, "x": -0.21, "y": 0.05 },
  3804. { "time": 1, "x": 0, "y": 0 },
  3805. { "time": 1.5, "x": -0.21, "y": 0.05 },
  3806. { "time": 2, "x": 0, "y": 0 }
  3807. ],
  3808. "scale": [
  3809. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3810. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3811. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3812. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 2, "x": 1, "y": 1 }
  3814. ]
  3815. },
  3816. "bone37": {
  3817. "rotate": [
  3818. { "time": 0, "angle": 0 },
  3819. { "time": 0.5, "angle": 6.36 },
  3820. { "time": 1, "angle": 0 },
  3821. { "time": 1.5, "angle": 6.36 },
  3822. { "time": 2, "angle": 0 }
  3823. ],
  3824. "translate": [
  3825. { "time": 0, "x": 0, "y": 0 },
  3826. { "time": 0.5, "x": -0.56, "y": 0.34 },
  3827. { "time": 1, "x": 0, "y": 0 },
  3828. { "time": 1.5, "x": -0.56, "y": 0.34 },
  3829. { "time": 2, "x": 0, "y": 0 }
  3830. ],
  3831. "scale": [
  3832. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3833. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3834. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3835. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3836. { "time": 2, "x": 1, "y": 1 }
  3837. ]
  3838. },
  3839. "bone38": {
  3840. "rotate": [
  3841. { "time": 0, "angle": 0 },
  3842. { "time": 0.5, "angle": -1.93 },
  3843. { "time": 1, "angle": 0 },
  3844. { "time": 1.5, "angle": -1.93 },
  3845. { "time": 2, "angle": 0 }
  3846. ],
  3847. "translate": [
  3848. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3850. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3851. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3852. { "time": 2, "x": 0, "y": 0 }
  3853. ],
  3854. "scale": [
  3855. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 2, "x": 1, "y": 1 }
  3860. ]
  3861. },
  3862. "bone39": {
  3863. "rotate": [
  3864. { "time": 0, "angle": -10.65 },
  3865. { "time": 0.5, "angle": 11.55 },
  3866. { "time": 1, "angle": -10.65 },
  3867. { "time": 1.5, "angle": 11.55 },
  3868. { "time": 2, "angle": -10.65 }
  3869. ],
  3870. "translate": [
  3871. { "time": 0, "x": 0, "y": 0 },
  3872. { "time": 0.5, "x": -0.68, "y": 0.02 },
  3873. { "time": 1, "x": 0, "y": 0 },
  3874. { "time": 1.5, "x": -0.68, "y": 0.02 },
  3875. { "time": 2, "x": 0, "y": 0 }
  3876. ],
  3877. "scale": [
  3878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3879. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3880. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3881. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3882. { "time": 2, "x": 1, "y": 1 }
  3883. ]
  3884. },
  3885. "bone40": {
  3886. "rotate": [
  3887. { "time": 0, "angle": 0 },
  3888. { "time": 0.5, "angle": 2.21 },
  3889. { "time": 1, "angle": 0 },
  3890. { "time": 1.5, "angle": 2.21 },
  3891. { "time": 2, "angle": 0 }
  3892. ],
  3893. "translate": [
  3894. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3898. { "time": 2, "x": 0, "y": 0 }
  3899. ],
  3900. "scale": [
  3901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3902. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3903. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3904. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3905. { "time": 2, "x": 1, "y": 1 }
  3906. ]
  3907. },
  3908. "bone41": {
  3909. "rotate": [
  3910. { "time": 0, "angle": 0 },
  3911. { "time": 0.5, "angle": -6.1 },
  3912. { "time": 1, "angle": 0 },
  3913. { "time": 1.5, "angle": -6.1 },
  3914. { "time": 2, "angle": 0 }
  3915. ],
  3916. "translate": [
  3917. { "time": 0, "x": 0, "y": 0 },
  3918. { "time": 0.5, "x": -0.91, "y": 0.5 },
  3919. { "time": 1, "x": 0, "y": 0 },
  3920. { "time": 1.5, "x": -0.91, "y": 0.5 },
  3921. { "time": 2, "x": 0, "y": 0 }
  3922. ],
  3923. "scale": [
  3924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 2, "x": 1, "y": 1 }
  3929. ]
  3930. },
  3931. "bone42": {
  3932. "rotate": [
  3933. { "time": 0, "angle": 0 },
  3934. { "time": 0.5, "angle": -1.66 },
  3935. { "time": 1, "angle": 0 },
  3936. { "time": 1.5, "angle": -1.66 },
  3937. { "time": 2, "angle": 0 }
  3938. ],
  3939. "translate": [
  3940. { "time": 0, "x": 0, "y": 0 },
  3941. { "time": 0.5, "x": 0.27, "y": -0.05 },
  3942. { "time": 1, "x": 0, "y": 0 },
  3943. { "time": 1.5, "x": 0.27, "y": -0.05 },
  3944. { "time": 2, "x": 0, "y": 0 }
  3945. ],
  3946. "scale": [
  3947. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 2, "x": 1, "y": 1 }
  3952. ]
  3953. },
  3954. "bone43": {
  3955. "rotate": [
  3956. { "time": 0, "angle": 0 },
  3957. { "time": 0.5, "angle": 4.84 },
  3958. { "time": 1, "angle": 0 },
  3959. { "time": 1.5, "angle": 4.84 },
  3960. { "time": 2, "angle": 0 }
  3961. ],
  3962. "translate": [
  3963. { "time": 0, "x": 0, "y": 0 },
  3964. { "time": 0.5, "x": 0.51, "y": -0.11 },
  3965. { "time": 1, "x": 0, "y": 0 },
  3966. { "time": 1.5, "x": 0.51, "y": -0.11 },
  3967. { "time": 2, "x": 0, "y": 0 }
  3968. ],
  3969. "scale": [
  3970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3974. { "time": 2, "x": 1, "y": 1 }
  3975. ]
  3976. },
  3977. "bone44": {
  3978. "rotate": [
  3979. { "time": 0, "angle": 0 },
  3980. { "time": 0.5, "angle": -19.55 },
  3981. { "time": 1, "angle": 0 },
  3982. { "time": 1.5, "angle": -19.55 },
  3983. { "time": 2, "angle": 0 }
  3984. ],
  3985. "translate": [
  3986. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3987. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3988. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3989. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3990. { "time": 2, "x": 0, "y": 0 }
  3991. ],
  3992. "scale": [
  3993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3994. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3995. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3996. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3997. { "time": 2, "x": 1, "y": 1 }
  3998. ]
  3999. },
  4000. "bone45": {
  4001. "rotate": [
  4002. { "time": 0, "angle": 0 },
  4003. { "time": 0.5, "angle": -4.52 },
  4004. { "time": 1, "angle": 0 },
  4005. { "time": 1.5, "angle": -4.52 },
  4006. { "time": 2, "angle": 0 }
  4007. ],
  4008. "translate": [
  4009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4010. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4011. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4012. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4013. { "time": 2, "x": 0, "y": 0 }
  4014. ],
  4015. "scale": [
  4016. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 2, "x": 1, "y": 1 }
  4021. ]
  4022. },
  4023. "bone46": {
  4024. "rotate": [
  4025. { "time": 0, "angle": 0 },
  4026. { "time": 0.5, "angle": -4.52 },
  4027. { "time": 1, "angle": 0 },
  4028. { "time": 1.5, "angle": -4.52 },
  4029. { "time": 2, "angle": 0 }
  4030. ],
  4031. "translate": [
  4032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4033. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4034. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4035. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4036. { "time": 2, "x": 0, "y": 0 }
  4037. ],
  4038. "scale": [
  4039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4040. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4041. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4042. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4043. { "time": 2, "x": 1, "y": 1 }
  4044. ]
  4045. },
  4046. "bone47": {
  4047. "rotate": [
  4048. { "time": 0, "angle": 0 },
  4049. { "time": 0.5, "angle": -19.04 },
  4050. { "time": 1, "angle": 0 },
  4051. { "time": 1.5, "angle": -19.04 },
  4052. { "time": 2, "angle": 0 }
  4053. ],
  4054. "translate": [
  4055. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4056. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4057. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4058. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4059. { "time": 2, "x": 0, "y": 0 }
  4060. ],
  4061. "scale": [
  4062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4063. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4064. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4065. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4066. { "time": 2, "x": 1, "y": 1 }
  4067. ]
  4068. },
  4069. "bone48": {
  4070. "rotate": [
  4071. { "time": 0, "angle": 0 },
  4072. { "time": 0.5, "angle": -5.77 },
  4073. { "time": 1, "angle": 0 },
  4074. { "time": 1.5, "angle": -5.77 },
  4075. { "time": 2, "angle": 0 }
  4076. ],
  4077. "translate": [
  4078. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4080. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4081. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4082. { "time": 2, "x": 0, "y": 0 }
  4083. ],
  4084. "scale": [
  4085. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4088. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4089. { "time": 2, "x": 1, "y": 1 }
  4090. ]
  4091. },
  4092. "bone49": {
  4093. "rotate": [
  4094. { "time": 0, "angle": 0 },
  4095. { "time": 0.5, "angle": -5.77 },
  4096. { "time": 1, "angle": 0 },
  4097. { "time": 1.5, "angle": -5.77 },
  4098. { "time": 2, "angle": 0 }
  4099. ],
  4100. "translate": [
  4101. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4102. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4103. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4104. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4105. { "time": 2, "x": 0, "y": 0 }
  4106. ],
  4107. "scale": [
  4108. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4110. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4111. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4112. { "time": 2, "x": 1, "y": 1 }
  4113. ]
  4114. },
  4115. "bone50": {
  4116. "rotate": [
  4117. { "time": 0, "angle": 0, "curve": "stepped" },
  4118. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4119. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4120. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4121. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4122. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4123. { "time": 1, "angle": 0, "curve": "stepped" },
  4124. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4125. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4126. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4127. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4128. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4129. { "time": 2, "angle": 0 }
  4130. ],
  4131. "translate": [
  4132. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4138. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4139. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4140. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4141. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4142. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4143. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4144. { "time": 2, "x": 0, "y": 0 }
  4145. ],
  4146. "scale": [
  4147. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4149. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4150. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4151. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4152. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4153. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4159. { "time": 2, "x": 1, "y": 1 }
  4160. ]
  4161. },
  4162. "bone51": {
  4163. "rotate": [
  4164. { "time": 0, "angle": -13.57 },
  4165. { "time": 0.1667, "angle": -3.06 },
  4166. { "time": 0.3333, "angle": 4.99 },
  4167. { "time": 0.5, "angle": 27.27 },
  4168. { "time": 0.6667, "angle": 13.66 },
  4169. { "time": 0.8333, "angle": 0.04 },
  4170. { "time": 1, "angle": -13.57 },
  4171. { "time": 1.1667, "angle": -3.06 },
  4172. { "time": 1.3333, "angle": 4.99 },
  4173. { "time": 1.5, "angle": 27.27 },
  4174. { "time": 1.6667, "angle": 13.66 },
  4175. { "time": 1.8333, "angle": 0.04 },
  4176. { "time": 2, "angle": -13.57 }
  4177. ],
  4178. "translate": [
  4179. { "time": 0, "x": 0, "y": 0 },
  4180. { "time": 0.1667, "x": 4.53, "y": -0.19 },
  4181. { "time": 0.3333, "x": 14.27, "y": -0.68 },
  4182. { "time": 0.5, "x": 19.77, "y": 0.43 },
  4183. { "time": 0.6667, "x": 11.97, "y": 1.56 },
  4184. { "time": 0.8333, "x": 2.78, "y": 1.44 },
  4185. { "time": 1, "x": 0, "y": 0 },
  4186. { "time": 1.1667, "x": 4.53, "y": -0.19 },
  4187. { "time": 1.3333, "x": 14.27, "y": -0.68 },
  4188. { "time": 1.5, "x": 19.77, "y": 0.43 },
  4189. { "time": 1.6667, "x": 11.97, "y": 1.56 },
  4190. { "time": 1.8333, "x": 2.78, "y": 1.44 },
  4191. { "time": 2, "x": 0, "y": 0 }
  4192. ],
  4193. "scale": [
  4194. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4203. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 2, "x": 1, "y": 1 }
  4207. ]
  4208. },
  4209. "bone54": {
  4210. "rotate": [
  4211. { "time": 0, "angle": 21.47 },
  4212. { "time": 0.1667, "angle": 12 },
  4213. { "time": 0.3333, "angle": -10.75 },
  4214. { "time": 0.5, "angle": -25.93 },
  4215. { "time": 0.6667, "angle": -6.72 },
  4216. { "time": 0.8333, "angle": 7.37 },
  4217. { "time": 1, "angle": 21.47 },
  4218. { "time": 1.1667, "angle": 12 },
  4219. { "time": 1.3333, "angle": -10.75 },
  4220. { "time": 1.5, "angle": -25.93 },
  4221. { "time": 1.6667, "angle": -6.72 },
  4222. { "time": 1.8333, "angle": 7.37 },
  4223. { "time": 2, "angle": 21.47 }
  4224. ],
  4225. "translate": [
  4226. { "time": 0, "x": 0, "y": 0 },
  4227. { "time": 0.1667, "x": -10.1, "y": 1.93 },
  4228. { "time": 0.3333, "x": -16.08, "y": 2.45 },
  4229. { "time": 0.5, "x": -18.74, "y": -0.53 },
  4230. { "time": 0.6667, "x": -14.04, "y": -0.34 },
  4231. { "time": 0.8333, "x": -6.25, "y": -0.18 },
  4232. { "time": 1, "x": 0, "y": 0 },
  4233. { "time": 1.1667, "x": -10.1, "y": 1.93 },
  4234. { "time": 1.3333, "x": -16.08, "y": 2.45 },
  4235. { "time": 1.5, "x": -18.74, "y": -0.53 },
  4236. { "time": 1.6667, "x": -14.04, "y": -0.34 },
  4237. { "time": 1.8333, "x": -6.25, "y": -0.18 },
  4238. { "time": 2, "x": 0, "y": 0 }
  4239. ],
  4240. "scale": [
  4241. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4242. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4243. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4244. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4245. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4246. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4247. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4248. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4250. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4251. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4252. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4253. { "time": 2, "x": 1, "y": 1 }
  4254. ]
  4255. },
  4256. "bone57": {
  4257. "rotate": [
  4258. { "time": 0, "angle": 0 },
  4259. { "time": 0.5, "angle": 3.25 },
  4260. { "time": 1, "angle": 0 },
  4261. { "time": 1.5, "angle": 3.25 },
  4262. { "time": 2, "angle": 0 }
  4263. ],
  4264. "translate": [
  4265. { "time": 0, "x": -0.99, "y": -0.36 },
  4266. { "time": 0.5, "x": 3.8, "y": 1.07 },
  4267. { "time": 1, "x": -0.99, "y": -0.36 },
  4268. { "time": 1.5, "x": 3.8, "y": 1.07 },
  4269. { "time": 2, "x": -0.99, "y": -0.36 }
  4270. ],
  4271. "scale": [
  4272. { "time": 0, "x": 1, "y": 0.924 },
  4273. { "time": 0.5, "x": 1, "y": 1 },
  4274. { "time": 1, "x": 1, "y": 0.924 },
  4275. { "time": 1.5, "x": 1, "y": 1 },
  4276. { "time": 2, "x": 1, "y": 0.924 }
  4277. ]
  4278. },
  4279. "bone58": {
  4280. "rotate": [
  4281. { "time": 0, "angle": 2.05 },
  4282. { "time": 0.5, "angle": 22.29 },
  4283. { "time": 1, "angle": 2.05 },
  4284. { "time": 1.5, "angle": 22.29 },
  4285. { "time": 2, "angle": 2.05 }
  4286. ],
  4287. "translate": [
  4288. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4289. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4291. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4292. { "time": 2, "x": 0, "y": 0 }
  4293. ],
  4294. "scale": [
  4295. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4296. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4297. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4298. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4299. { "time": 2, "x": 1, "y": 1 }
  4300. ]
  4301. },
  4302. "bone60": {
  4303. "rotate": [
  4304. { "time": 0, "angle": 0 },
  4305. { "time": 0.5, "angle": -1 },
  4306. { "time": 1, "angle": 0 },
  4307. { "time": 1.5, "angle": -1 },
  4308. { "time": 2, "angle": 0 }
  4309. ],
  4310. "translate": [
  4311. { "time": 0, "x": 0, "y": 0 },
  4312. { "time": 0.5, "x": 2, "y": -1.06 },
  4313. { "time": 1, "x": 0, "y": 0 },
  4314. { "time": 1.5, "x": 2, "y": -1.06 },
  4315. { "time": 2, "x": 0, "y": 0 }
  4316. ],
  4317. "scale": [
  4318. { "time": 0, "x": 1, "y": 1 },
  4319. { "time": 0.1667, "x": 1, "y": 0.895 },
  4320. { "time": 0.5, "x": 1, "y": 1 },
  4321. { "time": 0.6667, "x": 1, "y": 0.895 },
  4322. { "time": 1, "x": 1, "y": 1 },
  4323. { "time": 1.1667, "x": 1, "y": 0.895 },
  4324. { "time": 1.5, "x": 1, "y": 1 },
  4325. { "time": 1.6667, "x": 1, "y": 0.895 },
  4326. { "time": 2, "x": 1, "y": 1 }
  4327. ]
  4328. },
  4329. "bone61": {
  4330. "rotate": [
  4331. { "time": 0, "angle": 0 },
  4332. { "time": 0.5, "angle": 18.14 },
  4333. { "time": 1, "angle": 0 },
  4334. { "time": 1.5, "angle": 18.14 },
  4335. { "time": 2, "angle": 0 }
  4336. ],
  4337. "translate": [
  4338. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4339. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4342. { "time": 2, "x": 0, "y": 0 }
  4343. ],
  4344. "scale": [
  4345. { "time": 0, "x": 1, "y": 1 },
  4346. { "time": 0.5, "x": 1.05, "y": 1 },
  4347. { "time": 1, "x": 1, "y": 1 },
  4348. { "time": 1.5, "x": 1.05, "y": 1 },
  4349. { "time": 2, "x": 1, "y": 1 }
  4350. ]
  4351. },
  4352. "bone62": {
  4353. "rotate": [
  4354. { "time": 0, "angle": 0 },
  4355. { "time": 0.5, "angle": 18.14 },
  4356. { "time": 1, "angle": 0 },
  4357. { "time": 1.5, "angle": 18.14 },
  4358. { "time": 2, "angle": 0 }
  4359. ],
  4360. "translate": [
  4361. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4362. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4363. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 2, "x": 0, "y": 0 }
  4366. ],
  4367. "scale": [
  4368. { "time": 0, "x": 1, "y": 1 },
  4369. { "time": 0.5, "x": 1.05, "y": 1 },
  4370. { "time": 1, "x": 1, "y": 1 },
  4371. { "time": 1.5, "x": 1.05, "y": 1 },
  4372. { "time": 2, "x": 1, "y": 1 }
  4373. ]
  4374. },
  4375. "bone63": {
  4376. "rotate": [
  4377. { "time": 0, "angle": 0, "curve": "stepped" },
  4378. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4379. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4380. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4381. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4382. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4383. { "time": 1, "angle": 0, "curve": "stepped" },
  4384. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4385. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4386. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4387. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4388. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4389. { "time": 2, "angle": 0 }
  4390. ],
  4391. "translate": [
  4392. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4393. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4394. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4395. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4396. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4397. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4398. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4399. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4400. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4401. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4402. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4403. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4404. { "time": 2, "x": 0, "y": 0 }
  4405. ],
  4406. "scale": [
  4407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4413. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4414. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4415. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4416. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4419. { "time": 2, "x": 1, "y": 1 }
  4420. ]
  4421. },
  4422. "root": {
  4423. "rotate": [
  4424. { "time": 0, "angle": 0 }
  4425. ],
  4426. "translate": [
  4427. { "time": 0, "x": 0, "y": 0 }
  4428. ],
  4429. "scale": [
  4430. { "time": 0, "x": 0.65, "y": 0.65 }
  4431. ]
  4432. },
  4433. "bone": {
  4434. "rotate": [
  4435. { "time": 0, "angle": 0 }
  4436. ],
  4437. "translate": [
  4438. { "time": 0, "x": 0, "y": 0 }
  4439. ]
  4440. },
  4441. "bone52": {
  4442. "rotate": [
  4443. { "time": 0, "angle": 0 },
  4444. { "time": 0.1667, "angle": 11.36 },
  4445. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4446. { "time": 0.5, "angle": 0 },
  4447. { "time": 0.6667, "angle": 30.77 },
  4448. { "time": 0.8333, "angle": 21.67 },
  4449. { "time": 1, "angle": 0 },
  4450. { "time": 1.1667, "angle": 11.36 },
  4451. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4452. { "time": 1.5, "angle": 0 },
  4453. { "time": 1.6667, "angle": 30.77 },
  4454. { "time": 1.8333, "angle": 21.67 },
  4455. { "time": 2, "angle": 0 }
  4456. ],
  4457. "translate": [
  4458. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4459. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4460. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4461. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4462. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4463. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4464. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4465. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4466. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4467. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4468. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4469. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4470. { "time": 2, "x": 0, "y": 0 }
  4471. ],
  4472. "scale": [
  4473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4482. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4483. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4484. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4485. { "time": 2, "x": 1, "y": 1 }
  4486. ]
  4487. },
  4488. "bone53": {
  4489. "rotate": [
  4490. { "time": 0, "angle": -4.28 },
  4491. { "time": 0.1667, "angle": -2.97 },
  4492. { "time": 0.3333, "angle": -2.25 },
  4493. { "time": 0.5, "angle": 0 },
  4494. { "time": 0.6667, "angle": -10.49 },
  4495. { "time": 0.8333, "angle": 0 },
  4496. { "time": 1, "angle": -4.28 },
  4497. { "time": 1.1667, "angle": -2.97 },
  4498. { "time": 1.3333, "angle": -2.25 },
  4499. { "time": 1.5, "angle": 0 },
  4500. { "time": 1.6667, "angle": -10.49 },
  4501. { "time": 1.8333, "angle": 0 },
  4502. { "time": 2, "angle": -4.28 }
  4503. ],
  4504. "translate": [
  4505. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4506. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4507. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4508. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4509. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4510. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4511. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4512. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4513. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4514. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4515. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4516. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4517. { "time": 2, "x": 0, "y": 0 }
  4518. ],
  4519. "scale": [
  4520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4521. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4522. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4523. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4524. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4526. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4528. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4529. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 2, "x": 1, "y": 1 }
  4533. ]
  4534. },
  4535. "bone55": {
  4536. "rotate": [
  4537. { "time": 0, "angle": 0 },
  4538. { "time": 0.1667, "angle": 27.13 },
  4539. { "time": 0.3333, "angle": 29.96 },
  4540. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4541. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4542. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4543. { "time": 1, "angle": 0 },
  4544. { "time": 1.1667, "angle": 27.13 },
  4545. { "time": 1.3333, "angle": 29.96 },
  4546. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4547. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4548. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4549. { "time": 2, "angle": 0 }
  4550. ],
  4551. "translate": [
  4552. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4553. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4554. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4555. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4556. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4557. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4558. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4559. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4560. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4561. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4562. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4563. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4564. { "time": 2, "x": 0, "y": 0 }
  4565. ],
  4566. "scale": [
  4567. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4568. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4569. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4572. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4573. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4574. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4575. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4576. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4578. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4579. { "time": 2, "x": 1, "y": 1 }
  4580. ]
  4581. },
  4582. "bone56": {
  4583. "rotate": [
  4584. { "time": 0, "angle": 0, "curve": "stepped" },
  4585. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4586. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4587. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4588. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4589. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4590. { "time": 1, "angle": 0, "curve": "stepped" },
  4591. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4592. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4593. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4594. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4595. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4596. { "time": 2, "angle": 0 }
  4597. ],
  4598. "translate": [
  4599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4600. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4601. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4605. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4606. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4608. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4611. { "time": 2, "x": 0, "y": 0 }
  4612. ],
  4613. "scale": [
  4614. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4615. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4618. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4619. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 2, "x": 1, "y": 1 }
  4627. ]
  4628. },
  4629. "bone59": {
  4630. "rotate": [
  4631. { "time": 0, "angle": 0 },
  4632. { "time": 0.5, "angle": 22.29 },
  4633. { "time": 1, "angle": 0 },
  4634. { "time": 1.5, "angle": 22.29 },
  4635. { "time": 2, "angle": 0 }
  4636. ],
  4637. "translate": [
  4638. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4639. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4640. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4641. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4642. { "time": 2, "x": 0, "y": 0 }
  4643. ],
  4644. "scale": [
  4645. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4646. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4647. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4648. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4649. { "time": 2, "x": 1, "y": 1 }
  4650. ]
  4651. }
  4652. },
  4653. "deform": {
  4654. "default": {
  4655. "houba": {
  4656. "houba": [
  4657. {
  4658. "time": 0,
  4659. "offset": 136,
  4660. "vertices": [ 2.09681, 3.58011, 2.09681, 3.58011 ]
  4661. }
  4662. ]
  4663. },
  4664. "kudang": {
  4665. "kudang": [
  4666. { "time": 0 },
  4667. {
  4668. "time": 0.1667,
  4669. "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
  4670. },
  4671. {
  4672. "time": 0.2333,
  4673. "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  4674. },
  4675. {
  4676. "time": 0.3333,
  4677. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
  4678. },
  4679. {
  4680. "time": 0.5,
  4681. "offset": 2,
  4682. "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
  4683. },
  4684. {
  4685. "time": 0.6667,
  4686. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
  4687. },
  4688. {
  4689. "time": 0.7333,
  4690. "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  4691. },
  4692. {
  4693. "time": 0.8333,
  4694. "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
  4695. },
  4696. { "time": 1 },
  4697. {
  4698. "time": 1.1667,
  4699. "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
  4700. },
  4701. {
  4702. "time": 1.2333,
  4703. "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  4704. },
  4705. {
  4706. "time": 1.3333,
  4707. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
  4708. },
  4709. {
  4710. "time": 1.5,
  4711. "offset": 2,
  4712. "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
  4713. },
  4714. {
  4715. "time": 1.6667,
  4716. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
  4717. },
  4718. {
  4719. "time": 1.7333,
  4720. "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  4721. },
  4722. {
  4723. "time": 1.8333,
  4724. "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
  4725. },
  4726. { "time": 2 }
  4727. ]
  4728. },
  4729. "shenti": {
  4730. "shenti": [
  4731. { "time": 0 },
  4732. {
  4733. "time": 0.5,
  4734. "offset": 58,
  4735. "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.00494, -0.73229, 0.0122, -0.7322, -0.00494, -0.73229, 0.0122, -0.7322, 0.02032, -0.73202, -0.00494, -0.73229, 0.0122, -0.7322, 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.0092, 1.42796, 0, 0, 0, 0, 1.28471, 0.76095, 1.31014, 0.71623, 1.22298, 0.78897, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32684, 1.12387, 1.21618, 1.1969, 1.28735, 1.16893, 1.32684, 1.12387, 1.21618, 1.1969, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
  4736. },
  4737. { "time": 1 },
  4738. {
  4739. "time": 1.5,
  4740. "offset": 58,
  4741. "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.0074, -1.09842, 0.0183, -1.09829, -0.0074, -1.09842, 0.0183, -1.09829, 0.03049, -1.09802, -0.0074, -1.09842, 0.0183, -1.09829, 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.0092, 1.42796, 0, 0, 0, 0, 1.27455, 1.12696, 1.31261, 1.08236, 1.21688, 1.15506, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32931, 1.49001, 1.21008, 1.56299, 1.27719, 1.53493, 1.32931, 1.49001, 1.21008, 1.56299, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
  4742. },
  4743. { "time": 2 }
  4744. ]
  4745. },
  4746. "youshou": {
  4747. "youshou": [
  4748. {
  4749. "time": 0,
  4750. "offset": 58,
  4751. "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
  4752. },
  4753. {
  4754. "time": 0.5,
  4755. "offset": 56,
  4756. "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
  4757. },
  4758. {
  4759. "time": 1,
  4760. "offset": 56,
  4761. "vertices": [ -4.82079, -0.38274, 0.51251, -4.55801, 0.52781, -3.29185 ]
  4762. },
  4763. {
  4764. "time": 1.5,
  4765. "offset": 56,
  4766. "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
  4767. },
  4768. {
  4769. "time": 2,
  4770. "offset": 58,
  4771. "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
  4772. }
  4773. ]
  4774. },
  4775. "youtui": {
  4776. "youtui": [
  4777. {
  4778. "time": 0,
  4779. "offset": 56,
  4780. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
  4781. "curve": "stepped"
  4782. },
  4783. {
  4784. "time": 1,
  4785. "offset": 56,
  4786. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
  4787. "curve": "stepped"
  4788. },
  4789. {
  4790. "time": 2,
  4791. "offset": 56,
  4792. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ]
  4793. }
  4794. ]
  4795. },
  4796. "zuotui": {
  4797. "zuotui": [
  4798. {
  4799. "time": 0,
  4800. "offset": 60,
  4801. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
  4802. "curve": "stepped"
  4803. },
  4804. {
  4805. "time": 1,
  4806. "offset": 60,
  4807. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
  4808. "curve": "stepped"
  4809. },
  4810. {
  4811. "time": 2,
  4812. "offset": 60,
  4813. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ]
  4814. }
  4815. ]
  4816. }
  4817. }
  4818. }
  4819. }
  4820. }
  4821. }