69009.json 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235
  1. {
  2. "skeleton": { "hash": "lAErY9ItMJ/U6a2wQ0w8bchHXDc", "spine": "3.6.53", "width": 169.24, "height": 193, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -3.51, "y": 62.44 },
  6. { "name": "bone2", "parent": "bone", "length": 15.95, "rotation": 90.99, "y": 2.2 },
  7. { "name": "bone3", "parent": "bone2", "length": 17.93, "rotation": -5.39, "x": 15.95 },
  8. { "name": "bone4", "parent": "bone", "length": 8.24, "rotation": -89.01, "x": -0.08, "y": -2.12 },
  9. { "name": "bone5", "parent": "bone", "length": 21.36, "rotation": -94.19, "x": -7.27, "y": -8.39 },
  10. { "name": "bone6", "parent": "bone5", "length": 23.51, "rotation": -0.66, "x": 21.36 },
  11. { "name": "bone7", "parent": "bone6", "length": 13.88, "rotation": -71.54, "x": 25.37, "y": 0.01 },
  12. { "name": "bone8", "parent": "bone", "length": 22.67, "rotation": -84.97, "x": 12.75, "y": -7.82, "color": "2db3f9ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 21.33, "rotation": -1.98, "x": 22.82, "y": 0.13, "color": "2db3f9ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 12.17, "rotation": -76.1, "x": 23.44, "y": -0.4, "color": "2db3f9ff" },
  15. { "name": "bone11", "parent": "bone3", "length": 17.26, "rotation": 148.59, "x": 20.16, "y": 9.14, "color": "2db4f9ff" },
  16. { "name": "bone12", "parent": "bone11", "length": 18.39, "rotation": -10.51, "x": 17.26, "color": "2db4f9ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 13.5, "rotation": 6.73, "x": 18.38, "y": 0.28, "color": "2db4f9ff" },
  18. { "name": "bone14", "parent": "bone3", "length": 21.31, "rotation": -135.93, "x": 21.99, "y": -18.5 },
  19. { "name": "bone15", "parent": "bone14", "length": 14.97, "rotation": 0.73, "x": 20.71, "y": -0.25 },
  20. { "name": "bone16", "parent": "bone15", "length": 13.54, "rotation": -2.59, "x": 14.97 },
  21. { "name": "bone17", "parent": "bone3", "length": 16.07, "rotation": 176.17, "x": 19.12, "y": 8.29 },
  22. { "name": "bone18", "parent": "bone17", "length": 12.83, "rotation": -2.55, "x": 16.07 },
  23. { "name": "bone19", "parent": "bone18", "length": 11.65, "rotation": -9.83, "x": 12.83 },
  24. { "name": "bone20", "parent": "bone3", "length": 18.98, "rotation": -170.46, "x": 20.84, "y": -10.13 },
  25. { "name": "bone21", "parent": "bone20", "length": 12.33, "rotation": 3.25, "x": 18.98 },
  26. { "name": "bone22", "parent": "bone21", "length": 10.56, "rotation": 8.67, "x": 12.45, "y": 0.08 },
  27. { "name": "bone23", "parent": "bone3", "length": 6.16, "rotation": 4.4, "x": 14.31, "y": -1.85 },
  28. { "name": "bone24", "parent": "bone3", "length": 61.42, "rotation": 5.76, "x": 22.63, "y": -0.24 },
  29. { "name": "bone25", "parent": "bone24", "length": 11.02, "rotation": 150.57, "x": 63.69, "y": 19.72 },
  30. { "name": "bone26", "parent": "bone25", "length": 9.9, "rotation": 6.97, "x": 11.73, "y": 0.38 },
  31. { "name": "bone27", "parent": "bone26", "length": 9.06, "rotation": 10.8, "x": 10.65, "y": 0.29 },
  32. { "name": "bone28", "parent": "bone27", "length": 8.8, "rotation": 3.96, "x": 9.85, "y": 0.14 },
  33. { "name": "bone29", "parent": "bone24", "length": 7.47, "rotation": -140.76, "x": 64.59, "y": 3 },
  34. { "name": "bone30", "parent": "bone29", "length": 6.88, "rotation": -25.58, "x": 8.17, "y": -0.18 },
  35. { "name": "bone31", "parent": "bone30", "length": 5.84, "rotation": -11.84, "x": 8.33, "y": -0.22 },
  36. { "name": "bone32", "parent": "bone24", "length": 10.3, "rotation": -115.51, "x": 71.03, "y": 0.91 },
  37. { "name": "bone33", "parent": "bone32", "length": 10.11, "rotation": -30.64, "x": 10.94, "y": -0.24 },
  38. { "name": "bone34", "parent": "bone33", "length": 11.4, "rotation": -12.66, "x": 10.11 },
  39. { "name": "bone35", "parent": "bone34", "length": 10.95, "rotation": -14.91, "x": 11.55, "y": -0.06 },
  40. { "name": "bone36", "parent": "bone24", "length": 10.09, "rotation": 118.5, "x": 73.42, "y": 12.03 },
  41. { "name": "bone37", "parent": "bone36", "length": 11.12, "rotation": 16.91, "x": 10.09 },
  42. { "name": "bone38", "parent": "bone37", "length": 11.28, "rotation": 22.19, "x": 11.35, "y": 0.22 },
  43. { "name": "bone39", "parent": "bone38", "length": 9.99, "rotation": 12.64, "x": 11.53, "y": 0.27 },
  44. { "name": "bone40", "parent": "bone39", "length": 9.28, "rotation": -16.38, "x": 10.31, "y": 0.05 },
  45. { "name": "bone41", "parent": "bone24", "length": 15.59, "rotation": -138.89, "x": 67.36, "y": -17.64 },
  46. { "name": "bone42", "parent": "bone41", "length": 11.67, "rotation": -16.98, "x": 15.59 },
  47. { "name": "bone43", "parent": "bone42", "length": 9.66, "rotation": -2.8, "x": 11.67 },
  48. { "name": "bone44", "parent": "bone43", "length": 9.44, "rotation": 27.88, "x": 9.81, "y": -0.06 },
  49. { "name": "bone45", "parent": "bone24", "length": 17.07, "rotation": -86.46, "x": 75.24, "y": 0.16 },
  50. { "name": "bone46", "parent": "bone45", "length": 13.85, "rotation": -33.56, "x": 17.07 },
  51. { "name": "bone47", "parent": "bone46", "length": 12.88, "rotation": -21.44, "x": 14.73, "y": -0.26 },
  52. { "name": "bone48", "parent": "bone47", "length": 13.64, "rotation": -9.98, "x": 13.11, "y": 0.02 },
  53. { "name": "bone49", "parent": "bone48", "length": 9.26, "rotation": 27.23, "x": 13.64 },
  54. { "name": "bone50", "parent": "bone24", "length": 11.51, "rotation": 91.06, "x": 77.49, "y": 6.1 },
  55. { "name": "bone51", "parent": "bone50", "length": 8.27, "rotation": 20.63, "x": 11.51 },
  56. { "name": "bone52", "parent": "bone51", "length": 7.59, "rotation": -6.94, "x": 8.64, "y": 0.02 },
  57. { "name": "bone53", "parent": "bone52", "length": 5.83, "rotation": -16.11, "x": 7.9, "y": -0.09 },
  58. { "name": "bone54", "parent": "bone24", "length": 12.04, "rotation": -2.03, "x": 19.19, "y": -11.94 },
  59. { "name": "bone55", "parent": "bone24", "length": 13.16, "rotation": -0.14, "x": 18.3, "y": 15.67 },
  60. { "name": "bone56", "parent": "bone24", "length": 6.58, "rotation": -0.14, "x": 19.13, "y": 3.33 },
  61. { "name": "bone57", "parent": "bone24", "length": 5.91, "rotation": 4.08, "x": 35.43, "y": 5.46 },
  62. { "name": "bone58", "parent": "bone24", "length": 6.41, "rotation": -2.16, "x": 6.44, "y": 2.7 },
  63. { "name": "bone59", "parent": "root", "x": -89.02, "y": 119.96 },
  64. { "name": "bone60", "parent": "root", "x": 54.94, "y": 124.54 },
  65. { "name": "bone61", "parent": "root", "x": -67.3, "y": 167.81 },
  66. { "name": "bone62", "parent": "root", "x": 55.22, "y": 171.32 }
  67. ],
  68. "slots": [
  69. { "name": "zuoshou", "bone": "bone11", "attachment": "zuoshou" },
  70. { "name": "book", "bone": "bone13", "attachment": "book" },
  71. { "name": "zuotui", "bone": "bone5", "attachment": "zuotui" },
  72. { "name": "youtui", "bone": "bone8", "attachment": "youtui" },
  73. { "name": "kudang", "bone": "bone4", "attachment": "kudang" },
  74. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  75. { "name": "waitaozuo", "bone": "bone17", "attachment": "waitaozuo" },
  76. { "name": "waitaoyou", "bone": "bone20", "attachment": "waitaoyou" },
  77. { "name": "bozigenlingjie", "bone": "bone2", "attachment": "bozigenlingjie" },
  78. { "name": "youshou", "bone": "bone14", "attachment": "youshou" },
  79. { "name": "lingjie", "bone": "bone23", "attachment": "lingjie" },
  80. { "name": "toufa10", "bone": "bone2", "attachment": "toufa10" },
  81. { "name": "toufa9", "bone": "bone2", "attachment": "toufa9" },
  82. { "name": "lian", "bone": "bone24", "attachment": "lian" },
  83. { "name": "zuiba", "bone": "bone58", "attachment": "zuiba" },
  84. { "name": "bizui", "bone": "bone58" },
  85. { "name": "zuoyan", "bone": "bone55", "attachment": "zuoyan" },
  86. { "name": "youyan", "bone": "bone54", "attachment": "youyan" },
  87. { "name": "biyan", "bone": "bone56" },
  88. { "name": "meimao", "bone": "bone57", "attachment": "meimao" },
  89. { "name": "toufa8", "bone": "bone50", "attachment": "toufa8" },
  90. { "name": "toufa7", "bone": "bone45", "attachment": "toufa7" },
  91. { "name": "toufa6", "bone": "bone2", "attachment": "toufa6" },
  92. { "name": "toufa5", "bone": "bone36", "attachment": "toufa5" },
  93. { "name": "toufa4", "bone": "bone41", "attachment": "toufa4" },
  94. { "name": "toufa3", "bone": "bone32", "attachment": "toufa3" },
  95. { "name": "toufa2", "bone": "bone29", "attachment": "toufa2" },
  96. { "name": "toufa1", "bone": "bone25", "attachment": "toufa1" },
  97. { "name": "fuhao16", "bone": "bone62", "attachment": "fuhao5" },
  98. { "name": "fuhao7", "bone": "bone60", "attachment": "fuhao4" },
  99. { "name": "fuhao14", "bone": "bone61", "attachment": "fuhao2" },
  100. { "name": "fuhao1", "bone": "bone59", "attachment": "fuhao1" }
  101. ],
  102. "skins": {
  103. "default": {
  104. "biyan": {
  105. "biyan": { "x": 2.76, "y": -2.58, "rotation": -91.22, "width": 51, "height": 10 }
  106. },
  107. "bizui": {
  108. "bizui": { "x": 2.52, "y": -2.56, "rotation": -89.2, "width": 13, "height": 6 }
  109. },
  110. "book": {
  111. "book": { "x": 17.23, "y": -0.72, "rotation": 129.59, "width": 34, "height": 33 }
  112. },
  113. "bozigenlingjie": {
  114. "bozigenlingjie": { "x": 39.27, "y": -5.12, "rotation": -90.99, "width": 19, "height": 14 }
  115. },
  116. "fuhao1": {
  117. "fuhao1": { "x": 1.65, "y": -2.49, "width": 23, "height": 24 }
  118. },
  119. "fuhao14": {
  120. "fuhao2": { "x": 0.65, "y": -1.97, "width": 21, "height": 28 }
  121. },
  122. "fuhao16": {
  123. "fuhao5": { "x": 1.15, "y": 0.97, "width": 28, "height": 29 }
  124. },
  125. "fuhao7": {
  126. "fuhao4": { "x": 4.15, "y": -0.35, "width": 22, "height": 26 }
  127. },
  128. "kudang": {
  129. "kudang": {
  130. "type": "mesh",
  131. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  132. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  133. "vertices": [ 14.72, 22.77, 14.05, -16.22, -10.95, -15.79, -10.28, 23.21 ],
  134. "hull": 4,
  135. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  136. "width": 39,
  137. "height": 25
  138. }
  139. },
  140. "lian": {
  141. "lian": { "x": 31.71, "y": -6.5, "rotation": -91.36, "width": 69, "height": 66 }
  142. },
  143. "lingjie": {
  144. "lingjie": { "x": 2.28, "y": 0.23, "rotation": -90, "width": 25, "height": 14 }
  145. },
  146. "meimao": {
  147. "meimao": { "x": 1.27, "y": -3.18, "rotation": -95.44, "width": 39, "height": 8 }
  148. },
  149. "shenti": {
  150. "shenti": {
  151. "type": "mesh",
  152. "uvs": [ 1, 0.50627, 1, 0.58621, 1, 0.72151, 1, 1, 0.40498, 1, 0, 1, 0, 0.71946, 0, 0.60261, 0, 0.51241, 0, 0, 0.45245, 0, 1, 0, 0.40929, 0.60056, 0.40799, 0.72171, 0.41512, 0.5195 ],
  153. "triangles": [ 12, 1, 2, 7, 8, 12, 12, 14, 1, 12, 8, 14, 14, 0, 1, 0, 14, 10, 10, 14, 9, 14, 8, 9, 10, 11, 0, 4, 13, 3, 13, 2, 3, 13, 4, 6, 4, 5, 6, 13, 12, 2, 12, 13, 7, 13, 6, 7 ],
  154. "vertices": [ 2, 2, 19.73, -22.29, 0.27291, 3, 5.85, -21.83, 0.72709, 2, 2, 16.53, -22.23, 0.39017, 3, 2.66, -22.08, 0.60983, 2, 2, 11.12, -22.14, 0.59754, 3, -2.74, -22.49, 0.40246, 2, 2, -0.02, -21.94, 0.81739, 3, -13.84, -23.35, 0.18261, 1, 2, 0.37, 0.66, 1, 2, 2, 0.63, 16.05, 0.96682, 3, -16.76, 14.54, 0.03318, 2, 2, 11.85, 15.86, 0.69149, 3, -5.57, 15.4, 0.30851, 2, 2, 16.53, 15.78, 0.44406, 3, -0.91, 15.76, 0.55594, 2, 2, 20.13, 15.71, 0.26165, 3, 2.69, 16.04, 0.73835, 2, 2, 40.63, 15.36, 0, 3, 23.12, 17.61, 1, 1, 3, 24.44, 0.47, 1, 2, 2, 39.97, -22.63, 1.0E-5, 3, 26.04, -20.28, 0.99999, 2, 2, 16.34, 0.22, 0.1, 3, 0.37, 0.26, 0.9, 2, 2, 11.5, 0.36, 0.99585, 3, -4.47, -0.06, 0.00415, 2, 2, 19.58, -0.05, 0.00139, 3, 3.62, 0.29, 0.99861 ],
  155. "hull": 12,
  156. "edges": [ 6, 8, 8, 10, 18, 20, 20, 22, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
  157. "width": 38,
  158. "height": 40
  159. }
  160. },
  161. "toufa1": {
  162. "toufa1": {
  163. "type": "mesh",
  164. "uvs": [ 0.99999, 0.21652, 1, 0.39582, 0.80557, 0.41286, 0.70418, 0.41991, 0.62932, 0.4846, 0.54533, 0.55717, 0.48709, 0.67377, 0.44548, 0.75705, 0.3824, 0.88694, 0.32748, 1, 0.15502, 1, 0, 1, 0, 0.82624, 0, 0.67381, 0, 0.57638, 0, 0.45067, 0, 0.29506, 0.13099, 0.1861, 0.2016, 0.12737, 0.35472, 0, 0.74922, 0.00786, 1, 0, 0.42279, 0.25894, 0.25941, 0.48531, 0.1931, 0.72343, 0.58961, 0.07936, 0.48316, 0.19396, 0.33239, 0.3842, 0.22349, 0.60918, 0.17691, 0.85672 ],
  165. "triangles": [ 24, 28, 7, 12, 13, 24, 29, 12, 24, 8, 29, 24, 7, 8, 24, 11, 12, 29, 10, 11, 29, 9, 29, 8, 10, 29, 9, 28, 14, 15, 23, 28, 15, 6, 23, 5, 28, 23, 6, 13, 14, 28, 24, 13, 28, 7, 28, 6, 16, 17, 27, 23, 15, 16, 4, 22, 3, 27, 22, 4, 27, 23, 16, 5, 27, 4, 23, 27, 5, 25, 19, 20, 26, 19, 25, 18, 19, 26, 0, 20, 21, 25, 20, 0, 22, 18, 26, 17, 18, 22, 27, 17, 22, 2, 25, 0, 26, 25, 2, 22, 26, 3, 2, 0, 1, 3, 26, 2 ],
  166. "vertices": [ 1, 25, 1.22, 12.51, 1, 1, 25, 8.97, 16.64, 1, 1, 25, 12.08, 12.58, 1, 3, 25, 13.63, 10.41, 0.14204, 26, 3.1, 9.73, 0.72785, 27, -5.65, 10.68, 0.13011, 4, 25, 17.34, 10.19, 0.01395, 26, 6.76, 9.05, 0.60019, 27, -2.18, 9.34, 0.38228, 28, -11.37, 10, 0.00358, 3, 26, 10.86, 8.3, 0.21637, 27, 1.71, 7.82, 0.72809, 28, -7.6, 8.22, 0.05554, 3, 26, 16.74, 8.94, 0.00116, 27, 7.6, 7.36, 0.54799, 28, -1.75, 7.35, 0.45086, 2, 27, 11.81, 7.02, 0.12438, 28, 2.42, 6.72, 0.87562, 1, 28, 8.93, 5.8, 1, 1, 28, 14.59, 4.99, 1, 1, 28, 15.09, 0.53, 1, 1, 28, 15.54, -3.47, 1, 2, 27, 17.21, -3.77, 3.3E-4, 28, 7.07, -4.41, 0.99967, 3, 26, 21.3, -2.87, 0.0011, 27, 9.87, -5.1, 0.61195, 28, -0.35, -5.24, 0.38695, 3, 26, 16.85, -4.59, 0.09969, 27, 5.17, -5.96, 0.89295, 28, -5.1, -5.76, 0.00736, 3, 25, 23.58, -5.03, 0.03246, 26, 11.1, -6.81, 0.71449, 27, -0.89, -7.06, 0.25305, 2, 25, 16.85, -8.62, 0.33126, 26, 3.99, -9.56, 0.66874, 2, 25, 10.53, -8.13, 0.81419, 26, -2.22, -8.3, 0.18581, 2, 25, 7.13, -7.86, 0.9758, 26, -5.57, -7.62, 0.0242, 1, 25, -0.25, -7.29, 1, 1, 25, -4.74, 1.94, 1, 1, 25, -8.14, 7.52, 1, 3, 25, 10.11, 0.25, 0.95488, 26, -1.62, 0.06, 0.04497, 27, -12.1, 2.07, 1.5E-4, 2, 26, 10.26, 0.09, 0.5856, 27, -0.43, -0.12, 0.4144, 1, 28, 1.51, 0.02, 1, 1, 25, 0.31, -0.07, 1, 3, 25, 6.56, 0.13, 0.99696, 26, -5.16, 0.38, 0.00302, 27, -15.52, 3.05, 1.0E-5, 2, 26, 4.95, 0.08, 0.99887, 27, -5.64, 0.86, 0.00113, 2, 27, 5.71, 0.05, 0.99941, 28, -4.14, 0.19, 5.9E-4, 1, 28, 8.05, 0.32, 1 ],
  167. "hull": 22,
  168. "edges": [ 40, 42, 20, 22, 38, 40, 18, 20, 40, 50, 38, 50, 2, 0, 0, 42, 50, 0, 36, 38, 44, 52, 52, 50, 36, 52, 2, 4, 4, 6, 52, 4, 32, 34, 34, 36, 34, 44, 44, 6, 44, 54, 54, 46, 32, 54, 6, 8, 8, 10, 54, 8, 30, 32, 30, 46, 46, 10, 28, 30, 46, 56, 56, 48, 28, 56, 10, 12, 12, 14, 56, 12, 26, 28, 26, 48, 22, 24, 24, 26, 20, 58, 58, 48, 24, 58, 14, 16, 16, 18, 58, 16 ],
  169. "width": 26,
  170. "height": 49
  171. }
  172. },
  173. "toufa10": {
  174. "toufa10": {
  175. "type": "mesh",
  176. "uvs": [ 1, 0.67253, 0.76783, 0.84145, 0.28483, 1, 0, 1, 0, 0, 1, 0 ],
  177. "triangles": [ 1, 4, 5, 0, 1, 5, 2, 3, 4, 1, 2, 4 ],
  178. "vertices": [ 59.53, -46.98, 49.36, -39.37, 39.95, -23.75, 40.11, -14.64, 101.1, -15.69, 100.55, -47.68 ],
  179. "hull": 6,
  180. "edges": [ 6, 8, 8, 10, 4, 6, 4, 2, 0, 10, 2, 0 ],
  181. "width": 32,
  182. "height": 61
  183. }
  184. },
  185. "toufa2": {
  186. "toufa2": {
  187. "type": "mesh",
  188. "uvs": [ 0.94086, 0.2307, 0.99999, 0.3289, 1, 0.53993, 1, 0.72924, 0.90591, 0.99069, 0.74418, 1, 0.41691, 1, 0.27695, 0.93515, 0.15109, 0.87527, 1.0E-5, 0.80682, 0, 0.5989, 0, 0.44062, 0, 0, 0.20828, 0, 0.65009, 0, 0.85054, 0.08069, 0.61736, 0.4251, 0.69509, 0.62372, 0.43902, 0.20633, 0.7251, 0.88487, 0.70425, 0.75368, 0.5379, 0.32763 ],
  189. "triangles": [ 6, 19, 5, 5, 19, 4, 19, 6, 20, 4, 19, 3, 20, 6, 7, 20, 7, 17, 19, 20, 3, 3, 20, 2, 17, 8, 16, 20, 17, 2, 1, 17, 16, 1, 16, 0, 17, 1, 2, 0, 16, 15, 17, 7, 8, 8, 9, 16, 16, 10, 21, 21, 11, 18, 21, 10, 11, 11, 13, 18, 11, 12, 13, 16, 21, 15, 21, 14, 15, 21, 18, 14, 18, 13, 14, 16, 9, 10 ],
  190. "vertices": [ 2, 29, 9.14, 8.6, 0.57058, 30, -2.92, 8.34, 0.42942, 3, 29, 12.14, 7.74, 0.32193, 30, 0.17, 8.85, 0.67363, 31, -9.85, 7.21, 0.00444, 3, 29, 16.79, 3.76, 0.0228, 30, 6.08, 7.27, 0.7604, 31, -3.74, 6.87, 0.2168, 2, 30, 11.38, 5.85, 0.20653, 31, 1.74, 6.56, 0.79347, 1, 31, 9.2, 4.08, 1, 2, 29, 23.26, -9.2, 1.0E-5, 31, 9.27, 0.51, 0.99999, 3, 29, 18.57, -14.67, 0.03626, 30, 15.64, -8.58, 0.02861, 31, 8.87, -6.68, 0.93513, 3, 29, 15.14, -15.78, 0.09575, 30, 13.03, -11.07, 0.08361, 31, 6.82, -9.65, 0.82063, 1, 29, 12.02, -16.75, 1, 1, 29, 8.35, -17.98, 1, 1, 29, 3.77, -14.06, 1, 1, 29, 0.29, -11.07, 1, 1, 29, -9.41, -2.76, 1, 1, 29, -6.43, 0.72, 1, 1, 29, -0.11, 8.1, 1, 2, 29, 4.54, 9.93, 0.87534, 30, -7.64, 7.54, 0.12466, 2, 30, 0.68, 0, 0.99998, 31, -7.53, -1.35, 2.0E-5, 1, 30, 6.69, 0.16, 1, 1, 29, 1.41, 0.68, 1, 1, 31, 5.91, 0.28, 1, 1, 31, 2.09, 0.03, 1, 1, 29, 5.5, 0.04, 1 ],
  191. "hull": 16,
  192. "edges": [ 24, 26, 32, 34, 8, 10, 22, 24, 26, 36, 22, 36, 26, 28, 36, 28, 28, 30, 10, 12, 18, 32, 16, 18, 16, 34, 34, 2, 10, 38, 12, 38, 6, 8, 38, 6, 12, 14, 14, 16, 34, 40, 40, 38, 14, 40, 2, 4, 4, 6, 40, 4, 18, 20, 20, 22, 32, 42, 42, 36, 20, 42, 42, 30, 2, 0, 0, 30, 32, 0 ],
  193. "width": 22,
  194. "height": 29
  195. }
  196. },
  197. "toufa3": {
  198. "toufa3": {
  199. "type": "mesh",
  200. "uvs": [ 0.82569, 0.17866, 0.91367, 0.37001, 0.97, 0.55176, 0.88469, 0.74243, 0.74194, 0.95033, 0.66336, 1, 0.5878, 0.83804, 0.56036, 0.7792, 0.51705, 0.67024, 0.45388, 0.6091, 0.40647, 0.55541, 0.32719, 0.51188, 0.23746, 0.48221, 0.16689, 0.48993, 0, 0.62603, 0, 0.49787, 0, 0.21018, 0.17074, 0, 0.41156, 0, 0.65687, 0.03317, 0.25389, 0.20239, 0.42461, 0.19187, 0.54247, 0.31218, 0.64825, 0.53972, 0.10518, 0.33553, 0.61035, 0.42242, 0.68489, 0.70032, 0.71105, 0.81496 ],
  201. "triangles": [ 4, 6, 27, 4, 5, 6, 4, 27, 3, 6, 7, 27, 7, 26, 27, 27, 26, 3, 7, 8, 26, 3, 26, 2, 8, 23, 26, 26, 23, 2, 8, 9, 23, 23, 9, 25, 9, 10, 25, 25, 10, 22, 23, 1, 2, 23, 25, 1, 1, 25, 0, 10, 11, 22, 11, 21, 22, 25, 22, 0, 22, 19, 0, 22, 21, 19, 14, 15, 13, 12, 20, 11, 11, 20, 21, 15, 24, 13, 15, 16, 24, 13, 24, 12, 12, 24, 20, 24, 16, 20, 16, 17, 20, 20, 18, 21, 20, 17, 18, 21, 18, 19 ],
  202. "vertices": [ 2, 33, 8.82, 14.72, 0.66378, 34, -4.49, 14.08, 0.33622, 3, 33, 19.23, 12.21, 0.15822, 34, 6.22, 13.91, 0.8038, 35, -8.75, 12.14, 0.03798, 3, 33, 28.42, 8.83, 0.00355, 34, 15.92, 12.63, 0.55653, 35, 0.96, 13.39, 0.43992, 2, 34, 23.61, 5.28, 0.04299, 35, 10.27, 8.26, 0.95701, 1, 35, 20.13, 0.46, 1, 1, 35, 22.22, -3.39, 1, 1, 35, 13.42, -5.64, 1, 1, 35, 10.22, -6.46, 1, 4, 32, 23.81, -21.08, 0.00178, 33, 21.69, -11.37, 0.0015, 34, 13.79, -8.56, 0.03306, 35, 4.35, -7.63, 0.96365, 4, 32, 19.92, -19.35, 0.01962, 33, 17.46, -11.86, 0.03073, 34, 9.77, -9.96, 0.22922, 35, 0.82, -10.03, 0.72043, 4, 32, 16.83, -17.67, 0.07233, 33, 13.95, -11.99, 0.11577, 34, 6.37, -10.86, 0.38451, 35, -2.23, -11.77, 0.42739, 4, 32, 12.65, -17.06, 0.22699, 33, 10.04, -13.6, 0.24832, 34, 2.91, -13.29, 0.33526, 35, -4.95, -15, 0.18943, 4, 32, 8.33, -17.31, 0.47188, 33, 6.45, -16.01, 0.26439, 34, -0.06, -16.43, 0.19232, 35, -7.02, -18.8, 0.0714, 4, 32, 5.6, -18.97, 0.63409, 33, 4.95, -18.84, 0.21728, 34, -0.91, -19.51, 0.12011, 35, -7.04, -22, 0.02852, 4, 32, 1.64, -28.5, 0.72887, 33, 6.4, -29.05, 0.18286, 34, 2.74, -29.16, 0.08417, 35, -1.03, -30.39, 0.0041, 4, 32, -1.09, -22.42, 0.72867, 33, 0.95, -25.21, 0.18049, 34, -3.41, -26.61, 0.08388, 35, -7.63, -29.5, 0.00697, 4, 32, -7.21, -8.77, 0.92584, 33, -11.27, -16.58, 0.05428, 34, -17.23, -20.87, 0.01966, 35, -22.46, -27.51, 2.2E-4, 1, 32, -4.67, 4.34, 1, 2, 32, 5.22, 8.78, 0.89859, 33, -9.52, 4.85, 0.10141, 3, 32, 16, 11.72, 0.13424, 33, -1.74, 12.87, 0.83455, 34, -14.39, 9.96, 0.03121, 4, 32, 3.05, -3.73, 0.91498, 33, -5.01, -7.02, 0.07052, 34, -13.22, -10.16, 0.01253, 35, -21.34, -16.13, 0.00198, 3, 32, 9.84, -0.09, 0.99986, 34, -10.78, -2.86, 1.1E-4, 35, -20.86, -8.44, 2.0E-5, 1, 33, 7.14, 0.3, 1, 3, 32, 26.42, -12.48, 9.0E-5, 34, 9.79, -0.5, 0.87501, 35, -1.59, -0.88, 0.1249, 4, 32, -0.22, -12.78, 0.78526, 33, -3.21, -16.48, 0.14626, 34, -9.39, -19, 0.05999, 35, -15.37, -23.68, 0.00849, 1, 34, 3.5, 0.26, 1, 1, 35, 6.91, -0.36, 1, 1, 35, 12.97, 0.02, 1 ],
  203. "hull": 20,
  204. "edges": [ 40, 42, 42, 44, 38, 0, 0, 2, 2, 4, 28, 30, 28, 26, 10, 8, 30, 32, 32, 34, 30, 48, 48, 40, 32, 48, 48, 26, 34, 40, 24, 26, 40, 24, 34, 36, 36, 38, 36, 42, 20, 22, 22, 24, 42, 22, 38, 44, 44, 20, 44, 50, 50, 46, 0, 50, 16, 18, 18, 20, 50, 18, 16, 46, 46, 2, 52, 46, 4, 52, 14, 16, 52, 14, 10, 12, 12, 14, 8, 54, 54, 52, 12, 54, 4, 6, 6, 8, 54, 6 ],
  205. "width": 45,
  206. "height": 52
  207. }
  208. },
  209. "toufa4": {
  210. "toufa4": {
  211. "type": "mesh",
  212. "uvs": [ 0.54834, 0.07274, 0.6628, 0.14046, 0.7429, 0.23129, 0.8066, 0.31808, 0.86931, 0.4921, 0.89554, 0.60935, 0.94407, 0.72966, 1, 0.86835, 1, 1, 0.80473, 1, 0.74705, 0.95141, 0.65942, 0.8776, 0.57675, 0.79887, 0.50402, 0.7296, 0.44135, 0.64927, 0.38495, 0.57697, 0.28819, 0.48307, 0.2134, 0.41048, 0.08998, 0.31284, 0, 0.24166, 0, 0.13992, 0, 0, 0.20937, 0, 0.38495, 0, 0.34751, 0.15229, 0.57015, 0.34804, 0.66144, 0.54691, 0.75878, 0.74931, 0.17024, 0.12969, 0.4788, 0.24272, 0.62809, 0.45302, 0.7058, 0.65271, 0.86542, 0.87649, 0.92664, 0.93267 ],
  213. "triangles": [ 9, 33, 8, 33, 7, 8, 9, 32, 33, 9, 10, 32, 32, 10, 27, 33, 32, 7, 10, 11, 27, 11, 12, 27, 32, 6, 7, 32, 27, 6, 12, 31, 27, 12, 13, 31, 27, 5, 6, 27, 31, 5, 31, 13, 26, 5, 31, 4, 31, 26, 4, 13, 14, 26, 26, 14, 30, 14, 15, 30, 15, 25, 30, 15, 16, 25, 4, 26, 3, 26, 30, 3, 2, 30, 25, 2, 3, 30, 16, 29, 25, 16, 17, 29, 18, 28, 17, 17, 24, 29, 17, 28, 24, 25, 1, 2, 25, 29, 1, 18, 19, 28, 29, 0, 1, 29, 24, 0, 19, 20, 28, 28, 22, 24, 24, 23, 0, 24, 22, 23, 20, 21, 28, 28, 21, 22 ],
  214. "vertices": [ 2, 41, 5.14, 7.99, 0.99905, 42, -12.33, 4.59, 9.5E-4, 3, 41, 11.79, 10.44, 0.85821, 42, -6.69, 8.87, 0.14174, 43, -18.76, 7.96, 6.0E-5, 3, 41, 17.98, 10.74, 0.43875, 42, -0.85, 10.97, 0.53663, 43, -13.04, 10.35, 0.02462, 3, 41, 23.42, 10.51, 0.13332, 42, 4.41, 12.34, 0.73326, 43, -7.85, 11.97, 0.13342, 4, 41, 31.91, 7.42, 9.6E-4, 42, 13.44, 11.86, 0.38458, 43, 1.19, 11.93, 0.60623, 44, -2.01, 14.63, 0.00823, 3, 42, 19.14, 10.74, 0.09151, 43, 6.94, 11.09, 0.74317, 44, 2.68, 11.2, 0.16532, 3, 42, 25.5, 10.66, 0.00239, 43, 13.3, 11.32, 0.32354, 44, 8.41, 8.43, 0.67407, 2, 43, 20.62, 11.59, 0.02351, 44, 15.01, 5.25, 0.97649, 1, 44, 19.03, 0.36, 1, 1, 44, 10.73, -6.46, 1, 1, 44, 6.8, -6.67, 1, 3, 42, 25.17, -6.53, 3.6E-4, 43, 13.81, -5.86, 0.02845, 44, 0.83, -6.99, 0.97119, 3, 42, 19.8, -9, 0.06762, 43, 8.57, -8.6, 0.41502, 44, -5.09, -6.96, 0.51736, 4, 41, 26.75, -15.1, 0.00953, 42, 15.08, -11.18, 0.30645, 43, 3.96, -11, 0.493, 44, -10.29, -6.94, 0.19102, 4, 41, 21.58, -15.04, 0.08649, 42, 10.11, -12.64, 0.57828, 43, -0.93, -12.7, 0.27962, 44, -15.4, -6.15, 0.05561, 4, 41, 16.93, -14.98, 0.28208, 42, 5.65, -13.94, 0.60425, 43, -5.33, -14.22, 0.10198, 44, -20, -5.44, 0.01169, 4, 41, 10.01, -15.86, 0.66474, 42, -0.71, -16.8, 0.32513, 43, -11.54, -17.39, 0.01006, 44, -26.97, -5.33, 6.0E-5, 3, 41, 4.66, -16.55, 0.8575, 42, -5.63, -19.02, 0.14232, 43, -16.34, -19.84, 1.8E-4, 2, 41, -3.38, -18.39, 0.97503, 42, -12.78, -23.13, 0.02497, 2, 41, -9.24, -19.73, 0.99508, 42, -17.99, -26.12, 0.00492, 2, 41, -12.85, -16.43, 0.99905, 42, -22.4, -24.02, 9.5E-4, 1, 41, -17.8, -11.9, 1, 1, 41, -10.02, -3.4, 1, 1, 41, -3.5, 3.72, 1, 2, 41, 0.5, -2.74, 0.9949, 42, -13.64, -7.02, 0.0051, 2, 41, 15.7, -0.05, 0.41797, 42, 0.11, -0.02, 0.58203, 2, 42, 10.89, 0.41, 0.94559, 43, -0.79, 0.37, 0.05441, 2, 43, 10.23, 1.56, 0.60536, 44, 1.14, 1.23, 0.39464, 2, 41, -6.88, -9.2, 0.99524, 42, -18.81, -15.36, 0.00476, 2, 41, 8.58, -0.34, 0.99797, 42, -6.61, -2.38, 0.00203, 2, 42, 6.03, 0.69, 0.99857, 43, -5.66, 0.41, 0.00143, 1, 43, 4.83, 0.66, 1, 2, 43, 18.13, 4.61, 0.0021, 44, 9.54, 0.24, 0.9979, 2, 43, 21.92, 6.68, 0.00146, 44, 13.86, 0.3, 0.99854 ],
  215. "hull": 24,
  216. "edges": [ 40, 42, 38, 40, 16, 18, 16, 14, 34, 36, 36, 38, 40, 56, 56, 48, 36, 56, 42, 44, 44, 46, 56, 44, 46, 48, 48, 34, 30, 32, 32, 34, 48, 58, 58, 50, 32, 58, 2, 0, 0, 46, 58, 0, 2, 50, 50, 30, 26, 28, 28, 30, 50, 60, 60, 52, 28, 60, 2, 4, 4, 6, 60, 4, 26, 52, 52, 6, 22, 54, 54, 10, 6, 8, 8, 10, 52, 62, 62, 54, 8, 62, 22, 24, 24, 26, 62, 24, 18, 20, 20, 22, 64, 54, 20, 64, 10, 12, 12, 14, 64, 12, 16, 66, 66, 64, 18, 66, 66, 14 ],
  217. "width": 55,
  218. "height": 48
  219. }
  220. },
  221. "toufa5": {
  222. "toufa5": {
  223. "type": "mesh",
  224. "uvs": [ 1, 0.30605, 1, 0.4996, 0.89417, 0.58669, 0.77389, 0.60373, 0.71847, 0.66299, 0.66953, 0.75516, 0.62769, 0.88903, 0.55622, 1, 0.42896, 1, 0.3732, 0.99999, 0.41202, 0.86217, 0.41501, 0.71622, 0.42547, 0.53367, 0.45336, 0.33409, 0.51831, 0.16447, 0.61824, 0.05004, 0.73025, 0, 0.83317, 0, 0.90835, 0, 1, 0, 0.69742, 0.17588, 0.55058, 0.4539, 0.52509, 0.60539, 0.49904, 0.77175, 0.80001, 0.09034, 0.86618, 0.03516, 0.61406, 0.29393, 0.45776, 0.90421 ],
  225. "triangles": [ 5, 23, 22, 10, 11, 23, 6, 23, 5, 27, 10, 23, 27, 23, 6, 9, 10, 27, 8, 9, 27, 7, 27, 6, 8, 27, 7, 4, 22, 21, 11, 12, 22, 5, 22, 4, 23, 11, 22, 12, 13, 21, 22, 12, 21, 3, 4, 21, 26, 14, 20, 13, 14, 26, 21, 13, 26, 26, 3, 21, 2, 3, 26, 25, 17, 18, 24, 16, 17, 24, 17, 25, 20, 15, 16, 20, 16, 24, 14, 15, 20, 25, 18, 19, 0, 25, 19, 24, 25, 0, 1, 20, 24, 26, 20, 2, 24, 0, 1, 20, 1, 2 ],
  226. "vertices": [ 1, 36, -7.81, 16.56, 1, 1, 36, -2.7, 25.45, 1, 1, 36, 6.39, 25.56, 1, 1, 36, 14.56, 21.91, 1, 5, 36, 19.68, 22.59, 0.06937, 37, 15.75, 18.82, 2.0E-5, 38, 11.1, 15.56, 0.21393, 39, 2.93, 15.02, 0.43767, 40, -11.3, 12.28, 0.279, 4, 36, 25.25, 25.03, 0.01348, 38, 16.96, 13.94, 0.03898, 39, 8.29, 12.15, 0.30535, 40, -5.35, 11.04, 0.64219, 3, 36, 31.47, 29.64, 1.8E-4, 39, 15.76, 10.12, 0.00936, 40, 2.39, 11.2, 0.99046, 1, 40, 9.95, 8.87, 1, 1, 40, 13.89, 0.32, 1, 1, 40, 15.62, -3.43, 1, 3, 38, 29.09, -1.81, 0.00148, 39, 16.68, -5.88, 0.09038, 40, 7.79, -3.88, 0.90814, 3, 38, 21.79, -4.38, 0.13961, 39, 9, -6.79, 0.80243, 40, 0.67, -6.92, 0.05796, 3, 37, 25.61, -1.67, 0.04864, 38, 12.48, -7.13, 0.92404, 39, -0.69, -7.43, 0.02732, 2, 37, 16.49, -7.41, 0.77664, 38, 1.87, -9, 0.22336, 2, 36, 19.37, -7.7, 0.01754, 37, 6.64, -10.06, 0.98246, 2, 36, 9.94, -9.27, 0.56097, 37, -2.84, -8.83, 0.43903, 2, 36, 1.43, -7.45, 0.99171, 37, -10.45, -4.61, 0.00829, 1, 36, -5.18, -3.66, 1, 3, 36, -10, -0.89, 0.99604, 38, -26.74, 16.06, 0.00271, 39, -33.88, 23.79, 0.00125, 3, 36, -15.88, 2.49, 0.99011, 38, -29.18, 22.39, 0.00675, 39, -34.87, 30.5, 0.00314, 2, 36, 8.18, -0.57, 0.99491, 37, -1.99, 0.01, 0.00509, 3, 36, 24.94, 6.8, 0, 37, 16.19, 2.18, 5.5E-4, 38, 5.21, -0.01, 0.99945, 3, 36, 30.57, 12.82, 1.6E-4, 39, 2, 0.42, 0.99265, 40, -8.08, -1.99, 0.00719, 3, 38, 22.31, 2.48, 2.1E-4, 39, 11, -0.2, 0.00273, 40, 0.74, -0.05, 0.99706, 1, 36, -0.66, -0.73, 1, 3, 36, -6.37, -0.82, 0.99753, 38, -23.88, 13.82, 0.00168, 39, -31.58, 20.97, 8.0E-4, 1, 37, 6.79, -0.2, 1, 1, 40, 8.39, 0.12, 1 ],
  227. "hull": 20,
  228. "edges": [ 36, 38, 42, 44, 44, 46, 30, 28, 28, 26, 26, 24, 24, 22, 16, 18, 2, 4, 4, 6, 10, 12, 14, 16, 12, 14, 30, 32, 48, 40, 32, 48, 48, 2, 32, 34, 34, 36, 36, 50, 50, 48, 34, 50, 2, 0, 0, 38, 50, 0, 40, 4, 30, 40, 40, 52, 52, 42, 28, 52, 52, 6, 26, 42, 6, 8, 8, 10, 42, 8, 24, 44, 44, 10, 22, 46, 46, 12, 18, 20, 20, 22, 16, 54, 54, 46, 20, 54, 54, 14 ],
  229. "width": 74,
  230. "height": 53
  231. }
  232. },
  233. "toufa6": {
  234. "toufa6": {
  235. "type": "mesh",
  236. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  237. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  238. "vertices": [ 62.69, -39.03, 63, -21.03, 86, -21.43, 85.69, -39.42 ],
  239. "hull": 4,
  240. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  241. "width": 18,
  242. "height": 23
  243. }
  244. },
  245. "toufa7": {
  246. "toufa7": {
  247. "type": "mesh",
  248. "uvs": [ 0.65378, 0.10376, 0.80168, 0.24421, 0.91511, 0.43976, 1, 0.67087, 1, 0.78208, 1, 1, 0.59347, 1, 0.53694, 0.9359, 0.46565, 0.85505, 0.39101, 0.77043, 0.36496, 0.57703, 0.35011, 0.50741, 0.33934, 0.45695, 0.27665, 0.44135, 0.22366, 0.45467, 0.15614, 0.47595, 0, 0.63709, 0, 0.55176, 0, 0.24598, 0.08376, 0.11708, 0.15983, 0, 0.36791, 0, 0.49727, 0, 0.16127, 0.24421, 0.37091, 0.22109, 0.52599, 0.32065, 0.64229, 0.48776, 0.73563, 0.67087, 0.09122, 0.37779, 0.29012, 0.23, 0.45107, 0.27255, 0.80515, 0.75743, 0.88707, 0.85941 ],
  249. "triangles": [ 27, 2, 3, 31, 27, 3, 31, 3, 4, 32, 31, 4, 7, 8, 27, 7, 27, 31, 6, 7, 31, 6, 31, 32, 32, 4, 5, 6, 32, 5, 26, 25, 1, 26, 1, 2, 26, 10, 25, 27, 26, 2, 9, 10, 26, 9, 26, 27, 8, 9, 27, 24, 21, 22, 30, 24, 22, 0, 30, 22, 25, 30, 0, 25, 0, 1, 12, 24, 30, 11, 12, 30, 25, 11, 30, 25, 10, 11, 29, 20, 21, 29, 21, 24, 19, 20, 29, 23, 19, 29, 18, 19, 23, 28, 18, 23, 13, 23, 29, 14, 28, 23, 13, 14, 23, 12, 29, 24, 13, 29, 12, 15, 28, 14, 17, 18, 28, 17, 28, 15, 16, 17, 15 ],
  250. "vertices": [ 4, 45, 39.73, 4.73, 0.00277, 46, 16.27, 16.47, 0.54178, 47, -4.68, 16.13, 0.34981, 48, -20.31, 12.78, 0.10564, 4, 46, 30.63, 14.24, 0.0553, 47, 9.51, 19.31, 0.37636, 48, -6.89, 18.37, 0.52735, 49, -9.85, 25.73, 0.04099, 3, 47, 24.64, 18.19, 0.02926, 48, 8.2, 19.89, 0.59207, 49, 4.26, 20.18, 0.37867, 2, 48, 24.12, 18.37, 0.0843, 49, 17.73, 11.54, 0.9157, 2, 48, 30.2, 14.88, 0.01063, 49, 21.53, 5.66, 0.98937, 1, 49, 28.97, -5.88, 1, 4, 46, 39.22, -35.33, 0.01267, 47, 35.62, -23.69, 0.12036, 48, 26.28, -19.45, 0.27509, 49, 2.34, -23.08, 0.59187, 4, 46, 33.42, -33.9, 0.02783, 47, 29.69, -24.49, 0.18739, 48, 20.58, -21.26, 0.35294, 49, -3.56, -22.08, 0.43184, 4, 46, 26.09, -32.1, 0.071, 47, 22.22, -25.49, 0.32674, 48, 13.4, -23.54, 0.40177, 49, -10.99, -20.82, 0.2005, 5, 45, 15.72, -35.37, 1.0E-5, 46, 18.43, -30.22, 0.13299, 47, 14.4, -26.53, 0.44957, 48, 5.87, -25.93, 0.3452, 49, -18.77, -19.5, 0.07224, 5, 45, 14.74, -23.05, 0.03692, 46, 10.8, -20.5, 0.33496, 47, 3.75, -20.28, 0.49062, 48, -5.7, -21.61, 0.13405, 49, -27.09, -10.37, 0.00345, 5, 45, 13.96, -18.59, 0.11612, 46, 7.68, -17.21, 0.45268, 47, -0.36, -18.35, 0.37435, 48, -10.08, -20.43, 0.05679, 49, -30.44, -7.31, 5.0E-5, 4, 45, 13.39, -15.35, 0.27893, 46, 5.42, -14.82, 0.48953, 47, -3.34, -16.96, 0.21299, 48, -13.26, -19.57, 0.01855, 4, 45, 8.61, -13.95, 0.66691, 46, 0.66, -16.3, 0.28089, 47, -7.23, -20.08, 0.05096, 48, -16.55, -23.32, 0.00124, 4, 45, 4.42, -14.43, 0.86116, 46, -2.57, -19.02, 0.12645, 47, -9.24, -23.79, 0.01238, 48, -17.88, -27.32, 1.0E-5, 3, 45, -0.95, -15.32, 0.96706, 46, -6.54, -22.73, 0.03224, 47, -11.59, -28.69, 7.0E-4, 2, 45, -13.95, -24.39, 1, 46, -12.36, -37.48, 0, 1, 45, -13.49, -19.04, 1, 1, 45, -11.84, 0.16, 1, 1, 45, -4.64, 7.69, 1, 1, 45, 1.9, 14.53, 1, 2, 45, 18.07, 13.15, 0.73021, 46, -6.43, 11.51, 0.26979, 4, 45, 28.13, 12.28, 0.21506, 46, 2.42, 16.35, 0.76047, 47, -17.52, 10.96, 0.02239, 48, -32.07, 5.46, 0.00209, 2, 45, 0.7, -0.81, 0.99879, 46, -13.2, -9.72, 0.00121, 3, 45, 17.12, -0.75, 0.32392, 46, 0.45, -0.6, 0.67588, 47, -13.16, -5.54, 2.0E-4, 3, 45, 28.63, -8.03, 2.0E-5, 46, 14.07, -0.3, 0.79546, 47, -0.59, -0.28, 0.20452, 2, 46, 27.08, -5.19, 9.0E-5, 48, 0.21, -0.06, 0.99991, 2, 48, 13.84, 0.5, 0.33308, 49, 0.4, 0.35, 0.66692, 2, 45, -5.46, -8.72, 0.99416, 46, -13.95, -19.73, 0.00584, 3, 45, 10.79, -0.77, 0.98767, 46, -4.81, -4.12, 0.01192, 47, -16.77, -10.73, 4.1E-4, 3, 45, 23.07, -4.52, 8.6E-4, 46, 7.49, -0.45, 0.99835, 47, -6.66, -2.82, 7.9E-4, 2, 47, 34.49, -1.22, 7.0E-4, 49, 7.92, -1.28, 0.9993, 1, 49, 16.77, -3.22, 1 ],
  251. "hull": 23,
  252. "edges": [ 50, 52, 52, 54, 44, 0, 0, 2, 2, 4, 4, 6, 32, 34, 32, 30, 20, 18, 10, 12, 34, 36, 34, 56, 56, 46, 36, 56, 56, 30, 36, 38, 38, 40, 38, 46, 26, 28, 28, 30, 46, 28, 46, 58, 58, 48, 40, 58, 58, 26, 40, 42, 42, 44, 42, 48, 24, 26, 48, 24, 48, 60, 60, 50, 44, 60, 20, 22, 22, 24, 60, 22, 20, 50, 50, 0, 18, 52, 52, 2, 16, 18, 16, 54, 54, 4, 12, 14, 14, 16, 62, 54, 14, 62, 62, 6, 10, 64, 64, 62, 12, 64, 6, 8, 8, 10, 64, 8 ],
  253. "width": 78,
  254. "height": 63
  255. }
  256. },
  257. "toufa8": {
  258. "toufa8": {
  259. "type": "mesh",
  260. "uvs": [ 0.50383, 0.45244, 0.50414, 0.76241, 0.43367, 0.82165, 0.38146, 0.86554, 0.32153, 0.86746, 0.26532, 0.86926, 0.23546, 0.87022, 0.17046, 0.94554, 0.12346, 1, 0.07322, 1, 0, 1, 0, 0.69616, 0, 0.51347, 0.05904, 0.44587, 0.08898, 0.4116, 0.11046, 0.387, 0.15425, 0.26331, 0.18561, 0.17472, 0.24746, 0, 0.31217, 0, 0.38704, 0, 0.50338, 0, 0.29646, 0.41979, 0.20046, 0.57905, 0.11746, 0.71489, 0.42352, 0.4398, 0.35569, 0.42912, 0.2313, 0.52789, 0.14771, 0.66539, 0.07119, 0.70751 ],
  261. "triangles": [ 29, 24, 9, 29, 9, 10, 10, 11, 29, 29, 13, 24, 29, 11, 12, 13, 29, 12, 24, 13, 14, 24, 7, 8, 9, 24, 8, 6, 7, 28, 24, 28, 7, 14, 28, 24, 28, 15, 23, 15, 28, 14, 23, 5, 6, 5, 27, 4, 23, 6, 28, 5, 23, 27, 23, 16, 27, 17, 22, 27, 16, 23, 15, 27, 16, 17, 26, 3, 4, 22, 26, 4, 22, 4, 27, 2, 26, 25, 2, 3, 26, 1, 25, 0, 1, 2, 25, 25, 21, 0, 26, 20, 25, 25, 20, 21, 20, 26, 19, 19, 26, 22, 19, 22, 18, 18, 22, 17 ],
  262. "vertices": [ 1, 50, -8.97, 1.44, 1, 1, 50, -8.75, 7.33, 1, 2, 50, -2.43, 8.19, 0.99978, 51, -10.17, 12.58, 2.2E-4, 2, 50, 2.24, 8.82, 0.97326, 51, -5.57, 11.52, 0.02674, 2, 50, 7.57, 8.63, 0.77147, 51, -0.64, 9.47, 0.22853, 3, 50, 12.57, 8.46, 0.32651, 51, 3.97, 7.54, 0.65199, 52, -5.54, 6.9, 0.02149, 3, 50, 15.23, 8.36, 0.11997, 51, 6.43, 6.52, 0.72715, 52, -2.98, 6.18, 0.15288, 4, 50, 21.07, 9.55, 4.6E-4, 51, 12.31, 5.57, 0.1, 52, 2.98, 5.95, 0.89593, 53, -6.41, 4.44, 0.0036, 3, 51, 16.56, 4.88, 2.0E-5, 52, 7.28, 5.78, 0.77882, 53, -2.22, 5.47, 0.22116, 2, 52, 11.58, 4.54, 0.19502, 53, 2.25, 5.47, 0.80498, 1, 53, 8.76, 5.47, 1, 1, 53, 8.76, -0.3, 1, 1, 53, 8.76, -3.77, 1, 2, 52, 9.87, -5.92, 0.02743, 53, 3.51, -5.06, 0.97257, 3, 51, 15.01, -6.61, 0.0098, 52, 7.13, -5.81, 0.23983, 53, 0.85, -5.71, 0.75037, 3, 51, 13.07, -6.29, 0.06607, 52, 5.16, -5.73, 0.48526, 53, -1.07, -6.18, 0.44867, 4, 50, 21.96, -3.46, 0.00199, 51, 8.56, -6.92, 0.51077, 52, 0.76, -6.9, 0.41606, 53, -4.96, -8.53, 0.07118, 4, 50, 19.1, -5.03, 0.05101, 51, 5.33, -7.38, 0.79782, 52, -2.38, -7.75, 0.14013, 53, -7.75, -10.21, 0.01105, 3, 50, 13.46, -8.11, 0.49174, 51, -1.03, -8.28, 0.50766, 52, -8.59, -9.41, 6.0E-4, 2, 50, 7.71, -7.87, 0.92114, 51, -6.33, -6.02, 0.07886, 1, 50, 1.05, -7.59, 1, 1, 50, -9.29, -7.15, 1, 2, 50, 9.44, 0.04, 0.99904, 51, -1.92, 0.77, 9.6E-4, 2, 50, 18.11, 2.7, 4.6E-4, 51, 7.13, 0.21, 0.99954, 1, 52, 6.29, 0.43, 1, 1, 50, -1.84, 0.9, 1, 2, 50, 4.18, 0.44, 0.99957, 51, -6.7, 3, 4.3E-4, 2, 50, 15.32, 1.85, 0.00528, 51, 4.22, 0.39, 0.99472, 1, 52, 3.44, 0.27, 1, 1, 53, 2.43, -0.09, 1 ],
  263. "hull": 22,
  264. "edges": [ 0, 42, 20, 22, 22, 24, 0, 2, 40, 42, 0, 50, 40, 50, 2, 4, 4, 6, 50, 4, 36, 38, 38, 40, 44, 52, 52, 50, 38, 52, 52, 6, 6, 8, 44, 8, 36, 44, 34, 36, 44, 54, 54, 46, 34, 54, 8, 10, 10, 12, 54, 10, 30, 32, 32, 34, 32, 46, 46, 12, 46, 56, 56, 48, 30, 56, 12, 14, 14, 16, 56, 14, 48, 16, 24, 26, 22, 58, 58, 48, 26, 58, 16, 18, 18, 20, 58, 18, 26, 28, 28, 30, 28, 48 ],
  265. "width": 89,
  266. "height": 19
  267. }
  268. },
  269. "toufa9": {
  270. "toufa9": {
  271. "type": "mesh",
  272. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  273. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  274. "vertices": [ 52.66, 17.15, 52.87, 29.15, 87.86, 28.55, 87.66, 16.55 ],
  275. "hull": 4,
  276. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  277. "width": 12,
  278. "height": 35
  279. }
  280. },
  281. "waitaoyou": {
  282. "waitaoyou": {
  283. "type": "mesh",
  284. "uvs": [ 1, 0.47348, 1, 0.56792, 1, 0.60759, 1, 0.65103, 1, 0.70203, 1, 0.76248, 1, 1, 0.60283, 1, 0, 1, 0, 0.82103, 0, 0.73981, 0, 0.67181, 0, 0.6227, 0, 0.56603, 0, 0.49615, 0, 0, 0.22729, 0, 1, 0, 0.31538, 0.49048, 0.39884, 0.72281, 0.34158, 0.56341, 0.381, 0.67315, 0.36266, 0.62209, 0.46324, 0.81033 ],
  285. "triangles": [ 4, 19, 3, 23, 19, 4, 5, 23, 4, 8, 9, 23, 7, 23, 5, 8, 23, 7, 7, 5, 6, 13, 18, 20, 20, 0, 1, 22, 20, 1, 2, 22, 1, 12, 13, 20, 12, 20, 22, 21, 22, 2, 11, 12, 22, 3, 21, 2, 11, 22, 21, 19, 21, 3, 10, 11, 21, 10, 21, 19, 9, 10, 19, 9, 19, 23, 18, 16, 17, 0, 18, 17, 14, 15, 16, 14, 16, 18, 20, 18, 0, 13, 14, 18 ],
  286. "vertices": [ 3, 20, 18.58, 14.91, 0.55426, 21, 0.45, 14.91, 0.22221, 22, -9.63, 16.47, 0.22353, 3, 20, 23.66, 14.46, 0.25311, 21, 5.49, 14.17, 0.27989, 22, -4.75, 14.97, 0.467, 3, 20, 25.79, 14.27, 0.1566, 21, 7.61, 13.86, 0.24617, 22, -2.7, 14.34, 0.59724, 3, 20, 28.13, 14.06, 0.08191, 21, 9.93, 13.51, 0.17721, 22, -0.46, 13.66, 0.74088, 3, 20, 30.87, 13.81, 0.03059, 21, 12.66, 13.11, 0.08642, 22, 2.17, 12.85, 0.88299, 3, 20, 34.12, 13.52, 0.00534, 21, 15.89, 12.64, 0.01797, 22, 5.29, 11.89, 0.97669, 1, 22, 17.55, 8.13, 1, 2, 21, 27.3, 2.12, 0.00455, 22, 14.99, -0.23, 0.99545, 2, 21, 25.36, -11, 0.41542, 22, 11.1, -12.91, 0.58458, 2, 21, 15.8, -9.59, 0.8392, 22, 1.86, -10.07, 0.1608, 2, 21, 11.46, -8.95, 0.99227, 22, -2.33, -8.78, 0.00773, 2, 20, 27.27, -7.96, 0.00251, 21, 7.83, -8.41, 0.99749, 2, 20, 24.63, -7.72, 0.03486, 21, 5.21, -8.03, 0.96514, 2, 20, 21.58, -7.44, 0.17646, 21, 2.18, -7.58, 0.82354, 2, 20, 17.82, -7.11, 0.56479, 21, -1.55, -7.03, 0.43521, 1, 20, -8.86, -4.71, 1, 1, 20, -8.41, 0.27, 1, 2, 20, -6.89, 17.21, 1, 22, -34.07, 23.97, 0, 1, 20, 18.14, -0.17, 1, 1, 21, 11.84, -0.14, 1, 1, 21, 3.14, -0.13, 1, 1, 21, 9.13, -0.13, 1, 1, 21, 6.34, -0.13, 1, 2, 21, 16.72, 0.58, 0.00685, 22, 4.3, -0.16, 0.99315 ],
  287. "hull": 18,
  288. "edges": [ 30, 32, 32, 34, 32, 36, 12, 14, 14, 16, 28, 30, 28, 36, 0, 34, 36, 0, 26, 28, 36, 40, 26, 40, 0, 2, 40, 2, 20, 38, 38, 8, 20, 22, 38, 42, 22, 42, 6, 8, 42, 6, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
  289. "width": 22,
  290. "height": 54
  291. }
  292. },
  293. "waitaozuo": {
  294. "waitaozuo": {
  295. "type": "mesh",
  296. "uvs": [ 0.81196, 0.43438, 0.79034, 0.48434, 0.7766, 0.54294, 0.76368, 0.59799, 0.74938, 0.659, 0.73934, 0.70181, 0.72608, 0.77335, 0.68409, 1, 0.19109, 1, 0, 1, 0, 0.78264, 0.07884, 0.69616, 0.13159, 0.6383, 0.15249, 0.59399, 0.17484, 0.54661, 0.2037, 0.48542, 0.22509, 0.44007, 0.23939, 0.38718, 0.34409, 0, 0.63309, 0, 1, 0, 0.53109, 0.46702, 0.44184, 0.69988, 0.54218, 0.41622, 0.50914, 0.52429, 0.46032, 0.65167, 0.48587, 0.58501, 0.40198, 0.74759 ],
  297. "triangles": [ 27, 12, 22, 11, 12, 27, 27, 22, 6, 8, 9, 10, 8, 11, 27, 8, 10, 11, 7, 27, 6, 8, 27, 7, 24, 16, 21, 15, 16, 24, 2, 21, 1, 24, 21, 2, 26, 15, 24, 14, 15, 26, 3, 24, 2, 26, 24, 3, 25, 14, 26, 13, 14, 25, 4, 26, 3, 25, 26, 4, 22, 13, 25, 12, 13, 22, 5, 25, 4, 22, 25, 5, 6, 22, 5, 23, 18, 19, 17, 18, 23, 0, 19, 20, 23, 19, 0, 21, 17, 23, 16, 17, 21, 1, 23, 0, 21, 23, 1 ],
  298. "vertices": [ 2, 17, 13.53, 6.51, 0.84258, 18, -2.83, 6.39, 0.15742, 2, 17, 16.22, 6.37, 0.52273, 18, -0.13, 6.38, 0.47727, 2, 17, 19.34, 6.49, 0.1582, 18, 2.98, 6.63, 0.8418, 3, 17, 22.27, 6.6, 0.02269, 18, 5.91, 6.87, 0.96526, 19, -7.99, 5.59, 0.01205, 2, 18, 9.15, 7.14, 0.87715, 19, -4.84, 6.41, 0.12285, 2, 18, 11.42, 7.33, 0.67951, 19, -2.63, 6.98, 0.32049, 2, 18, 15.21, 7.73, 0.2593, 19, 1.03, 8.02, 0.7407, 1, 19, 12.63, 11.31, 1, 1, 19, 16.79, 0.23, 1, 1, 19, 18.41, -4.06, 1, 2, 18, 18.95, -9.3, 0.0317, 19, 7.62, -8.12, 0.9683, 2, 18, 14.09, -8.3, 0.2735, 19, 2.67, -7.96, 0.7265, 2, 18, 10.85, -7.63, 0.62784, 19, -0.65, -7.85, 0.37216, 3, 17, 24.16, -7.94, 0.00233, 18, 8.45, -7.57, 0.8369, 19, -3.02, -8.21, 0.16078, 3, 17, 21.6, -7.77, 0.03216, 18, 5.88, -7.52, 0.92216, 19, -5.56, -8.59, 0.04567, 3, 17, 18.29, -7.55, 0.20107, 18, 2.56, -7.44, 0.79601, 19, -8.84, -9.09, 0.00292, 2, 17, 15.84, -7.39, 0.46226, 18, 0.11, -7.39, 0.53774, 2, 17, 13.02, -7.45, 0.76935, 18, -2.71, -7.58, 0.23065, 1, 17, -7.65, -7.9, 1, 1, 17, -8.64, -1.04, 1, 1, 17, -9.9, 7.68, 1, 2, 17, 16.2, 0.09, 0.39016, 18, 0.13, 0.09, 0.60984, 2, 18, 12.66, 0.3, 0.67161, 19, -0.22, 0.26, 0.32839, 2, 17, 13.5, -0.04, 0.99993, 18, -2.56, -0.15, 7.0E-5, 1, 18, 3.21, 0.14, 1, 1, 18, 10.07, 0.25, 1, 1, 18, 6.48, 0.2, 1, 1, 19, 2.49, 0.26, 1 ],
  299. "hull": 21,
  300. "edges": [ 38, 40, 16, 18, 36, 38, 18, 20, 14, 16, 32, 42, 42, 2, 32, 34, 34, 36, 38, 46, 46, 42, 34, 46, 2, 0, 0, 40, 46, 0, 30, 32, 42, 48, 30, 48, 2, 4, 48, 4, 24, 44, 44, 10, 24, 26, 44, 50, 26, 50, 8, 10, 50, 8, 26, 28, 28, 30, 48, 52, 52, 50, 28, 52, 4, 6, 6, 8, 52, 6, 20, 22, 22, 24, 16, 54, 54, 44, 22, 54, 10, 12, 12, 14, 54, 12 ],
  301. "width": 24,
  302. "height": 53
  303. }
  304. },
  305. "youshou": {
  306. "youshou": {
  307. "type": "mesh",
  308. "uvs": [ 0.32469, 0.12334, 0.56061, 0.27929, 0.59798, 0.304, 0.65123, 0.3392, 0.78836, 0.42905, 0.85751, 0.47556, 0.93737, 0.52249, 1, 0.56975, 1, 1, 0.57293, 1, 0.45324, 0.87826, 0.42107, 0.84554, 0.34911, 0.77235, 0.20213, 0.62284, 0.17168, 0.59187, 0.1433, 0.563, 0, 0.41725, 0, 0.19929, 0, 0, 0.13811, 0, 0.36959, 0.41471, 0.64644, 0.66379, 0.43923, 0.47883, 0.40371, 0.44612, 0.5842, 0.61232, 0.68095, 0.70183, 0.2068, 0.23204 ],
  309. "triangles": [ 9, 25, 8, 25, 7, 8, 25, 6, 7, 9, 10, 25, 10, 21, 25, 10, 11, 21, 25, 5, 6, 25, 21, 5, 11, 24, 21, 11, 12, 24, 12, 22, 24, 12, 13, 22, 21, 4, 5, 21, 24, 4, 13, 23, 22, 13, 14, 23, 24, 3, 4, 24, 22, 3, 14, 15, 20, 14, 20, 23, 20, 15, 26, 22, 2, 3, 22, 23, 2, 23, 1, 2, 23, 20, 1, 15, 16, 26, 16, 17, 26, 26, 0, 20, 20, 0, 1, 26, 18, 19, 26, 19, 0, 26, 17, 18 ],
  310. "vertices": [ 3, 14, 7.64, 7.62, 0.98456, 15, -12.96, 8.04, 0.01508, 16, -28.26, 6.77, 3.6E-4, 3, 14, 19.28, 9.92, 0.96505, 15, -1.3, 10.19, 0.03414, 16, -16.71, 9.45, 8.1E-4, 3, 14, 21.12, 10.29, 0.89943, 15, 0.55, 10.54, 0.0954, 16, -14.88, 9.87, 0.00518, 3, 14, 23.75, 10.81, 0.73721, 15, 3.18, 11.02, 0.23707, 16, -12.27, 10.48, 0.02572, 3, 14, 30.48, 12.17, 0.28095, 15, 9.93, 12.3, 0.47835, 16, -5.59, 12.06, 0.2407, 3, 14, 33.92, 12.82, 0.14259, 15, 13.38, 12.91, 0.40255, 16, -2.17, 12.82, 0.45486, 3, 14, 37.64, 13.78, 0.06305, 15, 17.11, 13.82, 0.26109, 16, 1.52, 13.9, 0.67586, 3, 14, 40.95, 14.22, 0.0349, 15, 20.43, 14.21, 0.17923, 16, 4.81, 14.44, 0.78588, 1, 16, 21.13, 1.78, 1, 2, 15, 25.36, -11.86, 0.02021, 16, 10.92, -11.38, 0.97979, 2, 15, 17.89, -11.63, 0.2618, 16, 3.44, -11.48, 0.7382, 2, 15, 15.88, -11.56, 0.40195, 16, 1.43, -11.51, 0.59805, 2, 15, 11.38, -11.42, 0.73147, 16, -3.07, -11.58, 0.26853, 3, 14, 23.05, -11.36, 0.01112, 15, 2.2, -11.14, 0.98345, 16, -12.25, -11.71, 0.00543, 3, 14, 21.15, -11.33, 0.0457, 15, 0.3, -11.08, 0.95354, 16, -14.15, -11.73, 7.6E-4, 3, 14, 19.37, -11.3, 0.11019, 15, -1.47, -11.03, 0.88981, 16, -15.93, -11.76, 0, 2, 14, 10.42, -11.13, 0.65562, 15, -10.42, -10.75, 0.34438, 2, 14, 2.37, -4.45, 0.83552, 15, -18.39, -3.97, 0.16448, 1, 14, -5, 1.65, 1, 1, 14, -1.56, 5.8, 1, 1, 14, 19.53, 0.04, 1, 3, 14, 35.62, 0.72, 0.00254, 15, 14.93, 0.78, 0.54241, 16, -0.08, 0.78, 0.45504, 2, 14, 23.63, 0.17, 0.08602, 15, 2.93, 0.38, 0.91398, 1, 14, 21.54, 0.1, 1, 3, 14, 32.17, 0.43, 0.00406, 15, 11.47, 0.54, 0.99163, 16, -3.52, 0.38, 0.0043, 3, 14, 37.89, 0.59, 9.4E-4, 15, 17.19, 0.63, 0.0241, 16, 2.19, 0.73, 0.97495, 1, 14, 8.72, 0.75, 1 ],
  311. "hull": 20,
  312. "edges": [ 36, 38, 16, 14, 16, 18, 30, 32, 30, 40, 40, 2, 26, 44, 44, 6, 26, 28, 28, 30, 40, 46, 46, 44, 28, 46, 2, 4, 4, 6, 46, 4, 22, 42, 42, 10, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 18, 20, 20, 22, 16, 50, 50, 42, 20, 50, 10, 12, 12, 14, 50, 12, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0, 32, 34, 34, 36 ],
  313. "width": 39,
  314. "height": 48
  315. }
  316. },
  317. "youtui": {
  318. "youtui": {
  319. "type": "mesh",
  320. "uvs": [ 1, 0.37813, 0.99999, 0.44868, 0.99999, 0.50406, 0.99999, 0.71527, 0.99999, 0.75292, 0.99999, 0.79348, 1, 1, 0, 1, 0, 0.87449, 0.34901, 0.79259, 0.33921, 0.75424, 0.32845, 0.71215, 0.28035, 0.52395, 0.26234, 0.4535, 0.25022, 0.40607, 0.14643, 0, 0.53005, 0, 1, 0, 0.62056, 0.4607, 0.67094, 0.8039, 0.66467, 0.76118, 0.65789, 0.71498, 0.62868, 0.51599, 0.61064, 0.41017 ],
  321. "triangles": [ 7, 8, 9, 7, 9, 19, 7, 19, 6, 0, 18, 23, 1, 18, 0, 1, 22, 18, 2, 22, 1, 12, 13, 18, 12, 18, 22, 11, 12, 22, 21, 22, 2, 11, 22, 21, 3, 21, 2, 3, 20, 21, 10, 11, 21, 4, 20, 3, 10, 21, 20, 9, 10, 20, 4, 19, 20, 5, 19, 4, 9, 20, 19, 19, 5, 6, 17, 23, 16, 14, 15, 16, 23, 14, 16, 17, 0, 23, 13, 14, 23, 13, 23, 18 ],
  322. "vertices": [ 3, 8, 19.64, 11.51, 0.30724, 9, -3.57, 11.27, 0.69275, 10, -17.81, -23.42, 0, 3, 8, 23.71, 11.16, 0.07702, 9, 0.51, 11.05, 0.92298, 10, -16.62, -19.51, 0, 3, 8, 26.91, 10.87, 0.00714, 9, 3.72, 10.88, 0.99286, 10, -15.68, -16.43, 0, 3, 8, 39.12, 9.8, 1.5E-4, 9, 15.95, 10.23, 0.95406, 10, -12.11, -4.72, 0.04579, 3, 8, 41.29, 9.61, 1.1E-4, 9, 18.13, 10.11, 0.88181, 10, -11.48, -2.63, 0.11808, 3, 8, 43.63, 9.4, 7.0E-5, 9, 20.48, 9.99, 0.75087, 10, -10.79, -0.38, 0.24906, 3, 8, 55.57, 8.35, 1.0E-5, 9, 32.44, 9.35, 0.06883, 10, -7.3, 11.08, 0.93116, 1, 10, 20.44, 2.62, 1, 1, 10, 18.32, -4.34, 1, 3, 8, 41.93, -9.4, 5.8E-4, 9, 19.43, -8.86, 0.36233, 10, 7.25, -5.93, 0.63709, 3, 8, 39.69, -9.49, 0.00556, 9, 17.19, -9.03, 0.64868, 10, 6.88, -8.14, 0.34575, 3, 8, 37.23, -9.58, 0.02085, 9, 14.74, -9.21, 0.81332, 10, 6.46, -10.57, 0.16583, 3, 8, 26.23, -10.02, 0.48955, 9, 3.76, -10.02, 0.51041, 10, 4.61, -21.42, 3.0E-5, 2, 8, 22.12, -10.18, 0.8055, 9, -0.35, -10.33, 0.1945, 2, 8, 19.34, -10.29, 0.93925, 9, -3.11, -10.53, 0.06075, 1, 8, -4.38, -11.22, 1, 1, 8, -3.4, -0.14, 1, 3, 8, -2.21, 13.44, 0.99879, 9, -25.47, 12.44, 0.00121, 10, -24.21, -44.4, 0, 3, 8, 23.44, 0.13, 0.00561, 9, 0.62, 0.03, 0.99439, 10, -5.89, -22.05, 0, 2, 8, 43.4, -0.16, 0, 9, 20.58, 0.42, 1, 2, 8, 40.92, -0.12, 0, 9, 18.09, 0.37, 1, 1, 9, 15.41, 0.32, 1, 2, 9, 3.84, 0.09, 1, 10, -5.18, -18.91, 0, 3, 8, 20.5, 0.1, 0.99562, 9, -2.32, -0.11, 0.00438, 10, -6.47, -24.94, 0 ],
  323. "hull": 18,
  324. "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 18, 38, 12, 10, 38, 10, 18, 20, 40, 38, 20, 40, 10, 8, 40, 8, 20, 22, 42, 40, 22, 42, 8, 6, 42, 6, 26, 36, 36, 2, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 36, 28, 46, 2, 0, 0, 34, 46, 0 ],
  325. "width": 29,
  326. "height": 58
  327. }
  328. },
  329. "youyan": {
  330. "youyan": { "x": 5.42, "y": -2.7, "rotation": -89.33, "width": 22, "height": 20 }
  331. },
  332. "zuiba": {
  333. "zuiba": { "x": 2.01, "y": -2.07, "rotation": -89.2, "width": 14, "height": 9 }
  334. },
  335. "zuoshou": {
  336. "zuoshou": {
  337. "type": "mesh",
  338. "uvs": [ 0.69968, 0.42541, 0.67161, 0.47744, 0.63749, 0.54065, 0.49605, 0.80273, 0.46377, 0.86254, 0.44034, 0.90596, 0.38959, 1, 0, 1, 0, 0.72008, 0.13713, 0.57089, 0.16379, 0.54188, 0.19593, 0.50692, 0.42696, 0.25556, 0.46017, 0.21943, 0.5027, 0.17316, 0.66186, 0, 0.80529, 0, 0.92927, 0, 0.57191, 0.35408, 0.3045, 0.69908, 0.5425, 0.39203, 0.60615, 0.30213, 0.33906, 0.65449, 0.28359, 0.71974 ],
  339. "triangles": [ 19, 10, 22, 9, 10, 19, 23, 9, 19, 8, 9, 23, 19, 22, 3, 4, 19, 3, 23, 19, 4, 5, 23, 4, 7, 8, 23, 6, 7, 23, 5, 6, 23, 11, 12, 20, 22, 11, 20, 22, 20, 2, 10, 11, 22, 3, 22, 2, 21, 14, 15, 13, 14, 21, 21, 15, 16, 18, 13, 21, 12, 13, 18, 20, 12, 18, 0, 21, 16, 18, 21, 0, 0, 16, 17, 1, 18, 0, 20, 18, 1, 2, 20, 1 ],
  340. "vertices": [ 3, 11, 12.86, 8.49, 0.87604, 12, -5.88, 7.54, 0.12384, 13, -23.25, 10.06, 1.2E-4, 3, 11, 15.79, 8.6, 0.65817, 12, -3.02, 8.19, 0.33812, 13, -20.32, 10.36, 0.00371, 3, 11, 19.36, 8.73, 0.31442, 12, 0.47, 8.97, 0.66016, 13, -16.77, 10.73, 0.02542, 2, 12, 14.91, 12.21, 0.28051, 13, -2.05, 12.25, 0.71949, 2, 12, 18.2, 12.95, 0.10312, 13, 1.31, 12.6, 0.89688, 2, 12, 20.6, 13.49, 0.03458, 13, 3.75, 12.86, 0.96542, 2, 12, 25.78, 14.65, 5.0E-5, 13, 9.03, 13.4, 0.99995, 1, 13, 23.43, -4.01, 1, 2, 12, 33.03, -10.47, 0.12512, 13, 13.29, -12.39, 0.87488, 2, 12, 22.44, -10.05, 0.65437, 13, 2.82, -10.73, 0.34563, 2, 12, 20.38, -9.96, 0.80358, 13, 0.78, -10.41, 0.19642, 2, 12, 17.9, -9.86, 0.93383, 13, -1.67, -10.02, 0.06617, 2, 11, 15.64, -9.01, 0.50163, 12, 0.05, -9.15, 0.49837, 2, 11, 13.13, -8.44, 0.72908, 12, -2.52, -9.05, 0.27092, 2, 11, 9.93, -7.71, 0.91969, 12, -5.81, -8.92, 0.08031, 1, 11, -2.08, -4.99, 1, 1, 11, -6.94, 1.76, 1, 1, 11, -11.15, 7.59, 1, 1, 11, 14.47, 0.52, 1, 1, 13, 1.27, 0.59, 1, 3, 11, 16.92, 0.18, 0.77007, 12, -0.37, 0.11, 0.22989, 13, -18.65, 2.03, 4.0E-5, 1, 11, 11.33, 0.7, 1, 2, 12, 16.68, 0.89, 0.67609, 13, -1.62, 0.8, 0.32391, 1, 13, 2.79, 0.27, 1 ],
  341. "hull": 18,
  342. "edges": [ 30, 32, 14, 16, 32, 34, 12, 14, 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, 20, 38, 38, 8, 20, 22, 22, 24, 38, 44, 44, 40, 22, 44, 4, 6, 6, 8, 44, 6, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
  343. "width": 58,
  344. "height": 47
  345. }
  346. },
  347. "zuotui": {
  348. "zuotui": {
  349. "type": "mesh",
  350. "uvs": [ 0.94191, 0.39521, 0.93314, 0.45491, 0.92498, 0.5104, 0.89251, 0.73135, 0.88705, 0.76851, 0.88239, 0.80022, 0.8566, 1, 0, 1, 0, 0.90328, 0.30071, 0.76443, 0.30465, 0.73949, 0.30875, 0.71354, 0.34547, 0.48094, 0.35321, 0.4319, 0.36078, 0.38398, 0.4214, 0, 0.68837, 0, 1, 0, 0.62986, 0.44552, 0.57746, 0.79509, 0.58706, 0.73104, 0.58193, 0.76526, 0.63665, 0.3938, 0.62275, 0.49291 ],
  351. "triangles": [ 7, 8, 9, 7, 19, 6, 23, 13, 18, 12, 13, 23, 2, 18, 1, 23, 18, 2, 20, 12, 23, 11, 12, 20, 3, 23, 2, 20, 23, 3, 21, 11, 20, 10, 11, 21, 4, 20, 3, 21, 20, 4, 19, 10, 21, 9, 10, 19, 5, 21, 4, 19, 21, 5, 7, 9, 19, 6, 19, 5, 22, 15, 16, 14, 15, 22, 0, 16, 17, 22, 16, 0, 18, 14, 22, 13, 14, 18, 1, 22, 0, 18, 22, 1 ],
  352. "vertices": [ 2, 5, 17.65, 10.5, 0.78391, 6, -3.83, 10.46, 0.21609, 2, 5, 21.18, 10.45, 0.51691, 6, -0.29, 10.45, 0.48309, 2, 5, 24.47, 10.41, 0.25326, 6, 2.99, 10.44, 0.74674, 2, 6, 16.08, 10.41, 0.9619, 7, -12.8, -5.52, 0.0381, 2, 6, 18.28, 10.41, 0.90259, 7, -12.1, -3.43, 0.09741, 2, 6, 20.16, 10.4, 0.81517, 7, -11.5, -1.65, 0.18483, 2, 6, 31.98, 10.5, 0.09887, 7, -7.85, 9.59, 0.90113, 1, 7, 21.29, 2.54, 1, 1, 7, 19.95, -3.01, 1, 2, 6, 19.78, -10.06, 0.50841, 7, 7.79, -8.49, 0.49159, 2, 6, 18.3, -10.05, 0.66918, 7, 7.31, -9.89, 0.33082, 2, 6, 16.76, -10.04, 0.78535, 7, 6.81, -11.35, 0.21465, 2, 5, 24.22, -9.95, 0.23881, 6, 2.98, -9.92, 0.76119, 2, 5, 21.31, -9.89, 0.47652, 6, 0.07, -9.89, 0.52348, 2, 5, 18.48, -9.83, 0.71417, 6, -2.77, -9.87, 0.28583, 1, 5, -4.27, -9.37, 1, 1, 5, -4.96, -0.06, 1, 1, 5, -5.75, 10.82, 1, 2, 5, 21.41, -0.18, 0.46609, 6, 0.05, -0.17, 0.53391, 2, 6, 20.76, -0.26, 0.99442, 7, -1.2, -4.46, 0.00558, 2, 6, 16.96, -0.24, 0.99823, 7, -2.42, -8.05, 0.00177, 2, 6, 18.99, -0.25, 0.99651, 7, -1.77, -6.13, 0.00349, 1, 5, 18.35, -0.16, 1, 1, 6, 2.86, -0.19, 1 ],
  353. "hull": 18,
  354. "edges": [ 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 12, 14, 18, 38, 12, 10, 38, 10, 22, 40, 40, 6, 18, 20, 20, 22, 38, 42, 42, 40, 20, 42, 6, 8, 8, 10, 42, 8, 26, 36, 36, 2, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 36, 46, 46, 40, 24, 46, 2, 4, 4, 6, 46, 4 ],
  355. "width": 35,
  356. "height": 59
  357. }
  358. },
  359. "zuoyan": {
  360. "zuoyan": { "x": 5.94, "y": 0.53, "rotation": -91.22, "width": 20, "height": 18 }
  361. }
  362. }
  363. },
  364. "animations": {
  365. "stand1": {
  366. "slots": {
  367. "biyan": {
  368. "attachment": [
  369. { "time": 1.1, "name": "biyan" },
  370. { "time": 1.2, "name": null },
  371. { "time": 3.1, "name": "biyan" },
  372. { "time": 3.2, "name": null },
  373. { "time": 4.1, "name": "biyan" },
  374. { "time": 4.2, "name": null }
  375. ]
  376. },
  377. "bizui": {
  378. "attachment": [
  379. { "time": 0.5, "name": "bizui" }
  380. ]
  381. },
  382. "fuhao1": {
  383. "color": [
  384. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  385. { "time": 1.1667, "color": "ffffff00" },
  386. { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
  387. { "time": 1.6667, "color": "ffffffff" },
  388. { "time": 1.8667, "color": "ffffff00", "curve": "stepped" },
  389. { "time": 2.0333, "color": "ffffff00", "curve": "stepped" },
  390. { "time": 2.0667, "color": "ffffff00" },
  391. { "time": 2.1667, "color": "ffffffff", "curve": "stepped" },
  392. { "time": 2.5667, "color": "ffffffff" },
  393. { "time": 2.7667, "color": "ffffff00", "curve": "stepped" },
  394. { "time": 2.8333, "color": "ffffff00", "curve": "stepped" },
  395. { "time": 2.8667, "color": "ffffff00" },
  396. { "time": 2.9667, "color": "ffffffff", "curve": "stepped" },
  397. { "time": 3.3667, "color": "ffffffff" },
  398. { "time": 3.5667, "color": "ffffff00" }
  399. ]
  400. },
  401. "fuhao7": {
  402. "color": [
  403. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  404. { "time": 0.7, "color": "ffffff00" },
  405. { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
  406. { "time": 1.2333, "color": "ffffffff" },
  407. { "time": 1.3333, "color": "ffffff00", "curve": "stepped" },
  408. { "time": 1.5667, "color": "ffffff00", "curve": "stepped" },
  409. { "time": 1.6, "color": "ffffff00" },
  410. { "time": 1.6333, "color": "ffffffff", "curve": "stepped" },
  411. { "time": 2.1333, "color": "ffffffff" },
  412. { "time": 2.2333, "color": "ffffff00", "curve": "stepped" },
  413. { "time": 2.4333, "color": "ffffff00", "curve": "stepped" },
  414. { "time": 2.5, "color": "ffffff00" },
  415. { "time": 2.5333, "color": "ffffffff", "curve": "stepped" },
  416. { "time": 3.0667, "color": "ffffffff" },
  417. { "time": 3.2, "color": "ffffff00", "curve": "stepped" },
  418. { "time": 3.2333, "color": "ffffff00", "curve": "stepped" },
  419. { "time": 3.3, "color": "ffffff00" },
  420. { "time": 3.3667, "color": "ffffffff", "curve": "stepped" },
  421. { "time": 3.9, "color": "ffffffff" },
  422. { "time": 4, "color": "ffffff00" }
  423. ]
  424. },
  425. "fuhao14": {
  426. "color": [
  427. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  428. { "time": 1.3333, "color": "ffffff00" },
  429. { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
  430. { "time": 1.9333, "color": "ffffffff" },
  431. { "time": 2.0667, "color": "ffffff00", "curve": "stepped" },
  432. { "time": 3.1667, "color": "ffffff00", "curve": "stepped" },
  433. { "time": 3.2, "color": "ffffff00" },
  434. { "time": 3.2667, "color": "ffffffff", "curve": "stepped" },
  435. { "time": 3.8, "color": "ffffffff" },
  436. { "time": 3.9333, "color": "ffffff00" }
  437. ]
  438. },
  439. "fuhao16": {
  440. "color": [
  441. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  442. { "time": 0.8, "color": "ffffff00" },
  443. { "time": 0.9667, "color": "ffffffff", "curve": "stepped" },
  444. { "time": 1.3333, "color": "ffffffff" },
  445. { "time": 1.5, "color": "ffffff00", "curve": "stepped" },
  446. { "time": 1.6667, "color": "ffffff00", "curve": "stepped" },
  447. { "time": 1.7, "color": "ffffff00" },
  448. { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
  449. { "time": 2.2333, "color": "ffffffff" },
  450. { "time": 2.4, "color": "ffffff00" }
  451. ]
  452. },
  453. "youyan": {
  454. "attachment": [
  455. { "time": 1.1, "name": null },
  456. { "time": 1.2, "name": "youyan" },
  457. { "time": 3.1, "name": null },
  458. { "time": 3.2, "name": "youyan" },
  459. { "time": 4.1, "name": null },
  460. { "time": 4.2, "name": "youyan" }
  461. ]
  462. },
  463. "zuiba": {
  464. "attachment": [
  465. { "time": 0.5, "name": null },
  466. { "time": 0.6667, "name": "zuiba" },
  467. { "time": 0.8333, "name": null },
  468. { "time": 1, "name": "zuiba" },
  469. { "time": 1.1667, "name": null },
  470. { "time": 1.3333, "name": "zuiba" },
  471. { "time": 1.5, "name": null },
  472. { "time": 1.6667, "name": "zuiba" },
  473. { "time": 1.8333, "name": null },
  474. { "time": 2, "name": "zuiba" },
  475. { "time": 2.1667, "name": null },
  476. { "time": 2.3333, "name": "zuiba" },
  477. { "time": 2.5, "name": null },
  478. { "time": 2.6667, "name": "zuiba" },
  479. { "time": 2.8333, "name": null },
  480. { "time": 3, "name": "zuiba" },
  481. { "time": 3.1667, "name": null },
  482. { "time": 3.3333, "name": "zuiba" },
  483. { "time": 3.5, "name": null },
  484. { "time": 3.6667, "name": "zuiba" },
  485. { "time": 3.8333, "name": null },
  486. { "time": 4, "name": "zuiba" }
  487. ]
  488. },
  489. "zuoyan": {
  490. "attachment": [
  491. { "time": 1.1, "name": null },
  492. { "time": 1.2, "name": "zuoyan" },
  493. { "time": 3.1, "name": null },
  494. { "time": 3.2, "name": "zuoyan" },
  495. { "time": 4.1, "name": null },
  496. { "time": 4.2, "name": "zuoyan" }
  497. ]
  498. }
  499. },
  500. "bones": {
  501. "root": {
  502. "rotate": [
  503. { "time": 0, "angle": 0 }
  504. ],
  505. "translate": [
  506. { "time": 0, "x": 0, "y": 0 }
  507. ],
  508. "scale": [
  509. { "time": 0, "x": 0.65, "y": 0.65 }
  510. ]
  511. },
  512. "bone": {
  513. "rotate": [
  514. { "time": 0, "angle": 0 }
  515. ],
  516. "translate": [
  517. { "time": 0, "x": 0, "y": 0 }
  518. ],
  519. "scale": [
  520. { "time": 0, "x": 1, "y": 1 }
  521. ]
  522. },
  523. "bone2": {
  524. "rotate": [
  525. { "time": 0, "angle": 0, "curve": "stepped" },
  526. { "time": 0.5, "angle": 0, "curve": "stepped" },
  527. { "time": 1, "angle": 0, "curve": "stepped" },
  528. { "time": 1.5, "angle": 0, "curve": "stepped" },
  529. { "time": 2, "angle": 0, "curve": "stepped" },
  530. { "time": 2.5, "angle": 0, "curve": "stepped" },
  531. { "time": 3, "angle": 0, "curve": "stepped" },
  532. { "time": 3.5, "angle": 0, "curve": "stepped" },
  533. { "time": 4, "angle": 0, "curve": "stepped" },
  534. { "time": 4.5, "angle": 0, "curve": "stepped" },
  535. { "time": 5, "angle": 0 }
  536. ],
  537. "translate": [
  538. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  539. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  540. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  541. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  542. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  543. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  544. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  545. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  546. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  547. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  548. { "time": 5, "x": 0, "y": 0 }
  549. ],
  550. "scale": [
  551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  552. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  553. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  554. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  555. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  556. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  557. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  558. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  559. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  560. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  561. { "time": 5, "x": 1, "y": 1 }
  562. ]
  563. },
  564. "bone3": {
  565. "rotate": [
  566. { "time": 0, "angle": 0, "curve": "stepped" },
  567. { "time": 0.5, "angle": 0, "curve": "stepped" },
  568. { "time": 1, "angle": 0, "curve": "stepped" },
  569. { "time": 1.5, "angle": 0, "curve": "stepped" },
  570. { "time": 2, "angle": 0, "curve": "stepped" },
  571. { "time": 2.5, "angle": 0, "curve": "stepped" },
  572. { "time": 3, "angle": 0, "curve": "stepped" },
  573. { "time": 3.5, "angle": 0, "curve": "stepped" },
  574. { "time": 4, "angle": 0, "curve": "stepped" },
  575. { "time": 4.5, "angle": 0, "curve": "stepped" },
  576. { "time": 5, "angle": 0 }
  577. ],
  578. "translate": [
  579. { "time": 0, "x": 0, "y": 0 },
  580. { "time": 0.5, "x": 1.17, "y": -0.11 },
  581. { "time": 1, "x": 0, "y": 0 },
  582. { "time": 1.5, "x": 1.17, "y": -0.11 },
  583. { "time": 2, "x": 0, "y": 0 },
  584. { "time": 2.5, "x": 1.17, "y": -0.11 },
  585. { "time": 3, "x": 0, "y": 0 },
  586. { "time": 3.5, "x": 1.17, "y": -0.11 },
  587. { "time": 4, "x": 0, "y": 0 },
  588. { "time": 4.5, "x": 1.17, "y": -0.11 },
  589. { "time": 5, "x": 0, "y": 0 }
  590. ],
  591. "scale": [
  592. { "time": 0, "x": 1, "y": 1 },
  593. { "time": 0.5, "x": 1.04, "y": 1 },
  594. { "time": 1, "x": 1, "y": 1 },
  595. { "time": 1.5, "x": 1.04, "y": 1 },
  596. { "time": 2, "x": 1, "y": 1 },
  597. { "time": 2.5, "x": 1.04, "y": 1 },
  598. { "time": 3, "x": 1, "y": 1 },
  599. { "time": 3.5, "x": 1.04, "y": 1 },
  600. { "time": 4, "x": 1, "y": 1 },
  601. { "time": 4.5, "x": 1.04, "y": 1 },
  602. { "time": 5, "x": 1, "y": 1 }
  603. ]
  604. },
  605. "bone4": {
  606. "rotate": [
  607. { "time": 0, "angle": 0, "curve": "stepped" },
  608. { "time": 0.5, "angle": 0, "curve": "stepped" },
  609. { "time": 1, "angle": 0, "curve": "stepped" },
  610. { "time": 1.5, "angle": 0, "curve": "stepped" },
  611. { "time": 2, "angle": 0, "curve": "stepped" },
  612. { "time": 2.5, "angle": 0, "curve": "stepped" },
  613. { "time": 3, "angle": 0, "curve": "stepped" },
  614. { "time": 3.5, "angle": 0, "curve": "stepped" },
  615. { "time": 4, "angle": 0, "curve": "stepped" },
  616. { "time": 4.5, "angle": 0, "curve": "stepped" },
  617. { "time": 5, "angle": 0 }
  618. ],
  619. "translate": [
  620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  621. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  622. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  623. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  627. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  628. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 5, "x": 0, "y": 0 }
  631. ],
  632. "scale": [
  633. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  634. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  640. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  641. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  642. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  643. { "time": 5, "x": 1, "y": 1 }
  644. ]
  645. },
  646. "bone5": {
  647. "rotate": [
  648. { "time": 0, "angle": 0, "curve": "stepped" },
  649. { "time": 0.5, "angle": 0, "curve": "stepped" },
  650. { "time": 1, "angle": 0, "curve": "stepped" },
  651. { "time": 1.5, "angle": 0, "curve": "stepped" },
  652. { "time": 2, "angle": 0, "curve": "stepped" },
  653. { "time": 2.5, "angle": 0, "curve": "stepped" },
  654. { "time": 3, "angle": 0, "curve": "stepped" },
  655. { "time": 3.5, "angle": 0, "curve": "stepped" },
  656. { "time": 4, "angle": 0, "curve": "stepped" },
  657. { "time": 4.5, "angle": 0, "curve": "stepped" },
  658. { "time": 5, "angle": 0 }
  659. ],
  660. "translate": [
  661. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  662. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  663. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  664. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  668. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  669. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  670. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  671. { "time": 5, "x": 0, "y": 0 }
  672. ],
  673. "scale": [
  674. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  675. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  676. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  677. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  680. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  681. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  682. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  683. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  684. { "time": 5, "x": 1, "y": 1 }
  685. ]
  686. },
  687. "bone6": {
  688. "rotate": [
  689. { "time": 0, "angle": 0, "curve": "stepped" },
  690. { "time": 0.5, "angle": 0, "curve": "stepped" },
  691. { "time": 1, "angle": 0, "curve": "stepped" },
  692. { "time": 1.5, "angle": 0, "curve": "stepped" },
  693. { "time": 2, "angle": 0, "curve": "stepped" },
  694. { "time": 2.5, "angle": 0, "curve": "stepped" },
  695. { "time": 3, "angle": 0, "curve": "stepped" },
  696. { "time": 3.5, "angle": 0, "curve": "stepped" },
  697. { "time": 4, "angle": 0, "curve": "stepped" },
  698. { "time": 4.5, "angle": 0, "curve": "stepped" },
  699. { "time": 5, "angle": 0 }
  700. ],
  701. "translate": [
  702. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  704. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  710. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  711. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  712. { "time": 5, "x": 0, "y": 0 }
  713. ],
  714. "scale": [
  715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  722. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 5, "x": 1, "y": 1 }
  726. ]
  727. },
  728. "bone7": {
  729. "rotate": [
  730. { "time": 0, "angle": 0, "curve": "stepped" },
  731. { "time": 0.5, "angle": 0, "curve": "stepped" },
  732. { "time": 1, "angle": 0, "curve": "stepped" },
  733. { "time": 1.5, "angle": 0, "curve": "stepped" },
  734. { "time": 2, "angle": 0, "curve": "stepped" },
  735. { "time": 2.5, "angle": 0, "curve": "stepped" },
  736. { "time": 3, "angle": 0, "curve": "stepped" },
  737. { "time": 3.5, "angle": 0, "curve": "stepped" },
  738. { "time": 4, "angle": 0, "curve": "stepped" },
  739. { "time": 4.5, "angle": 0, "curve": "stepped" },
  740. { "time": 5, "angle": 0 }
  741. ],
  742. "translate": [
  743. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  753. { "time": 5, "x": 0, "y": 0 }
  754. ],
  755. "scale": [
  756. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  763. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  764. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  765. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  766. { "time": 5, "x": 1, "y": 1 }
  767. ]
  768. },
  769. "bone8": {
  770. "rotate": [
  771. { "time": 0, "angle": 0, "curve": "stepped" },
  772. { "time": 0.5, "angle": 0, "curve": "stepped" },
  773. { "time": 1, "angle": 0, "curve": "stepped" },
  774. { "time": 1.5, "angle": 0, "curve": "stepped" },
  775. { "time": 2, "angle": 0, "curve": "stepped" },
  776. { "time": 2.5, "angle": 0, "curve": "stepped" },
  777. { "time": 3, "angle": 0, "curve": "stepped" },
  778. { "time": 3.5, "angle": 0, "curve": "stepped" },
  779. { "time": 4, "angle": 0, "curve": "stepped" },
  780. { "time": 4.5, "angle": 0, "curve": "stepped" },
  781. { "time": 5, "angle": 0 }
  782. ],
  783. "translate": [
  784. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  791. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  792. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  793. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 5, "x": 0, "y": 0 }
  795. ],
  796. "scale": [
  797. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  800. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 5, "x": 1, "y": 1 }
  808. ]
  809. },
  810. "bone9": {
  811. "rotate": [
  812. { "time": 0, "angle": 0, "curve": "stepped" },
  813. { "time": 0.5, "angle": 0, "curve": "stepped" },
  814. { "time": 1, "angle": 0, "curve": "stepped" },
  815. { "time": 1.5, "angle": 0, "curve": "stepped" },
  816. { "time": 2, "angle": 0, "curve": "stepped" },
  817. { "time": 2.5, "angle": 0, "curve": "stepped" },
  818. { "time": 3, "angle": 0, "curve": "stepped" },
  819. { "time": 3.5, "angle": 0, "curve": "stepped" },
  820. { "time": 4, "angle": 0, "curve": "stepped" },
  821. { "time": 4.5, "angle": 0, "curve": "stepped" },
  822. { "time": 5, "angle": 0 }
  823. ],
  824. "translate": [
  825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 5, "x": 0, "y": 0 }
  836. ],
  837. "scale": [
  838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  843. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  844. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  845. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  846. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 5, "x": 1, "y": 1 }
  849. ]
  850. },
  851. "bone10": {
  852. "rotate": [
  853. { "time": 0, "angle": 0, "curve": "stepped" },
  854. { "time": 0.5, "angle": 0, "curve": "stepped" },
  855. { "time": 1, "angle": 0, "curve": "stepped" },
  856. { "time": 1.5, "angle": 0, "curve": "stepped" },
  857. { "time": 2, "angle": 0, "curve": "stepped" },
  858. { "time": 2.5, "angle": 0, "curve": "stepped" },
  859. { "time": 3, "angle": 0, "curve": "stepped" },
  860. { "time": 3.5, "angle": 0, "curve": "stepped" },
  861. { "time": 4, "angle": 0, "curve": "stepped" },
  862. { "time": 4.5, "angle": 0, "curve": "stepped" },
  863. { "time": 5, "angle": 0 }
  864. ],
  865. "translate": [
  866. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  867. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  868. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  869. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  870. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  873. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  874. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  875. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  876. { "time": 5, "x": 0, "y": 0 }
  877. ],
  878. "scale": [
  879. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  880. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  881. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  882. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 5, "x": 1, "y": 1 }
  890. ]
  891. },
  892. "bone11": {
  893. "rotate": [
  894. { "time": 0, "angle": 10.08 },
  895. { "time": 0.3333, "angle": 14.15, "curve": "stepped" },
  896. { "time": 0.5333, "angle": 14.15, "curve": "stepped" },
  897. { "time": 4, "angle": 14.15 },
  898. { "time": 4.5, "angle": 0.55 },
  899. { "time": 5, "angle": 10.08 }
  900. ],
  901. "translate": [
  902. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  906. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  907. { "time": 5, "x": 0, "y": 0 }
  908. ],
  909. "scale": [
  910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 5, "x": 1, "y": 1 }
  916. ]
  917. },
  918. "bone12": {
  919. "rotate": [
  920. { "time": 0, "angle": 5.87 },
  921. { "time": 0.3333, "angle": -95.14 },
  922. { "time": 0.5333, "angle": -90.77, "curve": "stepped" },
  923. { "time": 4, "angle": -90.77 },
  924. { "time": 4.5, "angle": 17.69 },
  925. { "time": 5, "angle": 5.87 }
  926. ],
  927. "translate": [
  928. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  929. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  930. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  931. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  932. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  933. { "time": 5, "x": 0, "y": 0 }
  934. ],
  935. "scale": [
  936. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  938. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  939. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  940. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  941. { "time": 5, "x": 1, "y": 1 }
  942. ]
  943. },
  944. "bone13": {
  945. "rotate": [
  946. { "time": 0, "angle": 0 },
  947. { "time": 0.3333, "angle": -38.42 },
  948. { "time": 0.5333, "angle": -34.05, "curve": "stepped" },
  949. { "time": 4, "angle": -34.05 },
  950. { "time": 4.5, "angle": -11.76 },
  951. { "time": 5, "angle": 0 }
  952. ],
  953. "translate": [
  954. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 5, "x": 0, "y": 0 }
  960. ],
  961. "scale": [
  962. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  965. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  966. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  967. { "time": 5, "x": 1, "y": 1 }
  968. ]
  969. },
  970. "bone14": {
  971. "rotate": [
  972. { "time": 0, "angle": -21.7 },
  973. { "time": 0.5, "angle": -12.15 },
  974. { "time": 1, "angle": -21.7 },
  975. { "time": 1.5, "angle": -12.15 },
  976. { "time": 2, "angle": -21.7 },
  977. { "time": 2.5, "angle": -12.15 },
  978. { "time": 3, "angle": -21.7 },
  979. { "time": 3.5, "angle": -12.15 },
  980. { "time": 4, "angle": -21.7 },
  981. { "time": 4.5, "angle": -12.15 },
  982. { "time": 5, "angle": -21.7 }
  983. ],
  984. "translate": [
  985. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  992. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  995. { "time": 5, "x": 0, "y": 0 }
  996. ],
  997. "scale": [
  998. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1004. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1005. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1006. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1007. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1008. { "time": 5, "x": 1, "y": 1 }
  1009. ]
  1010. },
  1011. "bone15": {
  1012. "rotate": [
  1013. { "time": 0, "angle": -8.23 },
  1014. { "time": 0.5, "angle": -5.73 },
  1015. { "time": 1, "angle": -8.23 },
  1016. { "time": 1.5, "angle": -5.73 },
  1017. { "time": 2, "angle": -8.23 },
  1018. { "time": 2.5, "angle": -5.73 },
  1019. { "time": 3, "angle": -8.23 },
  1020. { "time": 3.5, "angle": -5.73 },
  1021. { "time": 4, "angle": -8.23 },
  1022. { "time": 4.5, "angle": -5.73 },
  1023. { "time": 5, "angle": -8.23 }
  1024. ],
  1025. "translate": [
  1026. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 5, "x": 0, "y": 0 }
  1037. ],
  1038. "scale": [
  1039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 5, "x": 1, "y": 1 }
  1050. ]
  1051. },
  1052. "bone16": {
  1053. "rotate": [
  1054. { "time": 0, "angle": 0, "curve": "stepped" },
  1055. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1056. { "time": 1, "angle": 0, "curve": "stepped" },
  1057. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1058. { "time": 2, "angle": 0, "curve": "stepped" },
  1059. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1060. { "time": 3, "angle": 0, "curve": "stepped" },
  1061. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1062. { "time": 4, "angle": 0, "curve": "stepped" },
  1063. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1064. { "time": 5, "angle": 0 }
  1065. ],
  1066. "translate": [
  1067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 5, "x": 0, "y": 0 }
  1078. ],
  1079. "scale": [
  1080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 5, "x": 1, "y": 1 }
  1091. ]
  1092. },
  1093. "bone17": {
  1094. "rotate": [
  1095. { "time": 0, "angle": 0 },
  1096. { "time": 0.5, "angle": -3.34 },
  1097. { "time": 1, "angle": 0 },
  1098. { "time": 1.5, "angle": -3.34 },
  1099. { "time": 2, "angle": 0 },
  1100. { "time": 2.5, "angle": -3.34 },
  1101. { "time": 3, "angle": 0 },
  1102. { "time": 3.5, "angle": -3.34 },
  1103. { "time": 4, "angle": 0 },
  1104. { "time": 4.5, "angle": -3.34 },
  1105. { "time": 5, "angle": 0 }
  1106. ],
  1107. "translate": [
  1108. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1110. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1111. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1112. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1113. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1114. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 5, "x": 0, "y": 0 }
  1119. ],
  1120. "scale": [
  1121. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1122. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1123. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1124. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1127. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1130. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 5, "x": 1, "y": 1 }
  1132. ]
  1133. },
  1134. "bone18": {
  1135. "rotate": [
  1136. { "time": 0, "angle": 0 },
  1137. { "time": 0.5, "angle": -9.75 },
  1138. { "time": 1, "angle": 0 },
  1139. { "time": 1.5, "angle": -9.75 },
  1140. { "time": 2, "angle": 0 },
  1141. { "time": 2.5, "angle": -9.75 },
  1142. { "time": 3, "angle": 0 },
  1143. { "time": 3.5, "angle": -9.75 },
  1144. { "time": 4, "angle": 0 },
  1145. { "time": 4.5, "angle": -9.75 },
  1146. { "time": 5, "angle": 0 }
  1147. ],
  1148. "translate": [
  1149. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1150. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1151. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1152. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1159. { "time": 5, "x": 0, "y": 0 }
  1160. ],
  1161. "scale": [
  1162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1163. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1164. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1165. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1166. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1167. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1168. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1169. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 5, "x": 1, "y": 1 }
  1173. ]
  1174. },
  1175. "bone19": {
  1176. "rotate": [
  1177. { "time": 0, "angle": 0 },
  1178. { "time": 0.5, "angle": -3.41 },
  1179. { "time": 1, "angle": 0 },
  1180. { "time": 1.5, "angle": -3.41 },
  1181. { "time": 2, "angle": 0 },
  1182. { "time": 2.5, "angle": -3.41 },
  1183. { "time": 3, "angle": 0 },
  1184. { "time": 3.5, "angle": -3.41 },
  1185. { "time": 4, "angle": 0 },
  1186. { "time": 4.5, "angle": -3.41 },
  1187. { "time": 5, "angle": 0 }
  1188. ],
  1189. "translate": [
  1190. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1195. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1196. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1197. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1198. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 5, "x": 0, "y": 0 }
  1201. ],
  1202. "scale": [
  1203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1211. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1213. { "time": 5, "x": 1, "y": 1 }
  1214. ]
  1215. },
  1216. "bone20": {
  1217. "rotate": [
  1218. { "time": 0, "angle": 0 },
  1219. { "time": 0.5, "angle": 3.26 },
  1220. { "time": 1, "angle": 0 },
  1221. { "time": 1.5, "angle": 3.26 },
  1222. { "time": 2, "angle": 0 },
  1223. { "time": 2.5, "angle": 3.26 },
  1224. { "time": 3, "angle": 0 },
  1225. { "time": 3.5, "angle": 3.26 },
  1226. { "time": 4, "angle": 0 },
  1227. { "time": 4.5, "angle": 3.26 },
  1228. { "time": 5, "angle": 0 }
  1229. ],
  1230. "translate": [
  1231. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1232. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1233. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1234. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1235. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1236. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1237. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1238. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1239. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1240. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1241. { "time": 5, "x": 0, "y": 0 }
  1242. ],
  1243. "scale": [
  1244. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1245. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1246. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1247. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1248. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1249. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1250. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1251. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 5, "x": 1, "y": 1 }
  1255. ]
  1256. },
  1257. "bone21": {
  1258. "rotate": [
  1259. { "time": 0, "angle": 0 },
  1260. { "time": 0.5, "angle": 9.51 },
  1261. { "time": 1, "angle": 0 },
  1262. { "time": 1.5, "angle": 9.51 },
  1263. { "time": 2, "angle": 0 },
  1264. { "time": 2.5, "angle": 9.51 },
  1265. { "time": 3, "angle": 0 },
  1266. { "time": 3.5, "angle": 9.51 },
  1267. { "time": 4, "angle": 0 },
  1268. { "time": 4.5, "angle": 9.51 },
  1269. { "time": 5, "angle": 0 }
  1270. ],
  1271. "translate": [
  1272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1276. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1277. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1278. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1279. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1280. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1281. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1282. { "time": 5, "x": 0, "y": 0 }
  1283. ],
  1284. "scale": [
  1285. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 5, "x": 1, "y": 1 }
  1296. ]
  1297. },
  1298. "bone22": {
  1299. "rotate": [
  1300. { "time": 0, "angle": 0 },
  1301. { "time": 0.5, "angle": 6.25 },
  1302. { "time": 1, "angle": 0 },
  1303. { "time": 1.5, "angle": 6.25 },
  1304. { "time": 2, "angle": 0 },
  1305. { "time": 2.5, "angle": 6.25 },
  1306. { "time": 3, "angle": 0 },
  1307. { "time": 3.5, "angle": 6.25 },
  1308. { "time": 4, "angle": 0 },
  1309. { "time": 4.5, "angle": 6.25 },
  1310. { "time": 5, "angle": 0 }
  1311. ],
  1312. "translate": [
  1313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 5, "x": 0, "y": 0 }
  1324. ],
  1325. "scale": [
  1326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1330. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1331. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1332. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1333. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 5, "x": 1, "y": 1 }
  1337. ]
  1338. },
  1339. "bone23": {
  1340. "rotate": [
  1341. { "time": 0, "angle": 0, "curve": "stepped" },
  1342. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1343. { "time": 1, "angle": 0, "curve": "stepped" },
  1344. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1345. { "time": 2, "angle": 0, "curve": "stepped" },
  1346. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1347. { "time": 3, "angle": 0, "curve": "stepped" },
  1348. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1349. { "time": 4, "angle": 0, "curve": "stepped" },
  1350. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1351. { "time": 5, "angle": 0 }
  1352. ],
  1353. "translate": [
  1354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1355. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1356. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1357. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1358. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1359. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1360. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1361. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1362. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1363. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1364. { "time": 5, "x": 0, "y": 0 }
  1365. ],
  1366. "scale": [
  1367. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1369. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1370. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1371. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1372. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1373. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1374. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1375. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 5, "x": 1, "y": 1 }
  1378. ]
  1379. },
  1380. "bone24": {
  1381. "rotate": [
  1382. { "time": 0, "angle": 0, "curve": "stepped" },
  1383. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1384. { "time": 1, "angle": 0, "curve": "stepped" },
  1385. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1386. { "time": 2, "angle": 0, "curve": "stepped" },
  1387. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1388. { "time": 3, "angle": 0, "curve": "stepped" },
  1389. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1390. { "time": 4, "angle": 0, "curve": "stepped" },
  1391. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1392. { "time": 5, "angle": 0 }
  1393. ],
  1394. "translate": [
  1395. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1397. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1398. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1399. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1400. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1401. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1402. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1403. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1404. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1405. { "time": 5, "x": 0, "y": 0 }
  1406. ],
  1407. "scale": [
  1408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1409. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1410. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1411. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1412. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1415. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1416. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1417. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1418. { "time": 5, "x": 1, "y": 1 }
  1419. ]
  1420. },
  1421. "bone25": {
  1422. "rotate": [
  1423. { "time": 0, "angle": 0, "curve": "stepped" },
  1424. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1425. { "time": 1, "angle": 0, "curve": "stepped" },
  1426. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1427. { "time": 2, "angle": 0, "curve": "stepped" },
  1428. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1429. { "time": 3, "angle": 0, "curve": "stepped" },
  1430. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1431. { "time": 4, "angle": 0, "curve": "stepped" },
  1432. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1433. { "time": 5, "angle": 0 }
  1434. ],
  1435. "translate": [
  1436. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1439. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1440. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1441. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1443. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 5, "x": 0, "y": 0 }
  1447. ],
  1448. "scale": [
  1449. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1450. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1451. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1456. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1457. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 5, "x": 1, "y": 1 }
  1460. ]
  1461. },
  1462. "bone26": {
  1463. "rotate": [
  1464. { "time": 0, "angle": 0 },
  1465. { "time": 0.5, "angle": -6.43 },
  1466. { "time": 1, "angle": 0 },
  1467. { "time": 1.5, "angle": -6.43 },
  1468. { "time": 2, "angle": 0 },
  1469. { "time": 2.5, "angle": -6.43 },
  1470. { "time": 3, "angle": 0 },
  1471. { "time": 3.5, "angle": -6.43 },
  1472. { "time": 4, "angle": 0 },
  1473. { "time": 4.5, "angle": -6.43 },
  1474. { "time": 5, "angle": 0 }
  1475. ],
  1476. "translate": [
  1477. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1478. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1479. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1480. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1482. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1483. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1484. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1485. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1486. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 5, "x": 0, "y": 0 }
  1488. ],
  1489. "scale": [
  1490. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1494. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1495. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1496. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 5, "x": 1, "y": 1 }
  1501. ]
  1502. },
  1503. "bone27": {
  1504. "rotate": [
  1505. { "time": 0, "angle": 0 },
  1506. { "time": 0.5, "angle": -5.6 },
  1507. { "time": 1, "angle": 0 },
  1508. { "time": 1.5, "angle": -5.6 },
  1509. { "time": 2, "angle": 0 },
  1510. { "time": 2.5, "angle": -5.6 },
  1511. { "time": 3, "angle": 0 },
  1512. { "time": 3.5, "angle": -5.6 },
  1513. { "time": 4, "angle": 0 },
  1514. { "time": 4.5, "angle": -5.6 },
  1515. { "time": 5, "angle": 0 }
  1516. ],
  1517. "translate": [
  1518. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 5, "x": 0, "y": 0 }
  1529. ],
  1530. "scale": [
  1531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1532. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1536. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1537. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1538. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1539. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1540. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1541. { "time": 5, "x": 1, "y": 1 }
  1542. ]
  1543. },
  1544. "bone28": {
  1545. "rotate": [
  1546. { "time": 0, "angle": 0 },
  1547. { "time": 0.5, "angle": -11.89 },
  1548. { "time": 1, "angle": 0 },
  1549. { "time": 1.5, "angle": -11.89 },
  1550. { "time": 2, "angle": 0 },
  1551. { "time": 2.5, "angle": -11.89 },
  1552. { "time": 3, "angle": 0 },
  1553. { "time": 3.5, "angle": -11.89 },
  1554. { "time": 4, "angle": 0 },
  1555. { "time": 4.5, "angle": -11.89 },
  1556. { "time": 5, "angle": 0 }
  1557. ],
  1558. "translate": [
  1559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1560. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 5, "x": 0, "y": 0 }
  1570. ],
  1571. "scale": [
  1572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 5, "x": 1, "y": 1 }
  1583. ]
  1584. },
  1585. "bone29": {
  1586. "rotate": [
  1587. { "time": 0, "angle": 0, "curve": "stepped" },
  1588. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1589. { "time": 1, "angle": 0, "curve": "stepped" },
  1590. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1591. { "time": 2, "angle": 0, "curve": "stepped" },
  1592. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1593. { "time": 3, "angle": 0, "curve": "stepped" },
  1594. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1595. { "time": 4, "angle": 0, "curve": "stepped" },
  1596. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1597. { "time": 5, "angle": 0 }
  1598. ],
  1599. "translate": [
  1600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1601. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1602. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1603. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1604. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1605. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1608. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 5, "x": 0, "y": 0 }
  1611. ],
  1612. "scale": [
  1613. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1615. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1618. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 5, "x": 1, "y": 1 }
  1624. ]
  1625. },
  1626. "bone30": {
  1627. "rotate": [
  1628. { "time": 0, "angle": 0 },
  1629. { "time": 0.5, "angle": 19.73 },
  1630. { "time": 1, "angle": 0 },
  1631. { "time": 1.5, "angle": 19.73 },
  1632. { "time": 2, "angle": 0 },
  1633. { "time": 2.5, "angle": 19.73 },
  1634. { "time": 3, "angle": 0 },
  1635. { "time": 3.5, "angle": 19.73 },
  1636. { "time": 4, "angle": 0 },
  1637. { "time": 4.5, "angle": 19.73 },
  1638. { "time": 5, "angle": 0 }
  1639. ],
  1640. "translate": [
  1641. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1645. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1646. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1647. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1648. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1649. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 5, "x": 0, "y": 0 }
  1652. ],
  1653. "scale": [
  1654. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1655. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1656. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1660. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1661. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1663. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1664. { "time": 5, "x": 1, "y": 1 }
  1665. ]
  1666. },
  1667. "bone31": {
  1668. "rotate": [
  1669. { "time": 0, "angle": 0 },
  1670. { "time": 0.5, "angle": 15.43 },
  1671. { "time": 1, "angle": 0 },
  1672. { "time": 1.5, "angle": 15.43 },
  1673. { "time": 2, "angle": 0 },
  1674. { "time": 2.5, "angle": 15.43 },
  1675. { "time": 3, "angle": 0 },
  1676. { "time": 3.5, "angle": 15.43 },
  1677. { "time": 4, "angle": 0 },
  1678. { "time": 4.5, "angle": 15.43 },
  1679. { "time": 5, "angle": 0 }
  1680. ],
  1681. "translate": [
  1682. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1683. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1684. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1685. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1686. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1687. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1688. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1689. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1690. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1691. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 5, "x": 0, "y": 0 }
  1693. ],
  1694. "scale": [
  1695. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1704. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1705. { "time": 5, "x": 1, "y": 1 }
  1706. ]
  1707. },
  1708. "bone32": {
  1709. "rotate": [
  1710. { "time": 0, "angle": 0 },
  1711. { "time": 0.5, "angle": 4.21 },
  1712. { "time": 1, "angle": 0 },
  1713. { "time": 1.5, "angle": 4.21 },
  1714. { "time": 2, "angle": 0 },
  1715. { "time": 2.5, "angle": 4.21 },
  1716. { "time": 3, "angle": 0 },
  1717. { "time": 3.5, "angle": 4.21 },
  1718. { "time": 4, "angle": 0 },
  1719. { "time": 4.5, "angle": 4.21 },
  1720. { "time": 5, "angle": 0 }
  1721. ],
  1722. "translate": [
  1723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1724. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1725. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1726. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1732. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1733. { "time": 5, "x": 0, "y": 0 }
  1734. ],
  1735. "scale": [
  1736. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1740. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1741. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1742. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1743. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1744. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1745. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1746. { "time": 5, "x": 1, "y": 1 }
  1747. ]
  1748. },
  1749. "bone33": {
  1750. "rotate": [
  1751. { "time": 0, "angle": 0 },
  1752. { "time": 0.5, "angle": 6.91 },
  1753. { "time": 1, "angle": 0 },
  1754. { "time": 1.5, "angle": 6.91 },
  1755. { "time": 2, "angle": 0 },
  1756. { "time": 2.5, "angle": 6.91 },
  1757. { "time": 3, "angle": 0 },
  1758. { "time": 3.5, "angle": 6.91 },
  1759. { "time": 4, "angle": 0 },
  1760. { "time": 4.5, "angle": 6.91 },
  1761. { "time": 5, "angle": 0 }
  1762. ],
  1763. "translate": [
  1764. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1765. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1766. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1769. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1770. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1773. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 5, "x": 0, "y": 0 }
  1775. ],
  1776. "scale": [
  1777. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1778. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1779. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1780. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1781. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1782. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1783. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1784. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1785. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 5, "x": 1, "y": 1 }
  1788. ]
  1789. },
  1790. "bone34": {
  1791. "rotate": [
  1792. { "time": 0, "angle": 0 },
  1793. { "time": 0.5, "angle": 10.04 },
  1794. { "time": 1, "angle": 0 },
  1795. { "time": 1.5, "angle": 10.04 },
  1796. { "time": 2, "angle": 0 },
  1797. { "time": 2.5, "angle": 10.04 },
  1798. { "time": 3, "angle": 0 },
  1799. { "time": 3.5, "angle": 10.04 },
  1800. { "time": 4, "angle": 0 },
  1801. { "time": 4.5, "angle": 10.04 },
  1802. { "time": 5, "angle": 0 }
  1803. ],
  1804. "translate": [
  1805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1806. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1807. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1808. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1809. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1810. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1812. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 5, "x": 0, "y": 0 }
  1816. ],
  1817. "scale": [
  1818. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 5, "x": 1, "y": 1 }
  1829. ]
  1830. },
  1831. "bone35": {
  1832. "rotate": [
  1833. { "time": 0, "angle": 0 },
  1834. { "time": 0.5, "angle": 22.51 },
  1835. { "time": 1, "angle": 0 },
  1836. { "time": 1.5, "angle": 22.51 },
  1837. { "time": 2, "angle": 0 },
  1838. { "time": 2.5, "angle": 22.51 },
  1839. { "time": 3, "angle": 0 },
  1840. { "time": 3.5, "angle": 22.51 },
  1841. { "time": 4, "angle": 0 },
  1842. { "time": 4.5, "angle": 22.51 },
  1843. { "time": 5, "angle": 0 }
  1844. ],
  1845. "translate": [
  1846. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1847. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1848. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1851. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1852. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1853. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1854. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1855. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 5, "x": 0, "y": 0 }
  1857. ],
  1858. "scale": [
  1859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 5, "x": 1, "y": 1 }
  1870. ]
  1871. },
  1872. "bone36": {
  1873. "rotate": [
  1874. { "time": 0, "angle": 0 },
  1875. { "time": 0.5, "angle": -7.53 },
  1876. { "time": 1, "angle": 0 },
  1877. { "time": 1.5, "angle": -7.53 },
  1878. { "time": 2, "angle": 0 },
  1879. { "time": 2.5, "angle": -7.53 },
  1880. { "time": 3, "angle": 0 },
  1881. { "time": 3.5, "angle": -7.53 },
  1882. { "time": 4, "angle": 0 },
  1883. { "time": 4.5, "angle": -7.53 },
  1884. { "time": 5, "angle": 0 }
  1885. ],
  1886. "translate": [
  1887. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1888. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1890. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1891. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1892. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1895. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1896. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1897. { "time": 5, "x": 0, "y": 0 }
  1898. ],
  1899. "scale": [
  1900. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1905. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1906. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1907. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1908. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1909. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1910. { "time": 5, "x": 1, "y": 1 }
  1911. ]
  1912. },
  1913. "bone37": {
  1914. "rotate": [
  1915. { "time": 0, "angle": 0 },
  1916. { "time": 0.5, "angle": 0.87 },
  1917. { "time": 1, "angle": 0 },
  1918. { "time": 1.5, "angle": 0.87 },
  1919. { "time": 2, "angle": 0 },
  1920. { "time": 2.5, "angle": 0.87 },
  1921. { "time": 3, "angle": 0 },
  1922. { "time": 3.5, "angle": 0.87 },
  1923. { "time": 4, "angle": 0 },
  1924. { "time": 4.5, "angle": 0.87 },
  1925. { "time": 5, "angle": 0 }
  1926. ],
  1927. "translate": [
  1928. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1930. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1931. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1933. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1934. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1936. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1937. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1938. { "time": 5, "x": 0, "y": 0 }
  1939. ],
  1940. "scale": [
  1941. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1942. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1943. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1945. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1946. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1947. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1948. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1949. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1950. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 5, "x": 1, "y": 1 }
  1952. ]
  1953. },
  1954. "bone38": {
  1955. "rotate": [
  1956. { "time": 0, "angle": 0 },
  1957. { "time": 0.5, "angle": -1.83 },
  1958. { "time": 1, "angle": 0 },
  1959. { "time": 1.5, "angle": -1.83 },
  1960. { "time": 2, "angle": 0 },
  1961. { "time": 2.5, "angle": -1.83 },
  1962. { "time": 3, "angle": 0 },
  1963. { "time": 3.5, "angle": -1.83 },
  1964. { "time": 4, "angle": 0 },
  1965. { "time": 4.5, "angle": -1.83 },
  1966. { "time": 5, "angle": 0 }
  1967. ],
  1968. "translate": [
  1969. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1970. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1971. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1973. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1974. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1975. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  1979. { "time": 5, "x": 0, "y": 0 }
  1980. ],
  1981. "scale": [
  1982. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 5, "x": 1, "y": 1 }
  1993. ]
  1994. },
  1995. "bone39": {
  1996. "rotate": [
  1997. { "time": 0, "angle": 0 },
  1998. { "time": 0.5, "angle": 5.94 },
  1999. { "time": 1, "angle": 0 },
  2000. { "time": 1.5, "angle": 5.94 },
  2001. { "time": 2, "angle": 0 },
  2002. { "time": 2.5, "angle": 5.94 },
  2003. { "time": 3, "angle": 0 },
  2004. { "time": 3.5, "angle": 5.94 },
  2005. { "time": 4, "angle": 0 },
  2006. { "time": 4.5, "angle": 5.94 },
  2007. { "time": 5, "angle": 0 }
  2008. ],
  2009. "translate": [
  2010. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2017. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2018. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2019. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2020. { "time": 5, "x": 0, "y": 0 }
  2021. ],
  2022. "scale": [
  2023. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2027. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2032. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2033. { "time": 5, "x": 1, "y": 1 }
  2034. ]
  2035. },
  2036. "bone40": {
  2037. "rotate": [
  2038. { "time": 0, "angle": 0, "curve": "stepped" },
  2039. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2040. { "time": 1, "angle": 0, "curve": "stepped" },
  2041. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2042. { "time": 2, "angle": 0, "curve": "stepped" },
  2043. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2044. { "time": 3, "angle": 0, "curve": "stepped" },
  2045. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2046. { "time": 4, "angle": 0, "curve": "stepped" },
  2047. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2048. { "time": 5, "angle": 0 }
  2049. ],
  2050. "translate": [
  2051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2052. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2053. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2055. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2056. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2057. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2058. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2059. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 5, "x": 0, "y": 0 }
  2062. ],
  2063. "scale": [
  2064. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2065. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2068. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2069. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 5, "x": 1, "y": 1 }
  2075. ]
  2076. },
  2077. "bone41": {
  2078. "rotate": [
  2079. { "time": 0, "angle": 0, "curve": "stepped" },
  2080. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2081. { "time": 1, "angle": 0, "curve": "stepped" },
  2082. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2083. { "time": 2, "angle": 0, "curve": "stepped" },
  2084. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2085. { "time": 3, "angle": 0, "curve": "stepped" },
  2086. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2087. { "time": 4, "angle": 0, "curve": "stepped" },
  2088. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2089. { "time": 5, "angle": 0 }
  2090. ],
  2091. "translate": [
  2092. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2093. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2094. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2095. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2096. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2097. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 5, "x": 0, "y": 0 }
  2103. ],
  2104. "scale": [
  2105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2115. { "time": 5, "x": 1, "y": 1 }
  2116. ]
  2117. },
  2118. "bone42": {
  2119. "rotate": [
  2120. { "time": 0, "angle": 0, "curve": "stepped" },
  2121. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2122. { "time": 1, "angle": 0, "curve": "stepped" },
  2123. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2124. { "time": 2, "angle": 0, "curve": "stepped" },
  2125. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2126. { "time": 3, "angle": 0, "curve": "stepped" },
  2127. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2128. { "time": 4, "angle": 0, "curve": "stepped" },
  2129. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2130. { "time": 5, "angle": 0 }
  2131. ],
  2132. "translate": [
  2133. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2134. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2135. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2140. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2141. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2142. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2143. { "time": 5, "x": 0, "y": 0 }
  2144. ],
  2145. "scale": [
  2146. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2150. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2153. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2154. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2155. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2156. { "time": 5, "x": 1, "y": 1 }
  2157. ]
  2158. },
  2159. "bone43": {
  2160. "rotate": [
  2161. { "time": 0, "angle": 0, "curve": "stepped" },
  2162. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2163. { "time": 1, "angle": 0, "curve": "stepped" },
  2164. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2165. { "time": 2, "angle": 0, "curve": "stepped" },
  2166. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2167. { "time": 3, "angle": 0, "curve": "stepped" },
  2168. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2169. { "time": 4, "angle": 0, "curve": "stepped" },
  2170. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2171. { "time": 5, "angle": 0 }
  2172. ],
  2173. "translate": [
  2174. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2175. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2176. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2180. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2181. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2182. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 5, "x": 0, "y": 0 }
  2185. ],
  2186. "scale": [
  2187. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2188. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2191. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2192. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2193. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2194. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2195. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2196. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 5, "x": 1, "y": 1 }
  2198. ]
  2199. },
  2200. "bone44": {
  2201. "rotate": [
  2202. { "time": 0, "angle": 0, "curve": "stepped" },
  2203. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2204. { "time": 1, "angle": 0, "curve": "stepped" },
  2205. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2206. { "time": 2, "angle": 0, "curve": "stepped" },
  2207. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2208. { "time": 3, "angle": 0, "curve": "stepped" },
  2209. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2210. { "time": 4, "angle": 0, "curve": "stepped" },
  2211. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2212. { "time": 5, "angle": 0 }
  2213. ],
  2214. "translate": [
  2215. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2216. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2217. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2218. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2219. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2220. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2221. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2222. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2223. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2224. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2225. { "time": 5, "x": 0, "y": 0 }
  2226. ],
  2227. "scale": [
  2228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2230. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2231. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2232. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2233. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2234. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2235. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2236. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2237. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2238. { "time": 5, "x": 1, "y": 1 }
  2239. ]
  2240. },
  2241. "bone45": {
  2242. "rotate": [
  2243. { "time": 0, "angle": 0, "curve": "stepped" },
  2244. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2245. { "time": 1, "angle": 0, "curve": "stepped" },
  2246. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2247. { "time": 2, "angle": 0, "curve": "stepped" },
  2248. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2249. { "time": 3, "angle": 0, "curve": "stepped" },
  2250. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2251. { "time": 4, "angle": 0, "curve": "stepped" },
  2252. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2253. { "time": 5, "angle": 0 }
  2254. ],
  2255. "translate": [
  2256. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2257. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2258. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2259. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2260. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2261. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2262. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2263. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2264. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2265. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2266. { "time": 5, "x": 0, "y": 0 }
  2267. ],
  2268. "scale": [
  2269. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2270. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2271. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2272. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2273. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2275. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2276. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2277. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2278. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2279. { "time": 5, "x": 1, "y": 1 }
  2280. ]
  2281. },
  2282. "bone46": {
  2283. "rotate": [
  2284. { "time": 0, "angle": 0 },
  2285. { "time": 0.5, "angle": 4.42 },
  2286. { "time": 1, "angle": 0 },
  2287. { "time": 1.5, "angle": 4.42 },
  2288. { "time": 2, "angle": 0 },
  2289. { "time": 2.5, "angle": 4.42 },
  2290. { "time": 3, "angle": 0 },
  2291. { "time": 3.5, "angle": 4.42 },
  2292. { "time": 4, "angle": 0 },
  2293. { "time": 4.5, "angle": 4.42 },
  2294. { "time": 5, "angle": 0 }
  2295. ],
  2296. "translate": [
  2297. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2299. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 5, "x": 0, "y": 0 }
  2308. ],
  2309. "scale": [
  2310. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2311. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2314. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2317. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2318. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2319. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2320. { "time": 5, "x": 1, "y": 1 }
  2321. ]
  2322. },
  2323. "bone47": {
  2324. "rotate": [
  2325. { "time": 0, "angle": 0 },
  2326. { "time": 0.5, "angle": 6.2 },
  2327. { "time": 1, "angle": 0 },
  2328. { "time": 1.5, "angle": 6.2 },
  2329. { "time": 2, "angle": 0 },
  2330. { "time": 2.5, "angle": 6.2 },
  2331. { "time": 3, "angle": 0 },
  2332. { "time": 3.5, "angle": 6.2 },
  2333. { "time": 4, "angle": 0 },
  2334. { "time": 4.5, "angle": 6.2 },
  2335. { "time": 5, "angle": 0 }
  2336. ],
  2337. "translate": [
  2338. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2339. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2340. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2341. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2342. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2343. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2345. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2347. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2348. { "time": 5, "x": 0, "y": 0 }
  2349. ],
  2350. "scale": [
  2351. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2353. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2354. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2355. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2356. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2357. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2358. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2360. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 5, "x": 1, "y": 1 }
  2362. ]
  2363. },
  2364. "bone48": {
  2365. "rotate": [
  2366. { "time": 0, "angle": 0 },
  2367. { "time": 0.5, "angle": -1.49 },
  2368. { "time": 1, "angle": 0 },
  2369. { "time": 1.5, "angle": -1.49 },
  2370. { "time": 2, "angle": 0 },
  2371. { "time": 2.5, "angle": -1.49 },
  2372. { "time": 3, "angle": 0 },
  2373. { "time": 3.5, "angle": -1.49 },
  2374. { "time": 4, "angle": 0 },
  2375. { "time": 4.5, "angle": -1.49 },
  2376. { "time": 5, "angle": 0 }
  2377. ],
  2378. "translate": [
  2379. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2382. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2383. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2384. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2385. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2386. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2387. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2388. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 5, "x": 0, "y": 0 }
  2390. ],
  2391. "scale": [
  2392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 5, "x": 1, "y": 1 }
  2403. ]
  2404. },
  2405. "bone49": {
  2406. "rotate": [
  2407. { "time": 0, "angle": 0, "curve": "stepped" },
  2408. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2409. { "time": 1, "angle": 0, "curve": "stepped" },
  2410. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2411. { "time": 2, "angle": 0, "curve": "stepped" },
  2412. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2413. { "time": 3, "angle": 0, "curve": "stepped" },
  2414. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2415. { "time": 4, "angle": 0, "curve": "stepped" },
  2416. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2417. { "time": 5, "angle": 0 }
  2418. ],
  2419. "translate": [
  2420. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2424. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2425. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2426. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2429. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2430. { "time": 5, "x": 0, "y": 0 }
  2431. ],
  2432. "scale": [
  2433. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 5, "x": 1, "y": 1 }
  2444. ]
  2445. },
  2446. "bone50": {
  2447. "rotate": [
  2448. { "time": 0, "angle": 0 },
  2449. { "time": 0.5, "angle": -7.52 },
  2450. { "time": 1, "angle": 0 },
  2451. { "time": 1.5, "angle": -7.52 },
  2452. { "time": 2, "angle": 0 },
  2453. { "time": 2.5, "angle": -7.52 },
  2454. { "time": 3, "angle": 0 },
  2455. { "time": 3.5, "angle": -7.52 },
  2456. { "time": 4, "angle": 0 },
  2457. { "time": 4.5, "angle": -7.52 },
  2458. { "time": 5, "angle": 0 }
  2459. ],
  2460. "translate": [
  2461. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2462. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2463. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2465. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2467. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2468. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2470. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2471. { "time": 5, "x": 0, "y": 0 }
  2472. ],
  2473. "scale": [
  2474. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2476. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2477. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2478. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2479. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2480. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2481. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 5, "x": 1, "y": 1 }
  2485. ]
  2486. },
  2487. "bone51": {
  2488. "rotate": [
  2489. { "time": 0, "angle": 0 },
  2490. { "time": 0.5, "angle": -6.66 },
  2491. { "time": 1, "angle": 0 },
  2492. { "time": 1.5, "angle": -6.66 },
  2493. { "time": 2, "angle": 0 },
  2494. { "time": 2.5, "angle": -6.66 },
  2495. { "time": 3, "angle": 0 },
  2496. { "time": 3.5, "angle": -6.66 },
  2497. { "time": 4, "angle": 0 },
  2498. { "time": 4.5, "angle": -6.66 },
  2499. { "time": 5, "angle": 0 }
  2500. ],
  2501. "translate": [
  2502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2510. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 5, "x": 0, "y": 0 }
  2513. ],
  2514. "scale": [
  2515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 5, "x": 1, "y": 1 }
  2526. ]
  2527. },
  2528. "bone52": {
  2529. "rotate": [
  2530. { "time": 0, "angle": 0 },
  2531. { "time": 0.5, "angle": -11.43 },
  2532. { "time": 1, "angle": 0 },
  2533. { "time": 1.5, "angle": -11.43 },
  2534. { "time": 2, "angle": 0 },
  2535. { "time": 2.5, "angle": -11.43 },
  2536. { "time": 3, "angle": 0 },
  2537. { "time": 3.5, "angle": -11.43 },
  2538. { "time": 4, "angle": 0 },
  2539. { "time": 4.5, "angle": -11.43 },
  2540. { "time": 5, "angle": 0 }
  2541. ],
  2542. "translate": [
  2543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2544. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2548. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2549. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2550. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2551. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2552. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2553. { "time": 5, "x": 0, "y": 0 }
  2554. ],
  2555. "scale": [
  2556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2557. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2560. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2561. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2562. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2565. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 5, "x": 1, "y": 1 }
  2567. ]
  2568. },
  2569. "bone53": {
  2570. "rotate": [
  2571. { "time": 0, "angle": 0, "curve": "stepped" },
  2572. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2573. { "time": 1, "angle": 0, "curve": "stepped" },
  2574. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2575. { "time": 2, "angle": 0, "curve": "stepped" },
  2576. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2577. { "time": 3, "angle": 0, "curve": "stepped" },
  2578. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2579. { "time": 4, "angle": 0, "curve": "stepped" },
  2580. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2581. { "time": 5, "angle": 0 }
  2582. ],
  2583. "translate": [
  2584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2585. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2586. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2587. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2588. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2589. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2590. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2591. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2594. { "time": 5, "x": 0, "y": 0 }
  2595. ],
  2596. "scale": [
  2597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2600. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2601. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2602. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2603. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2604. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2605. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2606. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2607. { "time": 5, "x": 1, "y": 1 }
  2608. ]
  2609. },
  2610. "bone54": {
  2611. "rotate": [
  2612. { "time": 0, "angle": 0, "curve": "stepped" },
  2613. { "time": 1, "angle": 0, "curve": "stepped" },
  2614. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2615. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2616. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2617. { "time": 2, "angle": 0, "curve": "stepped" },
  2618. { "time": 3, "angle": 0, "curve": "stepped" },
  2619. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2620. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2621. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2622. { "time": 4, "angle": 0, "curve": "stepped" },
  2623. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2624. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2625. { "time": 4.3333, "angle": 0 }
  2626. ],
  2627. "translate": [
  2628. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2630. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2631. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2632. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2633. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2634. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2635. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2636. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2637. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2638. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2639. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2640. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 4.3333, "x": 0, "y": 0 }
  2642. ],
  2643. "scale": [
  2644. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2645. { "time": 1, "x": 1, "y": 1 },
  2646. { "time": 1.1, "x": 0.654, "y": 1, "curve": "stepped" },
  2647. { "time": 1.2, "x": 0.654, "y": 1 },
  2648. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 3, "x": 1, "y": 1 },
  2651. { "time": 3.1, "x": 0.654, "y": 1, "curve": "stepped" },
  2652. { "time": 3.2, "x": 0.654, "y": 1 },
  2653. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 4, "x": 1, "y": 1 },
  2655. { "time": 4.1, "x": 0.654, "y": 1, "curve": "stepped" },
  2656. { "time": 4.2, "x": 0.654, "y": 1 },
  2657. { "time": 4.3333, "x": 1, "y": 1 }
  2658. ]
  2659. },
  2660. "bone55": {
  2661. "rotate": [
  2662. { "time": 0, "angle": 0, "curve": "stepped" },
  2663. { "time": 1, "angle": 0, "curve": "stepped" },
  2664. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2665. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2666. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2667. { "time": 2, "angle": 0, "curve": "stepped" },
  2668. { "time": 3, "angle": 0, "curve": "stepped" },
  2669. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2670. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2671. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2672. { "time": 4, "angle": 0, "curve": "stepped" },
  2673. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2674. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2675. { "time": 4.3333, "angle": 0 }
  2676. ],
  2677. "translate": [
  2678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2685. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2688. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2689. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  2690. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 4.3333, "x": 0, "y": 0 }
  2692. ],
  2693. "scale": [
  2694. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 1, "x": 1, "y": 1 },
  2696. { "time": 1.1, "x": 0.585, "y": 1, "curve": "stepped" },
  2697. { "time": 1.2, "x": 0.585, "y": 1 },
  2698. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 3, "x": 1, "y": 1 },
  2701. { "time": 3.1, "x": 0.585, "y": 1, "curve": "stepped" },
  2702. { "time": 3.2, "x": 0.585, "y": 1 },
  2703. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 4, "x": 1, "y": 1 },
  2705. { "time": 4.1, "x": 0.585, "y": 1, "curve": "stepped" },
  2706. { "time": 4.2, "x": 0.585, "y": 1 },
  2707. { "time": 4.3333, "x": 1, "y": 1 }
  2708. ]
  2709. },
  2710. "bone56": {
  2711. "rotate": [
  2712. { "time": 0, "angle": 0, "curve": "stepped" },
  2713. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2714. { "time": 1, "angle": 0, "curve": "stepped" },
  2715. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2716. { "time": 2, "angle": 0, "curve": "stepped" },
  2717. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2718. { "time": 3, "angle": 0, "curve": "stepped" },
  2719. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2720. { "time": 4, "angle": 0, "curve": "stepped" },
  2721. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2722. { "time": 5, "angle": 0 }
  2723. ],
  2724. "translate": [
  2725. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2729. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 5, "x": 0, "y": 0 }
  2736. ],
  2737. "scale": [
  2738. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2739. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2740. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2741. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 5, "x": 1, "y": 1 }
  2749. ]
  2750. },
  2751. "bone57": {
  2752. "rotate": [
  2753. { "time": 0, "angle": 0, "curve": "stepped" },
  2754. { "time": 1, "angle": 0, "curve": "stepped" },
  2755. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2756. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2757. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2758. { "time": 2, "angle": 0, "curve": "stepped" },
  2759. { "time": 3, "angle": 0, "curve": "stepped" },
  2760. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2761. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2762. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2763. { "time": 4, "angle": 0, "curve": "stepped" },
  2764. { "time": 4.1, "angle": 0, "curve": "stepped" },
  2765. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2766. { "time": 4.3333, "angle": 0 }
  2767. ],
  2768. "translate": [
  2769. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 1, "x": 0, "y": 0 },
  2771. { "time": 1.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  2772. { "time": 1.2, "x": -1.21, "y": -0.09 },
  2773. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2774. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2775. { "time": 3, "x": 0, "y": 0 },
  2776. { "time": 3.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  2777. { "time": 3.2, "x": -1.21, "y": -0.09 },
  2778. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2779. { "time": 4, "x": 0, "y": 0 },
  2780. { "time": 4.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  2781. { "time": 4.2, "x": -1.21, "y": -0.09 },
  2782. { "time": 4.3333, "x": 0, "y": 0 }
  2783. ],
  2784. "scale": [
  2785. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2787. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2789. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2790. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2791. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2792. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2793. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2794. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2795. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  2797. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2798. { "time": 4.3333, "x": 1, "y": 1 }
  2799. ]
  2800. },
  2801. "bone58": {
  2802. "rotate": [
  2803. { "time": 0, "angle": 0, "curve": "stepped" },
  2804. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2805. { "time": 1, "angle": 0, "curve": "stepped" },
  2806. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2807. { "time": 2, "angle": 0, "curve": "stepped" },
  2808. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2809. { "time": 3, "angle": 0, "curve": "stepped" },
  2810. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2811. { "time": 4, "angle": 0, "curve": "stepped" },
  2812. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2813. { "time": 5, "angle": 0 }
  2814. ],
  2815. "translate": [
  2816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2820. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2824. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2825. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2826. { "time": 5, "x": 0, "y": 0 }
  2827. ],
  2828. "scale": [
  2829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2836. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2837. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2838. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2839. { "time": 5, "x": 1, "y": 1 }
  2840. ]
  2841. },
  2842. "bone59": {
  2843. "rotate": [
  2844. { "time": 0, "angle": 0, "curve": "stepped" },
  2845. { "time": 1.1667, "angle": 0 },
  2846. { "time": 1.8667, "angle": 1.2, "curve": "stepped" },
  2847. { "time": 2.0333, "angle": 1.2 },
  2848. { "time": 2.0667, "angle": 0 },
  2849. { "time": 2.7667, "angle": 1.2, "curve": "stepped" },
  2850. { "time": 2.8333, "angle": 1.2 },
  2851. { "time": 2.8667, "angle": 0 },
  2852. { "time": 3.5667, "angle": 1.2 }
  2853. ],
  2854. "translate": [
  2855. { "time": 0, "x": 25.65, "y": 5.4, "curve": "stepped" },
  2856. { "time": 1.1667, "x": 25.65, "y": 5.4 },
  2857. { "time": 1.4667, "x": -2.17, "y": 0.87 },
  2858. { "time": 1.8667, "x": -31.28, "y": 7.84, "curve": "stepped" },
  2859. { "time": 2.0333, "x": -31.28, "y": 7.84 },
  2860. { "time": 2.0667, "x": 25.65, "y": 5.4 },
  2861. { "time": 2.3667, "x": -2.17, "y": 0.87 },
  2862. { "time": 2.7667, "x": -26.97, "y": 32.94, "curve": "stepped" },
  2863. { "time": 2.8333, "x": -26.97, "y": 32.94 },
  2864. { "time": 2.8667, "x": 25.65, "y": 5.4 },
  2865. { "time": 3.1667, "x": -2.17, "y": 0.87 },
  2866. { "time": 3.5667, "x": -26.97, "y": 32.94 }
  2867. ],
  2868. "scale": [
  2869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2877. { "time": 3.5667, "x": 1, "y": 1 }
  2878. ],
  2879. "shear": [
  2880. { "time": 1.8667, "x": 1.2, "y": 0, "curve": "stepped" },
  2881. { "time": 2.0333, "x": 1.2, "y": 0, "curve": "stepped" },
  2882. { "time": 2.7667, "x": 1.2, "y": 0, "curve": "stepped" },
  2883. { "time": 2.8333, "x": 1.2, "y": 0, "curve": "stepped" },
  2884. { "time": 3.5667, "x": 1.2, "y": 0 }
  2885. ]
  2886. },
  2887. "bone60": {
  2888. "rotate": [
  2889. { "time": 0, "angle": 0, "curve": "stepped" },
  2890. { "time": 0.7, "angle": 0 },
  2891. { "time": 1.3333, "angle": 1.2, "curve": "stepped" },
  2892. { "time": 1.5667, "angle": 1.2 },
  2893. { "time": 1.6, "angle": 0 },
  2894. { "time": 2.2333, "angle": 1.2, "curve": "stepped" },
  2895. { "time": 2.4333, "angle": 1.2 },
  2896. { "time": 2.5, "angle": 0 },
  2897. { "time": 3.2, "angle": 1.2, "curve": "stepped" },
  2898. { "time": 3.2333, "angle": 1.2 },
  2899. { "time": 3.3, "angle": 0 },
  2900. { "time": 4, "angle": 1.2 }
  2901. ],
  2902. "translate": [
  2903. { "time": 0, "x": -48.26, "y": -6.24, "curve": "stepped" },
  2904. { "time": 0.7, "x": -48.26, "y": -6.24 },
  2905. { "time": 0.9667, "x": 12.54, "y": -6.97 },
  2906. { "time": 1.3333, "x": 35.3, "y": 12.57, "curve": "stepped" },
  2907. { "time": 1.5667, "x": 35.3, "y": 12.57 },
  2908. { "time": 1.6, "x": -48.26, "y": -6.24 },
  2909. { "time": 1.8667, "x": 12.54, "y": -6.97 },
  2910. { "time": 2.2333, "x": 35.3, "y": 12.57, "curve": "stepped" },
  2911. { "time": 2.4333, "x": 35.3, "y": 12.57 },
  2912. { "time": 2.5, "x": -48.26, "y": -6.24 },
  2913. { "time": 2.8, "x": 12.54, "y": -6.97 },
  2914. { "time": 3.2, "x": 35.3, "y": 12.57, "curve": "stepped" },
  2915. { "time": 3.2333, "x": 35.3, "y": 12.57 },
  2916. { "time": 3.3, "x": -48.26, "y": -6.24 },
  2917. { "time": 3.6, "x": 12.54, "y": -6.97 },
  2918. { "time": 4, "x": 35.3, "y": 12.57 }
  2919. ],
  2920. "scale": [
  2921. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2922. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2923. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2925. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2926. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  2927. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2928. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2929. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2930. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2931. { "time": 3.3, "x": 1, "y": 1, "curve": "stepped" },
  2932. { "time": 4, "x": 1, "y": 1 }
  2933. ],
  2934. "shear": [
  2935. { "time": 1.3333, "x": 1.2, "y": 0, "curve": "stepped" },
  2936. { "time": 1.5667, "x": 1.2, "y": 0, "curve": "stepped" },
  2937. { "time": 2.2333, "x": 1.2, "y": 0, "curve": "stepped" },
  2938. { "time": 2.4333, "x": 1.2, "y": 0, "curve": "stepped" },
  2939. { "time": 3.2, "x": 1.2, "y": 0, "curve": "stepped" },
  2940. { "time": 3.2333, "x": 1.2, "y": 0, "curve": "stepped" },
  2941. { "time": 4, "x": 1.2, "y": 0 }
  2942. ]
  2943. },
  2944. "bone61": {
  2945. "rotate": [
  2946. { "time": 0, "angle": 0, "curve": "stepped" },
  2947. { "time": 1.3333, "angle": 0 },
  2948. { "time": 2.0667, "angle": 1.2, "curve": "stepped" },
  2949. { "time": 3.1667, "angle": 1.2 },
  2950. { "time": 3.2, "angle": 0 },
  2951. { "time": 3.9333, "angle": 1.2 },
  2952. { "time": 4, "angle": 0, "curve": "stepped" },
  2953. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2954. { "time": 5, "angle": 0 }
  2955. ],
  2956. "translate": [
  2957. { "time": 0, "x": 43.69, "y": -37.66, "curve": "stepped" },
  2958. { "time": 1.3333, "x": 43.69, "y": -37.66 },
  2959. { "time": 1.6667, "x": 13.96, "y": 6.14 },
  2960. { "time": 2.0667, "x": 16.68, "y": 67.27, "curve": "stepped" },
  2961. { "time": 3.1667, "x": 16.68, "y": 67.27 },
  2962. { "time": 3.2, "x": 43.69, "y": -37.66 },
  2963. { "time": 3.5333, "x": 13.96, "y": 6.14 },
  2964. { "time": 3.9333, "x": -24.36, "y": 34.1 },
  2965. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2966. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2967. { "time": 5, "x": 0, "y": 0 }
  2968. ],
  2969. "scale": [
  2970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2971. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2972. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2973. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  2974. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  2976. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2977. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2978. { "time": 5, "x": 1, "y": 1 }
  2979. ],
  2980. "shear": [
  2981. { "time": 2.0667, "x": 1.2, "y": 0, "curve": "stepped" },
  2982. { "time": 3.1667, "x": 1.2, "y": 0, "curve": "stepped" },
  2983. { "time": 3.9333, "x": 1.2, "y": 0 }
  2984. ]
  2985. },
  2986. "bone62": {
  2987. "rotate": [
  2988. { "time": 0, "angle": 0, "curve": "stepped" },
  2989. { "time": 0.8, "angle": 0 },
  2990. { "time": 1.5, "angle": 1.2, "curve": "stepped" },
  2991. { "time": 1.6667, "angle": 1.2 },
  2992. { "time": 1.7, "angle": 0 },
  2993. { "time": 2.4, "angle": 1.2 }
  2994. ],
  2995. "translate": [
  2996. { "time": 0, "x": -41.86, "y": -54.54, "curve": "stepped" },
  2997. { "time": 0.8, "x": -41.86, "y": -54.54 },
  2998. { "time": 1.1, "x": -10.3, "y": -41.18 },
  2999. { "time": 1.5, "x": 15.78, "y": 1.24, "curve": "stepped" },
  3000. { "time": 1.6667, "x": 15.78, "y": 1.24 },
  3001. { "time": 1.7, "x": -41.86, "y": -54.54 },
  3002. { "time": 2, "x": -10.3, "y": -41.18 },
  3003. { "time": 2.4, "x": 15.78, "y": 1.24 }
  3004. ],
  3005. "scale": [
  3006. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3007. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  3008. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3009. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3010. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3011. { "time": 2.4, "x": 1, "y": 1 }
  3012. ],
  3013. "shear": [
  3014. { "time": 1.5, "x": 1.2, "y": 0, "curve": "stepped" },
  3015. { "time": 1.6667, "x": 1.2, "y": 0, "curve": "stepped" },
  3016. { "time": 2.4, "x": 1.2, "y": 0 }
  3017. ]
  3018. }
  3019. },
  3020. "deform": {
  3021. "default": {
  3022. "toufa10": {
  3023. "toufa10": [
  3024. { "time": 0 },
  3025. {
  3026. "time": 0.5,
  3027. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  3028. },
  3029. { "time": 1 },
  3030. {
  3031. "time": 1.5,
  3032. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  3033. },
  3034. { "time": 2 },
  3035. {
  3036. "time": 2.5,
  3037. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  3038. },
  3039. { "time": 3 },
  3040. {
  3041. "time": 3.5,
  3042. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  3043. },
  3044. { "time": 4 },
  3045. {
  3046. "time": 4.5,
  3047. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  3048. },
  3049. { "time": 5 }
  3050. ]
  3051. }
  3052. }
  3053. }
  3054. },
  3055. "walk1": {
  3056. "slots": {
  3057. "biyan": {
  3058. "attachment": [
  3059. { "time": 1.0667, "name": "biyan" },
  3060. { "time": 1.1333, "name": null }
  3061. ]
  3062. },
  3063. "fuhao1": {
  3064. "color": [
  3065. { "time": 0, "color": "ffffff00" }
  3066. ]
  3067. },
  3068. "fuhao7": {
  3069. "color": [
  3070. { "time": 0, "color": "ffffff00" }
  3071. ]
  3072. },
  3073. "fuhao14": {
  3074. "color": [
  3075. { "time": 0, "color": "ffffff00" }
  3076. ]
  3077. },
  3078. "fuhao16": {
  3079. "color": [
  3080. { "time": 0, "color": "ffffff00" }
  3081. ]
  3082. },
  3083. "youyan": {
  3084. "attachment": [
  3085. { "time": 1.0667, "name": null },
  3086. { "time": 1.1333, "name": "youyan" }
  3087. ]
  3088. },
  3089. "zuoyan": {
  3090. "attachment": [
  3091. { "time": 1.0667, "name": null },
  3092. { "time": 1.1333, "name": "zuoyan" }
  3093. ]
  3094. }
  3095. },
  3096. "bones": {
  3097. "root": {
  3098. "rotate": [
  3099. { "time": 0, "angle": 0 }
  3100. ],
  3101. "translate": [
  3102. { "time": 0, "x": 0, "y": 0 }
  3103. ],
  3104. "scale": [
  3105. { "time": 0, "x": 0.65, "y": 0.65 }
  3106. ]
  3107. },
  3108. "bone": {
  3109. "rotate": [
  3110. { "time": 0, "angle": 0 }
  3111. ],
  3112. "translate": [
  3113. { "time": 0, "x": 0, "y": 2.18 },
  3114. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 0.2667, "x": 0, "y": 0 },
  3116. { "time": 0.5, "x": 0, "y": 2.18 },
  3117. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3118. { "time": 0.7667, "x": 0, "y": 0 },
  3119. { "time": 1, "x": 0, "y": 2.18 },
  3120. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3121. { "time": 1.2667, "x": 0, "y": 0 },
  3122. { "time": 1.5, "x": 0, "y": 2.18 },
  3123. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3124. { "time": 1.7667, "x": 0, "y": 0 },
  3125. { "time": 2, "x": 0, "y": 2.18 }
  3126. ],
  3127. "scale": [
  3128. { "time": 0, "x": 1, "y": 1 }
  3129. ]
  3130. },
  3131. "bone2": {
  3132. "rotate": [
  3133. {
  3134. "time": 0,
  3135. "angle": -1.69,
  3136. "curve": [ 0.25, 0, 0.75, 1 ]
  3137. },
  3138. {
  3139. "time": 0.5,
  3140. "angle": 0,
  3141. "curve": [ 0.25, 0, 0.75, 1 ]
  3142. },
  3143. {
  3144. "time": 1,
  3145. "angle": -1.69,
  3146. "curve": [ 0.25, 0, 0.75, 1 ]
  3147. },
  3148. {
  3149. "time": 1.5,
  3150. "angle": 0,
  3151. "curve": [ 0.25, 0, 0.75, 1 ]
  3152. },
  3153. { "time": 2, "angle": -1.69 }
  3154. ]
  3155. },
  3156. "bone3": {
  3157. "rotate": [
  3158. { "time": 0, "angle": 1.61, "curve": "stepped" },
  3159. { "time": 1, "angle": 1.61, "curve": "stepped" },
  3160. { "time": 2, "angle": 1.61 }
  3161. ],
  3162. "translate": [
  3163. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3164. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3165. { "time": 2, "x": 0, "y": 0 }
  3166. ],
  3167. "scale": [
  3168. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3169. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 2, "x": 1, "y": 1 }
  3171. ]
  3172. },
  3173. "bone4": {
  3174. "rotate": [
  3175. { "time": 0, "angle": 0, "curve": "stepped" },
  3176. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3177. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3178. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3179. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3180. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3181. { "time": 1, "angle": 0, "curve": "stepped" },
  3182. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3183. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3184. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3185. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3186. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3187. { "time": 2, "angle": 0 }
  3188. ],
  3189. "translate": [
  3190. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3191. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3192. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3193. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3194. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3195. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3196. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3197. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3198. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3199. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3200. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3201. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3202. { "time": 2, "x": 0, "y": 0 }
  3203. ],
  3204. "scale": [
  3205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3206. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3207. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3208. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3209. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3210. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3211. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 2, "x": 1, "y": 1 }
  3218. ]
  3219. },
  3220. "bone5": {
  3221. "rotate": [
  3222. { "time": 0, "angle": -18.5 },
  3223. { "time": 0.1667, "angle": -8.03 },
  3224. { "time": 0.3333, "angle": 7.5 },
  3225. { "time": 0.5, "angle": 22.39 },
  3226. { "time": 0.6667, "angle": 13.32 },
  3227. { "time": 0.8333, "angle": -6.02 },
  3228. { "time": 1, "angle": -18.5 },
  3229. { "time": 1.1667, "angle": -8.03 },
  3230. { "time": 1.3333, "angle": 7.5 },
  3231. { "time": 1.5, "angle": 22.39 },
  3232. { "time": 1.6667, "angle": 8.19 },
  3233. { "time": 1.8333, "angle": -6.02 },
  3234. { "time": 2, "angle": -18.5 }
  3235. ],
  3236. "translate": [
  3237. { "time": 0, "x": -0.82, "y": -1.81 },
  3238. { "time": 0.1667, "x": 2.67, "y": -0.26 },
  3239. { "time": 0.3333, "x": 12.94, "y": -2.35 },
  3240. { "time": 0.5, "x": 19.17, "y": 0.63 },
  3241. { "time": 0.6667, "x": 12.78, "y": 0.42 },
  3242. { "time": 0.8333, "x": 5.18, "y": 2.25 },
  3243. { "time": 1, "x": -0.82, "y": -1.81 },
  3244. { "time": 1.1667, "x": 2.67, "y": -0.26 },
  3245. { "time": 1.3333, "x": 12.94, "y": -2.35 },
  3246. { "time": 1.5, "x": 19.17, "y": 0.63 },
  3247. { "time": 1.6667, "x": 12.78, "y": 0.42 },
  3248. { "time": 1.8333, "x": 5.18, "y": 2.25 },
  3249. { "time": 2, "x": -0.82, "y": -1.81 }
  3250. ],
  3251. "scale": [
  3252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3253. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3254. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3255. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3256. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3257. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 2, "x": 1, "y": 1 }
  3265. ]
  3266. },
  3267. "bone6": {
  3268. "rotate": [
  3269. { "time": 0, "angle": 0 },
  3270. { "time": 0.1667, "angle": 14.37 },
  3271. { "time": 0.3333, "angle": 1.27 },
  3272. { "time": 0.5, "angle": 27.15 },
  3273. { "time": 0.6667, "angle": 44.05 },
  3274. { "time": 0.8333, "angle": 29.43 },
  3275. { "time": 1, "angle": 0 },
  3276. { "time": 1.1667, "angle": 14.37 },
  3277. { "time": 1.3333, "angle": 1.27 },
  3278. { "time": 1.5, "angle": 27.15 },
  3279. { "time": 1.6667, "angle": 44.05 },
  3280. { "time": 1.8333, "angle": 29.43 },
  3281. { "time": 2, "angle": 0 }
  3282. ],
  3283. "translate": [
  3284. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3285. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3286. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3287. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3288. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3289. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3291. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3294. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3295. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3296. { "time": 2, "x": 0, "y": 0 }
  3297. ],
  3298. "scale": [
  3299. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3303. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3308. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 2, "x": 1, "y": 1 }
  3312. ]
  3313. },
  3314. "bone7": {
  3315. "rotate": [
  3316. { "time": 0, "angle": 0 },
  3317. { "time": 0.1667, "angle": -3.65 },
  3318. { "time": 0.3333, "angle": -13.75 },
  3319. { "time": 0.5, "angle": 0 },
  3320. { "time": 0.6667, "angle": -17.88 },
  3321. { "time": 0.8333, "angle": 0 },
  3322. { "time": 1, "angle": -9.16 },
  3323. { "time": 1.1667, "angle": -3.65 },
  3324. { "time": 1.3333, "angle": -13.75 },
  3325. { "time": 1.5, "angle": 0 },
  3326. { "time": 1.6667, "angle": -17.88 },
  3327. { "time": 1.8333, "angle": 0 },
  3328. { "time": 2, "angle": -9.16 }
  3329. ],
  3330. "translate": [
  3331. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3332. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3333. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3334. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3335. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3336. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3337. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3338. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3339. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3340. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 2, "x": 0, "y": 0 }
  3344. ],
  3345. "scale": [
  3346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3347. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3348. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3349. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3350. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3351. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3358. { "time": 2, "x": 1, "y": 1 }
  3359. ]
  3360. },
  3361. "bone8": {
  3362. "rotate": [
  3363. { "time": 0, "angle": 22.51 },
  3364. { "time": 0.1667, "angle": 5.96 },
  3365. { "time": 0.3333, "angle": -10.59 },
  3366. { "time": 0.5, "angle": -27.14 },
  3367. { "time": 0.6667, "angle": -10.59 },
  3368. { "time": 0.8333, "angle": 9.2 },
  3369. { "time": 1, "angle": 22.51 },
  3370. { "time": 1.1667, "angle": 5.96 },
  3371. { "time": 1.3333, "angle": -10.59 },
  3372. { "time": 1.5, "angle": -27.14 },
  3373. { "time": 1.6667, "angle": -10.59 },
  3374. { "time": 1.8333, "angle": 9.2 },
  3375. { "time": 2, "angle": 22.51 }
  3376. ],
  3377. "translate": [
  3378. { "time": 0, "x": 0, "y": 0 },
  3379. { "time": 0.1667, "x": -6.7, "y": -0.56 },
  3380. { "time": 0.3333, "x": -15.71, "y": -0.36 },
  3381. { "time": 0.5, "x": -17.88, "y": -0.93 },
  3382. { "time": 0.6667, "x": -14.78, "y": -0.45 },
  3383. { "time": 0.8333, "x": -5.79, "y": -0.38 },
  3384. { "time": 1, "x": 0, "y": 0 },
  3385. { "time": 1.1667, "x": -6.7, "y": -0.56 },
  3386. { "time": 1.3333, "x": -15.71, "y": -0.36 },
  3387. { "time": 1.5, "x": -17.88, "y": -0.93 },
  3388. { "time": 1.6667, "x": -14.78, "y": -0.45 },
  3389. { "time": 1.8333, "x": -5.79, "y": -0.38 },
  3390. { "time": 2, "x": 0, "y": 0 }
  3391. ],
  3392. "scale": [
  3393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3394. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3395. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3396. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3397. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 2, "x": 1, "y": 1 }
  3406. ]
  3407. },
  3408. "bone9": {
  3409. "rotate": [
  3410. { "time": 0, "angle": 15.57 },
  3411. { "time": 0.1667, "angle": 39.42 },
  3412. { "time": 0.3333, "angle": 37.74 },
  3413. { "time": 0.5, "angle": 4.94 },
  3414. { "time": 0.6667, "angle": 8.49 },
  3415. { "time": 0.8333, "angle": 1.81 },
  3416. { "time": 1, "angle": 15.57 },
  3417. { "time": 1.1667, "angle": 39.42 },
  3418. { "time": 1.3333, "angle": 37.74 },
  3419. { "time": 1.5, "angle": 4.94 },
  3420. { "time": 1.6667, "angle": 8.49 },
  3421. { "time": 1.8333, "angle": 1.81 },
  3422. { "time": 2, "angle": 15.57 }
  3423. ],
  3424. "translate": [
  3425. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3427. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 2, "x": 0, "y": 0 }
  3438. ],
  3439. "scale": [
  3440. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3442. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3444. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3445. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3446. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3451. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3452. { "time": 2, "x": 1, "y": 1 }
  3453. ]
  3454. },
  3455. "bone10": {
  3456. "rotate": [
  3457. { "time": 0, "angle": 0, "curve": "stepped" },
  3458. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3459. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3460. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3461. { "time": 0.6667, "angle": 0 },
  3462. { "time": 0.8333, "angle": 1.8 },
  3463. { "time": 1, "angle": 0, "curve": "stepped" },
  3464. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3465. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3466. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3467. { "time": 1.6667, "angle": 0 },
  3468. { "time": 1.8333, "angle": 1.8 },
  3469. { "time": 2, "angle": 0 }
  3470. ],
  3471. "translate": [
  3472. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3475. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3476. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 2, "x": 0, "y": 0 }
  3485. ],
  3486. "scale": [
  3487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3488. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3490. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3491. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3492. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3493. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3499. { "time": 2, "x": 1, "y": 1 }
  3500. ]
  3501. },
  3502. "bone11": {
  3503. "rotate": [
  3504. {
  3505. "time": 0,
  3506. "angle": -314.13,
  3507. "curve": [ 0.25, 0, 0.75, 1 ]
  3508. },
  3509. {
  3510. "time": 0.5,
  3511. "angle": 12.05,
  3512. "curve": [ 0.25, 0, 0.75, 1 ]
  3513. },
  3514. {
  3515. "time": 1,
  3516. "angle": -314.13,
  3517. "curve": [ 0.25, 0, 0.75, 1 ]
  3518. },
  3519. {
  3520. "time": 1.5,
  3521. "angle": 12.05,
  3522. "curve": [ 0.25, 0, 0.75, 1 ]
  3523. },
  3524. { "time": 2, "angle": -314.13 }
  3525. ],
  3526. "translate": [
  3527. {
  3528. "time": 0,
  3529. "x": -3.85,
  3530. "y": -15.51,
  3531. "curve": [ 0.25, 0, 0.75, 1 ]
  3532. },
  3533. {
  3534. "time": 0.5,
  3535. "x": -0.05,
  3536. "y": -0.74,
  3537. "curve": [ 0.25, 0, 0.75, 1 ]
  3538. },
  3539. {
  3540. "time": 1,
  3541. "x": -3.85,
  3542. "y": -15.51,
  3543. "curve": [ 0.25, 0, 0.75, 1 ]
  3544. },
  3545. {
  3546. "time": 1.5,
  3547. "x": -0.05,
  3548. "y": -0.74,
  3549. "curve": [ 0.25, 0, 0.75, 1 ]
  3550. },
  3551. { "time": 2, "x": -3.85, "y": -15.51 }
  3552. ],
  3553. "scale": [
  3554. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3555. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3556. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 2, "x": 1, "y": 1 }
  3559. ]
  3560. },
  3561. "bone12": {
  3562. "rotate": [
  3563. {
  3564. "time": 0,
  3565. "angle": -28.67,
  3566. "curve": [ 0.25, 0, 0.75, 1 ]
  3567. },
  3568. {
  3569. "time": 0.5,
  3570. "angle": -10.22,
  3571. "curve": [ 0.25, 0, 0.75, 1 ]
  3572. },
  3573. {
  3574. "time": 1,
  3575. "angle": -28.67,
  3576. "curve": [ 0.25, 0, 0.75, 1 ]
  3577. },
  3578. {
  3579. "time": 1.5,
  3580. "angle": -10.22,
  3581. "curve": [ 0.25, 0, 0.75, 1 ]
  3582. },
  3583. { "time": 2, "angle": -28.67 }
  3584. ],
  3585. "translate": [
  3586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 2, "x": 0, "y": 0 }
  3591. ],
  3592. "scale": [
  3593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 2, "x": 1, "y": 1 }
  3598. ]
  3599. },
  3600. "bone13": {
  3601. "rotate": [
  3602. { "time": 0, "angle": 0 },
  3603. { "time": 0.5, "angle": -18.7 },
  3604. { "time": 1, "angle": 0 },
  3605. { "time": 1.5, "angle": -18.7 },
  3606. { "time": 2, "angle": 0 }
  3607. ],
  3608. "translate": [
  3609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3611. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3612. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3613. { "time": 2, "x": 0, "y": 0 }
  3614. ],
  3615. "scale": [
  3616. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3617. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3618. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3619. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3620. { "time": 2, "x": 1, "y": 1 }
  3621. ]
  3622. },
  3623. "bone14": {
  3624. "rotate": [
  3625. { "time": 0, "angle": -70.19 },
  3626. { "time": 0.1667, "angle": -51.72 },
  3627. { "time": 0.3333, "angle": -28.9 },
  3628. { "time": 0.5, "angle": -10.59 },
  3629. { "time": 0.6667, "angle": -28.9 },
  3630. { "time": 0.8333, "angle": -51.72 },
  3631. { "time": 1, "angle": -70.19 },
  3632. { "time": 1.1667, "angle": -51.72 },
  3633. { "time": 1.3333, "angle": -28.9 },
  3634. { "time": 1.5, "angle": -10.59 },
  3635. { "time": 1.6667, "angle": -28.9 },
  3636. { "time": 1.8333, "angle": -51.72 },
  3637. { "time": 2, "angle": -70.19 }
  3638. ],
  3639. "translate": [
  3640. { "time": 0, "x": -5.94, "y": 7.98 },
  3641. { "time": 0.1667, "x": -4.57, "y": 6.49 },
  3642. { "time": 0.3333, "x": -3.21, "y": 5 },
  3643. { "time": 0.5, "x": -1.85, "y": 3.51 },
  3644. { "time": 0.6667, "x": -3.21, "y": 5 },
  3645. { "time": 0.8333, "x": -4.57, "y": 6.49 },
  3646. { "time": 1, "x": -5.94, "y": 7.98 },
  3647. { "time": 1.1667, "x": -4.57, "y": 6.49 },
  3648. { "time": 1.3333, "x": -3.21, "y": 5 },
  3649. { "time": 1.5, "x": -1.85, "y": 3.51 },
  3650. { "time": 1.6667, "x": -3.21, "y": 5 },
  3651. { "time": 1.8333, "x": -4.57, "y": 6.49 },
  3652. { "time": 2, "x": -5.94, "y": 7.98 }
  3653. ],
  3654. "scale": [
  3655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3656. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3657. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3658. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3659. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 2, "x": 1, "y": 1 }
  3668. ]
  3669. },
  3670. "bone15": {
  3671. "rotate": [
  3672. { "time": 0, "angle": -39.25 },
  3673. { "time": 0.1667, "angle": -19.91 },
  3674. { "time": 0.3333, "angle": -12.55 },
  3675. { "time": 0.5, "angle": -19.63 },
  3676. { "time": 0.6667, "angle": -12.55 },
  3677. { "time": 0.8333, "angle": -19.91 },
  3678. { "time": 1, "angle": -39.25 },
  3679. { "time": 1.1667, "angle": -19.91 },
  3680. { "time": 1.3333, "angle": -12.55 },
  3681. { "time": 1.5, "angle": -19.63 },
  3682. { "time": 1.6667, "angle": -12.55 },
  3683. { "time": 1.8333, "angle": -19.91 },
  3684. { "time": 2, "angle": -39.25 }
  3685. ],
  3686. "translate": [
  3687. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3688. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3689. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3691. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3692. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3693. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3694. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3695. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3696. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3697. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3698. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3699. { "time": 2, "x": 0, "y": 0 }
  3700. ],
  3701. "scale": [
  3702. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3703. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3704. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3705. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3706. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3707. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3709. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3710. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3711. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3712. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3713. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3714. { "time": 2, "x": 1, "y": 1 }
  3715. ]
  3716. },
  3717. "bone16": {
  3718. "rotate": [
  3719. { "time": 0, "angle": 4.04 },
  3720. { "time": 0.1667, "angle": -12.68 },
  3721. { "time": 0.3333, "angle": -9.89 },
  3722. { "time": 0.5, "angle": -7.11 },
  3723. { "time": 0.6667, "angle": -9.89 },
  3724. { "time": 0.8333, "angle": -12.68 },
  3725. { "time": 1, "angle": 4.04 },
  3726. { "time": 1.1667, "angle": -12.68 },
  3727. { "time": 1.3333, "angle": -9.89 },
  3728. { "time": 1.5, "angle": -7.11 },
  3729. { "time": 1.6667, "angle": -9.89 },
  3730. { "time": 1.8333, "angle": -12.68 },
  3731. { "time": 2, "angle": 4.04 }
  3732. ],
  3733. "translate": [
  3734. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3735. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3736. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3737. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3738. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3739. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3741. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3742. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3743. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3744. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3745. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3746. { "time": 2, "x": 0, "y": 0 }
  3747. ],
  3748. "scale": [
  3749. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3750. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3751. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3752. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3753. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3755. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3756. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3757. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3758. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3760. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 2, "x": 1, "y": 1 }
  3762. ]
  3763. },
  3764. "bone17": {
  3765. "rotate": [
  3766. { "time": 0, "angle": 0 },
  3767. { "time": 0.5, "angle": -7.58 },
  3768. { "time": 1, "angle": 0 },
  3769. { "time": 1.5, "angle": -7.58 },
  3770. { "time": 2, "angle": 0 }
  3771. ],
  3772. "translate": [
  3773. { "time": 0, "x": 0, "y": 0 },
  3774. { "time": 0.5, "x": -0.14, "y": -0.41 },
  3775. { "time": 1, "x": 0, "y": 0 },
  3776. { "time": 1.5, "x": -0.14, "y": -0.41 },
  3777. { "time": 2, "x": 0, "y": 0 }
  3778. ],
  3779. "scale": [
  3780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3781. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3783. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3784. { "time": 2, "x": 1, "y": 1 }
  3785. ]
  3786. },
  3787. "bone18": {
  3788. "rotate": [
  3789. { "time": 0, "angle": 0 },
  3790. { "time": 0.5, "angle": -0.08 },
  3791. { "time": 1, "angle": 0 },
  3792. { "time": 1.5, "angle": -0.08 },
  3793. { "time": 2, "angle": 0 }
  3794. ],
  3795. "translate": [
  3796. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3797. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3798. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3799. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3800. { "time": 2, "x": 0, "y": 0 }
  3801. ],
  3802. "scale": [
  3803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3806. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3807. { "time": 2, "x": 1, "y": 1 }
  3808. ]
  3809. },
  3810. "bone19": {
  3811. "rotate": [
  3812. { "time": 0, "angle": 0 },
  3813. { "time": 0.5, "angle": -13.58 },
  3814. { "time": 1, "angle": 0 },
  3815. { "time": 1.5, "angle": -13.58 },
  3816. { "time": 2, "angle": 0 }
  3817. ],
  3818. "translate": [
  3819. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3820. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3822. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3823. { "time": 2, "x": 0, "y": 0 }
  3824. ],
  3825. "scale": [
  3826. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3827. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3828. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3829. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3830. { "time": 2, "x": 1, "y": 1 }
  3831. ]
  3832. },
  3833. "bone20": {
  3834. "rotate": [
  3835. { "time": 0, "angle": 7.69 },
  3836. { "time": 0.5, "angle": 5.81 },
  3837. { "time": 1, "angle": 7.69 },
  3838. { "time": 1.5, "angle": 5.81 },
  3839. { "time": 2, "angle": 7.69 }
  3840. ],
  3841. "translate": [
  3842. { "time": 0, "x": -1.35, "y": 3.54 },
  3843. { "time": 0.5, "x": -0.63, "y": 0.76 },
  3844. { "time": 1, "x": -1.35, "y": 3.54 },
  3845. { "time": 1.5, "x": -0.63, "y": 0.76 },
  3846. { "time": 2, "x": -1.35, "y": 3.54 }
  3847. ],
  3848. "scale": [
  3849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3850. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3851. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 2, "x": 1, "y": 1 }
  3854. ]
  3855. },
  3856. "bone21": {
  3857. "rotate": [
  3858. { "time": 0, "angle": 0 },
  3859. { "time": 0.5, "angle": 5.55 },
  3860. { "time": 1, "angle": 0 },
  3861. { "time": 1.5, "angle": 5.55 },
  3862. { "time": 2, "angle": 0 }
  3863. ],
  3864. "translate": [
  3865. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3866. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3867. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3868. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3869. { "time": 2, "x": 0, "y": 0 }
  3870. ],
  3871. "scale": [
  3872. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3873. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3874. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3875. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3876. { "time": 2, "x": 1, "y": 1 }
  3877. ]
  3878. },
  3879. "bone22": {
  3880. "rotate": [
  3881. { "time": 0, "angle": 0 },
  3882. { "time": 0.5, "angle": 9.29 },
  3883. { "time": 1, "angle": 0 },
  3884. { "time": 1.5, "angle": 9.29 },
  3885. { "time": 2, "angle": 0 }
  3886. ],
  3887. "translate": [
  3888. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3889. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3890. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 2, "x": 0, "y": 0 }
  3893. ],
  3894. "scale": [
  3895. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3896. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3897. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3898. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3899. { "time": 2, "x": 1, "y": 1 }
  3900. ]
  3901. },
  3902. "bone23": {
  3903. "rotate": [
  3904. { "time": 0, "angle": 0, "curve": "stepped" },
  3905. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3906. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3907. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3908. { "time": 1, "angle": 0, "curve": "stepped" },
  3909. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  3910. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3911. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3912. { "time": 2, "angle": 0 }
  3913. ],
  3914. "translate": [
  3915. { "time": 0, "x": 1.63, "y": 4.76 },
  3916. { "time": 0.5, "x": 1.86, "y": 1.79 },
  3917. { "time": 1, "x": 1.63, "y": 4.76 },
  3918. { "time": 1.5, "x": 1.86, "y": 1.79 },
  3919. { "time": 2, "x": 1.63, "y": 4.76 }
  3920. ],
  3921. "scale": [
  3922. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3929. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 2, "x": 1, "y": 1 }
  3931. ]
  3932. },
  3933. "bone24": {
  3934. "rotate": [
  3935. { "time": 0, "angle": 0 },
  3936. { "time": 0.5, "angle": -0.94 },
  3937. { "time": 1, "angle": 0 },
  3938. { "time": 1.5, "angle": -0.94 },
  3939. { "time": 2, "angle": 0 }
  3940. ],
  3941. "translate": [
  3942. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3943. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3944. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3945. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 2, "x": 0, "y": 0 }
  3947. ],
  3948. "scale": [
  3949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3952. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 2, "x": 1, "y": 1 }
  3954. ]
  3955. },
  3956. "bone25": {
  3957. "rotate": [
  3958. { "time": 0, "angle": 0 },
  3959. { "time": 0.5, "angle": -5.8 },
  3960. { "time": 1, "angle": 0 },
  3961. { "time": 1.5, "angle": -5.8 },
  3962. { "time": 2, "angle": 0 }
  3963. ],
  3964. "translate": [
  3965. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3966. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3967. { "time": 2, "x": 0, "y": 0 }
  3968. ],
  3969. "scale": [
  3970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 2, "x": 1, "y": 1 }
  3973. ]
  3974. },
  3975. "bone26": {
  3976. "rotate": [
  3977. { "time": 0, "angle": 0 },
  3978. {
  3979. "time": 0.5,
  3980. "angle": -3.85,
  3981. "curve": [ 0.25, 0, 0.75, 1 ]
  3982. },
  3983. { "time": 1, "angle": 0 },
  3984. {
  3985. "time": 1.5,
  3986. "angle": -3.85,
  3987. "curve": [ 0.25, 0, 0.75, 1 ]
  3988. },
  3989. { "time": 2, "angle": 0 }
  3990. ],
  3991. "translate": [
  3992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3995. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3996. { "time": 2, "x": 0, "y": 0 }
  3997. ],
  3998. "scale": [
  3999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4003. { "time": 2, "x": 1, "y": 1 }
  4004. ]
  4005. },
  4006. "bone27": {
  4007. "rotate": [
  4008. { "time": 0, "angle": 0 },
  4009. {
  4010. "time": 0.5,
  4011. "angle": 1.58,
  4012. "curve": [ 0.25, 0, 0.75, 1 ]
  4013. },
  4014. { "time": 1, "angle": 0 },
  4015. {
  4016. "time": 1.5,
  4017. "angle": 1.58,
  4018. "curve": [ 0.25, 0, 0.75, 1 ]
  4019. },
  4020. { "time": 2, "angle": 0 }
  4021. ],
  4022. "translate": [
  4023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4024. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4025. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4026. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4027. { "time": 2, "x": 0, "y": 0 }
  4028. ],
  4029. "scale": [
  4030. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4031. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4032. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4033. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4034. { "time": 2, "x": 1, "y": 1 }
  4035. ]
  4036. },
  4037. "bone28": {
  4038. "rotate": [
  4039. { "time": 0, "angle": 0 },
  4040. {
  4041. "time": 0.5,
  4042. "angle": 2.27,
  4043. "curve": [ 0.25, 0, 0.75, 1 ]
  4044. },
  4045. { "time": 1, "angle": 0 },
  4046. {
  4047. "time": 1.5,
  4048. "angle": 2.27,
  4049. "curve": [ 0.25, 0, 0.75, 1 ]
  4050. },
  4051. { "time": 2, "angle": 0 }
  4052. ],
  4053. "translate": [
  4054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4055. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4056. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4057. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4058. { "time": 2, "x": 0, "y": 0 }
  4059. ],
  4060. "scale": [
  4061. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4062. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4063. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4064. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4065. { "time": 2, "x": 1, "y": 1 }
  4066. ]
  4067. },
  4068. "bone29": {
  4069. "rotate": [
  4070. { "time": 0, "angle": 0, "curve": "stepped" },
  4071. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4072. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4073. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4074. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4075. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4076. { "time": 1, "angle": 0, "curve": "stepped" },
  4077. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4078. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4079. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4080. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4081. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4082. { "time": 2, "angle": 0 }
  4083. ],
  4084. "translate": [
  4085. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4090. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4091. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4092. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4093. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4094. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4095. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4096. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4097. { "time": 2, "x": 0, "y": 0 }
  4098. ],
  4099. "scale": [
  4100. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4110. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4111. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4112. { "time": 2, "x": 1, "y": 1 }
  4113. ]
  4114. },
  4115. "bone30": {
  4116. "rotate": [
  4117. { "time": 0, "angle": 0 },
  4118. { "time": 0.5, "angle": 11.83 },
  4119. { "time": 1, "angle": 0 },
  4120. { "time": 1.5, "angle": 11.83 },
  4121. { "time": 2, "angle": 0 }
  4122. ],
  4123. "translate": [
  4124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4125. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4126. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4127. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4128. { "time": 2, "x": 0, "y": 0 }
  4129. ],
  4130. "scale": [
  4131. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4132. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4133. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4134. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4135. { "time": 2, "x": 1, "y": 1 }
  4136. ]
  4137. },
  4138. "bone31": {
  4139. "rotate": [
  4140. { "time": 0, "angle": 0 },
  4141. { "time": 0.5, "angle": 24.7 },
  4142. { "time": 1, "angle": 0 },
  4143. { "time": 1.5, "angle": 24.7 },
  4144. { "time": 2, "angle": 0 }
  4145. ],
  4146. "translate": [
  4147. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4148. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4149. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4150. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4151. { "time": 2, "x": 0, "y": 0 }
  4152. ],
  4153. "scale": [
  4154. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 2, "x": 1, "y": 1 }
  4159. ]
  4160. },
  4161. "bone32": {
  4162. "rotate": [
  4163. { "time": 0, "angle": 0, "curve": "stepped" },
  4164. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4165. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4166. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4167. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4168. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4169. { "time": 1, "angle": 0, "curve": "stepped" },
  4170. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4171. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4172. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4173. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4174. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4175. { "time": 2, "angle": 0 }
  4176. ],
  4177. "translate": [
  4178. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4181. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4182. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4183. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4184. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4185. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4188. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 2, "x": 0, "y": 0 }
  4191. ],
  4192. "scale": [
  4193. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4203. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 2, "x": 1, "y": 1 }
  4206. ]
  4207. },
  4208. "bone33": {
  4209. "rotate": [
  4210. { "time": 0, "angle": 0 },
  4211. { "time": 0.5, "angle": 8.7 },
  4212. { "time": 1, "angle": 0 },
  4213. { "time": 1.5, "angle": 8.7 },
  4214. { "time": 2, "angle": 0 }
  4215. ],
  4216. "translate": [
  4217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4218. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4219. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4220. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4221. { "time": 2, "x": 0, "y": 0 }
  4222. ],
  4223. "scale": [
  4224. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4225. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4226. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4227. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4228. { "time": 2, "x": 1, "y": 1 }
  4229. ]
  4230. },
  4231. "bone34": {
  4232. "rotate": [
  4233. { "time": 0, "angle": 0 },
  4234. { "time": 0.5, "angle": 8.7 },
  4235. { "time": 1, "angle": 0 },
  4236. { "time": 1.5, "angle": 8.7 },
  4237. { "time": 2, "angle": 0 }
  4238. ],
  4239. "translate": [
  4240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4241. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4242. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4243. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4244. { "time": 2, "x": 0, "y": 0 }
  4245. ],
  4246. "scale": [
  4247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4248. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4250. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4251. { "time": 2, "x": 1, "y": 1 }
  4252. ]
  4253. },
  4254. "bone35": {
  4255. "rotate": [
  4256. { "time": 0, "angle": 0 },
  4257. { "time": 0.5, "angle": 8.7 },
  4258. { "time": 1, "angle": 0 },
  4259. { "time": 1.5, "angle": 8.7 },
  4260. { "time": 2, "angle": 0 }
  4261. ],
  4262. "translate": [
  4263. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 2, "x": 0, "y": 0 }
  4268. ],
  4269. "scale": [
  4270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4272. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4273. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4274. { "time": 2, "x": 1, "y": 1 }
  4275. ]
  4276. },
  4277. "bone36": {
  4278. "rotate": [
  4279. { "time": 0, "angle": 0 },
  4280. { "time": 0.5, "angle": -3 },
  4281. { "time": 1, "angle": 0 },
  4282. { "time": 1.5, "angle": -3 },
  4283. { "time": 2, "angle": 0 }
  4284. ],
  4285. "translate": [
  4286. { "time": 0, "x": 0, "y": 0 },
  4287. { "time": 0.5, "x": 0.74, "y": 0.4 },
  4288. { "time": 1, "x": 0, "y": 0 },
  4289. { "time": 1.5, "x": 0.74, "y": 0.4 },
  4290. { "time": 2, "x": 0, "y": 0 }
  4291. ],
  4292. "scale": [
  4293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4295. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4296. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4297. { "time": 2, "x": 1, "y": 1 }
  4298. ]
  4299. },
  4300. "bone37": {
  4301. "rotate": [
  4302. { "time": 0, "angle": 0 },
  4303. { "time": 0.5, "angle": -7.26 },
  4304. { "time": 1, "angle": 0 },
  4305. { "time": 1.5, "angle": -7.26 },
  4306. { "time": 2, "angle": 0 }
  4307. ],
  4308. "translate": [
  4309. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4310. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4311. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4312. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4313. { "time": 2, "x": 0, "y": 0 }
  4314. ],
  4315. "scale": [
  4316. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 2, "x": 1, "y": 1 }
  4321. ]
  4322. },
  4323. "bone38": {
  4324. "rotate": [
  4325. { "time": 0, "angle": 0 },
  4326. { "time": 0.5, "angle": 1.23 },
  4327. { "time": 1, "angle": 0 },
  4328. { "time": 1.5, "angle": 1.23 },
  4329. { "time": 2, "angle": 0 }
  4330. ],
  4331. "translate": [
  4332. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4334. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4335. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4336. { "time": 2, "x": 0, "y": 0 }
  4337. ],
  4338. "scale": [
  4339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4343. { "time": 2, "x": 1, "y": 1 }
  4344. ]
  4345. },
  4346. "bone39": {
  4347. "rotate": [
  4348. { "time": 0, "angle": 0 },
  4349. { "time": 0.5, "angle": -7.26 },
  4350. { "time": 1, "angle": 0 },
  4351. { "time": 1.5, "angle": -7.26 },
  4352. { "time": 2, "angle": 0 }
  4353. ],
  4354. "translate": [
  4355. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4359. { "time": 2, "x": 0, "y": 0 }
  4360. ],
  4361. "scale": [
  4362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4365. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4366. { "time": 2, "x": 1, "y": 1 }
  4367. ]
  4368. },
  4369. "bone40": {
  4370. "rotate": [
  4371. { "time": 0, "angle": 0 },
  4372. { "time": 0.5, "angle": -7.26 },
  4373. { "time": 1, "angle": 0 },
  4374. { "time": 1.5, "angle": -7.26 },
  4375. { "time": 2, "angle": 0 }
  4376. ],
  4377. "translate": [
  4378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4379. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4380. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4381. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4382. { "time": 2, "x": 0, "y": 0 }
  4383. ],
  4384. "scale": [
  4385. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4387. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4388. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4389. { "time": 2, "x": 1, "y": 1 }
  4390. ]
  4391. },
  4392. "bone41": {
  4393. "rotate": [
  4394. { "time": 0, "angle": 0 },
  4395. { "time": 0.5, "angle": 10.05 },
  4396. { "time": 1, "angle": 0 },
  4397. { "time": 1.5, "angle": 10.05 },
  4398. { "time": 2, "angle": 0 }
  4399. ],
  4400. "translate": [
  4401. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4402. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4403. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4404. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4405. { "time": 2, "x": 0, "y": 0 }
  4406. ],
  4407. "scale": [
  4408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 2, "x": 1, "y": 1 }
  4413. ]
  4414. },
  4415. "bone42": {
  4416. "rotate": [
  4417. { "time": 0, "angle": 0 },
  4418. { "time": 0.5, "angle": -3.01 },
  4419. { "time": 1, "angle": 0 },
  4420. { "time": 1.5, "angle": -3.01 },
  4421. { "time": 2, "angle": 0 }
  4422. ],
  4423. "translate": [
  4424. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 2, "x": 0, "y": 0 }
  4429. ],
  4430. "scale": [
  4431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 2, "x": 1, "y": 1 }
  4436. ]
  4437. },
  4438. "bone43": {
  4439. "rotate": [
  4440. { "time": 0, "angle": 0 },
  4441. { "time": 0.5, "angle": -3.01 },
  4442. { "time": 1, "angle": 0 },
  4443. { "time": 1.5, "angle": -3.01 },
  4444. { "time": 2, "angle": 0 }
  4445. ],
  4446. "translate": [
  4447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 2, "x": 0, "y": 0 }
  4452. ],
  4453. "scale": [
  4454. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4455. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4456. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 2, "x": 1, "y": 1 }
  4459. ]
  4460. },
  4461. "bone44": {
  4462. "rotate": [
  4463. { "time": 0, "angle": 0 },
  4464. { "time": 0.5, "angle": -3.01 },
  4465. { "time": 1, "angle": 0 },
  4466. { "time": 1.5, "angle": -3.01 },
  4467. { "time": 2, "angle": 0 }
  4468. ],
  4469. "translate": [
  4470. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4471. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4473. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4474. { "time": 2, "x": 0, "y": 0 }
  4475. ],
  4476. "scale": [
  4477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 2, "x": 1, "y": 1 }
  4482. ]
  4483. },
  4484. "bone45": {
  4485. "rotate": [
  4486. { "time": 0, "angle": 0, "curve": "stepped" },
  4487. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4488. { "time": 1, "angle": 0, "curve": "stepped" },
  4489. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4490. { "time": 2, "angle": 0 }
  4491. ],
  4492. "translate": [
  4493. { "time": 0, "x": 0, "y": 0 },
  4494. { "time": 0.5, "x": 0.37, "y": 0.02 },
  4495. { "time": 1, "x": 0, "y": 0 },
  4496. { "time": 1.5, "x": 0.37, "y": 0.02 },
  4497. { "time": 2, "x": 0, "y": 0 }
  4498. ],
  4499. "scale": [
  4500. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4503. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4504. { "time": 2, "x": 1, "y": 1 }
  4505. ]
  4506. },
  4507. "bone46": {
  4508. "rotate": [
  4509. { "time": 0, "angle": 0 },
  4510. { "time": 0.5, "angle": -2.75 },
  4511. { "time": 1, "angle": 0 },
  4512. { "time": 1.5, "angle": -2.75 },
  4513. { "time": 2, "angle": 0 }
  4514. ],
  4515. "translate": [
  4516. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4517. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4518. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4519. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4520. { "time": 2, "x": 0, "y": 0 }
  4521. ],
  4522. "scale": [
  4523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4524. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4526. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 2, "x": 1, "y": 1 }
  4528. ]
  4529. },
  4530. "bone47": {
  4531. "rotate": [
  4532. { "time": 0, "angle": 0 },
  4533. { "time": 0.5, "angle": -0.26 },
  4534. { "time": 1, "angle": 0 },
  4535. { "time": 1.5, "angle": -0.26 },
  4536. { "time": 2, "angle": 0 }
  4537. ],
  4538. "translate": [
  4539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4542. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4543. { "time": 2, "x": 0, "y": 0 }
  4544. ],
  4545. "scale": [
  4546. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4547. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4548. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4549. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4550. { "time": 2, "x": 1, "y": 1 }
  4551. ]
  4552. },
  4553. "bone48": {
  4554. "rotate": [
  4555. { "time": 0, "angle": 0 },
  4556. { "time": 0.5, "angle": -0.16 },
  4557. { "time": 1, "angle": 0 },
  4558. { "time": 1.5, "angle": -0.26 },
  4559. { "time": 2, "angle": 0 }
  4560. ],
  4561. "translate": [
  4562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4563. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4564. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4565. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4566. { "time": 2, "x": 0, "y": 0 }
  4567. ],
  4568. "scale": [
  4569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4572. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4573. { "time": 2, "x": 1, "y": 1 }
  4574. ]
  4575. },
  4576. "bone49": {
  4577. "rotate": [
  4578. { "time": 0, "angle": 0 },
  4579. { "time": 0.5, "angle": -0.26 },
  4580. { "time": 1, "angle": 0 },
  4581. { "time": 1.5, "angle": -0.26 },
  4582. { "time": 2, "angle": 0 }
  4583. ],
  4584. "translate": [
  4585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4587. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4588. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4589. { "time": 2, "x": 0, "y": 0 }
  4590. ],
  4591. "scale": [
  4592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2, "x": 1, "y": 1 }
  4597. ]
  4598. },
  4599. "bone50": {
  4600. "rotate": [
  4601. { "time": 0, "angle": 0, "curve": "stepped" },
  4602. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4603. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4604. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4605. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4606. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4607. { "time": 1, "angle": 0, "curve": "stepped" },
  4608. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4609. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4610. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4611. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4612. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4613. { "time": 2, "angle": 0 }
  4614. ],
  4615. "translate": [
  4616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4618. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4619. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4620. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4621. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4622. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4623. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4624. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4625. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4626. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4627. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4628. { "time": 2, "x": 0, "y": 0 }
  4629. ],
  4630. "scale": [
  4631. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4632. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4633. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4634. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4635. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4636. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4637. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4638. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4639. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4641. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4642. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 2, "x": 1, "y": 1 }
  4644. ]
  4645. },
  4646. "bone51": {
  4647. "rotate": [
  4648. { "time": 0, "angle": 0 },
  4649. { "time": 0.5, "angle": 9.97 },
  4650. { "time": 1, "angle": 0 },
  4651. { "time": 1.5, "angle": 9.97 },
  4652. { "time": 2, "angle": 0 }
  4653. ],
  4654. "translate": [
  4655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4657. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4658. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4659. { "time": 2, "x": 0, "y": 0 }
  4660. ],
  4661. "scale": [
  4662. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4664. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4665. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4666. { "time": 2, "x": 1, "y": 1 }
  4667. ]
  4668. },
  4669. "bone52": {
  4670. "rotate": [
  4671. { "time": 0, "angle": 0 },
  4672. { "time": 0.5, "angle": 9.97 },
  4673. { "time": 1, "angle": 0 },
  4674. { "time": 1.5, "angle": 9.97 },
  4675. { "time": 2, "angle": 0 }
  4676. ],
  4677. "translate": [
  4678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 2, "x": 0, "y": 0 }
  4683. ],
  4684. "scale": [
  4685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 2, "x": 1, "y": 1 }
  4690. ]
  4691. },
  4692. "bone53": {
  4693. "rotate": [
  4694. { "time": 0, "angle": 0 },
  4695. { "time": 0.5, "angle": 9.97 },
  4696. { "time": 1, "angle": 0 },
  4697. { "time": 1.5, "angle": 9.97 },
  4698. { "time": 2, "angle": 0 }
  4699. ],
  4700. "translate": [
  4701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 2, "x": 0, "y": 0 }
  4706. ],
  4707. "scale": [
  4708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4710. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 2, "x": 1, "y": 1 }
  4713. ]
  4714. },
  4715. "bone54": {
  4716. "rotate": [
  4717. { "time": 0, "angle": 0, "curve": "stepped" },
  4718. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4719. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4720. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4721. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4722. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4723. { "time": 1, "angle": 0, "curve": "stepped" },
  4724. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4725. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4726. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  4727. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4728. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4729. { "time": 2, "angle": 0 }
  4730. ],
  4731. "translate": [
  4732. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4733. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4734. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4740. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4741. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4742. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4743. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4744. { "time": 2, "x": 0, "y": 0 }
  4745. ],
  4746. "scale": [
  4747. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 1, "x": 1, "y": 1 },
  4754. { "time": 1.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  4755. { "time": 1.1333, "x": 0.644, "y": 1 },
  4756. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 2, "x": 1, "y": 1 }
  4760. ]
  4761. },
  4762. "bone55": {
  4763. "rotate": [
  4764. { "time": 0, "angle": 0, "curve": "stepped" },
  4765. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4766. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4767. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4768. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4769. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4770. { "time": 1, "angle": 0, "curve": "stepped" },
  4771. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4772. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4773. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  4774. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4775. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4776. { "time": 2, "angle": 0 }
  4777. ],
  4778. "translate": [
  4779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4780. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4781. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4782. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4783. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4784. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4785. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4786. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4787. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4788. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4789. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4790. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4791. { "time": 2, "x": 0, "y": 0 }
  4792. ],
  4793. "scale": [
  4794. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4795. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4796. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4797. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4798. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4799. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4800. { "time": 1, "x": 1, "y": 1 },
  4801. { "time": 1.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  4802. { "time": 1.1333, "x": 0.622, "y": 1 },
  4803. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4804. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4805. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4806. { "time": 2, "x": 1, "y": 1 }
  4807. ]
  4808. },
  4809. "bone56": {
  4810. "rotate": [
  4811. { "time": 0, "angle": 0, "curve": "stepped" },
  4812. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4813. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4814. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4815. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4816. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4817. { "time": 1, "angle": 0, "curve": "stepped" },
  4818. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4819. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4820. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4821. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4822. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4823. { "time": 2, "angle": 0 }
  4824. ],
  4825. "translate": [
  4826. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4827. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4828. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4829. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4830. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4831. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4832. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4833. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4834. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4835. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4836. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4837. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4838. { "time": 2, "x": 0, "y": 0 }
  4839. ],
  4840. "scale": [
  4841. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4842. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4843. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4844. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4845. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4846. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4847. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4848. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4849. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4850. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4851. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4852. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4853. { "time": 2, "x": 1, "y": 1 }
  4854. ]
  4855. },
  4856. "bone57": {
  4857. "rotate": [
  4858. { "time": 0, "angle": 0, "curve": "stepped" },
  4859. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4860. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4861. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4862. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4863. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4864. { "time": 1, "angle": 0, "curve": "stepped" },
  4865. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  4866. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4867. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  4868. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4869. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4870. { "time": 2, "angle": 0 }
  4871. ],
  4872. "translate": [
  4873. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4876. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4877. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4878. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4879. { "time": 1, "x": 0, "y": 0 },
  4880. { "time": 1.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  4881. { "time": 1.1333, "x": -1.13, "y": -0.08 },
  4882. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4883. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4884. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4885. { "time": 2, "x": 0, "y": 0 }
  4886. ],
  4887. "scale": [
  4888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4889. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 2, "x": 1, "y": 1 }
  4901. ]
  4902. },
  4903. "bone58": {
  4904. "rotate": [
  4905. { "time": 0, "angle": 0, "curve": "stepped" },
  4906. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4907. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4908. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4909. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4910. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4911. { "time": 1, "angle": 0, "curve": "stepped" },
  4912. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4913. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4914. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4915. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4916. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4917. { "time": 2, "angle": 0 }
  4918. ],
  4919. "translate": [
  4920. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4921. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4922. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4923. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4924. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4925. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4927. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4928. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4929. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4930. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4931. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4932. { "time": 2, "x": 0, "y": 0 }
  4933. ],
  4934. "scale": [
  4935. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4936. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4937. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4938. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4939. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4940. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4941. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4942. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4943. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4944. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4945. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4946. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4947. { "time": 2, "x": 1, "y": 1 }
  4948. ]
  4949. },
  4950. "bone59": {
  4951. "rotate": [
  4952. { "time": 0, "angle": 0 }
  4953. ],
  4954. "translate": [
  4955. { "time": 0, "x": 25.65, "y": 5.4 }
  4956. ],
  4957. "scale": [
  4958. { "time": 0, "x": 1, "y": 1 }
  4959. ]
  4960. },
  4961. "bone61": {
  4962. "rotate": [
  4963. { "time": 0, "angle": 0 }
  4964. ],
  4965. "translate": [
  4966. { "time": 0, "x": 43.69, "y": -37.66 }
  4967. ],
  4968. "scale": [
  4969. { "time": 0, "x": 1, "y": 1 }
  4970. ]
  4971. },
  4972. "bone62": {
  4973. "rotate": [
  4974. { "time": 0, "angle": 0 }
  4975. ],
  4976. "translate": [
  4977. { "time": 0, "x": -41.86, "y": -54.54 }
  4978. ],
  4979. "scale": [
  4980. { "time": 0, "x": 1, "y": 1 }
  4981. ]
  4982. },
  4983. "bone60": {
  4984. "rotate": [
  4985. { "time": 0, "angle": 0 }
  4986. ],
  4987. "translate": [
  4988. { "time": 0, "x": -48.26, "y": -6.24 }
  4989. ],
  4990. "scale": [
  4991. { "time": 0, "x": 1, "y": 1 }
  4992. ]
  4993. }
  4994. },
  4995. "deform": {
  4996. "default": {
  4997. "kudang": {
  4998. "kudang": [
  4999. {
  5000. "time": 0,
  5001. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  5002. },
  5003. {
  5004. "time": 0.1667,
  5005. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  5006. },
  5007. {
  5008. "time": 0.2333,
  5009. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  5010. },
  5011. {
  5012. "time": 0.2667,
  5013. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  5014. },
  5015. {
  5016. "time": 0.3333,
  5017. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  5018. },
  5019. {
  5020. "time": 0.5,
  5021. "offset": 2,
  5022. "vertices": [ -1.71885, -1.6606 ]
  5023. },
  5024. {
  5025. "time": 0.6667,
  5026. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  5027. },
  5028. {
  5029. "time": 0.7333,
  5030. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  5031. },
  5032. {
  5033. "time": 0.8333,
  5034. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  5035. },
  5036. {
  5037. "time": 1,
  5038. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  5039. },
  5040. {
  5041. "time": 1.1667,
  5042. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  5043. },
  5044. {
  5045. "time": 1.2333,
  5046. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  5047. },
  5048. {
  5049. "time": 1.2667,
  5050. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  5051. },
  5052. {
  5053. "time": 1.3333,
  5054. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  5055. },
  5056. {
  5057. "time": 1.5,
  5058. "offset": 2,
  5059. "vertices": [ -1.71885, -1.6606 ]
  5060. },
  5061. {
  5062. "time": 1.6667,
  5063. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  5064. },
  5065. {
  5066. "time": 1.7333,
  5067. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  5068. },
  5069. {
  5070. "time": 1.8333,
  5071. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  5072. },
  5073. {
  5074. "time": 2,
  5075. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  5076. }
  5077. ]
  5078. },
  5079. "shenti": {
  5080. "shenti": [
  5081. { "time": 0 },
  5082. {
  5083. "time": 0.5,
  5084. "offset": 16,
  5085. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  5086. },
  5087. { "time": 1 },
  5088. {
  5089. "time": 1.5,
  5090. "offset": 16,
  5091. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  5092. },
  5093. { "time": 2 }
  5094. ]
  5095. },
  5096. "toufa1": {
  5097. "toufa1": [
  5098. { "time": 0 },
  5099. {
  5100. "time": 0.5,
  5101. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  5102. },
  5103. { "time": 1 },
  5104. {
  5105. "time": 1.5,
  5106. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  5107. },
  5108. { "time": 2 }
  5109. ]
  5110. },
  5111. "toufa9": {
  5112. "toufa9": [
  5113. {
  5114. "time": 0,
  5115. "vertices": [ 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477 ]
  5116. }
  5117. ]
  5118. },
  5119. "toufa10": {
  5120. "toufa10": [
  5121. { "time": 0 },
  5122. {
  5123. "time": 0.5,
  5124. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  5125. },
  5126. { "time": 1 },
  5127. {
  5128. "time": 1.5,
  5129. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  5130. },
  5131. { "time": 2 }
  5132. ]
  5133. },
  5134. "waitaoyou": {
  5135. "waitaoyou": [
  5136. {
  5137. "time": 0,
  5138. "offset": 38,
  5139. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 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.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  5140. },
  5141. { "time": 0.5 },
  5142. {
  5143. "time": 1,
  5144. "offset": 38,
  5145. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 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.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  5146. },
  5147. { "time": 1.5 },
  5148. {
  5149. "time": 2,
  5150. "offset": 38,
  5151. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 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.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  5152. }
  5153. ]
  5154. },
  5155. "waitaozuo": {
  5156. "waitaozuo": [
  5157. { "time": 0 },
  5158. {
  5159. "time": 0.5,
  5160. "offset": 32,
  5161. "vertices": [ 0.87132, -1.27842, 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.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  5162. },
  5163. { "time": 1 },
  5164. {
  5165. "time": 1.5,
  5166. "offset": 32,
  5167. "vertices": [ 0.87132, -1.27842, 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.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  5168. },
  5169. { "time": 2 }
  5170. ]
  5171. },
  5172. "youshou": {
  5173. "youshou": [
  5174. {
  5175. "time": 0,
  5176. "offset": 84,
  5177. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 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, -7.78561, 1.11165 ],
  5178. "curve": "stepped"
  5179. },
  5180. {
  5181. "time": 1,
  5182. "offset": 84,
  5183. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 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, -7.78561, 1.11165 ],
  5184. "curve": "stepped"
  5185. },
  5186. {
  5187. "time": 2,
  5188. "offset": 84,
  5189. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 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, -7.78561, 1.11165 ]
  5190. }
  5191. ]
  5192. },
  5193. "youtui": {
  5194. "youtui": [
  5195. { "time": 0 },
  5196. {
  5197. "time": 0.5,
  5198. "offset": 80,
  5199. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  5200. },
  5201. { "time": 1 },
  5202. {
  5203. "time": 1.5,
  5204. "offset": 80,
  5205. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  5206. },
  5207. { "time": 2 }
  5208. ]
  5209. },
  5210. "zuotui": {
  5211. "zuotui": [
  5212. {
  5213. "time": 0,
  5214. "offset": 58,
  5215. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  5216. "curve": "stepped"
  5217. },
  5218. {
  5219. "time": 1,
  5220. "offset": 58,
  5221. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  5222. "curve": "stepped"
  5223. },
  5224. {
  5225. "time": 2,
  5226. "offset": 58,
  5227. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ]
  5228. }
  5229. ]
  5230. }
  5231. }
  5232. }
  5233. }
  5234. }
  5235. }