1
0

60049.json 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686
  1. {
  2. "skeleton": { "hash": "bYn4z8yDqgJ7JUMDae0tlBle4TE", "spine": "3.6.53", "width": 256.49, "height": 201, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -3.1, "y": 64.72 },
  6. { "name": "bone2", "parent": "bone", "length": 12.64, "rotation": 88.94, "x": -0.03, "y": 1.9 },
  7. { "name": "bone3", "parent": "bone2", "length": 28.55, "rotation": 0.12, "x": 14.1 },
  8. { "name": "bone4", "parent": "bone3", "length": 21.41, "rotation": 150.18, "x": 23.15, "y": 12.75, "color": "3dcc0bff" },
  9. { "name": "bone5", "parent": "bone4", "length": 21.79, "rotation": -1.65, "x": 21.41, "color": "3dcc0bff" },
  10. { "name": "bone6", "parent": "bone5", "length": 13.52, "rotation": -5.57, "x": 21.79, "color": "3dcc0bff" },
  11. { "name": "bone7", "parent": "bone3", "length": 24.81, "rotation": -140.03, "x": 24.55, "y": -19.49, "color": "2e59cbff" },
  12. { "name": "bone8", "parent": "bone7", "length": 20.02, "rotation": 0.35, "x": 24.81, "color": "2e59cbff" },
  13. { "name": "bone9", "parent": "bone8", "length": 18.02, "rotation": -4.27, "x": 20.25, "y": -0.19, "color": "2e59cbff" },
  14. { "name": "bone10", "parent": "bone", "length": 12.32, "rotation": -84.56, "x": -0.2, "y": -3.43 },
  15. { "name": "bone11", "parent": "bone", "length": 27.95, "rotation": -93.89, "x": -6.75, "y": -8.1, "color": "f59129ff" },
  16. { "name": "bone12", "parent": "bone11", "length": 24.24, "rotation": 2.51, "x": 28.98, "y": -0.22, "color": "f59129ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 10.74, "rotation": -81.59, "x": 25.56, "y": -0.11, "color": "f59129ff" },
  18. { "name": "bone14", "parent": "bone", "length": 30.19, "rotation": -82.5, "x": 12.23, "y": -5.96, "color": "9f0ec4ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 26.45, "rotation": 1.39, "x": 30.19, "color": "9f0ec4ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 11.77, "rotation": -91.77, "x": 26.45, "color": "9f0ec4ff" },
  21. { "name": "bone17", "parent": "bone3", "length": 12, "rotation": -179.06, "x": 26.44, "y": 11.95, "color": "e52876ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 9.65, "rotation": 2.6, "x": 13.83, "color": "e52876ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 9.93, "rotation": -3.45, "x": 9.65, "color": "e52876ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 10.52, "rotation": -1.54, "x": 9.93, "color": "e52876ff" },
  25. { "name": "bone21", "parent": "bone20", "length": 10.85, "rotation": -3.02, "x": 10.52, "color": "e52876ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 8.35, "rotation": 0.39, "x": 10.85, "color": "e52876ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 6.67, "rotation": -18.19, "x": 8.35, "color": "e52876ff" },
  28. { "name": "bone24", "parent": "bone3", "length": 13.58, "rotation": -179.06, "x": 25.38, "y": -9.97, "color": "0a7b0fff" },
  29. { "name": "bone25", "parent": "bone24", "length": 12.16, "rotation": 4.82, "x": 13.58, "color": "0a7b0fff" },
  30. { "name": "bone26", "parent": "bone25", "length": 12.64, "rotation": 1.81, "x": 12.9, "y": 0.08, "color": "0a7b0fff" },
  31. { "name": "bone27", "parent": "bone26", "length": 10.49, "rotation": 2.17, "x": 12.64, "color": "0a7b0fff" },
  32. { "name": "bone28", "parent": "bone27", "length": 10.39, "rotation": 1.71, "x": 10.66, "y": 0.12, "color": "0a7b0fff" },
  33. { "name": "bone29", "parent": "bone28", "length": 9.42, "rotation": 2.01, "x": 10.39, "color": "0a7b0fff" },
  34. { "name": "bone30", "parent": "bone3", "length": 8.93, "rotation": 177.19, "x": 21.75, "y": 1.07 },
  35. { "name": "bone31", "parent": "bone3", "length": 52.34, "rotation": 3.98, "x": 30.06, "y": -0.55 },
  36. { "name": "bone32", "parent": "bone31", "length": 10.39, "rotation": 0.99, "x": 22, "y": 19.59 },
  37. { "name": "bone33", "parent": "bone31", "length": 9.49, "rotation": -1.28, "x": 22.17, "y": -10.24 },
  38. { "name": "bone34", "parent": "bone31", "x": 24.13, "y": 4.71 },
  39. { "name": "bone35", "parent": "bone31", "length": 7.9, "rotation": 156.14, "x": 77.22, "y": 25.77, "color": "6be3dfff" },
  40. { "name": "bone36", "parent": "bone35", "length": 9.74, "rotation": 6.12, "x": 7.9, "color": "6be3dfff" },
  41. { "name": "bone37", "parent": "bone36", "length": 10.38, "rotation": 14.23, "x": 10.46, "y": 0.09, "color": "6be3dfff" },
  42. { "name": "bone38", "parent": "bone37", "length": 7.12, "rotation": 17.59, "x": 10.81, "y": 0.05, "color": "6be3dfff" },
  43. { "name": "bone39", "parent": "bone38", "length": 7.24, "rotation": 14.11, "x": 7.12, "color": "6be3dfff" },
  44. { "name": "bone40", "parent": "bone31", "length": 10, "rotation": 121.93, "x": 86.2, "y": 3.11, "color": "abe671ff" },
  45. { "name": "bone41", "parent": "bone40", "length": 9.32, "rotation": 39.69, "x": 12.18, "y": 0.83, "color": "abe671ff" },
  46. { "name": "bone42", "parent": "bone41", "length": 10.44, "rotation": 5.74, "x": 10.1, "y": -0.09, "color": "abe671ff" },
  47. { "name": "bone43", "parent": "bone42", "length": 10.44, "rotation": 10.39, "x": 11.16, "y": 0.12, "color": "abe671ff" },
  48. { "name": "bone44", "parent": "bone43", "length": 10.29, "rotation": 20.71, "x": 11.46, "y": 0.13, "color": "abe671ff" },
  49. { "name": "bone45", "parent": "bone31", "length": 7.59, "rotation": -176.46, "x": 86.2, "y": -5.37, "color": "edad37ff" },
  50. { "name": "bone46", "parent": "bone45", "length": 11.04, "rotation": -3.57, "x": 8.18, "y": 0.08, "color": "edad37ff" },
  51. { "name": "bone47", "parent": "bone46", "length": 10.73, "rotation": -3.79, "x": 11.61, "y": -0.03, "color": "edad37ff" },
  52. { "name": "bone48", "parent": "bone47", "length": 10.69, "rotation": -11.75, "x": 11.31, "y": -0.14, "color": "edad37ff" },
  53. { "name": "bone49", "parent": "bone48", "length": 11.42, "rotation": -16.31, "x": 11.01, "y": -0.08, "color": "edad37ff" },
  54. { "name": "bone50", "parent": "bone31", "length": 9.77, "rotation": -164.87, "x": 86.01, "y": -17.27, "color": "d25353ff" },
  55. { "name": "bone51", "parent": "bone50", "length": 12.37, "rotation": -8.04, "x": 9.86, "y": 0.28, "color": "d25353ff" },
  56. { "name": "bone52", "parent": "bone51", "length": 10.87, "rotation": -10.12, "x": 13.37, "y": -0.18, "color": "d25353ff" },
  57. { "name": "bone53", "parent": "bone52", "length": 10.87, "rotation": -18.68, "x": 11.74, "y": -0.14, "color": "d25353ff" },
  58. { "name": "bone54", "parent": "bone53", "length": 8.63, "rotation": -30.41, "x": 11.19, "y": -0.04, "color": "d25353ff" },
  59. { "name": "bone55", "parent": "bone31", "x": 33.5, "y": 4.6 },
  60. { "name": "bone56", "parent": "bone", "length": 11.47, "rotation": -87.24, "x": 5.75, "y": -1.29 },
  61. { "name": "bone57", "parent": "bone56", "length": 12, "rotation": -1.61, "x": 11.47 },
  62. { "name": "bone58", "parent": "bone", "length": 18.49, "rotation": 90.36, "x": 3.73, "y": -11.81, "color": "162394ff" },
  63. { "name": "bone59", "parent": "bone58", "length": 34.28, "rotation": -0.36, "x": 18.49, "color": "162394ff" },
  64. { "name": "bone60", "parent": "bone3", "length": 9.08, "rotation": 175.66, "x": 21.97, "y": -0.93, "color": "bf0909ff" },
  65. { "name": "bone61", "parent": "bone60", "length": 8.78, "rotation": -0.18, "x": 9.08, "color": "bf0909ff" },
  66. { "name": "bone62", "parent": "bone61", "length": 7.86, "rotation": 0.47, "x": 8.78, "color": "bf0909ff" },
  67. { "name": "bone63", "parent": "bone62", "length": 9.17, "rotation": -1.19, "x": 8.08, "y": 0.02, "color": "bf0909ff" },
  68. { "name": "bone64", "parent": "bone31", "length": 12.91, "rotation": -173.23, "x": 84.79, "y": -12.29, "color": "365ad6ff" },
  69. { "name": "bone65", "parent": "bone64", "length": 11.69, "rotation": -15.98, "x": 13.68, "y": -0.13, "color": "365ad6ff" },
  70. { "name": "bone66", "parent": "bone65", "length": 9.79, "rotation": -9.65, "x": 14.36, "y": 0.13, "color": "365ad6ff" },
  71. { "name": "bone67", "parent": "bone66", "length": 13.25, "rotation": -15.61, "x": 10.18, "y": -0.22, "color": "365ad6ff" },
  72. { "name": "bone68", "parent": "bone59", "length": 23.18, "rotation": -141.98, "x": 33.34, "y": -184.86, "color": "157c91ff" },
  73. { "name": "bone69", "parent": "bone68", "length": 26.91, "rotation": -137.25, "x": 23.03, "y": -0.73, "color": "157c91ff" },
  74. { "name": "bone70", "parent": "bone69", "length": 15.45, "rotation": -18.99, "x": 26.91, "color": "157c91ff" },
  75. { "name": "bone71", "parent": "bone32", "x": 6.63, "y": 2.77 },
  76. { "name": "bone72", "parent": "bone71", "x": -3.27, "y": -0.99 },
  77. { "name": "bone73", "parent": "bone33", "x": 5.94, "y": 3.55 },
  78. { "name": "bone74", "parent": "bone73", "x": -2.21, "y": -2.02 },
  79. { "name": "bone75", "parent": "bone31", "length": 5, "x": 7.31, "y": 3.32 }
  80. ],
  81. "slots": [
  82. { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
  83. { "name": "yifuhou", "bone": "bone56", "attachment": "yifuhou" },
  84. { "name": "chenyi", "bone": "bone58", "attachment": "chenyi" },
  85. { "name": "lingdai", "bone": "bone60", "attachment": "lingdai" },
  86. { "name": "zuojiao", "bone": "bone11", "attachment": "zuojiao" },
  87. { "name": "maoyi", "bone": "bone2", "attachment": "maoyi" },
  88. { "name": "youjiap", "bone": "bone14", "attachment": "youjiap" },
  89. { "name": "waitao you", "bone": "bone24", "attachment": "waitao you" },
  90. { "name": "waitaozuo", "bone": "bone17", "attachment": "waitaozuo" },
  91. { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
  92. { "name": "youshou2", "bone": "bone68", "attachment": "youshou2" },
  93. { "name": "youshou1", "bone": "bone69", "attachment": "youshou1" },
  94. { "name": "tou", "bone": "bone31", "attachment": "tou" },
  95. { "name": "yanbai", "bone": "bone33", "attachment": "yanbai" },
  96. { "name": "yanzhu", "bone": "bone74", "attachment": "yanzhu" },
  97. { "name": "gaoguang", "bone": "bone73", "attachment": "gaoguang" },
  98. { "name": "yanjiemao", "bone": "bone33", "attachment": "yanjiemao" },
  99. { "name": "yanbaizuo", "bone": "bone32", "attachment": "yanbaizuo" },
  100. { "name": "yanqiu zuo", "bone": "bone72", "attachment": "yanqiu zuo" },
  101. { "name": "gaoguangzuo", "bone": "bone71", "attachment": "gaoguangzuo" },
  102. { "name": "yanjiemaozuo", "bone": "bone32", "attachment": "yanjiemaozuo" },
  103. { "name": "meimao", "bone": "bone55", "attachment": "meimao" },
  104. { "name": "toufa4", "bone": "bone31", "attachment": "toufa4" },
  105. { "name": "toufa6", "bone": "bone64", "attachment": "toufa6" },
  106. { "name": "toufa 1", "bone": "bone40", "attachment": "toufa 1" },
  107. { "name": "toufa5", "bone": "bone35", "attachment": "toufa5" },
  108. { "name": "toufa3", "bone": "bone50", "attachment": "toufa3" },
  109. { "name": "toufa2", "bone": "bone45", "attachment": "toufa2" },
  110. { "name": "biyan", "bone": "bone34", "attachment": "biyan" },
  111. { "name": "zuiba 2", "bone": "bone75", "attachment": "zuiba 2" }
  112. ],
  113. "skins": {
  114. "default": {
  115. "biyan": {
  116. "biyan": { "x": -0.94, "y": -0.16, "rotation": -93.04, "width": 51, "height": 9 }
  117. },
  118. "chenyi": {
  119. "chenyi": {
  120. "type": "mesh",
  121. "uvs": [ 1, 0.6466, 1, 0.70824, 1, 0.77463, 1, 1, 0.50891, 1, 0, 1, 1.0E-5, 0.80545, 1.0E-5, 0.72484, 1.0E-5, 0.65845, 0, 0, 0.51645, 0, 1, 0, 0.52021, 0.64897, 0.51791, 0.72055, 0.51555, 0.79387 ],
  122. "triangles": [ 13, 12, 1, 13, 8, 12, 12, 0, 1, 12, 9, 10, 12, 8, 9, 0, 12, 11, 12, 10, 11, 4, 14, 3, 14, 2, 3, 5, 6, 4, 4, 6, 14, 6, 7, 14, 14, 13, 2, 14, 7, 13, 13, 1, 2, 7, 8, 13 ],
  123. "vertices": [ 2, 58, 19.88, -18.69, 0.29173, 59, 1.51, -18.68, 0.70827, 2, 58, 16.06, -18.66, 0.47524, 59, -2.31, -18.68, 0.52476, 2, 58, 11.94, -18.64, 0.66343, 59, -6.42, -18.68, 0.33657, 2, 58, -2.03, -18.55, 0.95477, 59, -20.4, -18.68, 0.04523, 1, 58, -1.91, 0.6, 1, 2, 58, -1.78, 20.45, 0.94176, 59, -20.4, 20.32, 0.05824, 2, 58, 10.28, 20.37, 0.76343, 59, -8.34, 20.32, 0.23657, 2, 58, 15.28, 20.34, 0.59554, 59, -3.34, 20.32, 0.40446, 2, 58, 19.39, 20.31, 0.43834, 59, 0.78, 20.32, 0.56166, 1, 59, 41.6, 20.32, 1, 1, 59, 41.6, 0.18, 1, 1, 59, 41.6, -18.68, 1, 1, 59, 1.37, 0.03, 1, 2, 58, 15.42, 0.14, 0.99675, 59, -3.07, 0.12, 0.00325, 2, 58, 10.87, 0.26, 0.99792, 59, -7.62, 0.21, 0.00208 ],
  124. "hull": 12,
  125. "edges": [ 6, 8, 8, 10, 18, 20, 20, 22, 24, 20, 16, 18, 16, 24, 0, 22, 24, 0, 14, 16, 26, 24, 14, 26, 0, 2, 26, 2, 10, 12, 12, 14, 8, 28, 28, 26, 12, 28, 2, 4, 4, 6, 28, 4 ],
  126. "width": 39,
  127. "height": 62
  128. }
  129. },
  130. "gaoguang": {
  131. "gaoguang": { "x": 0.22, "y": -0.2, "rotation": -91.76, "width": 5, "height": 5 }
  132. },
  133. "gaoguangzuo": {
  134. "gaoguangzuo": { "x": 0.36, "y": -0.51, "rotation": -94.03, "width": 5, "height": 5 }
  135. },
  136. "lingdai": {
  137. "lingdai": {
  138. "type": "mesh",
  139. "uvs": [ 0.90564, 0.17982, 0.925, 0.30311, 0.9409, 0.40443, 0.95671, 0.50511, 0.97637, 0.63032, 1, 0.78083, 1, 0.89633, 1, 1, 0.43352, 1, 0, 1, 0, 0.91173, 0, 0.79046, 0.07722, 0.65394, 0.16086, 0.50608, 0.22077, 0.40016, 0.27516, 0.30399, 0.34064, 0.18824, 0.44711, 0, 0.68264, 0, 0.8774, 0, 0.49962, 0.78238, 0.56429, 0.50592, 0.61102, 0.30616, 0.53161, 0.64563, 0.46342, 0.90158, 0.58895, 0.40051, 0.64027, 0.18113 ],
  140. "triangles": [ 8, 24, 7, 24, 6, 7, 24, 8, 10, 8, 9, 10, 10, 11, 24, 24, 20, 6, 24, 11, 20, 20, 5, 6, 11, 12, 20, 5, 20, 23, 5, 23, 4, 20, 12, 23, 12, 13, 23, 4, 23, 21, 23, 13, 21, 4, 21, 3, 13, 14, 21, 3, 25, 2, 3, 21, 25, 21, 14, 25, 25, 22, 2, 22, 1, 2, 14, 15, 25, 25, 15, 22, 1, 26, 0, 1, 22, 26, 15, 16, 22, 22, 16, 26, 16, 17, 26, 0, 18, 19, 0, 26, 18, 26, 17, 18 ],
  141. "vertices": [ 2, 60, 3.45, 4.51, 0.98596, 61, -5.64, 4.49, 0.01404, 3, 60, 8.34, 5.29, 0.52187, 61, -0.76, 5.29, 0.47801, 62, -9.5, 5.36, 1.2E-4, 3, 60, 12.35, 5.93, 0.06313, 61, 3.24, 5.94, 0.88469, 62, -5.49, 5.99, 0.05218, 3, 61, 7.23, 6.59, 0.64061, 62, -1.5, 6.6, 0.34611, 63, -9.72, 6.38, 0.01327, 3, 61, 12.18, 7.4, 0.12687, 62, 3.46, 7.37, 0.66487, 63, -4.77, 7.26, 0.20825, 3, 61, 18.14, 8.37, 3.2E-4, 62, 9.42, 8.3, 0.20129, 63, 1.17, 8.3, 0.79839, 2, 62, 14.03, 8.7, 0.01403, 63, 5.76, 8.8, 0.98597, 1, 63, 9.88, 9.25, 1, 2, 62, 19, -0.53, 0.00178, 63, 10.92, -0.33, 0.99822, 2, 62, 19.64, -7.87, 0.08074, 63, 11.71, -7.65, 0.91926, 2, 62, 16.12, -8.18, 0.16598, 63, 8.2, -8.03, 0.83402, 2, 62, 11.29, -8.6, 0.52743, 63, 3.38, -8.56, 0.47257, 3, 61, 14.58, -7.72, 0.02153, 62, 5.73, -7.77, 0.93311, 63, -2.19, -7.84, 0.04537, 2, 61, 8.55, -6.87, 0.44149, 62, -0.28, -6.87, 0.55851, 3, 60, 13.3, -6.28, 0.04893, 61, 4.24, -6.26, 0.84519, 62, -4.59, -6.22, 0.10588, 3, 60, 9.39, -5.71, 0.41469, 61, 0.32, -5.71, 0.58286, 62, -8.5, -5.64, 0.00245, 2, 60, 4.67, -5.03, 0.94977, 61, -4.39, -5.04, 0.05023, 1, 60, -2.99, -3.92, 1, 1, 60, -3.36, 0.07, 1, 1, 60, -3.66, 3.37, 1, 2, 62, 10.23, -0.17, 0.01285, 63, 2.15, -0.15, 0.98715, 1, 61, 7.9, -0.05, 1, 2, 60, 8.95, -0.02, 0.64896, 61, -0.13, -0.02, 0.35104, 1, 62, 4.73, -0.11, 1, 2, 62, 15.03, -0.37, 0.00189, 63, 6.95, -0.24, 0.99811, 2, 60, 12.74, -0.04, 1.2E-4, 61, 3.66, -0.03, 0.99988, 1, 60, 3.92, 0.02, 1 ],
  142. "hull": 20,
  143. "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 22, 40, 40, 10, 26, 42, 42, 6, 30, 44, 44, 2, 22, 24, 24, 26, 40, 46, 46, 42, 24, 46, 6, 8, 8, 10, 46, 8, 18, 20, 20, 22, 16, 48, 48, 40, 20, 48, 10, 12, 12, 14, 48, 12, 26, 28, 28, 30, 42, 50, 50, 44, 28, 50, 2, 4, 4, 6, 50, 4, 30, 32, 32, 34, 36, 52, 52, 44, 32, 52, 2, 0, 0, 38, 52, 0 ],
  144. "width": 17,
  145. "height": 40
  146. }
  147. },
  148. "maoyi": {
  149. "maoyi": {
  150. "type": "mesh",
  151. "uvs": [ 1, 0.39211, 1, 0.42831, 1, 0.46162, 1, 0.63364, 1, 0.67564, 1, 0.72199, 1, 1, 0.41139, 1, 0, 1, 0.00137, 0.75529, 0.00169, 0.69884, 0.002, 0.64378, 0.00155, 0.49927, 0.00142, 0.45583, 0.0013, 0.41819, 0, 0, 0.40739, 0, 1, 0, 0.38939, 0.63509, 0.39339, 0.40192, 0.39238, 0.68455, 0.39592, 0.74331, 0.3926, 0.44853, 0.392, 0.48335 ],
  152. "triangles": [ 16, 17, 0, 19, 15, 16, 19, 16, 0, 14, 15, 19, 19, 0, 1, 22, 14, 19, 22, 19, 1, 13, 14, 22, 22, 1, 2, 23, 13, 22, 23, 22, 2, 12, 13, 23, 23, 2, 3, 18, 12, 23, 18, 23, 3, 11, 12, 18, 20, 18, 3, 4, 20, 3, 20, 10, 11, 20, 11, 18, 21, 20, 4, 5, 21, 4, 21, 9, 10, 21, 10, 20, 7, 21, 5, 8, 9, 21, 7, 8, 21, 7, 5, 6 ],
  153. "vertices": [ 1, 10, -16.47, 27.18, 1, 1, 10, -14.38, 26.98, 1, 1, 10, -12.45, 26.8, 1, 1, 10, -2.52, 25.86, 1, 1, 10, -0.1, 25.62, 1, 1, 10, 2.58, 25.37, 1, 1, 10, 18.63, 23.84, 1, 1, 10, 16.29, -0.77, 1, 1, 10, 14.65, -17.97, 1, 1, 10, 0.53, -16.57, 1, 1, 10, -2.73, -16.24, 1, 1, 10, -5.91, -15.93, 1, 1, 10, -14.25, -15.15, 1, 1, 10, -16.76, -14.92, 1, 1, 10, -18.94, -14.72, 1, 1, 10, -43.09, -12.47, 1, 1, 10, -41.47, 4.56, 1, 1, 10, -39.11, 29.34, 1, 1, 10, -4.87, 0.32, 1, 1, 10, -18.31, 1.77, 1, 1, 10, -2, 0.17, 1, 1, 10, 1.41, 0, 1, 1, 10, -15.63, 1.48, 1, 1, 10, -13.62, 1.26, 1 ],
  154. "hull": 18,
  155. "edges": [ 12, 14, 14, 16, 30, 32, 32, 34, 38, 32, 22, 36, 36, 6, 20, 22, 40, 36, 20, 40, 6, 8, 40, 8, 16, 18, 18, 20, 14, 42, 42, 40, 18, 42, 8, 10, 10, 12, 42, 10, 28, 30, 28, 38, 0, 34, 38, 0, 26, 28, 44, 38, 26, 44, 0, 2, 44, 2, 22, 24, 24, 26, 36, 46, 46, 44, 24, 46, 2, 4, 4, 6, 46, 4 ],
  156. "width": 42,
  157. "height": 58
  158. }
  159. },
  160. "meimao": {
  161. "meimao": { "x": 2.82, "y": -4.04, "rotation": -93.04, "width": 59, "height": 12 }
  162. },
  163. "tou": {
  164. "tou": { "x": 26.8, "y": -8.95, "rotation": -93.04, "width": 79, "height": 62 }
  165. },
  166. "toufa 1": {
  167. "toufa 1": {
  168. "type": "mesh",
  169. "uvs": [ 1, 0.07129, 0.74617, 0.21062, 0.65613, 0.31118, 0.57464, 0.4022, 0.56722, 0.50463, 0.55881, 0.6207, 0.5917, 0.73054, 0.6195, 0.82336, 0.77783, 1, 0.52978, 1, 0.38728, 1, 0.23686, 0.90728, 0.09436, 0.73945, 0, 0.59537, 1.0E-5, 0.3927, 0.07062, 0.20112, 0.27381, 0.06812, 0.55089, 0, 1, 0, 0.667, 0.11404, 0.37936, 0.34362, 0.30284, 0.6302, 0.32131, 0.75528, 0.50493, 0.20647, 0.32544, 0.46285, 0.42861, 0.88124 ],
  170. "triangles": [ 22, 5, 6, 25, 22, 6, 25, 6, 7, 11, 12, 22, 11, 22, 25, 10, 11, 25, 9, 25, 7, 10, 25, 9, 9, 7, 8, 24, 14, 15, 24, 20, 4, 13, 14, 24, 5, 24, 4, 20, 16, 23, 15, 16, 20, 3, 23, 2, 20, 23, 3, 20, 24, 15, 4, 20, 3, 21, 13, 24, 21, 24, 5, 12, 13, 21, 22, 21, 5, 12, 21, 22, 19, 17, 18, 0, 19, 18, 23, 16, 17, 23, 17, 19, 1, 19, 0, 2, 23, 19, 2, 19, 1 ],
  171. "vertices": [ 1, 40, -8.79, 6.09, 1, 3, 40, 3.49, 7.7, 0.83389, 41, -2.3, 10.84, 0.16229, 42, -11.25, 12.11, 0.00382, 4, 40, 9.6, 10.79, 0.28984, 43, -13.88, 12.51, 8.3E-4, 41, 4.37, 9.31, 0.59339, 42, -4.76, 9.92, 0.11595, 4, 40, 15.14, 13.58, 0.02716, 43, -8.46, 9.5, 0.06429, 41, 10.41, 7.93, 0.35326, 42, 1.12, 7.94, 0.55529, 4, 43, -2.32, 9.15, 0.4379, 41, 16.41, 9.29, 0.0255, 42, 7.22, 8.7, 0.53527, 44, -9.7, 13.31, 0.00133, 3, 43, 4.64, 8.75, 0.8251, 42, 14.14, 9.56, 0.05336, 44, -3.33, 10.47, 0.12154, 2, 43, 11.24, 9.84, 0.37642, 44, 3.23, 9.16, 0.62358, 2, 43, 16.83, 10.77, 0.06003, 44, 8.78, 8.05, 0.93997, 1, 44, 20.73, 9.47, 1, 1, 44, 17.46, 1.16, 1, 1, 44, 15.58, -3.61, 1, 1, 44, 8.42, -6.61, 1, 3, 43, 11.53, -8.07, 0.63069, 42, 23.95, -5.73, 0.00289, 44, -2.83, -7.69, 0.36642, 3, 43, 2.84, -11.34, 0.75137, 42, 15.99, -10.52, 0.24654, 44, -12.12, -7.69, 0.00209, 3, 43, -9.32, -11.17, 0.08509, 41, 15.34, -12.18, 0.1833, 42, 4, -12.55, 0.73162, 3, 40, 23.09, -6.71, 0.01538, 41, 3.58, -12.76, 0.81632, 42, -7.76, -11.96, 0.1683, 3, 40, 12.52, -9.05, 0.55419, 41, -6.05, -7.82, 0.44533, 42, -16.84, -6.08, 4.8E-4, 1, 40, 2, -6.68, 1, 1, 40, -11.24, 2.58, 1, 2, 40, 2.5, 1.32, 0.99181, 41, -7.14, 6.56, 0.00819, 3, 40, 18.88, 6.67, 3.5E-4, 43, -12.08, 2.52, 1.2E-4, 41, 8.88, 0.22, 0.99954, 1, 43, 5.08, -0.47, 1, 1, 44, 1.05, -0.44, 1, 3, 40, 10.46, 2.52, 0.46068, 41, -0.25, 2.4, 0.53723, 42, -10.04, 3.51, 0.00209, 1, 42, 6.2, -0.3, 1, 2, 43, 20.2, 3.85, 4.0E-4, 44, 9.49, 0.38, 0.9996 ],
  172. "hull": 19,
  173. "edges": [ 0, 36, 0, 2, 14, 16, 34, 36, 34, 32, 32, 30, 30, 28, 26, 28, 26, 24, 24, 22, 22, 20, 36, 38, 42, 44, 16, 18, 18, 20, 34, 38, 38, 2, 38, 46, 46, 40, 32, 46, 2, 4, 4, 6, 46, 4, 6, 40, 40, 30, 40, 48, 48, 42, 28, 48, 6, 8, 8, 10, 48, 8, 26, 42, 42, 10, 24, 44, 10, 12, 12, 14, 44, 12, 18, 50, 50, 44, 22, 50, 50, 14 ],
  174. "width": 36,
  175. "height": 60
  176. }
  177. },
  178. "toufa2": {
  179. "toufa2": {
  180. "type": "mesh",
  181. "uvs": [ 1, 0.20457, 1, 0.2955, 1, 0.38965, 1, 0.49612, 0.99999, 0.61406, 0.90525, 0.72742, 0.80834, 0.84337, 0.59884, 0.94428, 0.48315, 1, 0.24565, 1, 0, 1, 0, 0.92199, 0.05912, 0.85673, 0.15431, 0.75165, 0.15958, 0.68044, 0.16462, 0.61224, 0.17102, 0.52579, 0.17988, 0.40605, 0.15174, 0.31127, 0.12699, 0.22793, 0.05931, 0, 0.54892, 0, 1, 0, 0.57449, 0.21441, 0.59642, 0.40441, 0.59642, 0.61243, 0.49411, 0.79587, 0.59642, 0.51905, 0.35208, 0.91256, 0.54504, 0.70455, 0.58484, 0.30405 ],
  182. "triangles": [ 26, 14, 29, 13, 14, 26, 28, 13, 26, 12, 13, 28, 7, 26, 6, 28, 26, 7, 9, 10, 11, 9, 12, 28, 9, 11, 12, 8, 28, 7, 9, 28, 8, 16, 27, 25, 15, 16, 25, 29, 15, 25, 14, 15, 29, 5, 25, 4, 29, 25, 5, 6, 29, 5, 26, 29, 6, 3, 24, 2, 27, 24, 3, 17, 24, 27, 16, 17, 27, 4, 25, 27, 3, 4, 27, 0, 23, 22, 30, 23, 0, 1, 30, 0, 18, 19, 23, 18, 23, 30, 24, 30, 1, 2, 24, 1, 17, 18, 30, 17, 30, 24, 23, 21, 22, 19, 20, 21, 19, 21, 23 ],
  183. "vertices": [ 2, 45, 9.34, 11.23, 0.34185, 46, 0.46, 11.2, 0.65815, 3, 45, 14.58, 10.62, 0.07207, 46, 5.73, 10.92, 0.90107, 47, -6.6, 10.54, 0.02686, 4, 45, 20.01, 10, 0.00179, 46, 11.18, 10.63, 0.73861, 47, -1.14, 10.61, 0.25895, 48, -14.38, 7.99, 6.5E-4, 3, 46, 17.35, 10.31, 0.28322, 47, 5.04, 10.7, 0.64832, 48, -8.35, 9.33, 0.06846, 3, 46, 24.18, 9.95, 0.04422, 47, 11.88, 10.79, 0.53123, 48, -1.67, 10.81, 0.42455, 3, 46, 30.62, 7.14, 7.2E-4, 47, 18.49, 8.41, 0.12428, 48, 5.28, 9.83, 0.875, 3, 47, 25.24, 5.99, 0.00157, 48, 12.39, 8.83, 0.81426, 49, -1.18, 8.94, 0.18417, 2, 48, 19.29, 4.79, 0.11595, 49, 6.58, 6.99, 0.88405, 2, 48, 23.09, 2.55, 0.008, 49, 10.86, 5.92, 0.992, 1, 49, 13.84, 0.51, 1, 1, 49, 16.92, -5.09, 1, 1, 49, 12.96, -7.27, 1, 1, 49, 8.9, -7.75, 1, 2, 48, 10.89, -8.92, 0.13374, 49, 2.37, -8.52, 0.86626, 4, 46, 26.88, -12.07, 1.5E-4, 47, 16.02, -11.01, 0.00297, 48, 6.83, -9.68, 0.48629, 49, -1.32, -10.39, 0.5106, 4, 46, 22.93, -11.73, 0.01092, 47, 12.07, -10.93, 0.06256, 48, 2.94, -10.41, 0.68125, 49, -4.84, -12.19, 0.24527, 5, 45, 25.38, -12.32, 7.2E-4, 46, 17.93, -11.3, 0.10289, 47, 7.05, -10.83, 0.27856, 48, -1.99, -11.34, 0.54188, 49, -9.32, -14.46, 0.07594, 5, 45, 18.51, -11.3, 0.05198, 46, 11.01, -10.71, 0.53898, 47, 0.1, -10.7, 0.24797, 48, -8.82, -12.62, 0.15483, 49, -15.51, -17.61, 0.00625, 5, 45, 12.96, -11.39, 0.25798, 46, 5.48, -11.15, 0.67197, 47, -5.38, -11.5, 0.03915, 48, -14.03, -14.53, 0.03088, 49, -19.97, -20.9, 2.0E-5, 4, 45, 8.09, -11.48, 0.58572, 46, 0.62, -11.54, 0.40971, 47, -10.21, -12.21, 7.2E-4, 48, -18.61, -16.2, 0.00385, 1, 45, -5.25, -11.71, 1, 2, 45, -3.79, 0.93, 0.99966, 46, -12, 0.11, 3.4E-4, 2, 45, -2.45, 12.59, 0.89511, 46, -11.39, 11.82, 0.10489, 1, 46, 0.45, 0.12, 1, 2, 46, 11.49, 0.11, 0.21255, 47, -0.14, 0.13, 0.78745, 2, 46, 23.53, -0.52, 2.6E-4, 48, 0.51, 0.55, 0.99974, 1, 49, 0.35, 0.46, 1, 2, 46, 18.12, -0.24, 0.00132, 47, 6.51, 0.22, 0.99868, 2, 48, 18.88, -1.88, 6.6E-4, 49, 8.06, 0.49, 0.99934, 2, 47, 17.29, -0.97, 1.8E-4, 48, 6.02, 0.4, 0.99982, 1, 46, 5.66, 0.12, 1 ],
  184. "hull": 23,
  185. "edges": [ 20, 22, 40, 42, 42, 44, 42, 46, 16, 18, 18, 20, 38, 40, 38, 46, 0, 44, 46, 0, 34, 48, 48, 4, 30, 50, 50, 8, 30, 32, 32, 34, 48, 54, 54, 50, 32, 54, 4, 6, 6, 8, 54, 6, 26, 52, 52, 12, 22, 24, 24, 26, 18, 56, 56, 52, 24, 56, 12, 14, 14, 16, 56, 14, 22, 18, 26, 28, 28, 30, 50, 58, 58, 52, 28, 58, 8, 10, 10, 12, 58, 10, 34, 36, 36, 38, 46, 60, 60, 48, 36, 60, 0, 2, 2, 4, 60, 2 ],
  186. "width": 26,
  187. "height": 58
  188. }
  189. },
  190. "toufa3": {
  191. "toufa3": {
  192. "type": "mesh",
  193. "uvs": [ 0.975, 0.15794, 0.98769, 0.28349, 1, 0.40536, 1, 0.56876, 0.99999, 0.69195, 0.89156, 0.83088, 0.79615, 0.91186, 0.54986, 1, 0.28949, 1, 0, 1, 0, 0.9441, 0.02817, 0.92382, 0.0895, 0.87968, 0.17504, 0.81811, 0.22053, 0.76928, 0.28158, 0.70752, 0.33323, 0.63771, 0.33875, 0.54713, 0.30545, 0.44922, 0.26838, 0.34017, 0.11612, 0.21602, 0, 0.12133, 0, 0, 0.42671, 0, 0.75745, 0, 0.6156, 0.2624, 0.69597, 0.47749, 0.64356, 0.72222, 0.5006, 0.87624, 0.50585, 0.11576, 0.68825, 0.36438, 0.70099, 0.6052, 0.37068, 0.9524, 0.565, 0.80951 ],
  194. "triangles": [ 8, 32, 7, 32, 28, 7, 7, 28, 6, 12, 8, 11, 8, 9, 11, 8, 12, 32, 9, 10, 11, 12, 13, 32, 32, 13, 28, 13, 14, 28, 28, 33, 6, 6, 33, 5, 28, 14, 33, 33, 27, 5, 5, 27, 4, 14, 15, 33, 33, 15, 27, 27, 31, 4, 15, 16, 27, 27, 16, 31, 4, 31, 3, 16, 17, 31, 17, 26, 31, 31, 26, 3, 26, 2, 3, 17, 18, 26, 18, 30, 26, 26, 30, 2, 18, 25, 30, 18, 19, 25, 30, 1, 2, 1, 30, 0, 19, 29, 25, 19, 20, 29, 30, 25, 0, 25, 24, 0, 25, 29, 24, 20, 23, 29, 20, 21, 23, 21, 22, 23, 29, 23, 24 ],
  195. "vertices": [ 1, 51, -2, 10.84, 1, 2, 51, 4.98, 9.94, 0.99484, 52, -10.04, 8.49, 0.00516, 2, 51, 11.76, 9.07, 0.77076, 52, -3.21, 8.82, 0.22924, 3, 51, 20.77, 7.46, 0.08605, 52, 5.94, 8.82, 0.8421, 53, -8.37, 6.64, 0.07186, 3, 51, 27.56, 6.25, 2.5E-4, 52, 12.84, 8.82, 0.41803, 53, -1.84, 8.84, 0.58172, 3, 52, 20.62, 5.89, 0.00655, 53, 6.47, 8.56, 0.94036, 54, -8.43, 5.04, 0.0531, 2, 53, 11.59, 7.57, 0.62994, 54, -3.51, 6.78, 0.37006, 2, 53, 18.4, 2.86, 0.00181, 54, 4.75, 6.15, 0.99819, 1, 54, 10.06, 1.55, 1, 1, 54, 15.97, -3.57, 1, 2, 53, 20.19, -12.21, 0.0068, 54, 13.92, -5.94, 0.9932, 2, 53, 18.87, -11.85, 0.01692, 54, 12.6, -6.3, 0.98308, 2, 53, 15.99, -11.08, 0.08371, 54, 9.73, -7.08, 0.91629, 3, 52, 19.9, -13.45, 0.00622, 53, 11.99, -9.99, 0.33803, 54, 5.73, -8.18, 0.65575, 3, 52, 17.17, -12.22, 0.03573, 53, 9, -9.71, 0.60038, 54, 3.01, -9.44, 0.36389, 3, 52, 13.71, -10.58, 0.15237, 53, 5.2, -9.25, 0.75053, 54, -0.5, -10.97, 0.0971, 4, 51, 21.4, -10.94, 0.0066, 52, 9.8, -9.18, 0.45391, 53, 1.05, -9.18, 0.53301, 54, -4.12, -13.01, 0.00648, 3, 51, 16.44, -9.9, 0.1334, 52, 4.73, -9.03, 0.71213, 53, -3.8, -10.67, 0.15447, 3, 51, 10.88, -9.82, 0.56087, 52, -0.76, -9.93, 0.42306, 53, -8.71, -13.27, 0.01607, 2, 51, 4.69, -9.73, 0.92367, 52, -6.86, -10.93, 0.07633, 2, 51, -2.87, -12.56, 0.99975, 52, -13.82, -15.04, 2.5E-4, 1, 51, -8.64, -14.71, 1, 1, 51, -15.33, -13.52, 1, 1, 51, -13.31, -2.18, 1, 1, 51, -11.74, 6.61, 1, 1, 51, 2.06, 0.26, 1, 1, 52, 0.83, 0.61, 1, 1, 53, 2.85, 0.27, 1, 1, 54, 1.22, 0.04, 1, 1, 51, -6.55, -1.21, 1, 1, 51, 8.02, 1.19, 1, 2, 51, 21.36, -0.84, 1.6E-4, 52, 7.98, 0.75, 0.99984, 1, 54, 6.66, 0.97, 1, 2, 52, 19.42, -2.92, 2.4E-4, 53, 8.16, -0.17, 0.99976 ],
  196. "hull": 25,
  197. "edges": [ 42, 44, 18, 20, 48, 0, 12, 14, 44, 46, 46, 48, 14, 16, 16, 18, 42, 46, 38, 40, 40, 42, 46, 58, 58, 50, 40, 58, 58, 48, 38, 50, 50, 0, 34, 52, 52, 4, 30, 54, 54, 8, 34, 36, 36, 38, 50, 60, 60, 52, 36, 60, 0, 2, 2, 4, 60, 2, 30, 32, 32, 34, 52, 62, 62, 54, 32, 62, 4, 6, 6, 8, 62, 6, 26, 56, 56, 12, 24, 26, 16, 64, 64, 56, 24, 64, 64, 14, 26, 28, 28, 30, 54, 66, 66, 56, 28, 66, 8, 10, 10, 12, 66, 10, 20, 22, 22, 24, 22, 16 ],
  198. "width": 27,
  199. "height": 56
  200. }
  201. },
  202. "toufa4": {
  203. "toufa4": {
  204. "type": "mesh",
  205. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  206. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  207. "vertices": [ 19.3, -46.63, 22.79, 19.28, 89.7, 15.73, 86.2, -50.18 ],
  208. "hull": 4,
  209. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  210. "width": 66,
  211. "height": 67
  212. }
  213. },
  214. "toufa5": {
  215. "toufa5": {
  216. "type": "mesh",
  217. "uvs": [ 1, 0.03553, 0.92676, 0.083, 0.78704, 0.17355, 0.7116, 0.29863, 0.66164, 0.38147, 0.68101, 0.48745, 0.69964, 0.5894, 0.74336, 0.68937, 0.80604, 0.76685, 0.9516, 0.87817, 1, 1, 0.66544, 1, 0.29684, 1, 0.08404, 0.90307, 0, 0.76892, 2.8E-4, 0.58693, 0.05405, 0.41034, 0.15192, 0.28418, 0.31004, 0.1744, 0.52278, 0.06853, 0.68064, 0, 1, 0, 0.63644, 0.13148, 0.47544, 0.23449, 0.33484, 0.44242, 0.33364, 0.74874, 0.44124, 0.85826, 0.83156, 0.05442, 0.40292, 0.33905, 0.31195, 0.60439, 0.59604, 0.95613 ],
  218. "triangles": [ 25, 6, 7, 14, 29, 25, 26, 25, 7, 13, 14, 25, 13, 25, 26, 26, 7, 8, 30, 26, 8, 30, 8, 9, 12, 13, 26, 12, 26, 30, 11, 30, 9, 12, 30, 11, 11, 9, 10, 15, 16, 29, 29, 24, 5, 29, 5, 6, 25, 29, 6, 14, 15, 29, 17, 18, 28, 28, 23, 4, 24, 17, 28, 16, 17, 24, 28, 4, 5, 24, 28, 5, 29, 16, 24, 27, 20, 21, 21, 1, 27, 0, 1, 21, 22, 19, 20, 22, 20, 27, 2, 22, 27, 2, 27, 1, 23, 18, 19, 23, 19, 22, 3, 22, 2, 23, 22, 3, 28, 18, 23, 4, 23, 3 ],
  219. "vertices": [ 1, 35, -10.39, 8.72, 1, 1, 35, -7.39, 7.91, 1, 2, 35, -1.66, 6.35, 0.99748, 36, -8.83, 7.33, 0.00252, 3, 35, 5.21, 6.94, 0.72985, 36, -1.94, 7.19, 0.26799, 37, -10.27, 9.93, 0.00216, 4, 35, 9.75, 7.33, 0.2153, 36, 2.63, 7.1, 0.70585, 37, -5.87, 8.72, 0.07838, 38, -13.28, 13.31, 4.6E-4, 5, 35, 14.83, 9.78, 0.00559, 36, 7.94, 8.99, 0.47571, 37, -0.26, 9.25, 0.4858, 39, -11.49, 15.38, 0.00353, 38, -7.77, 12.12, 0.02937, 4, 36, 13.04, 10.81, 0.09743, 37, 5.14, 9.76, 0.66799, 39, -6.63, 12.98, 0.05898, 38, -2.47, 10.97, 0.1756, 4, 36, 17.89, 13.21, 0.00405, 37, 10.43, 10.9, 0.32851, 39, -1.53, 11.17, 0.30889, 38, 2.91, 10.46, 0.35855, 3, 37, 14.52, 12.5, 0.09274, 39, 2.79, 10.38, 0.67842, 38, 7.3, 10.75, 0.22884, 3, 37, 20.39, 16.19, 0.00281, 39, 9.73, 10.43, 0.97282, 38, 14.01, 12.49, 0.02437, 1, 39, 15.88, 8.12, 1, 1, 39, 11.54, 0.97, 1, 2, 39, 6.76, -6.91, 0.9685, 38, 15.36, -5.05, 0.0315, 2, 39, -0.39, -8.8, 0.49434, 38, 8.89, -8.63, 0.50566, 3, 37, 14.8, -7.65, 0.05157, 39, -7.56, -6.91, 0.03807, 38, 1.48, -8.54, 0.91036, 3, 36, 17.35, -6.13, 0.02275, 37, 5.15, -7.72, 0.86321, 38, -7.74, -5.7, 0.11404, 3, 35, 16.58, -6.32, 1.3E-4, 36, 7.96, -7.21, 0.7868, 37, -4.22, -6.46, 0.21307, 3, 35, 9.46, -6.41, 0.27276, 36, 0.87, -6.54, 0.72689, 37, -10.92, -4.06, 3.4E-4, 2, 35, 2.62, -4.78, 0.98275, 36, -5.76, -4.19, 0.01725, 1, 35, -4.51, -1.81, 1, 1, 35, -9.31, 0.59, 1, 1, 35, -12.15, 8.06, 1, 1, 35, -2.41, 2.04, 1, 2, 35, 4.13, 0.22, 0.99795, 36, -3.73, 0.62, 0.00205, 3, 36, 7.82, 0.01, 0.99985, 37, -2.58, 0.58, 1.5E-4, 38, -12.6, 4.55, 0, 1, 38, 2.91, -0.26, 1, 3, 37, 19.44, 3.42, 6.0E-5, 39, 2.21, 0.07, 0.99916, 38, 9.25, 0.61, 7.8E-4, 1, 35, -7.96, 5.14, 1, 3, 35, 9.95, 0.49, 0.00987, 36, 2.09, 0.27, 0.98992, 37, -8.07, 2.23, 2.1E-4, 3, 37, 6.01, 0.08, 0.99948, 39, -10.97, 4.28, 7.0E-5, 38, -4.56, 1.48, 4.5E-4, 1, 39, 8.65, 0.69, 1 ],
  220. "hull": 22,
  221. "edges": [ 40, 42, 32, 30, 28, 30, 28, 26, 26, 24, 0, 42, 18, 20, 16, 18, 44, 46, 50, 52, 20, 22, 22, 24, 42, 54, 54, 44, 40, 54, 0, 2, 2, 4, 54, 2, 4, 44, 36, 38, 38, 40, 44, 38, 36, 46, 4, 6, 6, 8, 46, 6, 46, 56, 56, 48, 8, 56, 32, 34, 34, 36, 56, 34, 32, 48, 8, 10, 10, 12, 48, 10, 48, 58, 58, 50, 30, 58, 58, 12, 28, 50, 12, 14, 14, 16, 50, 14, 26, 52, 52, 16, 22, 60, 60, 52, 24, 60, 60, 18 ],
  222. "width": 25,
  223. "height": 53
  224. }
  225. },
  226. "toufa6": {
  227. "toufa6": {
  228. "type": "mesh",
  229. "uvs": [ 0.94214, 0.13976, 0.9975, 0.29093, 0.95068, 0.50677, 0.88658, 0.724, 0.71869, 0.90117, 0.54469, 1, 0.29743, 1, 0.14043, 1, 0, 1, 0, 0.89906, 0.05057, 0.86708, 0.12343, 0.82102, 0.20297, 0.76098, 0.28827, 0.69659, 0.33061, 0.63183, 0.38985, 0.54124, 0.42869, 0.40764, 0.41953, 0.22415, 0.34627, 0, 0.61795, 0, 0.853, 0, 0.68316, 0.3795, 0.67569, 0.53489, 0.52579, 0.82182, 0.65725, 0.18921, 0.5993, 0.68111, 0.40455, 0.91642 ],
  230. "triangles": [ 6, 26, 5, 26, 23, 5, 5, 23, 4, 26, 6, 12, 8, 10, 7, 10, 11, 7, 12, 6, 11, 6, 7, 11, 8, 9, 10, 12, 13, 26, 26, 13, 23, 13, 14, 23, 23, 25, 4, 4, 25, 3, 23, 14, 25, 25, 22, 3, 14, 15, 25, 25, 15, 22, 3, 22, 2, 15, 16, 22, 22, 21, 2, 22, 16, 21, 2, 21, 1, 16, 17, 21, 17, 24, 21, 21, 0, 1, 21, 24, 0, 17, 19, 24, 17, 18, 19, 24, 20, 0, 24, 19, 20 ],
  231. "vertices": [ 2, 64, 4.95, 12.37, 0.98659, 65, -11.83, 9.62, 0.01341, 3, 64, 13.5, 13.03, 0.73789, 65, -3.79, 12.61, 0.25875, 66, -19.98, 9.26, 0.00336, 3, 64, 24.9, 9.26, 0.08258, 65, 8.2, 12.12, 0.65838, 66, -8.08, 10.78, 0.25904, 2, 65, 20.34, 10.98, 0.06218, 66, 4.08, 11.7, 0.93782, 2, 66, 15.2, 8.21, 0.57301, 67, 2.56, 9.47, 0.42699, 2, 66, 22.23, 3.33, 0.06375, 67, 10.65, 6.66, 0.93625, 1, 67, 15.55, -1.35, 1, 1, 67, 18.66, -6.45, 1, 1, 67, 21.44, -11, 1, 1, 67, 16.7, -13.89, 1, 1, 67, 14.2, -13.17, 1, 2, 66, 17.12, -14.75, 1.2E-4, 67, 10.6, -12.13, 0.99988, 3, 65, 25.15, -14.63, 0.00224, 66, 13.12, -12.74, 0.02315, 67, 6.2, -11.27, 0.97461, 3, 65, 21.28, -11.79, 0.03858, 66, 8.83, -10.59, 0.18768, 67, 1.49, -10.35, 0.77374, 3, 65, 17.57, -10.57, 0.15731, 66, 4.96, -10.01, 0.39776, 67, -2.39, -10.84, 0.44493, 4, 64, 23.14, -12.07, 9.5E-4, 65, 12.38, -8.87, 0.56845, 66, -0.44, -9.2, 0.31903, 67, -7.81, -11.52, 0.11157, 4, 64, 16.15, -9.36, 0.15563, 65, 4.91, -8.19, 0.83209, 66, -7.92, -9.79, 0.00961, 67, -14.85, -14.09, 0.00266, 2, 64, 6.14, -7.98, 0.92686, 65, -5.08, -9.62, 0.07314, 1, 64, -6.48, -8.63, 1, 1, 64, -4.72, 1.54, 1, 1, 64, -3.2, 10.35, 1, 2, 65, 2.33, 1.26, 0.99849, 66, -12.04, -0.91, 0.00151, 2, 65, 10.86, 1.89, 0.86341, 66, -3.74, 1.15, 0.13659, 2, 66, 12.99, -0.03, 0.0854, 67, 2.66, 0.94, 0.9146, 1, 64, 5.79, 1.24, 1, 1, 66, 4.79, 0.55, 1, 1, 67, 9.5, -0.28, 1 ],
  232. "hull": 21,
  233. "edges": [ 36, 34, 34, 32, 32, 30, 16, 18, 2, 4, 4, 6, 6, 8, 8, 10, 36, 38, 38, 40, 42, 44, 10, 12, 38, 48, 48, 42, 34, 48, 2, 0, 0, 40, 48, 0, 32, 42, 42, 2, 30, 44, 44, 4, 26, 46, 46, 8, 22, 12, 26, 28, 28, 30, 44, 50, 50, 46, 28, 50, 50, 6, 22, 24, 24, 26, 12, 52, 52, 46, 24, 52, 52, 10, 18, 20, 20, 22, 12, 14, 14, 16, 20, 14 ],
  234. "width": 38,
  235. "height": 55
  236. }
  237. },
  238. "waitao you": {
  239. "waitao you": {
  240. "type": "mesh",
  241. "uvs": [ 0.86219, 0.18352, 0.84767, 0.30483, 0.84262, 0.38178, 0.83672, 0.47149, 0.83672, 0.54483, 0.83672, 0.61316, 0.85357, 0.68754, 0.86956, 0.75816, 0.93704, 0.82196, 1, 0.88149, 1, 1, 0.60686, 1, 0, 1, 0, 0.94316, 0, 0.87649, 0, 0.80649, 0, 0.71983, 0, 0.64816, 0, 0.57483, 0, 0.48483, 0, 0.40483, 0, 0.32316, 0, 0.1865, 0, 0, 0.377, 0, 0.88416, 0, 0.39524, 0.30816, 0.42443, 0.47483, 0.46092, 0.63316, 0.49375, 0.77149, 0.54119, 0.90482, 0.41068, 0.39633, 0.44296, 0.55525, 0.47691, 0.70052, 0.51945, 0.84373, 0.38806, 0.18681 ],
  242. "triangles": [ 11, 9, 10, 12, 30, 11, 11, 30, 9, 12, 13, 30, 13, 34, 30, 30, 8, 9, 13, 14, 34, 30, 34, 8, 14, 29, 34, 14, 15, 29, 34, 7, 8, 34, 29, 7, 29, 6, 7, 29, 33, 6, 15, 33, 29, 15, 16, 33, 16, 28, 33, 16, 17, 28, 33, 5, 6, 33, 28, 5, 17, 32, 28, 17, 18, 32, 5, 28, 4, 28, 32, 4, 18, 27, 32, 18, 19, 27, 4, 32, 3, 32, 27, 3, 3, 27, 2, 2, 27, 31, 19, 31, 27, 19, 20, 31, 20, 26, 31, 20, 21, 26, 2, 31, 1, 1, 31, 26, 21, 35, 26, 21, 22, 35, 26, 35, 1, 1, 35, 0, 22, 24, 35, 35, 24, 0, 22, 23, 24, 0, 24, 25 ],
  243. "vertices": [ 3, 24, 2.79, 17.58, 0.89446, 25, -9.27, 18.42, 0.0493, 26, -21.58, 19.03, 0.05624, 3, 24, 12.62, 17.04, 0.50261, 25, 0.47, 17.06, 0.22853, 26, -11.88, 17.36, 0.26886, 5, 24, 18.85, 16.85, 0.20353, 25, 6.67, 16.35, 0.25659, 26, -5.71, 16.45, 0.53681, 27, -17.72, 17.14, 1.0E-5, 28, -27.85, 17.86, 0.00306, 5, 24, 26.12, 16.63, 0.03156, 25, 13.89, 15.52, 0.09083, 26, 1.48, 15.4, 0.83258, 27, -10.57, 15.81, 0.01349, 28, -20.75, 16.32, 0.03153, 5, 24, 32.06, 16.63, 0.00146, 25, 19.81, 15.02, 0.00788, 26, 7.38, 14.71, 0.79479, 27, -4.7, 14.9, 0.08504, 28, -14.91, 15.23, 0.11084, 4, 26, 12.88, 14.07, 0.50577, 27, 0.77, 14.05, 0.20749, 28, -9.46, 14.22, 0.28604, 29, -19.35, 14.91, 7.0E-4, 4, 26, 18.93, 14, 0.17293, 27, 6.82, 13.75, 0.19678, 28, -3.43, 13.73, 0.60422, 29, -13.33, 14.21, 0.02608, 4, 26, 24.68, 13.92, 0.02799, 27, 12.56, 13.46, 0.04899, 28, 2.3, 13.27, 0.77137, 29, -7.62, 13.55, 0.15165, 4, 26, 30.11, 15.81, 6.5E-4, 27, 18.05, 15.13, 7.8E-4, 28, 7.84, 14.78, 0.58253, 29, -2.03, 14.86, 0.41604, 3, 27, 23.17, 16.7, 0, 28, 13.01, 16.19, 0.357, 29, 3.18, 16.09, 0.643, 3, 27, 32.66, 15.23, 3.0E-5, 28, 22.45, 14.44, 0.13602, 29, 12.55, 14.01, 0.86395, 2, 27, 30.43, 0.85, 1.0E-5, 29, 9.39, -0.19, 0.99999, 3, 27, 27, -21.34, 0.34435, 28, 15.69, -21.94, 0.22682, 29, 4.52, -22.11, 0.42884, 4, 26, 35.85, -19.77, 3.7E-4, 27, 22.45, -20.63, 0.38494, 28, 11.16, -21.1, 0.2322, 29, 0.03, -21.11, 0.38249, 5, 25, 43.98, -18.08, 6.7E-4, 26, 30.49, -19.14, 0.00852, 27, 17.11, -19.81, 0.51593, 28, 5.85, -20.11, 0.22379, 29, -5.24, -19.94, 0.2511, 5, 25, 38.33, -17.61, 0.00875, 26, 24.86, -18.49, 0.04612, 27, 11.51, -18.94, 0.68398, 28, 0.28, -19.08, 0.15016, 29, -10.78, -18.71, 0.11099, 5, 25, 31.33, -17.02, 0.05128, 26, 17.88, -17.68, 0.1755, 27, 4.57, -17.86, 0.71741, 28, -6.62, -17.79, 0.03539, 29, -17.63, -17.19, 0.02043, 5, 25, 25.55, -16.53, 0.14673, 26, 12.12, -17.01, 0.33636, 27, -1.17, -16.97, 0.51325, 28, -12.33, -16.73, 0.00211, 29, -23.3, -15.93, 0.00155, 3, 25, 19.63, -16.03, 0.34412, 26, 6.22, -16.32, 0.41066, 27, -7.04, -16.06, 0.24522, 4, 24, 27.2, -14.32, 0.00669, 25, 12.37, -15.42, 0.70997, 26, -1.02, -15.48, 0.22957, 27, -14.24, -14.95, 0.05377, 4, 24, 20.72, -14.32, 0.09244, 25, 5.91, -14.87, 0.85936, 26, -7.46, -14.73, 0.04341, 27, -20.65, -13.96, 0.00478, 3, 24, 14.1, -14.32, 0.37098, 25, -0.68, -14.32, 0.62877, 26, -14.03, -13.97, 2.6E-4, 2, 24, 3.03, -14.32, 0.8896, 25, -11.71, -13.39, 0.1104, 1, 24, -12.07, -14.32, 1, 1, 24, -12.07, -0.38, 1, 1, 24, -12.07, 18.39, 1, 3, 24, 12.89, 0.3, 0.84305, 25, -0.66, 0.36, 0.15548, 26, -13.55, 0.7, 0.00147, 2, 26, -0.01, 0.21, 0.99996, 28, -23.27, 1.27, 4.0E-5, 3, 26, 12.88, 0.07, 0.38712, 27, 0.24, 0.06, 0.61187, 28, -10.41, 0.25, 0.00102, 1, 28, 0.83, -0.6, 1, 3, 27, 22.44, -0.37, 0.00576, 28, 11.77, -0.84, 0.03256, 29, 1.34, -0.89, 0.96167, 3, 24, 20.03, 0.87, 1.0E-5, 25, 6.5, 0.33, 0.99069, 26, -6.39, 0.44, 0.00931, 2, 26, 6.54, 0.14, 0.99977, 28, -16.74, 0.75, 2.3E-4, 2, 25, 31.26, 0.7, 1.1E-4, 27, 5.72, -0.19, 0.99989, 3, 27, 17.43, -0.41, 0.01032, 28, 6.75, -0.73, 0.98731, 29, -3.66, -0.6, 0.00237, 2, 24, 3.06, 0.03, 0.99998, 26, -23.34, 1.57, 2.0E-5 ],
  244. "hull": 26,
  245. "edges": [ 46, 48, 20, 22, 22, 24, 60, 22, 42, 52, 52, 2, 48, 50, 20, 18, 38, 54, 54, 6, 34, 56, 56, 10, 30, 58, 58, 14, 24, 26, 26, 60, 60, 18, 38, 40, 40, 42, 52, 62, 62, 54, 40, 62, 2, 4, 4, 6, 62, 4, 34, 36, 36, 38, 54, 64, 64, 56, 36, 64, 6, 8, 8, 10, 64, 8, 30, 32, 32, 34, 56, 66, 66, 58, 32, 66, 10, 12, 12, 14, 66, 12, 26, 28, 28, 30, 58, 68, 68, 60, 28, 68, 14, 16, 16, 18, 68, 16, 42, 44, 44, 46, 48, 70, 70, 52, 44, 70, 2, 0, 0, 50, 70, 0 ],
  246. "width": 37,
  247. "height": 81
  248. }
  249. },
  250. "waitaozuo": {
  251. "waitaozuo": {
  252. "type": "mesh",
  253. "uvs": [ 1, 0.07544, 0.79824, 0.20881, 0.74943, 0.29693, 0.71445, 0.36008, 0.71445, 0.43927, 0.71445, 0.54713, 0.71034, 0.62316, 0.70514, 0.71953, 0.69117, 0.80574, 0.6748, 0.86786, 0.65339, 0.93001, 0.63996, 1, 0.3141, 1, 0, 1, 1.0E-5, 0.92122, 0.02271, 0.86009, 0.0569, 0.79013, 0.09997, 0.70978, 0.10615, 0.65074, 0.11393, 0.5764, 0.12423, 0.47109, 0.1279, 0.38936, 0.13642, 0.31535, 0.14186, 0.22508, 0, 0.12261, 0, 0, 0.43979, 0, 1, 0, 0.43048, 0.30159, 0.42117, 0.46099, 0.43048, 0.56346, 0.43048, 0.71147, 0.3979, 0.7993, 0.356, 0.93593, 0.43592, 0.12552, 0.43331, 0.21009, 0.43048, 0.37909, 0.43048, 0.63283, 0.37905, 0.86843 ],
  254. "triangles": [ 14, 15, 33, 33, 38, 10, 12, 13, 14, 33, 12, 14, 11, 33, 10, 12, 33, 11, 9, 32, 8, 38, 16, 32, 15, 16, 38, 38, 32, 9, 10, 38, 9, 33, 15, 38, 7, 31, 37, 17, 18, 31, 32, 17, 31, 16, 17, 32, 8, 31, 7, 32, 31, 8, 30, 29, 5, 30, 19, 20, 6, 30, 5, 37, 30, 6, 19, 30, 37, 18, 19, 37, 18, 37, 31, 6, 7, 37, 29, 36, 4, 20, 21, 29, 29, 4, 5, 30, 20, 29, 36, 22, 28, 36, 28, 3, 21, 22, 36, 36, 3, 4, 29, 21, 36, 26, 27, 0, 34, 24, 25, 26, 34, 25, 34, 26, 0, 1, 34, 0, 34, 23, 24, 35, 34, 1, 35, 23, 34, 2, 35, 1, 28, 23, 35, 28, 35, 2, 22, 23, 28, 3, 28, 2 ],
  255. "vertices": [ 1, 17, -5.39, 16.58, 1, 2, 17, 5.42, 10.72, 0.96099, 18, -1.39, 10.8, 0.03901, 3, 17, 10.23, 9.31, 0.5773, 18, 3.35, 9.17, 0.42222, 19, -6.83, 8.77, 4.8E-4, 3, 17, 12.52, 8.29, 0.12531, 18, 5.59, 8.05, 0.79575, 19, -4.53, 7.79, 0.07893, 4, 17, 18.28, 8.29, 1.0E-4, 18, 11.34, 7.79, 0.36959, 19, 1.22, 7.88, 0.62371, 20, -8.91, 7.64, 0.0066, 3, 18, 20.28, 7.38, 0.00179, 19, 10.17, 8.01, 0.48568, 20, 0.03, 8.01, 0.51252, 3, 19, 16.49, 7.98, 0.04865, 20, 6.34, 8.15, 0.83031, 21, -4.6, 7.92, 0.12104, 3, 20, 14.34, 8.34, 0.18567, 21, 3.37, 8.53, 0.75791, 22, -7.42, 8.58, 0.05642, 4, 20, 21.5, 8.23, 0.00133, 21, 10.53, 8.8, 0.48375, 22, -0.26, 8.8, 0.5123, 23, -10.93, 5.67, 0.00263, 3, 21, 15.71, 8.81, 0.10747, 22, 4.92, 8.78, 0.76648, 23, -6, 7.27, 0.12604, 3, 21, 20.91, 8.68, 0.00314, 22, 10.11, 8.61, 0.43276, 23, -1.02, 8.73, 0.5641, 2, 22, 15.93, 8.73, 0.127, 23, 4.48, 10.66, 0.873, 1, 23, 8.2, 1.97, 1, 2, 22, 17.56, -9.76, 0.00811, 23, 11.79, -6.4, 0.99189, 3, 21, 21.96, -10.26, 0.00399, 22, 11.04, -10.33, 0.18808, 23, 5.78, -8.98, 0.80793, 3, 21, 16.85, -10.08, 0.07863, 22, 5.93, -10.12, 0.50027, 23, 0.86, -10.37, 0.4211, 4, 20, 20.98, -10.2, 0.00688, 21, 10.98, -9.64, 0.42825, 22, 0.06, -9.64, 0.48222, 23, -4.87, -11.75, 0.08265, 5, 19, 23.93, -9.61, 0.00122, 20, 14.26, -9.23, 0.20139, 21, 4.22, -9.02, 0.70997, 22, -6.69, -8.98, 0.08661, 23, -11.49, -13.22, 8.2E-4, 4, 19, 19.03, -9.51, 0.03898, 20, 9.36, -9.26, 0.58349, 21, -0.68, -9.31, 0.37233, 22, -11.59, -9.23, 0.0052, 4, 18, 21.92, -10.13, 5.6E-4, 19, 12.86, -9.37, 0.30357, 20, 3.18, -9.29, 0.65239, 21, -6.84, -9.66, 0.04348, 3, 18, 13.2, -9.43, 0.19869, 19, 4.12, -9.2, 0.72874, 20, -5.56, -9.35, 0.07256, 3, 17, 14.35, -8.72, 0.03398, 18, 6.65, -9.03, 0.7328, 19, -2.45, -9.19, 0.23322, 3, 17, 10.71, -8.47, 0.41713, 18, 3.03, -8.61, 0.57281, 19, -6.09, -9, 0.01006, 2, 17, 6.81, -8.31, 0.96698, 18, -0.86, -8.28, 0.03302, 1, 17, -1.48, -12.42, 1, 1, 17, -11.65, -12.42, 1, 1, 17, -11.65, 0.33, 1, 1, 17, -11.65, 16.58, 1, 2, 17, 11.89, 0.06, 0.77212, 18, 4.59, -0.15, 0.22788, 1, 19, 3.15, -0.6, 1, 1, 20, 1.73, -0.16, 1, 1, 21, 3.46, 0.53, 1, 2, 21, 10.8, 0.28, 0.51965, 22, -0.05, 0.28, 0.48035, 1, 23, 2.83, 0.99, 1, 1, 17, -1.23, 0.22, 1, 1, 17, 5.79, 0.14, 1, 1, 18, 5.98, -0.21, 1, 1, 20, 7.48, 0.08, 1, 1, 22, 5.72, 0.24, 1 ],
  256. "hull": 28,
  257. "edges": [ 0, 54, 0, 2, 14, 16, 48, 50, 48, 46, 26, 28, 50, 52, 52, 54, 58, 60, 62, 64, 22, 24, 24, 26, 66, 24, 52, 68, 48, 68, 68, 0, 56, 70, 70, 68, 46, 70, 70, 2, 42, 44, 44, 46, 44, 56, 2, 4, 4, 6, 56, 4, 56, 72, 72, 58, 42, 72, 72, 6, 38, 40, 40, 42, 40, 58, 6, 8, 8, 10, 58, 8, 38, 60, 60, 10, 34, 62, 62, 14, 34, 36, 36, 38, 60, 74, 74, 62, 36, 74, 10, 12, 12, 14, 74, 12, 32, 34, 32, 64, 64, 16, 28, 66, 20, 22, 66, 20, 28, 30, 30, 32, 64, 76, 76, 66, 30, 76, 16, 18, 18, 20, 76, 18 ],
  258. "width": 29,
  259. "height": 83
  260. }
  261. },
  262. "yanbai": {
  263. "yanbai": { "x": 3.98, "y": -2.59, "rotation": -91.76, "width": 23, "height": 13 }
  264. },
  265. "yanbaizuo": {
  266. "yanbaizuo": { "x": 4.71, "y": -1.59, "rotation": -94.03, "width": 19, "height": 13 }
  267. },
  268. "yanjiemao": {
  269. "yanjiemao": { "x": 4.98, "y": -2.62, "rotation": -91.76, "width": 23, "height": 13 }
  270. },
  271. "yanjiemaozuo": {
  272. "yanjiemaozuo": { "x": 7.84, "y": 0.2, "rotation": -94.03, "width": 21, "height": 9 }
  273. },
  274. "yanqiu zuo": {
  275. "yanqiu zuo": { "x": 0.95, "y": -1.84, "rotation": -94.03, "width": 14, "height": 12 }
  276. },
  277. "yanzhu": {
  278. "yanzhu": { "x": 0.33, "y": -1.62, "rotation": -91.76, "width": 14, "height": 11 }
  279. },
  280. "yifuhou": {
  281. "yifuhou": {
  282. "type": "mesh",
  283. "uvs": [ 1, 0.25741, 1, 0.54786, 1, 0.78513, 1, 1, 0.53409, 1, 0, 1, 0, 0.84241, 0, 0.63786, 0, 0.34332, 0, 0, 0.52509, 0, 1, 0, 0.54009, 0.60105, 0.53283, 0.31009, 0.5367, 0.82603 ],
  284. "triangles": [ 4, 14, 3, 14, 2, 3, 14, 4, 6, 4, 5, 6, 6, 7, 14, 14, 12, 2, 14, 7, 12, 12, 1, 2, 7, 8, 12, 8, 13, 12, 12, 13, 1, 13, 0, 1, 13, 9, 10, 13, 8, 9, 13, 10, 0, 10, 11, 0 ],
  285. "vertices": [ 2, 56, 0.96, 21.52, 0.94659, 57, -11.11, 21.22, 0.05341, 2, 56, 10.53, 21.06, 0.70065, 57, -1.52, 21.03, 0.29935, 2, 56, 18.36, 20.68, 0.4241, 57, 6.3, 20.87, 0.5759, 2, 56, 25.44, 20.34, 0.31038, 57, 13.39, 20.73, 0.68962, 2, 56, 24.43, -0.6, 1.6E-4, 57, 12.97, -0.23, 0.99984, 2, 56, 23.27, -24.6, 0.07966, 57, 12.49, -24.26, 0.92034, 2, 56, 18.08, -24.35, 0.12932, 57, 7.29, -24.16, 0.87068, 2, 56, 11.34, -24.03, 0.31914, 57, 0.54, -24.02, 0.68086, 2, 56, 1.63, -23.56, 0.67312, 57, -9.17, -23.83, 0.32688, 2, 56, -9.69, -23.02, 0.85488, 57, -20.5, -23.6, 0.14512, 2, 56, -8.55, 0.59, 0.99995, 57, -20.03, 0.02, 5.0E-5, 2, 56, -7.52, 21.93, 0.99937, 57, -19.6, 21.39, 6.3E-4, 2, 56, 11.29, 0.31, 0.639, 57, -0.18, 0.3, 0.361, 1, 56, 1.69, 0.44, 1, 2, 56, 18.7, -0.2, 6.0E-5, 57, 7.24, 0, 0.99994 ],
  286. "hull": 12,
  287. "edges": [ 18, 20, 20, 22, 6, 8, 8, 10, 14, 24, 24, 2, 14, 16, 16, 18, 20, 26, 26, 24, 16, 26, 2, 0, 0, 22, 26, 0, 10, 12, 12, 14, 8, 28, 28, 24, 12, 28, 2, 4, 4, 6, 28, 4 ],
  288. "width": 45,
  289. "height": 33
  290. }
  291. },
  292. "youjiap": {
  293. "youjiap": {
  294. "type": "mesh",
  295. "uvs": [ 1, 0.49952, 1, 0.51972, 1, 0.53808, 1, 0.8939, 1, 0.91226, 1, 0.93246, 1, 1, 0, 1, 0, 0.98295, 0, 0.9605, 0.33064, 0.92882, 0.32091, 0.91078, 0.30999, 0.89052, 0.13031, 0.55736, 0.12107, 0.54024, 0.10828, 0.51613, 0, 0.31574, 0, 0, 0.39168, 0, 1, 0, 0.6988, 0.93091, 0.69289, 0.91299, 0.68604, 0.89223, 0.56623, 0.52909, 0.57272, 0.54875, 0.55906, 0.50734 ],
  296. "triangles": [ 7, 8, 20, 8, 10, 20, 8, 9, 10, 10, 11, 21, 7, 20, 6, 20, 5, 6, 20, 4, 5, 10, 21, 20, 20, 21, 4, 11, 22, 21, 4, 21, 3, 21, 22, 3, 11, 12, 22, 22, 2, 3, 12, 24, 22, 22, 24, 2, 12, 13, 24, 13, 23, 24, 13, 14, 23, 2, 24, 1, 24, 23, 1, 1, 23, 0, 14, 25, 23, 14, 15, 25, 23, 25, 0, 25, 15, 18, 15, 16, 18, 0, 25, 19, 25, 18, 19, 16, 17, 18 ],
  297. "vertices": [ 2, 14, 29.96, 11.25, 0.57497, 15, 0.04, 11.26, 0.42503, 2, 14, 31.18, 11.09, 0.47791, 15, 1.26, 11.07, 0.52209, 2, 14, 32.29, 10.95, 0.38897, 15, 2.37, 10.89, 0.61103, 1, 15, 23.81, 7.54, 1, 1, 15, 24.92, 7.37, 1, 1, 15, 26.13, 7.17, 1, 2, 15, 30.2, 6.54, 0.99025, 16, -6.65, 3.55, 0.00975, 1, 16, 17.16, 0.57, 1, 1, 16, 17.04, -0.46, 1, 1, 16, 16.87, -1.82, 1, 2, 15, 23.43, -8.66, 0.14574, 16, 8.75, -2.75, 0.85426, 2, 15, 22.31, -8.72, 0.31104, 16, 8.85, -3.87, 0.68896, 2, 15, 21.05, -8.79, 0.46614, 16, 8.95, -5.13, 0.53386, 2, 14, 30.73, -9.9, 0.50113, 15, 0.3, -9.91, 0.49887, 2, 14, 29.67, -9.98, 0.5949, 15, -0.76, -9.97, 0.4051, 2, 14, 28.17, -10.1, 0.71631, 15, -2.26, -10.04, 0.28369, 1, 14, 15.71, -11.08, 1, 1, 14, -3.39, -8.56, 1, 1, 14, -2.16, 0.76, 1, 1, 14, -0.25, 15.23, 1, 1, 15, 24.92, 0.05, 1, 1, 15, 23.82, 0.08, 1, 1, 15, 22.54, 0.11, 1, 2, 14, 30.39, 0.7, 0.37392, 15, 0.21, 0.69, 0.62608, 2, 14, 31.6, 0.69, 0.01667, 15, 1.42, 0.66, 0.98333, 2, 14, 29.05, 0.7, 0.97616, 15, -1.12, 0.73, 0.02384 ],
  298. "hull": 20,
  299. "edges": [ 12, 14, 32, 34, 20, 18, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 20, 40, 12, 10, 40, 10, 20, 22, 42, 40, 22, 42, 10, 8, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 46, 46, 2, 24, 26, 26, 28, 44, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 46, 30, 50, 2, 0, 0, 38, 50, 0 ],
  300. "width": 24,
  301. "height": 61
  302. }
  303. },
  304. "youshou": {
  305. "youshou": {
  306. "type": "mesh",
  307. "uvs": [ 0.59579, 0.27563, 0.62221, 0.29602, 0.64864, 0.31642, 0.94639, 0.54617, 0.97939, 0.57762, 0.99645, 0.60951, 1, 1, 0.76221, 1, 0.62587, 0.87865, 0.60154, 0.857, 0.55912, 0.81927, 0.29334, 0.58272, 0.26639, 0.55874, 0.24096, 0.5361, 0, 0.32165, 0, 0, 0.23858, 0, 0.43801, 0.40165, 0.75026, 0.69071, 0.77468, 0.72624, 0.79113, 0.74621, 0.46188, 0.42374, 0.48648, 0.44651 ],
  308. "triangles": [ 7, 20, 6, 20, 5, 6, 7, 8, 20, 8, 19, 20, 8, 9, 19, 9, 18, 19, 9, 10, 18, 10, 22, 18, 5, 20, 19, 19, 18, 3, 11, 22, 10, 5, 19, 4, 19, 3, 4, 22, 2, 18, 18, 2, 3, 11, 21, 22, 11, 12, 21, 12, 17, 21, 12, 13, 17, 22, 1, 2, 22, 21, 1, 21, 0, 1, 21, 17, 0, 13, 14, 17, 0, 17, 16, 16, 17, 15, 17, 14, 15 ],
  309. "vertices": [ 2, 7, 23.92, 9.42, 0.5029, 8, -0.83, 9.43, 0.4971, 2, 7, 25.56, 9.59, 0.35363, 8, 0.81, 9.59, 0.64637, 2, 7, 27.19, 9.76, 0.22232, 8, 2.44, 9.75, 0.77768, 2, 8, 20.88, 11.57, 0.97701, 9, -0.25, 11.77, 0.02299, 2, 8, 23.19, 11.55, 0.92618, 9, 2.06, 11.92, 0.07382, 2, 8, 25.07, 10.98, 0.85925, 9, 3.98, 11.49, 0.14075, 1, 9, 22.27, -1.18, 1, 1, 9, 16.26, -9.74, 1, 1, 9, 7.15, -10.67, 1, 2, 8, 24.95, -11.4, 1.1E-4, 9, 5.52, -10.83, 0.99989, 2, 8, 22.1, -11.48, 0.01542, 9, 2.69, -11.12, 0.98458, 3, 7, 29.14, -11.94, 0.14074, 8, 4.26, -11.96, 0.77309, 9, -15.07, -12.94, 0.08617, 3, 7, 27.33, -12, 0.23021, 8, 2.45, -12.01, 0.71605, 9, -16.87, -13.12, 0.05374, 3, 7, 25.62, -12.06, 0.33471, 8, 0.74, -12.06, 0.63285, 9, -18.57, -13.29, 0.03244, 2, 7, 9.45, -12.59, 0.9848, 8, -15.43, -12.5, 0.0152, 1, 7, -4.79, -1.05, 1, 1, 7, 1.82, 7.11, 1, 3, 7, 25.13, -0.49, 0.20323, 8, 0.32, -0.5, 0.79656, 9, -19.85, -1.79, 2.1E-4, 1, 9, 1.53, -0.03, 1, 1, 9, 3.81, -0.32, 1, 1, 9, 5.15, -0.38, 1, 3, 7, 26.77, -0.47, 0.00806, 8, 1.96, -0.48, 0.99148, 9, -18.21, -1.66, 4.6E-4, 3, 7, 28.46, -0.45, 0.0015, 8, 3.65, -0.47, 0.9976, 9, -16.53, -1.52, 9.0E-4 ],
  310. "hull": 17,
  311. "edges": [ 30, 32, 28, 30, 12, 14, 30, 34, 38, 36, 18, 38, 38, 8, 18, 20, 20, 36, 8, 6, 36, 6, 14, 16, 16, 18, 12, 40, 40, 38, 16, 40, 8, 10, 10, 12, 40, 10, 26, 28, 26, 34, 0, 32, 34, 0, 24, 26, 34, 42, 24, 42, 0, 2, 42, 2, 20, 22, 22, 24, 36, 44, 44, 42, 22, 44, 2, 4, 4, 6, 44, 4 ],
  312. "width": 44,
  313. "height": 57
  314. }
  315. },
  316. "youshou1": {
  317. "youshou1": {
  318. "type": "mesh",
  319. "uvs": [ 0.43955, 0.0227, 1, 0.36075, 1, 0.69075, 1, 1, 0.33992, 0.89488, 0.24291, 0.87944, 0.19012, 0.87801, 1.0E-5, 0.84075, 0, 0.31875, 0, 0, 0.33421, 1.0E-5, 0.40199, 4.0E-5, 0.32308, 0.43938, 0.26731, 0.41819, 0.38778, 0.46301 ],
  320. "triangles": [ 6, 13, 12, 6, 7, 13, 7, 8, 13, 11, 13, 10, 13, 8, 10, 8, 9, 10, 4, 2, 3, 2, 4, 14, 4, 5, 14, 14, 5, 12, 5, 6, 12, 14, 1, 2, 14, 0, 1, 0, 12, 11, 0, 14, 12, 11, 12, 13 ],
  321. "vertices": [ 2, 69, 21.14, -11.1, 0.77391, 70, -1.84, -12.38, 0.22609, 1, 69, -5.5, -7.9, 1, 1, 69, -6.66, -0.73, 1, 1, 69, -7.75, 5.98, 1, 2, 69, 22.59, 8.57, 0.87445, 70, -6.87, 6.7, 0.12555, 2, 69, 27.05, 8.95, 0.4852, 70, -2.78, 8.51, 0.5148, 2, 69, 29.45, 9.31, 0.26063, 70, -0.62, 9.63, 0.73937, 2, 69, 38.21, 9.9, 3.8E-4, 70, 7.47, 13.04, 0.99962, 1, 70, 12.9, 2.92, 1, 1, 70, 16.22, -3.26, 1, 2, 69, 26.01, -10.82, 0.48412, 70, 2.67, -10.52, 0.51588, 2, 69, 22.93, -11.32, 0.68355, 70, -0.08, -12, 0.31645, 2, 69, 24.96, -1.2, 0.89787, 70, -1.45, -1.77, 0.10213, 2, 69, 27.57, -1.25, 0.12947, 70, 1.03, -0.96, 0.87053, 2, 69, 21.94, -1.16, 0.98159, 70, -4.32, -2.71, 0.01841 ],
  322. "hull": 12,
  323. "edges": [ 2, 4, 4, 6, 14, 16, 16, 18, 22, 24, 24, 10, 18, 20, 20, 22, 16, 26, 26, 24, 20, 26, 10, 12, 12, 14, 26, 12, 6, 8, 8, 10, 4, 28, 28, 24, 8, 28, 2, 0, 0, 22, 28, 0 ],
  324. "width": 46,
  325. "height": 22
  326. }
  327. },
  328. "youshou2": {
  329. "youshou2": {
  330. "type": "mesh",
  331. "uvs": [ 1, 0.50498, 1, 1, 0, 1, 0, 0, 0.54699, 0 ],
  332. "triangles": [ 2, 3, 4, 2, 4, 0, 2, 0, 1 ],
  333. "vertices": [ 18.43, 7.55, 28.57, -0.37, 16.25, -16.13, -4.23, -0.12, 2.51, 8.5 ],
  334. "hull": 5,
  335. "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 8, 0 ],
  336. "width": 20,
  337. "height": 26
  338. }
  339. },
  340. "zuiba 2": {
  341. "zuiba 2": { "x": 1, "y": -1, "rotation": -93.04, "width": 16, "height": 10 }
  342. },
  343. "zuojiao": {
  344. "zuojiao": {
  345. "type": "mesh",
  346. "uvs": [ 1, 0.25525, 0.93642, 0.52706, 0.93002, 0.55441, 0.92351, 0.58226, 0.84356, 0.92401, 0.84158, 0.93248, 0.83949, 0.94141, 0.82579, 1, 0, 1, 0, 0.98745, 0, 0.9598, 0.29801, 0.92482, 0.2979, 0.91222, 0.29782, 0.90664, 0.29318, 0.56904, 0.29273, 0.53682, 0.29234, 0.50794, 0.28535, 0, 0.66534, 0, 1, 0, 0.56401, 0.93177, 0.56485, 0.92409, 0.56577, 0.91559, 0.60585, 0.54704, 0.60869, 0.52093, 0.60222, 0.58047 ],
  347. "triangles": [ 8, 9, 20, 9, 11, 20, 9, 10, 11, 8, 20, 7, 7, 20, 6, 20, 21, 6, 6, 21, 5, 21, 22, 5, 5, 22, 4, 21, 20, 12, 20, 11, 12, 22, 21, 13, 22, 25, 4, 4, 25, 3, 14, 25, 22, 13, 21, 12, 22, 13, 14, 25, 23, 3, 23, 25, 15, 25, 14, 15, 23, 24, 2, 24, 23, 16, 3, 23, 2, 2, 24, 1, 23, 15, 16, 1, 24, 0, 0, 24, 18, 18, 24, 17, 24, 16, 17, 18, 19, 0 ],
  348. "vertices": [ 1, 11, 10.55, 9.79, 1, 3, 11, 27.21, 9.2, 0.59356, 12, -1.35, 9.49, 0.33366, 13, -13.44, -25.22, 0.07278, 3, 11, 28.88, 9.14, 0.55266, 12, 0.32, 9.36, 0.36723, 13, -13.06, -23.59, 0.08011, 3, 11, 30.59, 9.08, 0.51103, 12, 2.02, 9.23, 0.40141, 13, -12.68, -21.92, 0.08756, 2, 12, 22.91, 7.57, 0.82092, 13, -7.99, -1.49, 0.17908, 2, 12, 23.43, 7.53, 0.78878, 13, -7.87, -0.99, 0.21122, 2, 12, 23.98, 7.49, 0.75362, 13, -7.75, -0.45, 0.24638, 2, 12, 27.56, 7.2, 0.58082, 13, -6.94, 3.05, 0.41918, 1, 13, 15.18, 0.32, 1, 1, 13, 15.09, -0.44, 1, 1, 13, 14.88, -2.11, 1, 2, 12, 23.32, -7.15, 0.23582, 13, 6.64, -3.25, 0.76418, 2, 12, 22.55, -7.18, 0.38021, 13, 6.55, -4.01, 0.61979, 2, 12, 22.21, -7.19, 0.43745, 13, 6.51, -4.35, 0.56255, 3, 11, 30.94, -7.95, 0.37236, 12, 1.62, -7.81, 0.27456, 13, 4.11, -24.8, 0.35308, 3, 11, 28.98, -8.1, 0.4079, 12, -0.34, -7.87, 0.25901, 13, 3.88, -26.76, 0.33309, 3, 11, 27.22, -8.23, 0.43975, 12, -2.1, -7.92, 0.24508, 13, 3.68, -28.51, 0.31517, 1, 11, -3.68, -10.52, 1, 1, 11, -4.37, -0.28, 1, 1, 11, -4.99, 8.73, 1, 1, 12, 23.57, 0.04, 1, 1, 12, 23.1, 0.05, 1, 1, 12, 22.58, 0.06, 1, 2, 11, 29.03, 0.38, 0.40253, 12, 0.08, 0.6, 0.59747, 2, 11, 27.44, 0.35, 0.43104, 12, -1.51, 0.64, 0.56896, 2, 11, 31.07, 0.42, 0.36602, 12, 2.12, 0.55, 0.63398 ],
  349. "hull": 20,
  350. "edges": [ 22, 20, 0, 38, 14, 16, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 30, 32, 32, 34, 36, 48, 48, 46, 32, 48, 0, 2, 2, 4, 48, 2, 26, 28, 28, 30, 44, 50, 50, 46, 28, 50, 4, 6, 6, 8, 50, 6 ],
  351. "width": 27,
  352. "height": 61
  353. }
  354. },
  355. "zuoshou": {
  356. "zuoshou": {
  357. "type": "mesh",
  358. "uvs": [ 1, 0.2282, 0.80173, 0.49005, 0.78668, 0.5077, 0.77025, 0.52954, 0.52765, 0.85204, 0.50889, 0.87207, 0.48923, 0.89993, 0.41314, 1, 0, 1, 0, 0.74068, 0.05531, 0.68727, 0.0771, 0.66365, 0.10235, 0.63716, 0.40946, 0.3267, 0.43199, 0.30394, 0.44696, 0.2892, 0.73338, 0, 1, 0, 0.61057, 0.37821, 0.28302, 0.76542, 0.30962, 0.73946, 0.26114, 0.78355, 0.59293, 0.39836, 0.57615, 0.41856 ],
  359. "triangles": [ 8, 21, 7, 7, 21, 6, 21, 9, 10, 21, 8, 9, 21, 19, 6, 6, 19, 5, 19, 20, 5, 5, 20, 4, 10, 11, 21, 21, 11, 19, 11, 12, 19, 19, 12, 20, 4, 23, 3, 4, 20, 23, 20, 13, 23, 20, 12, 13, 23, 22, 3, 3, 22, 2, 13, 14, 23, 23, 14, 22, 14, 15, 22, 22, 18, 2, 2, 18, 1, 1, 18, 0, 22, 15, 18, 0, 18, 17, 18, 15, 16, 18, 16, 17 ],
  360. "vertices": [ 1, 4, 5.29, 9.47, 1, 2, 4, 21.59, 9.72, 0.54229, 5, -0.09, 9.72, 0.45771, 2, 4, 22.73, 9.68, 0.43832, 5, 1.04, 9.71, 0.56168, 2, 4, 24.09, 9.7, 0.32021, 5, 2.4, 9.77, 0.67979, 2, 5, 22.43, 10.71, 0.48107, 6, -0.4, 10.72, 0.51893, 2, 5, 23.76, 10.64, 0.36886, 6, 0.92, 10.78, 0.63114, 2, 5, 25.46, 10.77, 0.24025, 6, 2.61, 11.07, 0.75975, 2, 5, 31.69, 11.03, 0.03015, 6, 8.79, 11.94, 0.96985, 1, 6, 19.21, -1.41, 1, 2, 5, 28.95, -10.78, 0.05136, 6, 8.17, -10.03, 0.94864, 2, 5, 25.3, -10.41, 0.17952, 6, 4.5, -10.02, 0.82048, 2, 5, 23.74, -10.34, 0.28206, 6, 2.95, -10.1, 0.71794, 2, 5, 21.98, -10.23, 0.42192, 6, 1.18, -10.16, 0.57808, 2, 4, 22.24, -8.61, 0.28129, 5, 1.08, -8.59, 0.71871, 2, 4, 20.71, -8.45, 0.41646, 5, -0.45, -8.47, 0.58354, 2, 4, 19.71, -8.33, 0.51152, 5, -1.45, -8.37, 0.48848, 1, 4, 0.29, -6.22, 1, 1, 4, -5.3, 3.17, 1, 1, 4, 20.41, -0.11, 1, 2, 5, 23.86, -0.26, 4.9E-4, 6, 2.08, -0.06, 0.99951, 2, 5, 22.09, -0.09, 0.25136, 6, 0.31, -0.06, 0.74864, 2, 5, 25.17, -0.5, 2.9E-4, 6, 3.41, -0.17, 0.99971, 2, 4, 21.72, -0.17, 0.20829, 5, 0.31, -0.16, 0.79171, 1, 5, 1.6, -0.16, 1 ],
  361. "hull": 18,
  362. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 22, 38, 38, 10, 8, 10, 40, 38, 8, 40, 22, 24, 40, 24, 10, 12, 12, 14, 16, 42, 42, 38, 12, 42, 18, 20, 20, 22, 42, 20, 30, 36, 36, 2, 28, 30, 36, 44, 28, 44, 2, 4, 44, 4, 0, 2, 30, 32, 36, 34, 4, 6, 6, 8, 40, 46, 46, 44, 6, 46, 24, 26, 26, 28, 46, 26 ],
  363. "width": 41,
  364. "height": 54
  365. }
  366. }
  367. }
  368. },
  369. "animations": {
  370. "stand1": {
  371. "slots": {
  372. "biyan": {
  373. "attachment": [
  374. { "time": 0, "name": null },
  375. { "time": 0.2333, "name": "biyan" },
  376. { "time": 0.4, "name": null },
  377. { "time": 1.9333, "name": "biyan" },
  378. { "time": 2.0333, "name": null }
  379. ]
  380. },
  381. "gaoguang": {
  382. "attachment": [
  383. { "time": 0.2333, "name": null },
  384. { "time": 0.4, "name": "gaoguang" },
  385. { "time": 1.9333, "name": null },
  386. { "time": 2.0333, "name": "gaoguang" }
  387. ]
  388. },
  389. "gaoguangzuo": {
  390. "attachment": [
  391. { "time": 0.2333, "name": null },
  392. { "time": 0.4, "name": "gaoguangzuo" },
  393. { "time": 1.9333, "name": null },
  394. { "time": 2.0333, "name": "gaoguangzuo" }
  395. ]
  396. },
  397. "yanbai": {
  398. "attachment": [
  399. { "time": 0.2333, "name": null },
  400. { "time": 0.4, "name": "yanbai" },
  401. { "time": 1.9333, "name": null },
  402. { "time": 2.0333, "name": "yanbai" }
  403. ]
  404. },
  405. "yanbaizuo": {
  406. "attachment": [
  407. { "time": 0.2333, "name": null },
  408. { "time": 0.4, "name": "yanbaizuo" },
  409. { "time": 1.9333, "name": null },
  410. { "time": 2.0333, "name": "yanbaizuo" }
  411. ]
  412. },
  413. "yanjiemao": {
  414. "attachment": [
  415. { "time": 0.2333, "name": null },
  416. { "time": 0.4, "name": "yanjiemao" },
  417. { "time": 1.9333, "name": null },
  418. { "time": 2.0333, "name": "yanjiemao" }
  419. ]
  420. },
  421. "yanjiemaozuo": {
  422. "attachment": [
  423. { "time": 0.2333, "name": null },
  424. { "time": 0.4, "name": "yanjiemaozuo" },
  425. { "time": 1.9333, "name": null },
  426. { "time": 2.0333, "name": "yanjiemaozuo" }
  427. ]
  428. },
  429. "yanqiu zuo": {
  430. "attachment": [
  431. { "time": 0.2333, "name": null },
  432. { "time": 0.4, "name": "yanqiu zuo" },
  433. { "time": 1.9333, "name": null },
  434. { "time": 2.0333, "name": "yanqiu zuo" }
  435. ]
  436. },
  437. "yanzhu": {
  438. "attachment": [
  439. { "time": 0.2333, "name": null },
  440. { "time": 0.4, "name": "yanzhu" },
  441. { "time": 1.9333, "name": null },
  442. { "time": 2.0333, "name": "yanzhu" }
  443. ]
  444. },
  445. "youshou": {
  446. "attachment": [
  447. { "time": 0.1333, "name": null }
  448. ]
  449. },
  450. "youshou1": {
  451. "attachment": [
  452. { "time": 0, "name": null },
  453. { "time": 0.1333, "name": "youshou1" }
  454. ]
  455. },
  456. "youshou2": {
  457. "attachment": [
  458. { "time": 0, "name": null },
  459. { "time": 0.1333, "name": "youshou2" }
  460. ]
  461. },
  462. "zuiba 2": {
  463. "attachment": [
  464. { "time": 0, "name": null },
  465. { "time": 0.3, "name": "zuiba 2" }
  466. ]
  467. }
  468. },
  469. "bones": {
  470. "bone68": {
  471. "rotate": [
  472. { "time": 0, "angle": 0, "curve": "stepped" },
  473. { "time": 0.1333, "angle": 0 },
  474. { "time": 0.3667, "angle": -16.37 },
  475. { "time": 0.7, "angle": -12.37 },
  476. { "time": 1.1333, "angle": -4.7 },
  477. { "time": 1.6333, "angle": -5.26 },
  478. { "time": 2.1, "angle": -4.7 },
  479. { "time": 2.5667, "angle": -5.26 },
  480. { "time": 3, "angle": -4.7 }
  481. ],
  482. "translate": [
  483. { "time": 0, "x": 0, "y": 0 },
  484. { "time": 0.1333, "x": 0.45, "y": 170.24, "curve": "stepped" },
  485. { "time": 0.3667, "x": 0.45, "y": 170.24, "curve": "stepped" },
  486. { "time": 0.7, "x": 0.45, "y": 170.24 },
  487. { "time": 1.1333, "x": 0.19, "y": 168.84 },
  488. { "time": 1.6333, "x": 0.96, "y": 169.48 },
  489. { "time": 2.1, "x": 0.19, "y": 168.84 },
  490. { "time": 2.5667, "x": 0.96, "y": 169.48 },
  491. { "time": 3, "x": 0.19, "y": 168.84 }
  492. ],
  493. "scale": [
  494. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  496. { "time": 0.3667, "x": 1, "y": 1 }
  497. ]
  498. },
  499. "root": {
  500. "rotate": [
  501. { "time": 0, "angle": 0 }
  502. ],
  503. "translate": [
  504. { "time": 0, "x": 0, "y": 0 }
  505. ],
  506. "scale": [
  507. { "time": 0, "x": 0.65, "y": 0.65 }
  508. ]
  509. },
  510. "bone": {
  511. "rotate": [
  512. { "time": 0, "angle": 0, "curve": "stepped" },
  513. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  514. { "time": 0.4, "angle": 0 }
  515. ],
  516. "translate": [
  517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  518. { "time": 0.1333, "x": 0, "y": 0 },
  519. { "time": 0.4, "x": 3.07, "y": 0 }
  520. ],
  521. "scale": [
  522. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  523. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  524. { "time": 0.4, "x": 1, "y": 1 }
  525. ]
  526. },
  527. "bone2": {
  528. "rotate": [
  529. { "time": 0, "angle": 0, "curve": "stepped" },
  530. { "time": 0.2333, "angle": 0 },
  531. { "time": 0.4, "angle": -1.91 },
  532. { "time": 0.6667, "angle": -2.75 }
  533. ],
  534. "translate": [
  535. { "time": 0, "x": 0, "y": 0 },
  536. { "time": 0.1, "x": -0.02, "y": -0.97 },
  537. { "time": 0.2333, "x": 0, "y": -0.06 },
  538. { "time": 0.4, "x": 0, "y": 0 }
  539. ],
  540. "scale": [
  541. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  542. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  543. { "time": 0.4, "x": 1, "y": 1 }
  544. ]
  545. },
  546. "bone3": {
  547. "rotate": [
  548. { "time": 0, "angle": 0, "curve": "stepped" },
  549. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  550. { "time": 0.4, "angle": 0 }
  551. ],
  552. "translate": [
  553. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  554. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  555. { "time": 0.4, "x": 0, "y": 0 }
  556. ],
  557. "scale": [
  558. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  559. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  560. { "time": 0.4, "x": 1, "y": 1 }
  561. ]
  562. },
  563. "bone4": {
  564. "rotate": [
  565. { "time": 0, "angle": 17.67 },
  566. { "time": 0.1, "angle": 18.09 },
  567. { "time": 0.2333, "angle": 9.69 },
  568. { "time": 0.4, "angle": 22.41 }
  569. ],
  570. "translate": [
  571. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  572. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  573. { "time": 0.4, "x": 0, "y": 0 }
  574. ],
  575. "scale": [
  576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  577. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  578. { "time": 0.4, "x": 1, "y": 1 }
  579. ]
  580. },
  581. "bone5": {
  582. "rotate": [
  583. { "time": 0, "angle": 0 },
  584. { "time": 0.1, "angle": 5.14 },
  585. { "time": 0.2333, "angle": 35.83 },
  586. { "time": 0.4, "angle": 21.57 }
  587. ],
  588. "translate": [
  589. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  590. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  591. { "time": 0.4, "x": 0, "y": 0 }
  592. ],
  593. "scale": [
  594. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 0.4, "x": 1, "y": 1 }
  597. ]
  598. },
  599. "bone6": {
  600. "rotate": [
  601. { "time": 0, "angle": 0, "curve": "stepped" },
  602. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  603. { "time": 0.4, "angle": 0 }
  604. ],
  605. "translate": [
  606. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  607. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  608. { "time": 0.4, "x": 0, "y": 0 }
  609. ],
  610. "scale": [
  611. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  612. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  613. { "time": 0.4, "x": 1, "y": 1 }
  614. ]
  615. },
  616. "bone7": {
  617. "rotate": [
  618. { "time": 0, "angle": -9.49 },
  619. { "time": 0.1333, "angle": 0.64 },
  620. { "time": 0.2333, "angle": -2.69 }
  621. ],
  622. "translate": [
  623. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 0.2667, "x": -4.79, "y": -128.11 }
  626. ],
  627. "scale": [
  628. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  629. { "time": 0.2333, "x": 1, "y": 1 }
  630. ]
  631. },
  632. "bone8": {
  633. "rotate": [
  634. { "time": 0, "angle": -17.65 },
  635. { "time": 0.1333, "angle": -72.4 },
  636. { "time": 0.2333, "angle": -90.78 }
  637. ],
  638. "translate": [
  639. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 0.2333, "x": 0, "y": 0 }
  641. ],
  642. "scale": [
  643. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  644. { "time": 0.2333, "x": 1, "y": 1 }
  645. ]
  646. },
  647. "bone9": {
  648. "rotate": [
  649. { "time": 0, "angle": 0 },
  650. { "time": 0.2333, "angle": -6.85 },
  651. { "time": 0.4, "angle": -32.42 }
  652. ],
  653. "translate": [
  654. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  655. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  656. { "time": 0.4, "x": 0, "y": 0 }
  657. ],
  658. "scale": [
  659. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  660. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  661. { "time": 0.4, "x": 1, "y": 1 }
  662. ]
  663. },
  664. "bone10": {
  665. "rotate": [
  666. { "time": 0, "angle": 0, "curve": "stepped" },
  667. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  668. { "time": 0.4, "angle": 0 }
  669. ],
  670. "translate": [
  671. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  672. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  673. { "time": 0.4, "x": 0, "y": 0 }
  674. ],
  675. "scale": [
  676. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  677. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 0.4, "x": 1, "y": 1 }
  679. ]
  680. },
  681. "bone11": {
  682. "rotate": [
  683. { "time": 0, "angle": 0 },
  684. { "time": 0.1333, "angle": -1.38 },
  685. { "time": 0.2333, "angle": -1.82 },
  686. { "time": 0.4333, "angle": -3.1 }
  687. ],
  688. "translate": [
  689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  690. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  691. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  692. { "time": 0.4333, "x": 0, "y": 0 }
  693. ],
  694. "scale": [
  695. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  696. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  697. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  698. { "time": 0.4333, "x": 1, "y": 1 }
  699. ]
  700. },
  701. "bone12": {
  702. "rotate": [
  703. { "time": 0, "angle": 0 },
  704. { "time": 0.1333, "angle": 6.59 },
  705. { "time": 0.2333, "angle": 16.76 },
  706. { "time": 0.4333, "angle": 27.99 }
  707. ],
  708. "translate": [
  709. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  710. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  711. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  712. { "time": 0.4333, "x": 0, "y": 0 }
  713. ],
  714. "scale": [
  715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 0.4333, "x": 1, "y": 1 }
  719. ]
  720. },
  721. "bone13": {
  722. "rotate": [
  723. { "time": 0, "angle": 0, "curve": "stepped" },
  724. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  725. { "time": 0.2333, "angle": 0 },
  726. { "time": 0.4333, "angle": -11.34 }
  727. ],
  728. "translate": [
  729. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  732. { "time": 0.4333, "x": 0, "y": 0 }
  733. ],
  734. "scale": [
  735. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  736. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  738. { "time": 0.4333, "x": 1, "y": 1 }
  739. ]
  740. },
  741. "bone14": {
  742. "rotate": [
  743. { "time": 0, "angle": 0 },
  744. { "time": 0.1333, "angle": -4.19 },
  745. { "time": 0.4, "angle": -4.49 }
  746. ],
  747. "translate": [
  748. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 0.4, "x": 0, "y": 0 }
  751. ],
  752. "scale": [
  753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  754. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  755. { "time": 0.4, "x": 1, "y": 1 }
  756. ]
  757. },
  758. "bone15": {
  759. "rotate": [
  760. { "time": 0, "angle": 0 },
  761. { "time": 0.1333, "angle": 9.56 },
  762. { "time": 0.4, "angle": 2.02 }
  763. ],
  764. "translate": [
  765. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 0.4, "x": 0, "y": 0 }
  768. ],
  769. "scale": [
  770. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 0.4, "x": 1, "y": 1 }
  773. ]
  774. },
  775. "bone16": {
  776. "rotate": [
  777. { "time": 0, "angle": 0, "curve": "stepped" },
  778. { "time": 0.1333, "angle": 0 },
  779. { "time": 0.4, "angle": 3.44 }
  780. ],
  781. "translate": [
  782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  783. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 0.4, "x": 0, "y": 0 }
  785. ],
  786. "scale": [
  787. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  788. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  789. { "time": 0.4, "x": 1, "y": 1 }
  790. ]
  791. },
  792. "bone17": {
  793. "rotate": [
  794. { "time": 0, "angle": 0, "curve": "stepped" },
  795. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  796. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  797. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  798. { "time": 3, "angle": 0 }
  799. ],
  800. "translate": [
  801. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  802. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  803. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  804. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  805. { "time": 3, "x": 0, "y": 0 }
  806. ],
  807. "scale": [
  808. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  809. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  810. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  811. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  812. { "time": 3, "x": 1, "y": 1 }
  813. ]
  814. },
  815. "bone18": {
  816. "rotate": [
  817. { "time": 0, "angle": 0, "curve": "stepped" },
  818. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  819. { "time": 0.8333, "angle": 0 },
  820. { "time": 1.8333, "angle": -11.92 },
  821. { "time": 3, "angle": 0 }
  822. ],
  823. "translate": [
  824. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 3, "x": 0, "y": 0 }
  829. ],
  830. "scale": [
  831. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  834. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 3, "x": 1, "y": 1 }
  836. ]
  837. },
  838. "bone19": {
  839. "rotate": [
  840. { "time": 0, "angle": 0, "curve": "stepped" },
  841. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  842. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  843. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  844. { "time": 3, "angle": 0 }
  845. ],
  846. "translate": [
  847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  848. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  849. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  850. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 3, "x": 0, "y": 0 }
  852. ],
  853. "scale": [
  854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 3, "x": 1, "y": 1 }
  859. ]
  860. },
  861. "bone20": {
  862. "rotate": [
  863. { "time": 0, "angle": 0 },
  864. { "time": 0.1, "angle": -2.26 },
  865. { "time": 0.2333, "angle": -3.77 },
  866. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  867. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  868. { "time": 3, "angle": 0 }
  869. ],
  870. "translate": [
  871. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  873. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  874. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  875. { "time": 3, "x": 0, "y": 0 }
  876. ],
  877. "scale": [
  878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  879. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  880. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  881. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  882. { "time": 3, "x": 1, "y": 1 }
  883. ]
  884. },
  885. "bone21": {
  886. "rotate": [
  887. { "time": 0, "angle": 0 },
  888. { "time": 0.1, "angle": -2.26 },
  889. { "time": 0.2333, "angle": -3.77 },
  890. { "time": 0.8333, "angle": 0 },
  891. { "time": 1.8333, "angle": 3.72 },
  892. { "time": 3, "angle": 0 }
  893. ],
  894. "translate": [
  895. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  897. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  898. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  899. { "time": 3, "x": 0, "y": 0 }
  900. ],
  901. "scale": [
  902. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  903. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  904. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  905. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  906. { "time": 3, "x": 1, "y": 1 }
  907. ]
  908. },
  909. "bone22": {
  910. "rotate": [
  911. { "time": 0, "angle": 0 },
  912. { "time": 0.1, "angle": -2.26 },
  913. { "time": 0.2333, "angle": -3.77 },
  914. { "time": 0.8333, "angle": 0 },
  915. { "time": 1.8333, "angle": 3.72 },
  916. { "time": 3, "angle": 0 }
  917. ],
  918. "translate": [
  919. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  920. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  921. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  922. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  923. { "time": 3, "x": 0, "y": 0 }
  924. ],
  925. "scale": [
  926. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  929. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  930. { "time": 3, "x": 1, "y": 1 }
  931. ]
  932. },
  933. "bone23": {
  934. "rotate": [
  935. { "time": 0, "angle": 0 },
  936. { "time": 0.1, "angle": -2.26 },
  937. { "time": 0.2333, "angle": -3.77 },
  938. { "time": 0.8333, "angle": 0 },
  939. { "time": 1.8333, "angle": 3.72 },
  940. { "time": 3, "angle": 0 }
  941. ],
  942. "translate": [
  943. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  944. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 3, "x": 0, "y": 0 }
  948. ],
  949. "scale": [
  950. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 3, "x": 1, "y": 1 }
  955. ]
  956. },
  957. "bone24": {
  958. "rotate": [
  959. { "time": 0, "angle": 0, "curve": "stepped" },
  960. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  961. { "time": 0.8333, "angle": 0 },
  962. { "time": 2, "angle": 2.37 },
  963. { "time": 3, "angle": 0 }
  964. ],
  965. "translate": [
  966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 3, "x": 0, "y": 0 }
  970. ],
  971. "scale": [
  972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 3, "x": 1, "y": 1 }
  976. ]
  977. },
  978. "bone25": {
  979. "rotate": [
  980. { "time": 0, "angle": 0, "curve": "stepped" },
  981. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  982. { "time": 0.8333, "angle": 0 },
  983. { "time": 2, "angle": 2.37 },
  984. { "time": 3, "angle": 0 }
  985. ],
  986. "translate": [
  987. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 3, "x": 0, "y": 0 }
  991. ],
  992. "scale": [
  993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  996. { "time": 3, "x": 1, "y": 1 }
  997. ]
  998. },
  999. "bone26": {
  1000. "rotate": [
  1001. { "time": 0, "angle": 0 },
  1002. { "time": 0.1, "angle": 2.45 },
  1003. { "time": 0.2333, "angle": 4.09 },
  1004. { "time": 0.8333, "angle": 0 },
  1005. { "time": 2, "angle": 2.37 },
  1006. { "time": 3, "angle": 0 }
  1007. ],
  1008. "translate": [
  1009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 3, "x": 0, "y": 0 }
  1013. ],
  1014. "scale": [
  1015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1016. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1017. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1018. { "time": 3, "x": 1, "y": 1 }
  1019. ]
  1020. },
  1021. "bone27": {
  1022. "rotate": [
  1023. { "time": 0, "angle": 0 },
  1024. { "time": 0.1, "angle": 2.45 },
  1025. { "time": 0.2333, "angle": 4.09 },
  1026. { "time": 0.8333, "angle": 0 },
  1027. { "time": 2, "angle": 2.37 },
  1028. { "time": 3, "angle": 0 }
  1029. ],
  1030. "translate": [
  1031. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 3, "x": 0, "y": 0 }
  1035. ],
  1036. "scale": [
  1037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 3, "x": 1, "y": 1 }
  1041. ]
  1042. },
  1043. "bone28": {
  1044. "rotate": [
  1045. { "time": 0, "angle": 0 },
  1046. { "time": 0.1, "angle": 2.45 },
  1047. { "time": 0.2333, "angle": 4.09 },
  1048. { "time": 0.8333, "angle": 0 },
  1049. { "time": 2, "angle": -4.14 },
  1050. { "time": 3, "angle": 0 }
  1051. ],
  1052. "translate": [
  1053. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 3, "x": 0, "y": 0 }
  1057. ],
  1058. "scale": [
  1059. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1060. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1061. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 3, "x": 1, "y": 1 }
  1063. ]
  1064. },
  1065. "bone29": {
  1066. "rotate": [
  1067. { "time": 0, "angle": 0 },
  1068. { "time": 0.1, "angle": 2.45 },
  1069. { "time": 0.2333, "angle": 4.09 },
  1070. { "time": 0.8333, "angle": 0 },
  1071. { "time": 2, "angle": -4.14 },
  1072. { "time": 3, "angle": 0 }
  1073. ],
  1074. "translate": [
  1075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 3, "x": 0, "y": 0 }
  1079. ],
  1080. "scale": [
  1081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 3, "x": 1, "y": 1 }
  1085. ]
  1086. },
  1087. "bone30": {
  1088. "rotate": [
  1089. { "time": 0, "angle": 0, "curve": "stepped" },
  1090. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1091. { "time": 0.4, "angle": 0 }
  1092. ],
  1093. "translate": [
  1094. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1095. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1096. { "time": 0.4, "x": 0, "y": 0 }
  1097. ],
  1098. "scale": [
  1099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1100. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1101. { "time": 0.4, "x": 1, "y": 1 }
  1102. ]
  1103. },
  1104. "bone31": {
  1105. "rotate": [
  1106. { "time": 0, "angle": 0, "curve": "stepped" },
  1107. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1108. { "time": 0.4, "angle": 0 }
  1109. ],
  1110. "translate": [
  1111. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1112. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1113. { "time": 0.4, "x": 0, "y": 0 }
  1114. ],
  1115. "scale": [
  1116. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1117. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1118. { "time": 0.4, "x": 1, "y": 1 }
  1119. ]
  1120. },
  1121. "bone32": {
  1122. "rotate": [
  1123. { "time": 0, "angle": 0, "curve": "stepped" },
  1124. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1125. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1126. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1127. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1128. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1129. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1130. { "time": 2.1667, "angle": 0 }
  1131. ],
  1132. "translate": [
  1133. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1134. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1135. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1136. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1137. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1138. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1139. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1140. { "time": 2.1667, "x": 0, "y": 0 }
  1141. ],
  1142. "scale": [
  1143. { "time": 0, "x": 1, "y": 1 },
  1144. { "time": 0.1, "x": 0.69, "y": 1 },
  1145. { "time": 0.2333, "x": 0.484, "y": 1, "curve": "stepped" },
  1146. { "time": 0.4, "x": 0.484, "y": 1 },
  1147. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1148. { "time": 1.8333, "x": 1, "y": 1 },
  1149. { "time": 1.9333, "x": 0.734, "y": 1, "curve": "stepped" },
  1150. { "time": 2.0333, "x": 0.734, "y": 1 },
  1151. { "time": 2.1667, "x": 1, "y": 1 }
  1152. ]
  1153. },
  1154. "bone33": {
  1155. "rotate": [
  1156. { "time": 0, "angle": 0, "curve": "stepped" },
  1157. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1158. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1159. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1160. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1161. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1162. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1163. { "time": 2.1667, "angle": 0 }
  1164. ],
  1165. "translate": [
  1166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1167. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1168. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1169. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 2.1667, "x": 0, "y": 0 }
  1174. ],
  1175. "scale": [
  1176. { "time": 0, "x": 1, "y": 1 },
  1177. { "time": 0.1, "x": 0.661, "y": 1 },
  1178. { "time": 0.2333, "x": 0.435, "y": 1, "curve": "stepped" },
  1179. { "time": 0.4, "x": 0.435, "y": 1 },
  1180. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 1.8333, "x": 1, "y": 1 },
  1182. { "time": 1.9333, "x": 0.684, "y": 1, "curve": "stepped" },
  1183. { "time": 2.0333, "x": 0.684, "y": 1 },
  1184. { "time": 2.1667, "x": 1, "y": 1 }
  1185. ]
  1186. },
  1187. "bone34": {
  1188. "rotate": [
  1189. { "time": 0, "angle": 0, "curve": "stepped" },
  1190. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1191. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1192. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1193. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1194. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1195. { "time": 2.1667, "angle": 0 }
  1196. ],
  1197. "translate": [
  1198. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1202. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1203. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  1204. { "time": 2.1667, "x": 0, "y": 0 }
  1205. ],
  1206. "scale": [
  1207. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1211. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1213. { "time": 2.1667, "x": 1, "y": 1 }
  1214. ]
  1215. },
  1216. "bone35": {
  1217. "rotate": [
  1218. { "time": 0, "angle": 0, "curve": "stepped" },
  1219. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1220. { "time": 1, "angle": 0, "curve": "stepped" },
  1221. { "time": 2, "angle": 0, "curve": "stepped" },
  1222. { "time": 3, "angle": 0 }
  1223. ],
  1224. "translate": [
  1225. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1226. { "time": 0.2333, "x": 0, "y": 0 },
  1227. { "time": 1, "x": 0.65, "y": -0.34 },
  1228. { "time": 2, "x": 0, "y": 0 },
  1229. { "time": 3, "x": 0.65, "y": -0.34 }
  1230. ],
  1231. "scale": [
  1232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1233. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1234. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1235. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1236. { "time": 3, "x": 1, "y": 1 }
  1237. ]
  1238. },
  1239. "bone36": {
  1240. "rotate": [
  1241. { "time": 0, "angle": 0, "curve": "stepped" },
  1242. { "time": 0.2333, "angle": 0 },
  1243. { "time": 1, "angle": -10.95 },
  1244. { "time": 2, "angle": 0 },
  1245. { "time": 3, "angle": -10.95 }
  1246. ],
  1247. "translate": [
  1248. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1250. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 3, "x": 0, "y": 0 }
  1253. ],
  1254. "scale": [
  1255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1256. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1257. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1258. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 3, "x": 1, "y": 1 }
  1260. ]
  1261. },
  1262. "bone37": {
  1263. "rotate": [
  1264. { "time": 0, "angle": 0 },
  1265. { "time": 0.2333, "angle": 2.47 },
  1266. { "time": 1, "angle": 18.93 },
  1267. { "time": 2, "angle": 2.47 },
  1268. { "time": 3, "angle": 18.93 }
  1269. ],
  1270. "translate": [
  1271. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 3, "x": 0, "y": 0 }
  1276. ],
  1277. "scale": [
  1278. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1281. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 3, "x": 1, "y": 1 }
  1283. ]
  1284. },
  1285. "bone38": {
  1286. "rotate": [
  1287. { "time": 0, "angle": 0 },
  1288. { "time": 0.2333, "angle": 4.46 },
  1289. { "time": 1, "angle": 0 },
  1290. { "time": 2, "angle": 4.46 },
  1291. { "time": 3, "angle": 0 }
  1292. ],
  1293. "translate": [
  1294. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1295. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1296. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1297. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1298. { "time": 3, "x": 0, "y": 0 }
  1299. ],
  1300. "scale": [
  1301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1302. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1303. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1304. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1305. { "time": 3, "x": 1, "y": 1 }
  1306. ]
  1307. },
  1308. "bone39": {
  1309. "rotate": [
  1310. { "time": 0, "angle": 0 },
  1311. { "time": 0.2333, "angle": -4.03 },
  1312. { "time": 1, "angle": 0 },
  1313. { "time": 2, "angle": -4.03 },
  1314. { "time": 3, "angle": 0 }
  1315. ],
  1316. "translate": [
  1317. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 3, "x": 0, "y": 0 }
  1322. ],
  1323. "scale": [
  1324. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1325. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1326. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 3, "x": 1, "y": 1 }
  1329. ]
  1330. },
  1331. "bone40": {
  1332. "rotate": [
  1333. { "time": 0, "angle": 0, "curve": "stepped" },
  1334. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1335. { "time": 1, "angle": 0, "curve": "stepped" },
  1336. { "time": 2, "angle": 0, "curve": "stepped" },
  1337. { "time": 3, "angle": 0 }
  1338. ],
  1339. "translate": [
  1340. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1341. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1342. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1343. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1344. { "time": 3, "x": 0, "y": 0 }
  1345. ],
  1346. "scale": [
  1347. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1349. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1350. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 3, "x": 1, "y": 1 }
  1352. ]
  1353. },
  1354. "bone41": {
  1355. "rotate": [
  1356. { "time": 0, "angle": 0, "curve": "stepped" },
  1357. { "time": 0.2333, "angle": 0 },
  1358. { "time": 1, "angle": -1.54 },
  1359. { "time": 2, "angle": 0 },
  1360. { "time": 3, "angle": -1.54 }
  1361. ],
  1362. "translate": [
  1363. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1364. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1365. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1366. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 3, "x": 0, "y": 0 }
  1368. ],
  1369. "scale": [
  1370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1371. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1372. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1373. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1374. { "time": 3, "x": 1, "y": 1 }
  1375. ]
  1376. },
  1377. "bone42": {
  1378. "rotate": [
  1379. { "time": 0, "angle": 0 },
  1380. { "time": 0.2333, "angle": -1.81 },
  1381. { "time": 1, "angle": -6.16 },
  1382. { "time": 2, "angle": -1.81 },
  1383. { "time": 3, "angle": -6.16 }
  1384. ],
  1385. "translate": [
  1386. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1389. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1390. { "time": 3, "x": 0, "y": 0 }
  1391. ],
  1392. "scale": [
  1393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 3, "x": 1, "y": 1 }
  1398. ]
  1399. },
  1400. "bone43": {
  1401. "rotate": [
  1402. { "time": 0, "angle": 0, "curve": "stepped" },
  1403. { "time": 0.2333, "angle": 0 },
  1404. { "time": 1, "angle": 11.35 },
  1405. { "time": 2, "angle": 0 },
  1406. { "time": 3, "angle": 11.35 }
  1407. ],
  1408. "translate": [
  1409. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1410. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1411. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1412. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1413. { "time": 3, "x": 0, "y": 0 }
  1414. ],
  1415. "scale": [
  1416. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1417. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1418. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1419. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1420. { "time": 3, "x": 1, "y": 1 }
  1421. ]
  1422. },
  1423. "bone44": {
  1424. "rotate": [
  1425. { "time": 0, "angle": 0, "curve": "stepped" },
  1426. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1427. { "time": 1, "angle": 0, "curve": "stepped" },
  1428. { "time": 2, "angle": 0, "curve": "stepped" },
  1429. { "time": 3, "angle": 0 }
  1430. ],
  1431. "translate": [
  1432. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1433. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1434. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 3, "x": 0, "y": 0 }
  1437. ],
  1438. "scale": [
  1439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 3, "x": 1, "y": 1 }
  1444. ]
  1445. },
  1446. "bone45": {
  1447. "rotate": [
  1448. { "time": 0, "angle": 0, "curve": "stepped" },
  1449. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1450. { "time": 1, "angle": 0, "curve": "stepped" },
  1451. { "time": 2, "angle": 0, "curve": "stepped" },
  1452. { "time": 3, "angle": 0 }
  1453. ],
  1454. "translate": [
  1455. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1456. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1457. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1459. { "time": 3, "x": 0, "y": 0 }
  1460. ],
  1461. "scale": [
  1462. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1463. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1464. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1465. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1466. { "time": 3, "x": 1, "y": 1 }
  1467. ]
  1468. },
  1469. "bone46": {
  1470. "rotate": [
  1471. { "time": 0, "angle": 0, "curve": "stepped" },
  1472. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1473. { "time": 1, "angle": 0, "curve": "stepped" },
  1474. { "time": 2, "angle": 0, "curve": "stepped" },
  1475. { "time": 3, "angle": 0 }
  1476. ],
  1477. "translate": [
  1478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1479. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1480. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1482. { "time": 3, "x": 0, "y": 0 }
  1483. ],
  1484. "scale": [
  1485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1486. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1487. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 3, "x": 1, "y": 1 }
  1490. ]
  1491. },
  1492. "bone47": {
  1493. "rotate": [
  1494. { "time": 0, "angle": 0 },
  1495. { "time": 0.2333, "angle": -5.44 },
  1496. { "time": 1, "angle": 4.17 },
  1497. { "time": 2, "angle": -5.44 },
  1498. { "time": 3, "angle": 4.17 }
  1499. ],
  1500. "translate": [
  1501. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1502. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1503. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1504. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1505. { "time": 3, "x": 0, "y": 0 }
  1506. ],
  1507. "scale": [
  1508. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1509. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1510. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1511. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1512. { "time": 3, "x": 1, "y": 1 }
  1513. ]
  1514. },
  1515. "bone48": {
  1516. "rotate": [
  1517. { "time": 0, "angle": 0, "curve": "stepped" },
  1518. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1519. { "time": 1, "angle": 0, "curve": "stepped" },
  1520. { "time": 2, "angle": 0, "curve": "stepped" },
  1521. { "time": 3, "angle": 0 }
  1522. ],
  1523. "translate": [
  1524. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 3, "x": 0, "y": 0 }
  1529. ],
  1530. "scale": [
  1531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1532. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 3, "x": 1, "y": 1 }
  1536. ]
  1537. },
  1538. "bone49": {
  1539. "rotate": [
  1540. { "time": 0, "angle": 0, "curve": "stepped" },
  1541. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1542. { "time": 1, "angle": 0, "curve": "stepped" },
  1543. { "time": 2, "angle": 0, "curve": "stepped" },
  1544. { "time": 3, "angle": 0 }
  1545. ],
  1546. "translate": [
  1547. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1548. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1551. { "time": 3, "x": 0, "y": 0 }
  1552. ],
  1553. "scale": [
  1554. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1555. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1556. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1557. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1558. { "time": 3, "x": 1, "y": 1 }
  1559. ]
  1560. },
  1561. "bone50": {
  1562. "rotate": [
  1563. { "time": 0, "angle": 0, "curve": "stepped" },
  1564. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1565. { "time": 1, "angle": 0, "curve": "stepped" },
  1566. { "time": 2, "angle": 0, "curve": "stepped" },
  1567. { "time": 3, "angle": 0 }
  1568. ],
  1569. "translate": [
  1570. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1571. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1572. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1573. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1574. { "time": 3, "x": 0, "y": 0 }
  1575. ],
  1576. "scale": [
  1577. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 3, "x": 1, "y": 1 }
  1582. ]
  1583. },
  1584. "bone51": {
  1585. "rotate": [
  1586. { "time": 0, "angle": 0, "curve": "stepped" },
  1587. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1588. { "time": 1, "angle": 0, "curve": "stepped" },
  1589. { "time": 2, "angle": 0, "curve": "stepped" },
  1590. { "time": 3, "angle": 0 }
  1591. ],
  1592. "translate": [
  1593. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1594. { "time": 0.2333, "x": 0, "y": 0 },
  1595. { "time": 1, "x": -0.32, "y": 0.05 },
  1596. { "time": 2, "x": 0, "y": 0 },
  1597. { "time": 3, "x": -0.32, "y": 0.05 }
  1598. ],
  1599. "scale": [
  1600. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1601. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1602. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1603. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1604. { "time": 3, "x": 1, "y": 1 }
  1605. ]
  1606. },
  1607. "bone52": {
  1608. "rotate": [
  1609. { "time": 0, "angle": 0 },
  1610. { "time": 0.2333, "angle": 3.16 },
  1611. { "time": 1, "angle": 2.77 },
  1612. { "time": 2, "angle": 3.16 },
  1613. { "time": 3, "angle": 2.77 }
  1614. ],
  1615. "translate": [
  1616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 3, "x": 0, "y": 0 }
  1621. ],
  1622. "scale": [
  1623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1625. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1626. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1627. { "time": 3, "x": 1, "y": 1 }
  1628. ]
  1629. },
  1630. "bone53": {
  1631. "rotate": [
  1632. { "time": 0, "angle": 0, "curve": "stepped" },
  1633. { "time": 0.2333, "angle": 0 },
  1634. { "time": 1, "angle": 0.67 },
  1635. { "time": 2, "angle": 0 },
  1636. { "time": 3, "angle": 0.67 }
  1637. ],
  1638. "translate": [
  1639. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1640. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1641. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 3, "x": 0, "y": 0 }
  1644. ],
  1645. "scale": [
  1646. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1647. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1648. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1649. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1650. { "time": 3, "x": 1, "y": 1 }
  1651. ]
  1652. },
  1653. "bone54": {
  1654. "rotate": [
  1655. { "time": 0, "angle": 0, "curve": "stepped" },
  1656. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1657. { "time": 1, "angle": 0, "curve": "stepped" },
  1658. { "time": 2, "angle": 0, "curve": "stepped" },
  1659. { "time": 3, "angle": 0 }
  1660. ],
  1661. "translate": [
  1662. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1663. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 3, "x": 0, "y": 0 }
  1667. ],
  1668. "scale": [
  1669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1670. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1671. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1672. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1673. { "time": 3, "x": 1, "y": 1 }
  1674. ]
  1675. },
  1676. "bone55": {
  1677. "rotate": [
  1678. { "time": 0, "angle": 0, "curve": "stepped" },
  1679. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1680. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1681. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1682. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1683. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1684. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  1685. { "time": 2.1667, "angle": 0 }
  1686. ],
  1687. "translate": [
  1688. { "time": 0, "x": 0, "y": 0 },
  1689. { "time": 0.1, "x": -0.54, "y": 0 },
  1690. { "time": 0.2333, "x": -0.9, "y": 0 },
  1691. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 1.8333, "x": 0, "y": 0 },
  1694. { "time": 1.9333, "x": -1.22, "y": 0, "curve": "stepped" },
  1695. { "time": 2.0333, "x": -1.22, "y": 0 },
  1696. { "time": 2.1667, "x": 0, "y": 0 }
  1697. ],
  1698. "scale": [
  1699. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1704. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1705. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  1706. { "time": 2.1667, "x": 1, "y": 1 }
  1707. ]
  1708. },
  1709. "bone56": {
  1710. "rotate": [
  1711. { "time": 0, "angle": 0, "curve": "stepped" },
  1712. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1713. { "time": 0.4, "angle": 0 }
  1714. ],
  1715. "translate": [
  1716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 0.4, "x": 0, "y": 0 }
  1719. ],
  1720. "scale": [
  1721. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1722. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 0.4, "x": 1, "y": 1 }
  1724. ]
  1725. },
  1726. "bone57": {
  1727. "rotate": [
  1728. { "time": 0, "angle": 0, "curve": "stepped" },
  1729. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1730. { "time": 0.4, "angle": 0 }
  1731. ],
  1732. "translate": [
  1733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1734. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1735. { "time": 0.4, "x": 0, "y": 0 }
  1736. ],
  1737. "scale": [
  1738. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1740. { "time": 0.4, "x": 1, "y": 1 }
  1741. ]
  1742. },
  1743. "bone58": {
  1744. "rotate": [
  1745. { "time": 0, "angle": 0, "curve": "stepped" },
  1746. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1747. { "time": 0.4, "angle": 0 }
  1748. ],
  1749. "translate": [
  1750. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 0.4, "x": 0, "y": 0 }
  1753. ],
  1754. "scale": [
  1755. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 0.4, "x": 1, "y": 1 }
  1758. ]
  1759. },
  1760. "bone59": {
  1761. "rotate": [
  1762. { "time": 0, "angle": 0, "curve": "stepped" },
  1763. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1764. { "time": 0.4, "angle": 0 }
  1765. ],
  1766. "translate": [
  1767. { "time": 0, "x": 0, "y": 0 },
  1768. { "time": 0.1, "x": -0.76, "y": 0 },
  1769. { "time": 0.2333, "x": -1.27, "y": 0.01 },
  1770. { "time": 0.4, "x": 0, "y": 0 }
  1771. ],
  1772. "scale": [
  1773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1774. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1775. { "time": 0.4, "x": 1, "y": 1 }
  1776. ]
  1777. },
  1778. "bone60": {
  1779. "rotate": [
  1780. { "time": 0, "angle": 0, "curve": "stepped" },
  1781. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1782. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1783. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1784. { "time": 1.1333, "angle": 0 },
  1785. { "time": 1.6333, "angle": -350.92 },
  1786. { "time": 2.1, "angle": 0 },
  1787. { "time": 2.5667, "angle": 2.01 },
  1788. { "time": 3, "angle": 2.58 }
  1789. ],
  1790. "translate": [
  1791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 0.7, "x": 0, "y": 0 },
  1795. { "time": 1.1333, "x": -0.05, "y": -0.62 },
  1796. { "time": 1.6333, "x": 0.15, "y": 1.92 },
  1797. { "time": 2.1, "x": -0.01, "y": -0.12 },
  1798. { "time": 2.5667, "x": 1.54, "y": 1.98 },
  1799. { "time": 3, "x": 0.11, "y": 1.5 }
  1800. ],
  1801. "scale": [
  1802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 0.4, "x": 1, "y": 1 }
  1805. ]
  1806. },
  1807. "bone61": {
  1808. "rotate": [
  1809. { "time": 0, "angle": 0, "curve": "stepped" },
  1810. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1811. { "time": 0.4, "angle": 0 }
  1812. ],
  1813. "translate": [
  1814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 0.4, "x": 0, "y": 0 }
  1817. ],
  1818. "scale": [
  1819. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 0.4, "x": 1, "y": 1 }
  1822. ]
  1823. },
  1824. "bone62": {
  1825. "rotate": [
  1826. { "time": 0, "angle": 0, "curve": "stepped" },
  1827. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1828. { "time": 0.4, "angle": 0 }
  1829. ],
  1830. "translate": [
  1831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1832. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1833. { "time": 0.4, "x": 0, "y": 0 }
  1834. ],
  1835. "scale": [
  1836. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 0.4, "x": 1, "y": 1 }
  1839. ]
  1840. },
  1841. "bone63": {
  1842. "rotate": [
  1843. { "time": 0, "angle": 0, "curve": "stepped" },
  1844. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1845. { "time": 0.4, "angle": 0 }
  1846. ],
  1847. "translate": [
  1848. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 0.4, "x": 0, "y": 0 }
  1851. ],
  1852. "scale": [
  1853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 0.4, "x": 1, "y": 1 }
  1856. ]
  1857. },
  1858. "bone64": {
  1859. "rotate": [
  1860. { "time": 0, "angle": 0, "curve": "stepped" },
  1861. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1862. { "time": 1, "angle": 0, "curve": "stepped" },
  1863. { "time": 2, "angle": 0, "curve": "stepped" },
  1864. { "time": 3, "angle": 0 }
  1865. ],
  1866. "translate": [
  1867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1868. { "time": 0.2333, "x": 0, "y": 0 },
  1869. { "time": 1, "x": 0.34, "y": 0.04 },
  1870. { "time": 2, "x": 0, "y": 0 },
  1871. { "time": 3, "x": 0.34, "y": 0.04 }
  1872. ],
  1873. "scale": [
  1874. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1875. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1876. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1877. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1878. { "time": 3, "x": 1, "y": 1 }
  1879. ]
  1880. },
  1881. "bone65": {
  1882. "rotate": [
  1883. { "time": 0, "angle": 0 },
  1884. { "time": 0.2333, "angle": 1.22 },
  1885. { "time": 1, "angle": 4.81 },
  1886. { "time": 2, "angle": 1.22 },
  1887. { "time": 3, "angle": 4.81 }
  1888. ],
  1889. "translate": [
  1890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1891. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1892. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 3, "x": 0, "y": 0 }
  1895. ],
  1896. "scale": [
  1897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1898. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1899. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1900. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 3, "x": 1, "y": 1 }
  1902. ]
  1903. },
  1904. "bone66": {
  1905. "rotate": [
  1906. { "time": 0, "angle": 0 },
  1907. { "time": 0.2333, "angle": 7.81 },
  1908. { "time": 1, "angle": 0 },
  1909. { "time": 2, "angle": 7.81 },
  1910. { "time": 3, "angle": 0 }
  1911. ],
  1912. "translate": [
  1913. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1915. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1916. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1917. { "time": 3, "x": 0, "y": 0 }
  1918. ],
  1919. "scale": [
  1920. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1924. { "time": 3, "x": 1, "y": 1 }
  1925. ]
  1926. },
  1927. "bone67": {
  1928. "rotate": [
  1929. { "time": 0, "angle": 0, "curve": "stepped" },
  1930. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1931. { "time": 1, "angle": 0, "curve": "stepped" },
  1932. { "time": 2, "angle": 0, "curve": "stepped" },
  1933. { "time": 3, "angle": 0 }
  1934. ],
  1935. "translate": [
  1936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1937. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1938. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1939. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 3, "x": 0, "y": 0 }
  1941. ],
  1942. "scale": [
  1943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1945. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1946. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1947. { "time": 3, "x": 1, "y": 1 }
  1948. ]
  1949. },
  1950. "bone69": {
  1951. "rotate": [
  1952. { "time": 0, "angle": 0 },
  1953. { "time": 0.1333, "angle": 49.88 },
  1954. { "time": 0.4333, "angle": 0 },
  1955. { "time": 0.7, "angle": -4.65 },
  1956. { "time": 1.1333, "angle": -7.08 },
  1957. { "time": 1.6333, "angle": -1.84 },
  1958. { "time": 2.1, "angle": -7.08 },
  1959. { "time": 2.5667, "angle": -1.84 },
  1960. { "time": 3, "angle": -7.08 }
  1961. ],
  1962. "translate": [
  1963. { "time": 0, "x": 0, "y": 0 },
  1964. { "time": 0.1333, "x": -1.94, "y": -1.5 },
  1965. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1966. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1967. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1968. { "time": 3, "x": 0, "y": 0 }
  1969. ],
  1970. "scale": [
  1971. { "time": 0, "x": 1, "y": 1 },
  1972. { "time": 0.1333, "x": 0.9, "y": 0.8 },
  1973. { "time": 0.4333, "x": 1, "y": 1 }
  1974. ]
  1975. },
  1976. "bone70": {
  1977. "rotate": [
  1978. { "time": 0, "angle": 0, "curve": "stepped" },
  1979. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1980. { "time": 0.3333, "angle": 0 },
  1981. { "time": 0.7, "angle": -9.66 },
  1982. { "time": 1.1333, "angle": -1.86 },
  1983. { "time": 1.6333, "angle": -7.03 },
  1984. { "time": 2.1, "angle": -1.86 },
  1985. { "time": 2.5667, "angle": -7.03 },
  1986. { "time": 3, "angle": -1.86 }
  1987. ],
  1988. "translate": [
  1989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 3, "x": 0, "y": 0 }
  1995. ],
  1996. "scale": [
  1997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1998. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1999. { "time": 0.3333, "x": 1, "y": 1 }
  2000. ]
  2001. },
  2002. "bone71": {
  2003. "rotate": [
  2004. { "time": 0, "angle": 0, "curve": "stepped" },
  2005. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2006. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2007. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2008. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2009. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2010. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2011. { "time": 2.1333, "angle": 0 }
  2012. ],
  2013. "translate": [
  2014. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 0.4, "x": 0, "y": 0 },
  2017. { "time": 0.5667, "x": 0, "y": -1.26 },
  2018. { "time": 0.6667, "x": -0.28, "y": -1.53, "curve": "stepped" },
  2019. { "time": 1.8333, "x": -0.28, "y": -1.53, "curve": "stepped" },
  2020. { "time": 1.9333, "x": -0.28, "y": -1.53, "curve": "stepped" },
  2021. { "time": 2.0333, "x": -0.28, "y": -1.53 },
  2022. { "time": 2.1333, "x": 0.12, "y": -1.53 }
  2023. ],
  2024. "scale": [
  2025. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2027. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2031. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2032. { "time": 2.1333, "x": 1, "y": 1 }
  2033. ]
  2034. },
  2035. "bone72": {
  2036. "rotate": [
  2037. { "time": 0, "angle": 0, "curve": "stepped" },
  2038. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2039. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2040. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2041. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2042. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2043. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2044. { "time": 2.1333, "angle": 0 }
  2045. ],
  2046. "translate": [
  2047. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2052. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2053. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 2.1333, "x": 0, "y": 0 }
  2055. ],
  2056. "scale": [
  2057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2059. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2060. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2061. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2062. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2063. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2064. { "time": 2.1333, "x": 1, "y": 1 }
  2065. ]
  2066. },
  2067. "bone73": {
  2068. "rotate": [
  2069. { "time": 0, "angle": 0, "curve": "stepped" },
  2070. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2071. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2072. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2073. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2074. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2075. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2076. { "time": 2.1333, "angle": 0 }
  2077. ],
  2078. "translate": [
  2079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 0.4, "x": 0, "y": 0 },
  2082. { "time": 0.5667, "x": 0, "y": -1.86 },
  2083. { "time": 0.6667, "x": -0.18, "y": -2.22, "curve": "stepped" },
  2084. { "time": 1.8333, "x": -0.18, "y": -2.22, "curve": "stepped" },
  2085. { "time": 1.9333, "x": -0.18, "y": -2.22, "curve": "stepped" },
  2086. { "time": 2.0333, "x": -0.18, "y": -2.22 },
  2087. { "time": 2.1333, "x": 0.22, "y": -2.22 }
  2088. ],
  2089. "scale": [
  2090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 2.1333, "x": 1, "y": 1 }
  2098. ]
  2099. },
  2100. "bone74": {
  2101. "rotate": [
  2102. { "time": 0, "angle": 0, "curve": "stepped" },
  2103. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2104. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2105. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2106. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2107. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2108. { "time": 2.0333, "angle": 0, "curve": "stepped" },
  2109. { "time": 2.1333, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2117. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 2.1333, "x": 0, "y": 0 }
  2120. ],
  2121. "scale": [
  2122. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2125. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2126. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 2.1333, "x": 1, "y": 1 }
  2130. ]
  2131. },
  2132. "bone75": {
  2133. "scale": [
  2134. { "time": 0.3, "x": 0.525, "y": 1 },
  2135. { "time": 0.4667, "x": 1, "y": 1 }
  2136. ]
  2137. }
  2138. },
  2139. "deform": {
  2140. "default": {
  2141. "maoyi": {
  2142. "maoyi": [
  2143. { "time": 0 },
  2144. {
  2145. "time": 0.1,
  2146. "offset": 38,
  2147. "vertices": [ 0.62596, -0.05961, 0, 0, 0, 0, 0.62596, -0.05961, 0.62596, -0.05961 ]
  2148. },
  2149. {
  2150. "time": 0.2333,
  2151. "offset": 38,
  2152. "vertices": [ 1.04326, -0.09935, 0, 0, 0, 0, 1.04326, -0.09935, 1.04326, -0.09935 ]
  2153. },
  2154. { "time": 0.5 },
  2155. {
  2156. "time": 1.8667,
  2157. "offset": 18,
  2158. "vertices": [ -0.14643, -10.59555, -1.25498, -4.02212, -2.70542, -3.23005 ]
  2159. },
  2160. { "time": 3 }
  2161. ]
  2162. },
  2163. "waitao you": {
  2164. "waitao you": [
  2165. { "time": 0 },
  2166. {
  2167. "time": 0.2333,
  2168. "offset": 178,
  2169. "vertices": [ 2.101, 0, 2.865, 0.191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.52798, 0, 1.50131, -0.28428 ]
  2170. },
  2171. { "time": 0.5667 },
  2172. {
  2173. "time": 1.3333,
  2174. "offset": 178,
  2175. "vertices": [ 2.101, 0, 2.865, 0.191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.52798, 0, 1.50131, -0.28428 ]
  2176. },
  2177. { "time": 2.1333 },
  2178. {
  2179. "time": 3,
  2180. "offset": 178,
  2181. "vertices": [ 2.101, 0, 2.865, 0.191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.52798, 0, 1.50131, -0.28428 ]
  2182. }
  2183. ]
  2184. },
  2185. "waitaozuo": {
  2186. "waitaozuo": [
  2187. { "time": 0 },
  2188. {
  2189. "time": 0.2333,
  2190. "offset": 142,
  2191. "vertices": [ 2.32099, 0, 1.68799, -0.211 ]
  2192. },
  2193. { "time": 0.6667 },
  2194. {
  2195. "time": 1.8333,
  2196. "offset": 142,
  2197. "vertices": [ 3.39085, 1.27886, 2.29026, 0.08914, 0.67988, 1.65269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.22802, 1.73227 ]
  2198. },
  2199. { "time": 3 }
  2200. ]
  2201. },
  2202. "youshou": {
  2203. "youshou": [
  2204. { "time": 0 },
  2205. {
  2206. "time": 0.1333,
  2207. "offset": 38,
  2208. "vertices": [ -0.29495, -1.42209, 1.15644, -0.87852, 1.28169, -0.68305, -1.00397, -1.7851, 1.17869, -1.67472, 1.43053, -1.46548, -1.46959, -1.75719, 0.95298, -2.08295, 1.27272, -1.90446 ]
  2209. }
  2210. ]
  2211. },
  2212. "youshou2": {
  2213. "youshou2": [
  2214. { "time": 0.7 },
  2215. {
  2216. "time": 1.1333,
  2217. "vertices": [ 4.35114, 0.94146, 0, 0, 0, 0, 0, 0, 1.03327, 0.74625 ]
  2218. },
  2219. { "time": 1.6333 },
  2220. {
  2221. "time": 2.1,
  2222. "vertices": [ 4.35114, 0.94146, 0, 0, 0, 0, 0, 0, 1.03327, 0.74625 ]
  2223. },
  2224. { "time": 2.5667 },
  2225. {
  2226. "time": 3,
  2227. "vertices": [ 4.35114, 0.94146, 0, 0, 0, 0, 0, 0, 1.03327, 0.74625 ]
  2228. }
  2229. ]
  2230. }
  2231. }
  2232. }
  2233. },
  2234. "walk1": {
  2235. "slots": {
  2236. "biyan": {
  2237. "attachment": [
  2238. { "time": 0, "name": null },
  2239. { "time": 1.1, "name": "biyan" },
  2240. { "time": 1.2, "name": null }
  2241. ]
  2242. },
  2243. "gaoguang": {
  2244. "attachment": [
  2245. { "time": 1.1, "name": null },
  2246. { "time": 1.2, "name": "gaoguang" }
  2247. ]
  2248. },
  2249. "gaoguangzuo": {
  2250. "attachment": [
  2251. { "time": 1.1, "name": null },
  2252. { "time": 1.2, "name": "gaoguangzuo" }
  2253. ]
  2254. },
  2255. "yanbai": {
  2256. "attachment": [
  2257. { "time": 1.1, "name": null },
  2258. { "time": 1.2, "name": "yanbai" }
  2259. ]
  2260. },
  2261. "yanbaizuo": {
  2262. "attachment": [
  2263. { "time": 1.1, "name": null },
  2264. { "time": 1.2, "name": "yanbaizuo" }
  2265. ]
  2266. },
  2267. "yanjiemao": {
  2268. "attachment": [
  2269. { "time": 1.1, "name": null },
  2270. { "time": 1.2, "name": "yanjiemao" }
  2271. ]
  2272. },
  2273. "yanjiemaozuo": {
  2274. "attachment": [
  2275. { "time": 1.1, "name": null },
  2276. { "time": 1.2, "name": "yanjiemaozuo" }
  2277. ]
  2278. },
  2279. "yanqiu zuo": {
  2280. "attachment": [
  2281. { "time": 1.1, "name": null },
  2282. { "time": 1.2, "name": "yanqiu zuo" }
  2283. ]
  2284. },
  2285. "yanzhu": {
  2286. "attachment": [
  2287. { "time": 1.1, "name": null },
  2288. { "time": 1.2, "name": "yanzhu" }
  2289. ]
  2290. },
  2291. "youshou1": {
  2292. "attachment": [
  2293. { "time": 0, "name": null }
  2294. ]
  2295. },
  2296. "youshou2": {
  2297. "attachment": [
  2298. { "time": 0, "name": null }
  2299. ]
  2300. },
  2301. "zuiba 2": {
  2302. "attachment": [
  2303. { "time": 0, "name": null }
  2304. ]
  2305. }
  2306. },
  2307. "bones": {
  2308. "root": {
  2309. "rotate": [
  2310. { "time": 0, "angle": 0 }
  2311. ],
  2312. "translate": [
  2313. { "time": 0, "x": 0, "y": 0 }
  2314. ],
  2315. "scale": [
  2316. { "time": 0, "x": 0.65, "y": 0.65 }
  2317. ]
  2318. },
  2319. "bone": {
  2320. "rotate": [
  2321. { "time": 0, "angle": 0, "curve": "stepped" },
  2322. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2323. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2324. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2325. { "time": 1, "angle": 0, "curve": "stepped" },
  2326. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2327. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2328. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2329. { "time": 2, "angle": 0 }
  2330. ],
  2331. "translate": [
  2332. { "time": 0, "x": 0, "y": 0 },
  2333. { "time": 0.1667, "x": 0, "y": 1 },
  2334. { "time": 0.5, "x": 0, "y": 0 },
  2335. { "time": 0.6667, "x": 0, "y": 1 },
  2336. { "time": 1, "x": 0, "y": 0 },
  2337. { "time": 1.1667, "x": 0, "y": 1 },
  2338. { "time": 1.5, "x": 0, "y": 0 },
  2339. { "time": 1.6667, "x": 0, "y": 1 },
  2340. { "time": 2, "x": 0, "y": 0 }
  2341. ],
  2342. "scale": [
  2343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2344. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2345. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2346. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2347. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2348. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2349. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2350. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2351. { "time": 2, "x": 1, "y": 1 }
  2352. ]
  2353. },
  2354. "bone2": {
  2355. "rotate": [
  2356. { "time": 0, "angle": 0, "curve": "stepped" },
  2357. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2358. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2359. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2360. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2361. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2362. { "time": 1, "angle": 0, "curve": "stepped" },
  2363. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2364. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2365. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2366. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2367. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2368. { "time": 2, "angle": 0 }
  2369. ],
  2370. "translate": [
  2371. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2379. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2382. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2383. { "time": 2, "x": 0, "y": 0 }
  2384. ],
  2385. "scale": [
  2386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 2, "x": 1, "y": 1 }
  2399. ]
  2400. },
  2401. "bone3": {
  2402. "rotate": [
  2403. { "time": 0, "angle": 0, "curve": "stepped" },
  2404. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2405. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2406. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2407. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2408. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2409. { "time": 1, "angle": 0, "curve": "stepped" },
  2410. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2411. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2412. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2413. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2414. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2415. { "time": 2, "angle": 0 }
  2416. ],
  2417. "translate": [
  2418. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2424. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2425. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2426. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2429. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2430. { "time": 2, "x": 0, "y": 0 }
  2431. ],
  2432. "scale": [
  2433. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2444. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2445. { "time": 2, "x": 1, "y": 1 }
  2446. ]
  2447. },
  2448. "bone4": {
  2449. "rotate": [
  2450. {
  2451. "time": 0,
  2452. "angle": 15.54,
  2453. "curve": [ 0.25, 0, 0.75, 1 ]
  2454. },
  2455. {
  2456. "time": 0.5,
  2457. "angle": 59.53,
  2458. "curve": [ 0.25, 0, 0.75, 1 ]
  2459. },
  2460. {
  2461. "time": 1,
  2462. "angle": 15.54,
  2463. "curve": [ 0.25, 0, 0.75, 1 ]
  2464. },
  2465. {
  2466. "time": 1.5,
  2467. "angle": 59.53,
  2468. "curve": [ 0.25, 0, 0.75, 1 ]
  2469. },
  2470. { "time": 2, "angle": 15.54 }
  2471. ],
  2472. "translate": [
  2473. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2474. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2475. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2476. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2477. { "time": 2, "x": 0, "y": 0 }
  2478. ],
  2479. "scale": [
  2480. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2481. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 2, "x": 1, "y": 1 }
  2485. ]
  2486. },
  2487. "bone5": {
  2488. "rotate": [
  2489. { "time": 0, "angle": -14.01, "curve": "stepped" },
  2490. { "time": 0.5, "angle": -14.01, "curve": "stepped" },
  2491. { "time": 1, "angle": -14.01, "curve": "stepped" },
  2492. { "time": 1.5, "angle": -14.01, "curve": "stepped" },
  2493. { "time": 2, "angle": -14.01 }
  2494. ],
  2495. "translate": [
  2496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 2, "x": 0, "y": 0 }
  2501. ],
  2502. "scale": [
  2503. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2504. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2505. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2506. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2507. { "time": 2, "x": 1, "y": 1 }
  2508. ]
  2509. },
  2510. "bone6": {
  2511. "rotate": [
  2512. { "time": 0, "angle": 0, "curve": "stepped" },
  2513. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2514. { "time": 1, "angle": 0, "curve": "stepped" },
  2515. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2516. { "time": 2, "angle": 0 }
  2517. ],
  2518. "translate": [
  2519. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 2, "x": 0, "y": 0 }
  2524. ],
  2525. "scale": [
  2526. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2530. { "time": 2, "x": 1, "y": 1 }
  2531. ]
  2532. },
  2533. "bone7": {
  2534. "rotate": [
  2535. {
  2536. "time": 0,
  2537. "angle": -10.27,
  2538. "curve": [ 0.25, 0, 0.75, 1 ]
  2539. },
  2540. {
  2541. "time": 0.5,
  2542. "angle": -60.31,
  2543. "curve": [ 0.25, 0, 0.75, 1 ]
  2544. },
  2545. {
  2546. "time": 1,
  2547. "angle": -10.27,
  2548. "curve": [ 0.25, 0, 0.75, 1 ]
  2549. },
  2550. {
  2551. "time": 1.5,
  2552. "angle": -60.31,
  2553. "curve": [ 0.25, 0, 0.75, 1 ]
  2554. },
  2555. { "time": 2, "angle": -10.27 }
  2556. ],
  2557. "translate": [
  2558. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2559. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2560. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 2, "x": 0, "y": 0 }
  2563. ],
  2564. "scale": [
  2565. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2567. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2568. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2569. { "time": 2, "x": 1, "y": 1 }
  2570. ]
  2571. },
  2572. "bone8": {
  2573. "rotate": [
  2574. {
  2575. "time": 0,
  2576. "angle": -19.15,
  2577. "curve": [ 0.25, 0, 0.75, 1 ]
  2578. },
  2579. {
  2580. "time": 0.5,
  2581. "angle": -17.53,
  2582. "curve": [ 0.25, 0, 0.75, 1 ]
  2583. },
  2584. {
  2585. "time": 1,
  2586. "angle": -19.15,
  2587. "curve": [ 0.25, 0, 0.75, 1 ]
  2588. },
  2589. {
  2590. "time": 1.5,
  2591. "angle": -17.53,
  2592. "curve": [ 0.25, 0, 0.75, 1 ]
  2593. },
  2594. { "time": 2, "angle": -19.15 }
  2595. ],
  2596. "translate": [
  2597. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2598. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2599. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2600. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2601. { "time": 2, "x": 0, "y": 0 }
  2602. ],
  2603. "scale": [
  2604. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2605. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2606. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2607. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2608. { "time": 2, "x": 1, "y": 1 }
  2609. ]
  2610. },
  2611. "bone9": {
  2612. "rotate": [
  2613. { "time": 0, "angle": 0, "curve": "stepped" },
  2614. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2615. { "time": 1, "angle": 0, "curve": "stepped" },
  2616. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2617. { "time": 2, "angle": 0 }
  2618. ],
  2619. "translate": [
  2620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2621. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2622. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2623. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2624. { "time": 2, "x": 0, "y": 0 }
  2625. ],
  2626. "scale": [
  2627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2628. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2629. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2630. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2631. { "time": 2, "x": 1, "y": 1 }
  2632. ]
  2633. },
  2634. "bone10": {
  2635. "rotate": [
  2636. { "time": 0, "angle": 0, "curve": "stepped" },
  2637. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2638. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2639. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2640. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2641. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2642. { "time": 1, "angle": 0, "curve": "stepped" },
  2643. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2644. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2645. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2646. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2647. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2648. { "time": 2, "angle": 0 }
  2649. ],
  2650. "translate": [
  2651. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2657. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2660. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 2, "x": 0, "y": 0 }
  2664. ],
  2665. "scale": [
  2666. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2667. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2668. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2669. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2670. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2671. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2672. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2676. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2677. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2678. { "time": 2, "x": 1, "y": 1 }
  2679. ]
  2680. },
  2681. "bone11": {
  2682. "rotate": [
  2683. { "time": 0, "angle": 39.07 },
  2684. { "time": 0.1667, "angle": 15.8 },
  2685. { "time": 0.3333, "angle": -4.11 },
  2686. { "time": 0.5, "angle": -14.05 },
  2687. { "time": 0.6667, "angle": 4.75 },
  2688. { "time": 0.8333, "angle": 27.03 },
  2689. { "time": 1, "angle": 39.07 },
  2690. { "time": 1.1667, "angle": 15.8 },
  2691. { "time": 1.3333, "angle": -4.11 },
  2692. { "time": 1.5, "angle": -14.05 },
  2693. { "time": 1.6667, "angle": 4.75 },
  2694. { "time": 1.8333, "angle": 27.03 },
  2695. { "time": 2, "angle": 39.07 }
  2696. ],
  2697. "translate": [
  2698. { "time": 0, "x": 0.39, "y": 1.2, "curve": "stepped" },
  2699. { "time": 1, "x": 0.39, "y": 1.2, "curve": "stepped" },
  2700. { "time": 2, "x": 0.39, "y": 1.2 }
  2701. ],
  2702. "scale": [
  2703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 2, "x": 1, "y": 1 }
  2716. ]
  2717. },
  2718. "bone12": {
  2719. "rotate": [
  2720. { "time": 0, "angle": 15.49 },
  2721. { "time": 0.1667, "angle": 43.73 },
  2722. { "time": 0.3333, "angle": 38.26 },
  2723. { "time": 0.5, "angle": 3.25 },
  2724. { "time": 0.6667, "angle": 4.73 },
  2725. { "time": 0.8333, "angle": 4.06 },
  2726. { "time": 1, "angle": 15.49 },
  2727. { "time": 1.1667, "angle": 43.73 },
  2728. { "time": 1.3333, "angle": 38.26 },
  2729. { "time": 1.5, "angle": 3.25 },
  2730. { "time": 1.6667, "angle": 4.73 },
  2731. { "time": 1.8333, "angle": 4.06 },
  2732. { "time": 2, "angle": 15.49 }
  2733. ],
  2734. "translate": [
  2735. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2740. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2741. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2742. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2743. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2744. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2745. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2746. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2747. { "time": 2, "x": 0, "y": 0 }
  2748. ],
  2749. "scale": [
  2750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2759. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2761. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2762. { "time": 2, "x": 1, "y": 1 }
  2763. ]
  2764. },
  2765. "bone13": {
  2766. "rotate": [
  2767. { "time": 0, "angle": 0, "curve": "stepped" },
  2768. { "time": 0.1667, "angle": 0 },
  2769. { "time": 0.3333, "angle": -12.9 },
  2770. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2771. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2772. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2773. { "time": 1, "angle": 0, "curve": "stepped" },
  2774. { "time": 1.1667, "angle": 0 },
  2775. { "time": 1.3333, "angle": -12.9 },
  2776. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2777. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2778. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2779. { "time": 2, "angle": 0 }
  2780. ],
  2781. "translate": [
  2782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2783. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2784. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 2, "x": 0, "y": 0 }
  2795. ],
  2796. "scale": [
  2797. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2798. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2799. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2800. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2801. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 2, "x": 1, "y": 1 }
  2810. ]
  2811. },
  2812. "bone14": {
  2813. "rotate": [
  2814. { "time": 0, "angle": -37.7 },
  2815. { "time": 0.1667, "angle": -16.57 },
  2816. { "time": 0.3333, "angle": -1.39 },
  2817. { "time": 0.5, "angle": 13.8 },
  2818. { "time": 0.6667, "angle": -4.44 },
  2819. { "time": 0.8333, "angle": -25.72 },
  2820. { "time": 1, "angle": -37.7 },
  2821. { "time": 1.1667, "angle": -16.57 },
  2822. { "time": 1.3333, "angle": -1.39 },
  2823. { "time": 1.5, "angle": 13.8 },
  2824. { "time": 1.6667, "angle": -4.44 },
  2825. { "time": 1.8333, "angle": -25.72 },
  2826. { "time": 2, "angle": -37.7 }
  2827. ],
  2828. "translate": [
  2829. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2830. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2835. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2836. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2837. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2838. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2839. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2840. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 2, "x": 0, "y": 0 }
  2842. ],
  2843. "scale": [
  2844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2852. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2853. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2854. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2855. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2856. { "time": 2, "x": 1, "y": 1 }
  2857. ]
  2858. },
  2859. "bone15": {
  2860. "rotate": [
  2861. { "time": 0, "angle": 0 },
  2862. { "time": 0.1667, "angle": 5.22 },
  2863. { "time": 0.3333, "angle": 7.71 },
  2864. { "time": 0.5, "angle": 0 },
  2865. { "time": 0.6667, "angle": 47.2 },
  2866. { "time": 0.8333, "angle": 38.3 },
  2867. { "time": 1, "angle": 0 },
  2868. { "time": 1.1667, "angle": 5.22 },
  2869. { "time": 1.3333, "angle": 7.71 },
  2870. { "time": 1.5, "angle": 0 },
  2871. { "time": 1.6667, "angle": 47.2 },
  2872. { "time": 1.8333, "angle": 38.3 },
  2873. { "time": 2, "angle": 0 }
  2874. ],
  2875. "translate": [
  2876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2877. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2878. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2879. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2880. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2881. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2882. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2883. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2884. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2885. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2886. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 2, "x": 0, "y": 0 }
  2889. ],
  2890. "scale": [
  2891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 2, "x": 1, "y": 1 }
  2904. ]
  2905. },
  2906. "bone16": {
  2907. "rotate": [
  2908. { "time": 0, "angle": 0 },
  2909. { "time": 0.1667, "angle": 11.92 },
  2910. { "time": 0.3333, "angle": 5.18 },
  2911. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2912. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2913. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2914. { "time": 1, "angle": 0 },
  2915. { "time": 1.1667, "angle": 11.92 },
  2916. { "time": 1.3333, "angle": 5.18 },
  2917. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2918. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2919. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2920. { "time": 2, "angle": 0 }
  2921. ],
  2922. "translate": [
  2923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2924. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2925. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2926. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 2, "x": 0, "y": 0 }
  2936. ],
  2937. "scale": [
  2938. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2942. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 2, "x": 1, "y": 1 }
  2951. ]
  2952. },
  2953. "bone17": {
  2954. "rotate": [
  2955. {
  2956. "time": 0,
  2957. "angle": 356.8,
  2958. "curve": [ 0.25, 0, 0.75, 1 ]
  2959. },
  2960. {
  2961. "time": 0.5,
  2962. "angle": 0,
  2963. "curve": [ 0.25, 0, 0.75, 1 ]
  2964. },
  2965. {
  2966. "time": 1,
  2967. "angle": 356.8,
  2968. "curve": [ 0.25, 0, 0.75, 1 ]
  2969. },
  2970. {
  2971. "time": 1.5,
  2972. "angle": 0,
  2973. "curve": [ 0.25, 0, 0.75, 1 ]
  2974. },
  2975. { "time": 2, "angle": 356.8 }
  2976. ],
  2977. "translate": [
  2978. {
  2979. "time": 0,
  2980. "x": 0,
  2981. "y": 0,
  2982. "curve": [ 0.25, 0, 0.75, 1 ]
  2983. },
  2984. {
  2985. "time": 0.5,
  2986. "x": -0.01,
  2987. "y": 0.85,
  2988. "curve": [ 0.25, 0, 0.75, 1 ]
  2989. },
  2990. {
  2991. "time": 1,
  2992. "x": 0,
  2993. "y": 0,
  2994. "curve": [ 0.25, 0, 0.75, 1 ]
  2995. },
  2996. {
  2997. "time": 1.5,
  2998. "x": -0.01,
  2999. "y": 0.85,
  3000. "curve": [ 0.25, 0, 0.75, 1 ]
  3001. },
  3002. { "time": 2, "x": 0, "y": 0 }
  3003. ],
  3004. "scale": [
  3005. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3006. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3007. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3008. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3009. { "time": 2, "x": 1, "y": 1 }
  3010. ]
  3011. },
  3012. "bone18": {
  3013. "rotate": [
  3014. {
  3015. "time": 0,
  3016. "angle": -3.2,
  3017. "curve": [ 0.25, 0, 0.75, 1 ]
  3018. },
  3019. {
  3020. "time": 0.5,
  3021. "angle": 0,
  3022. "curve": [ 0.25, 0, 0.75, 1 ]
  3023. },
  3024. {
  3025. "time": 1,
  3026. "angle": -3.2,
  3027. "curve": [ 0.25, 0, 0.75, 1 ]
  3028. },
  3029. {
  3030. "time": 1.5,
  3031. "angle": 0,
  3032. "curve": [ 0.25, 0, 0.75, 1 ]
  3033. },
  3034. { "time": 2, "angle": -3.2 }
  3035. ],
  3036. "translate": [
  3037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3038. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3040. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3041. { "time": 2, "x": 0, "y": 0 }
  3042. ],
  3043. "scale": [
  3044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3045. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3046. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3047. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3048. { "time": 2, "x": 1, "y": 1 }
  3049. ]
  3050. },
  3051. "bone19": {
  3052. "rotate": [
  3053. {
  3054. "time": 0,
  3055. "angle": -3.2,
  3056. "curve": [ 0.25, 0, 0.75, 1 ]
  3057. },
  3058. {
  3059. "time": 0.5,
  3060. "angle": -3.23,
  3061. "curve": [ 0.25, 0, 0.75, 1 ]
  3062. },
  3063. {
  3064. "time": 1,
  3065. "angle": -3.2,
  3066. "curve": [ 0.25, 0, 0.75, 1 ]
  3067. },
  3068. {
  3069. "time": 1.5,
  3070. "angle": -3.23,
  3071. "curve": [ 0.25, 0, 0.75, 1 ]
  3072. },
  3073. { "time": 2, "angle": -3.2 }
  3074. ],
  3075. "translate": [
  3076. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3077. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3078. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3079. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3080. { "time": 2, "x": 0, "y": 0 }
  3081. ],
  3082. "scale": [
  3083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3085. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3086. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3087. { "time": 2, "x": 1, "y": 1 }
  3088. ]
  3089. },
  3090. "bone20": {
  3091. "rotate": [
  3092. {
  3093. "time": 0,
  3094. "angle": -3.2,
  3095. "curve": [ 0.25, 0, 0.75, 1 ]
  3096. },
  3097. {
  3098. "time": 0.5,
  3099. "angle": -5.26,
  3100. "curve": [ 0.25, 0, 0.75, 1 ]
  3101. },
  3102. {
  3103. "time": 1,
  3104. "angle": -3.2,
  3105. "curve": [ 0.25, 0, 0.75, 1 ]
  3106. },
  3107. {
  3108. "time": 1.5,
  3109. "angle": -5.26,
  3110. "curve": [ 0.25, 0, 0.75, 1 ]
  3111. },
  3112. { "time": 2, "angle": -3.2 }
  3113. ],
  3114. "translate": [
  3115. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3117. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3118. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3119. { "time": 2, "x": 0, "y": 0 }
  3120. ],
  3121. "scale": [
  3122. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3124. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3125. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3126. { "time": 2, "x": 1, "y": 1 }
  3127. ]
  3128. },
  3129. "bone21": {
  3130. "rotate": [
  3131. {
  3132. "time": 0,
  3133. "angle": -3.2,
  3134. "curve": [ 0.25, 0, 0.75, 1 ]
  3135. },
  3136. {
  3137. "time": 0.5,
  3138. "angle": 0,
  3139. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3140. },
  3141. {
  3142. "time": 1,
  3143. "angle": -3.2,
  3144. "curve": [ 0.25, 0, 0.75, 1 ]
  3145. },
  3146. {
  3147. "time": 1.5,
  3148. "angle": 0,
  3149. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3150. },
  3151. { "time": 2, "angle": -3.2 }
  3152. ],
  3153. "translate": [
  3154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3155. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3156. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3157. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 2, "x": 0, "y": 0 }
  3159. ],
  3160. "scale": [
  3161. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3162. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3163. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3164. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 2, "x": 1, "y": 1 }
  3166. ]
  3167. },
  3168. "bone22": {
  3169. "rotate": [
  3170. {
  3171. "time": 0,
  3172. "angle": -3.2,
  3173. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3174. },
  3175. {
  3176. "time": 0.1667,
  3177. "angle": -6.11,
  3178. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3179. },
  3180. {
  3181. "time": 0.5,
  3182. "angle": 0,
  3183. "curve": [ 0.292, 0, 0.63, 0.37 ]
  3184. },
  3185. {
  3186. "time": 0.6667,
  3187. "angle": 8.56,
  3188. "curve": [ 0.303, 0.23, 0.646, 0.59 ]
  3189. },
  3190. {
  3191. "time": 1,
  3192. "angle": -3.2,
  3193. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3194. },
  3195. {
  3196. "time": 1.1667,
  3197. "angle": -6.11,
  3198. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3199. },
  3200. {
  3201. "time": 1.5,
  3202. "angle": 0,
  3203. "curve": [ 0.292, 0, 0.63, 0.37 ]
  3204. },
  3205. {
  3206. "time": 1.6667,
  3207. "angle": 8.56,
  3208. "curve": [ 0.303, 0.23, 0.646, 0.59 ]
  3209. },
  3210. { "time": 2, "angle": -3.2 }
  3211. ],
  3212. "translate": [
  3213. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 2, "x": 0, "y": 0 }
  3218. ],
  3219. "scale": [
  3220. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3224. { "time": 2, "x": 1, "y": 1 }
  3225. ]
  3226. },
  3227. "bone23": {
  3228. "rotate": [
  3229. {
  3230. "time": 0,
  3231. "angle": -3.2,
  3232. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3233. },
  3234. {
  3235. "time": 0.1667,
  3236. "angle": -6.11,
  3237. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3238. },
  3239. {
  3240. "time": 0.5,
  3241. "angle": 0,
  3242. "curve": [ 0.292, 0, 0.63, 0.37 ]
  3243. },
  3244. {
  3245. "time": 0.6667,
  3246. "angle": 8.56,
  3247. "curve": [ 0.303, 0.23, 0.646, 0.59 ]
  3248. },
  3249. {
  3250. "time": 1,
  3251. "angle": -3.2,
  3252. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3253. },
  3254. {
  3255. "time": 1.1667,
  3256. "angle": -6.11,
  3257. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3258. },
  3259. {
  3260. "time": 1.5,
  3261. "angle": 0,
  3262. "curve": [ 0.292, 0, 0.63, 0.37 ]
  3263. },
  3264. {
  3265. "time": 1.6667,
  3266. "angle": 8.56,
  3267. "curve": [ 0.303, 0.23, 0.646, 0.59 ]
  3268. },
  3269. { "time": 2, "angle": -3.2 }
  3270. ],
  3271. "translate": [
  3272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3273. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3275. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 2, "x": 0, "y": 0 }
  3277. ],
  3278. "scale": [
  3279. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3280. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3281. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3282. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3283. { "time": 2, "x": 1, "y": 1 }
  3284. ]
  3285. },
  3286. "bone24": {
  3287. "rotate": [
  3288. { "time": 0, "angle": 0, "curve": "stepped" },
  3289. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3290. { "time": 1, "angle": 0, "curve": "stepped" },
  3291. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3292. { "time": 2, "angle": 0 }
  3293. ],
  3294. "translate": [
  3295. {
  3296. "time": 0,
  3297. "x": 0,
  3298. "y": 0,
  3299. "curve": [ 0.25, 0, 0.75, 1 ]
  3300. },
  3301. {
  3302. "time": 0.5,
  3303. "x": 1.12,
  3304. "y": 0.76,
  3305. "curve": [ 0.25, 0, 0.75, 1 ]
  3306. },
  3307. {
  3308. "time": 1,
  3309. "x": 0,
  3310. "y": 0,
  3311. "curve": [ 0.25, 0, 0.75, 1 ]
  3312. },
  3313. {
  3314. "time": 1.5,
  3315. "x": 1.12,
  3316. "y": 0.76,
  3317. "curve": [ 0.25, 0, 0.75, 1 ]
  3318. },
  3319. { "time": 2, "x": 0, "y": 0 }
  3320. ],
  3321. "scale": [
  3322. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3324. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3325. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3326. { "time": 2, "x": 1, "y": 1 }
  3327. ]
  3328. },
  3329. "bone25": {
  3330. "rotate": [
  3331. {
  3332. "time": 0,
  3333. "angle": -0.38,
  3334. "curve": [ 0.25, 0, 0.75, 1 ]
  3335. },
  3336. {
  3337. "time": 0.5,
  3338. "angle": 5.4,
  3339. "curve": [ 0.25, 0, 0.75, 1 ]
  3340. },
  3341. {
  3342. "time": 1,
  3343. "angle": -0.38,
  3344. "curve": [ 0.25, 0, 0.75, 1 ]
  3345. },
  3346. {
  3347. "time": 1.5,
  3348. "angle": 5.4,
  3349. "curve": [ 0.25, 0, 0.75, 1 ]
  3350. },
  3351. { "time": 2, "angle": -0.38 }
  3352. ],
  3353. "translate": [
  3354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3355. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 2, "x": 0, "y": 0 }
  3359. ],
  3360. "scale": [
  3361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 2, "x": 1, "y": 1 }
  3366. ]
  3367. },
  3368. "bone26": {
  3369. "rotate": [
  3370. {
  3371. "time": 0,
  3372. "angle": -0.38,
  3373. "curve": [ 0.25, 0, 0.75, 1 ]
  3374. },
  3375. {
  3376. "time": 0.5,
  3377. "angle": 5.4,
  3378. "curve": [ 0.25, 0, 0.75, 1 ]
  3379. },
  3380. {
  3381. "time": 1,
  3382. "angle": -0.38,
  3383. "curve": [ 0.25, 0, 0.75, 1 ]
  3384. },
  3385. {
  3386. "time": 1.5,
  3387. "angle": 5.4,
  3388. "curve": [ 0.25, 0, 0.75, 1 ]
  3389. },
  3390. { "time": 2, "angle": -0.38 }
  3391. ],
  3392. "translate": [
  3393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3395. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3396. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3397. { "time": 2, "x": 0, "y": 0 }
  3398. ],
  3399. "scale": [
  3400. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 2, "x": 1, "y": 1 }
  3405. ]
  3406. },
  3407. "bone27": {
  3408. "rotate": [
  3409. {
  3410. "time": 0,
  3411. "angle": -0.38,
  3412. "curve": [ 0.25, 0, 0.75, 1 ]
  3413. },
  3414. {
  3415. "time": 0.5,
  3416. "angle": 5.4,
  3417. "curve": [ 0.25, 0, 0.75, 1 ]
  3418. },
  3419. {
  3420. "time": 1,
  3421. "angle": -0.38,
  3422. "curve": [ 0.25, 0, 0.75, 1 ]
  3423. },
  3424. {
  3425. "time": 1.5,
  3426. "angle": 5.4,
  3427. "curve": [ 0.25, 0, 0.75, 1 ]
  3428. },
  3429. { "time": 2, "angle": -0.38 }
  3430. ],
  3431. "translate": [
  3432. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 2, "x": 0, "y": 0 }
  3437. ],
  3438. "scale": [
  3439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 2, "x": 1, "y": 1 }
  3444. ]
  3445. },
  3446. "bone28": {
  3447. "rotate": [
  3448. {
  3449. "time": 0,
  3450. "angle": -0.38,
  3451. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3452. },
  3453. {
  3454. "time": 0.1667,
  3455. "angle": -4.34,
  3456. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3457. },
  3458. {
  3459. "time": 0.5,
  3460. "angle": 5.4,
  3461. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3462. },
  3463. {
  3464. "time": 1,
  3465. "angle": -0.38,
  3466. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3467. },
  3468. {
  3469. "time": 1.1667,
  3470. "angle": -4.34,
  3471. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3472. },
  3473. {
  3474. "time": 1.5,
  3475. "angle": 5.4,
  3476. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3477. },
  3478. { "time": 2, "angle": -0.38 }
  3479. ],
  3480. "translate": [
  3481. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 2, "x": 0, "y": 0 }
  3486. ],
  3487. "scale": [
  3488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3490. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3491. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3492. { "time": 2, "x": 1, "y": 1 }
  3493. ]
  3494. },
  3495. "bone29": {
  3496. "rotate": [
  3497. {
  3498. "time": 0,
  3499. "angle": -0.38,
  3500. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3501. },
  3502. {
  3503. "time": 0.1667,
  3504. "angle": -4.34,
  3505. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3506. },
  3507. {
  3508. "time": 0.5,
  3509. "angle": 5.4,
  3510. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3511. },
  3512. {
  3513. "time": 1,
  3514. "angle": -0.38,
  3515. "curve": [ 0.252, 0, 0.622, 0.48 ]
  3516. },
  3517. {
  3518. "time": 1.1667,
  3519. "angle": -4.34,
  3520. "curve": [ 0.372, 0.48, 0.752, 1 ]
  3521. },
  3522. {
  3523. "time": 1.5,
  3524. "angle": 5.4,
  3525. "curve": [ 0.258, 0, 0.619, 0.45 ]
  3526. },
  3527. { "time": 2, "angle": -0.38 }
  3528. ],
  3529. "translate": [
  3530. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3534. { "time": 2, "x": 0, "y": 0 }
  3535. ],
  3536. "scale": [
  3537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 2, "x": 1, "y": 1 }
  3542. ]
  3543. },
  3544. "bone30": {
  3545. "rotate": [
  3546. { "time": 0, "angle": 0, "curve": "stepped" },
  3547. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3548. { "time": 1, "angle": 0, "curve": "stepped" },
  3549. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3550. { "time": 2, "angle": 0 }
  3551. ],
  3552. "translate": [
  3553. { "time": 0, "x": 0, "y": 0 },
  3554. { "time": 0.5, "x": 0.03, "y": 0.54 },
  3555. { "time": 1, "x": 0, "y": 0 },
  3556. { "time": 1.5, "x": 0.03, "y": 0.54 },
  3557. { "time": 2, "x": 0, "y": 0 }
  3558. ],
  3559. "scale": [
  3560. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3561. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3562. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3563. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3564. { "time": 2, "x": 1, "y": 1 }
  3565. ]
  3566. },
  3567. "bone31": {
  3568. "rotate": [
  3569. { "time": 0, "angle": 0, "curve": "stepped" },
  3570. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3571. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3572. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3573. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3574. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3575. { "time": 1, "angle": 0, "curve": "stepped" },
  3576. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3577. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3578. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3579. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3580. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3581. { "time": 2, "angle": 0 }
  3582. ],
  3583. "translate": [
  3584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3585. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3591. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3592. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 2, "x": 0, "y": 0 }
  3597. ],
  3598. "scale": [
  3599. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3607. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3608. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3609. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3610. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3611. { "time": 2, "x": 1, "y": 1 }
  3612. ]
  3613. },
  3614. "bone32": {
  3615. "rotate": [
  3616. { "time": 0, "angle": 0, "curve": "stepped" },
  3617. { "time": 1, "angle": 0, "curve": "stepped" },
  3618. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3619. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3620. { "time": 1.3333, "angle": 0 }
  3621. ],
  3622. "translate": [
  3623. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3624. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3625. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3626. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3627. { "time": 1.3333, "x": 0, "y": 0 }
  3628. ],
  3629. "scale": [
  3630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 1, "x": 1, "y": 1 },
  3632. { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
  3633. { "time": 1.2, "x": 0.464, "y": 1 },
  3634. { "time": 1.3333, "x": 1, "y": 1 }
  3635. ]
  3636. },
  3637. "bone33": {
  3638. "rotate": [
  3639. { "time": 0, "angle": 0, "curve": "stepped" },
  3640. { "time": 1, "angle": 0, "curve": "stepped" },
  3641. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3642. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3643. { "time": 1.3333, "angle": 0 }
  3644. ],
  3645. "translate": [
  3646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3648. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3649. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 1.3333, "x": 0, "y": 0 }
  3651. ],
  3652. "scale": [
  3653. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3654. { "time": 1, "x": 1, "y": 1 },
  3655. { "time": 1.1, "x": 0.435, "y": 1, "curve": "stepped" },
  3656. { "time": 1.2, "x": 0.435, "y": 1 },
  3657. { "time": 1.3333, "x": 1, "y": 1 }
  3658. ]
  3659. },
  3660. "bone34": {
  3661. "rotate": [
  3662. { "time": 0, "angle": 0, "curve": "stepped" },
  3663. { "time": 1, "angle": 0, "curve": "stepped" },
  3664. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3665. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3666. { "time": 1.3333, "angle": 0 }
  3667. ],
  3668. "translate": [
  3669. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3670. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3671. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3672. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3673. { "time": 1.3333, "x": 0, "y": 0 }
  3674. ],
  3675. "scale": [
  3676. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3677. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 1.3333, "x": 1, "y": 1 }
  3681. ]
  3682. },
  3683. "bone35": {
  3684. "rotate": [
  3685. { "time": 0, "angle": 0, "curve": "stepped" },
  3686. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3687. { "time": 1, "angle": 0, "curve": "stepped" },
  3688. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3689. { "time": 2, "angle": 0 }
  3690. ],
  3691. "translate": [
  3692. { "time": 0, "x": 0, "y": 0 },
  3693. { "time": 0.5, "x": 0.74, "y": -0.04 },
  3694. { "time": 1, "x": 0, "y": 0 },
  3695. { "time": 1.5, "x": 0.74, "y": -0.04 },
  3696. { "time": 2, "x": 0, "y": 0 }
  3697. ],
  3698. "scale": [
  3699. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3701. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3702. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3703. { "time": 2, "x": 1, "y": 1 }
  3704. ]
  3705. },
  3706. "bone36": {
  3707. "rotate": [
  3708. { "time": 0, "angle": 0 },
  3709. { "time": 0.5, "angle": 6.47 },
  3710. { "time": 1, "angle": 0 },
  3711. { "time": 1.5, "angle": 6.47 },
  3712. { "time": 2, "angle": 0 }
  3713. ],
  3714. "translate": [
  3715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3719. { "time": 2, "x": 0, "y": 0 }
  3720. ],
  3721. "scale": [
  3722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3724. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 2, "x": 1, "y": 1 }
  3727. ]
  3728. },
  3729. "bone37": {
  3730. "rotate": [
  3731. { "time": 0, "angle": 7.25 },
  3732. { "time": 0.5, "angle": 0 },
  3733. { "time": 1, "angle": 7.25 },
  3734. { "time": 1.5, "angle": 0 },
  3735. { "time": 2, "angle": 7.25 }
  3736. ],
  3737. "translate": [
  3738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3739. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3741. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3742. { "time": 2, "x": 0, "y": 0 }
  3743. ],
  3744. "scale": [
  3745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3746. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3747. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3748. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3749. { "time": 2, "x": 1, "y": 1 }
  3750. ]
  3751. },
  3752. "bone38": {
  3753. "rotate": [
  3754. { "time": 0, "angle": -4.19 },
  3755. { "time": 0.5, "angle": 0 },
  3756. { "time": 1, "angle": -4.19 },
  3757. { "time": 1.5, "angle": 0 },
  3758. { "time": 2, "angle": -4.19 }
  3759. ],
  3760. "translate": [
  3761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3762. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3763. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3764. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3765. { "time": 2, "x": 0, "y": 0 }
  3766. ],
  3767. "scale": [
  3768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3769. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3770. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3771. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3772. { "time": 2, "x": 1, "y": 1 }
  3773. ]
  3774. },
  3775. "bone39": {
  3776. "rotate": [
  3777. { "time": 0, "angle": -4.19 },
  3778. { "time": 0.5, "angle": 0 },
  3779. { "time": 1, "angle": -4.19 },
  3780. { "time": 1.5, "angle": 0 },
  3781. { "time": 2, "angle": -4.19 }
  3782. ],
  3783. "translate": [
  3784. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3786. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3787. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3788. { "time": 2, "x": 0, "y": 0 }
  3789. ],
  3790. "scale": [
  3791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 2, "x": 1, "y": 1 }
  3796. ]
  3797. },
  3798. "bone40": {
  3799. "rotate": [
  3800. { "time": 0, "angle": 0, "curve": "stepped" },
  3801. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3802. { "time": 1, "angle": 0, "curve": "stepped" },
  3803. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3804. { "time": 2, "angle": 0 }
  3805. ],
  3806. "translate": [
  3807. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3808. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3809. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3810. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3811. { "time": 2, "x": 0, "y": 0 }
  3812. ],
  3813. "scale": [
  3814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 2, "x": 1, "y": 1 }
  3819. ]
  3820. },
  3821. "bone41": {
  3822. "rotate": [
  3823. { "time": 0, "angle": -1.19 },
  3824. { "time": 0.5, "angle": 0 },
  3825. { "time": 1, "angle": -1.19 },
  3826. { "time": 1.5, "angle": 0 },
  3827. { "time": 2, "angle": -1.19 }
  3828. ],
  3829. "translate": [
  3830. { "time": 0, "x": 0, "y": 0 },
  3831. { "time": 0.5, "x": -0.42, "y": -0.6 },
  3832. { "time": 1, "x": 0, "y": 0 },
  3833. { "time": 1.5, "x": -0.42, "y": -0.6 },
  3834. { "time": 2, "x": 0, "y": 0 }
  3835. ],
  3836. "scale": [
  3837. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3838. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3839. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3840. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3841. { "time": 2, "x": 1, "y": 1 }
  3842. ]
  3843. },
  3844. "bone42": {
  3845. "rotate": [
  3846. { "time": 0, "angle": -1.19 },
  3847. { "time": 0.5, "angle": 0 },
  3848. { "time": 1, "angle": -1.19 },
  3849. { "time": 1.5, "angle": 0 },
  3850. { "time": 2, "angle": -1.19 }
  3851. ],
  3852. "translate": [
  3853. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3854. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3855. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3856. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3857. { "time": 2, "x": 0, "y": 0 }
  3858. ],
  3859. "scale": [
  3860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 2, "x": 1, "y": 1 }
  3865. ]
  3866. },
  3867. "bone43": {
  3868. "rotate": [
  3869. { "time": 0, "angle": 4.19 },
  3870. { "time": 0.5, "angle": 0 },
  3871. { "time": 1, "angle": 4.19 },
  3872. { "time": 1.5, "angle": 0 },
  3873. { "time": 2, "angle": 4.19 }
  3874. ],
  3875. "translate": [
  3876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 2, "x": 0, "y": 0 }
  3881. ],
  3882. "scale": [
  3883. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3884. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 2, "x": 1, "y": 1 }
  3888. ]
  3889. },
  3890. "bone44": {
  3891. "rotate": [
  3892. { "time": 0, "angle": -2.35 },
  3893. { "time": 0.5, "angle": 0 },
  3894. { "time": 1, "angle": -2.35 },
  3895. { "time": 1.5, "angle": 0 },
  3896. { "time": 2, "angle": -2.35 }
  3897. ],
  3898. "translate": [
  3899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3900. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3901. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 2, "x": 0, "y": 0 }
  3904. ],
  3905. "scale": [
  3906. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3907. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 2, "x": 1, "y": 1 }
  3911. ]
  3912. },
  3913. "bone45": {
  3914. "rotate": [
  3915. { "time": 0, "angle": 0, "curve": "stepped" },
  3916. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3917. { "time": 1, "angle": 0, "curve": "stepped" },
  3918. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3919. { "time": 2, "angle": 0 }
  3920. ],
  3921. "translate": [
  3922. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3923. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3924. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 2, "x": 0, "y": 0 }
  3927. ],
  3928. "scale": [
  3929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 2, "x": 1, "y": 1 }
  3934. ]
  3935. },
  3936. "bone46": {
  3937. "rotate": [
  3938. { "time": 0, "angle": 0, "curve": "stepped" },
  3939. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3940. { "time": 1, "angle": 0, "curve": "stepped" },
  3941. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3942. { "time": 2, "angle": 0 }
  3943. ],
  3944. "translate": [
  3945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3947. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3948. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 2, "x": 0, "y": 0 }
  3950. ],
  3951. "scale": [
  3952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3955. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3956. { "time": 2, "x": 1, "y": 1 }
  3957. ]
  3958. },
  3959. "bone47": {
  3960. "rotate": [
  3961. { "time": 0, "angle": 0, "curve": "stepped" },
  3962. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3963. { "time": 1, "angle": 0, "curve": "stepped" },
  3964. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3965. { "time": 2, "angle": 0 }
  3966. ],
  3967. "translate": [
  3968. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3969. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3970. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3971. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3972. { "time": 2, "x": 0, "y": 0 }
  3973. ],
  3974. "scale": [
  3975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3978. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3979. { "time": 2, "x": 1, "y": 1 }
  3980. ]
  3981. },
  3982. "bone48": {
  3983. "rotate": [
  3984. { "time": 0, "angle": -4.2 },
  3985. { "time": 0.5, "angle": 0 },
  3986. { "time": 1, "angle": -4.2 },
  3987. { "time": 1.5, "angle": 0 },
  3988. { "time": 2, "angle": -4.2 }
  3989. ],
  3990. "translate": [
  3991. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3992. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3995. { "time": 2, "x": 0, "y": 0 }
  3996. ],
  3997. "scale": [
  3998. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 2, "x": 1, "y": 1 }
  4003. ]
  4004. },
  4005. "bone49": {
  4006. "rotate": [
  4007. { "time": 0, "angle": 0, "curve": "stepped" },
  4008. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4009. { "time": 1, "angle": 0, "curve": "stepped" },
  4010. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4011. { "time": 2, "angle": 0 }
  4012. ],
  4013. "translate": [
  4014. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4015. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4016. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4017. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4018. { "time": 2, "x": 0, "y": 0 }
  4019. ],
  4020. "scale": [
  4021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 2, "x": 1, "y": 1 }
  4026. ]
  4027. },
  4028. "bone50": {
  4029. "rotate": [
  4030. { "time": 0, "angle": 0, "curve": "stepped" },
  4031. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4032. { "time": 1, "angle": 0, "curve": "stepped" },
  4033. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4034. { "time": 2, "angle": 0 }
  4035. ],
  4036. "translate": [
  4037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4038. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4040. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4041. { "time": 2, "x": 0, "y": 0 }
  4042. ],
  4043. "scale": [
  4044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4045. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4046. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4047. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4048. { "time": 2, "x": 1, "y": 1 }
  4049. ]
  4050. },
  4051. "bone51": {
  4052. "rotate": [
  4053. { "time": 0, "angle": 0, "curve": "stepped" },
  4054. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4055. { "time": 1, "angle": 0, "curve": "stepped" },
  4056. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4057. { "time": 2, "angle": 0 }
  4058. ],
  4059. "translate": [
  4060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4062. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4063. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4064. { "time": 2, "x": 0, "y": 0 }
  4065. ],
  4066. "scale": [
  4067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4068. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4069. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4070. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4071. { "time": 2, "x": 1, "y": 1 }
  4072. ]
  4073. },
  4074. "bone52": {
  4075. "rotate": [
  4076. { "time": 0, "angle": 5.64 },
  4077. { "time": 0.5, "angle": 0 },
  4078. { "time": 1, "angle": 5.64 },
  4079. { "time": 1.5, "angle": 0 },
  4080. { "time": 2, "angle": 5.64 }
  4081. ],
  4082. "translate": [
  4083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 2, "x": 0, "y": 0 }
  4088. ],
  4089. "scale": [
  4090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4091. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4092. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 2, "x": 1, "y": 1 }
  4095. ]
  4096. },
  4097. "bone53": {
  4098. "rotate": [
  4099. { "time": 0, "angle": 4.92 },
  4100. { "time": 0.5, "angle": 0 },
  4101. { "time": 1, "angle": 4.92 },
  4102. { "time": 1.5, "angle": 0 },
  4103. { "time": 2, "angle": 4.92 }
  4104. ],
  4105. "translate": [
  4106. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4107. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4108. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4109. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4110. { "time": 2, "x": 0, "y": 0 }
  4111. ],
  4112. "scale": [
  4113. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4114. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4115. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4116. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 2, "x": 1, "y": 1 }
  4118. ]
  4119. },
  4120. "bone54": {
  4121. "rotate": [
  4122. { "time": 0, "angle": 0, "curve": "stepped" },
  4123. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4124. { "time": 1, "angle": 0, "curve": "stepped" },
  4125. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4126. { "time": 2, "angle": 0 }
  4127. ],
  4128. "translate": [
  4129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4130. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4131. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4132. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 2, "x": 0, "y": 0 }
  4134. ],
  4135. "scale": [
  4136. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4137. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4138. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4139. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4140. { "time": 2, "x": 1, "y": 1 }
  4141. ]
  4142. },
  4143. "bone55": {
  4144. "rotate": [
  4145. { "time": 0, "angle": 0, "curve": "stepped" },
  4146. { "time": 1, "angle": 0, "curve": "stepped" },
  4147. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4148. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4149. { "time": 1.3333, "angle": 0 }
  4150. ],
  4151. "translate": [
  4152. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4153. { "time": 1, "x": 0, "y": 0 },
  4154. { "time": 1.1, "x": -2.25, "y": 0, "curve": "stepped" },
  4155. { "time": 1.2, "x": -2.25, "y": 0 },
  4156. { "time": 1.3333, "x": 0, "y": 0 }
  4157. ],
  4158. "scale": [
  4159. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4160. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4161. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4162. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 1.3333, "x": 1, "y": 1 }
  4164. ]
  4165. },
  4166. "bone56": {
  4167. "rotate": [
  4168. { "time": 0, "angle": -4.34 },
  4169. { "time": 0.5, "angle": 0 },
  4170. { "time": 1, "angle": -4.34 },
  4171. { "time": 1.5, "angle": 0 },
  4172. { "time": 2, "angle": -4.34 }
  4173. ],
  4174. "translate": [
  4175. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4176. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4177. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 2, "x": 0, "y": 0 }
  4180. ],
  4181. "scale": [
  4182. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4183. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4184. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4185. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4186. { "time": 2, "x": 1, "y": 1 }
  4187. ]
  4188. },
  4189. "bone57": {
  4190. "rotate": [
  4191. { "time": 0, "angle": 4.35 },
  4192. { "time": 0.5, "angle": 4.89 },
  4193. { "time": 1, "angle": 4.35 },
  4194. { "time": 1.5, "angle": 4.89 },
  4195. { "time": 2, "angle": 4.35 }
  4196. ],
  4197. "translate": [
  4198. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4201. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4202. { "time": 2, "x": 0, "y": 0 }
  4203. ],
  4204. "scale": [
  4205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 2, "x": 1, "y": 1 }
  4210. ]
  4211. },
  4212. "bone58": {
  4213. "rotate": [
  4214. { "time": 0, "angle": 0, "curve": "stepped" },
  4215. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4216. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4217. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4218. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4219. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4220. { "time": 1, "angle": 0, "curve": "stepped" },
  4221. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4222. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4223. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4224. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4225. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4226. { "time": 2, "angle": 0 }
  4227. ],
  4228. "translate": [
  4229. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4230. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4231. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4232. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4233. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4234. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4235. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4236. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4237. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4238. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4239. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4240. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4241. { "time": 2, "x": 0, "y": 0 }
  4242. ],
  4243. "scale": [
  4244. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4245. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4246. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4247. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4248. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4250. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4251. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4252. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4253. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4254. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4255. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4256. { "time": 2, "x": 1, "y": 1 }
  4257. ]
  4258. },
  4259. "bone59": {
  4260. "rotate": [
  4261. { "time": 0, "angle": 0, "curve": "stepped" },
  4262. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4263. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4264. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4265. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4266. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4267. { "time": 1, "angle": 0, "curve": "stepped" },
  4268. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4269. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4270. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4271. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4272. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4273. { "time": 2, "angle": 0 }
  4274. ],
  4275. "translate": [
  4276. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4277. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4278. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4279. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4280. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4281. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4282. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4283. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4284. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4285. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4286. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4287. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4288. { "time": 2, "x": 0, "y": 0 }
  4289. ],
  4290. "scale": [
  4291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4293. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4296. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4297. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4298. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4299. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4300. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4302. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4303. { "time": 2, "x": 1, "y": 1 }
  4304. ]
  4305. },
  4306. "bone60": {
  4307. "rotate": [
  4308. { "time": 0, "angle": 0, "curve": "stepped" },
  4309. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4310. { "time": 1, "angle": 0, "curve": "stepped" },
  4311. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4312. { "time": 2, "angle": 0 }
  4313. ],
  4314. "translate": [
  4315. { "time": 0, "x": 0, "y": 0 },
  4316. { "time": 0.5, "x": 0.01, "y": 0.19 },
  4317. { "time": 1, "x": 0, "y": 0 },
  4318. { "time": 1.5, "x": 0.01, "y": 0.19 },
  4319. { "time": 2, "x": 0, "y": 0 }
  4320. ],
  4321. "scale": [
  4322. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 2, "x": 1, "y": 1 }
  4327. ]
  4328. },
  4329. "bone61": {
  4330. "rotate": [
  4331. { "time": 0, "angle": 0, "curve": "stepped" },
  4332. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4333. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4334. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4335. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4336. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4337. { "time": 1, "angle": 0, "curve": "stepped" },
  4338. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4339. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4340. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4341. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4342. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4343. { "time": 2, "angle": 0 }
  4344. ],
  4345. "translate": [
  4346. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4347. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4348. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4349. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4350. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4351. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 2, "x": 0, "y": 0 }
  4359. ],
  4360. "scale": [
  4361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4362. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4365. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4366. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4367. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4368. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 2, "x": 1, "y": 1 }
  4374. ]
  4375. },
  4376. "bone62": {
  4377. "rotate": [
  4378. { "time": 0, "angle": 0, "curve": "stepped" },
  4379. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4380. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4381. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4382. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4383. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4384. { "time": 1, "angle": 0, "curve": "stepped" },
  4385. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4386. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4387. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4388. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4389. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4390. { "time": 2, "angle": 0 }
  4391. ],
  4392. "translate": [
  4393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4394. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4395. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4397. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4398. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4399. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4400. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4401. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4402. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4403. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4404. { "time": 1.8333, "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.1667, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4413. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4414. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4415. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4416. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4419. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4420. { "time": 2, "x": 1, "y": 1 }
  4421. ]
  4422. },
  4423. "bone63": {
  4424. "rotate": [
  4425. { "time": 0, "angle": 0, "curve": "stepped" },
  4426. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4427. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4428. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4429. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4430. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4431. { "time": 1, "angle": 0, "curve": "stepped" },
  4432. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4433. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4434. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4435. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4436. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4437. { "time": 2, "angle": 0 }
  4438. ],
  4439. "translate": [
  4440. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4441. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4442. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4443. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4444. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4445. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4446. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4447. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 2, "x": 0, "y": 0 }
  4453. ],
  4454. "scale": [
  4455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4456. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4457. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4459. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4460. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4461. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 2, "x": 1, "y": 1 }
  4468. ]
  4469. },
  4470. "bone64": {
  4471. "rotate": [
  4472. { "time": 0, "angle": 0, "curve": "stepped" },
  4473. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4474. { "time": 1, "angle": 0, "curve": "stepped" },
  4475. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4476. { "time": 2, "angle": 0 }
  4477. ],
  4478. "translate": [
  4479. { "time": 0, "x": 0, "y": 0 },
  4480. { "time": 0.5, "x": -0.36, "y": -0.04 },
  4481. { "time": 1, "x": 0, "y": 0 },
  4482. { "time": 1.5, "x": -0.36, "y": -0.04 },
  4483. { "time": 2, "x": 0, "y": 0 }
  4484. ],
  4485. "scale": [
  4486. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4489. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4490. { "time": 2, "x": 1, "y": 1 }
  4491. ]
  4492. },
  4493. "bone65": {
  4494. "rotate": [
  4495. { "time": 0, "angle": 12.59 },
  4496. { "time": 0.5, "angle": 7.72 },
  4497. { "time": 1, "angle": 12.59 },
  4498. { "time": 1.5, "angle": 7.72 },
  4499. { "time": 2, "angle": 12.59 }
  4500. ],
  4501. "translate": [
  4502. { "time": 0, "x": 0, "y": 0 },
  4503. { "time": 0.5, "x": -0.73, "y": 0.13 },
  4504. { "time": 1, "x": 0, "y": 0 },
  4505. { "time": 1.5, "x": -0.73, "y": 0.13 },
  4506. { "time": 2, "x": 0, "y": 0 }
  4507. ],
  4508. "scale": [
  4509. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4511. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4512. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4513. { "time": 2, "x": 1, "y": 1 }
  4514. ]
  4515. },
  4516. "bone66": {
  4517. "rotate": [
  4518. { "time": 0, "angle": 7.84 },
  4519. { "time": 0.5, "angle": 9.03 },
  4520. { "time": 1, "angle": 7.84 },
  4521. { "time": 1.5, "angle": 9.03 },
  4522. { "time": 2, "angle": 7.84 }
  4523. ],
  4524. "translate": [
  4525. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4527. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4528. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4529. { "time": 2, "x": 0, "y": 0 }
  4530. ],
  4531. "scale": [
  4532. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4535. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4536. { "time": 2, "x": 1, "y": 1 }
  4537. ]
  4538. },
  4539. "bone67": {
  4540. "rotate": [
  4541. { "time": 0, "angle": 0, "curve": "stepped" },
  4542. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4543. { "time": 1, "angle": 0, "curve": "stepped" },
  4544. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4545. { "time": 2, "angle": 0 }
  4546. ],
  4547. "translate": [
  4548. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 2, "x": 0, "y": 0 }
  4553. ],
  4554. "scale": [
  4555. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4556. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4559. { "time": 2, "x": 1, "y": 1 }
  4560. ]
  4561. }
  4562. },
  4563. "deform": {
  4564. "default": {
  4565. "maoyi": {
  4566. "maoyi": [
  4567. {
  4568. "time": 0,
  4569. "offset": 14,
  4570. "vertices": [ -0.23057, -2.42104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632 ]
  4571. },
  4572. {
  4573. "time": 0.5,
  4574. "offset": 14,
  4575. "vertices": [ -0.01537, -0.1614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01921, -0.20175, -0.16314, -1.71292, -0.01921, -0.20175, -0.01921, -0.20175, -0.16314, -1.71292, -0.16314, -1.71292 ]
  4576. },
  4577. {
  4578. "time": 1,
  4579. "offset": 14,
  4580. "vertices": [ -0.23057, -2.42104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632 ]
  4581. },
  4582. {
  4583. "time": 1.5,
  4584. "offset": 14,
  4585. "vertices": [ -0.01537, -0.1614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01921, -0.20175, -0.16314, -1.71292, -0.01921, -0.20175, -0.01921, -0.20175, -0.16314, -1.71292, -0.16314, -1.71292 ]
  4586. },
  4587. {
  4588. "time": 2,
  4589. "offset": 14,
  4590. "vertices": [ -0.23057, -2.42104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632, -0.28822, -3.02632 ]
  4591. }
  4592. ]
  4593. },
  4594. "waitao you": {
  4595. "waitao you": [
  4596. {
  4597. "time": 0,
  4598. "offset": 178,
  4599. "vertices": [ 1.52501, 0.61001, 2.13499, 1.83001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.22, 0, 1.16398, -0.36544 ]
  4600. },
  4601. { "time": 0.5 },
  4602. {
  4603. "time": 1,
  4604. "offset": 178,
  4605. "vertices": [ 1.52501, 0.61001, 2.13499, 1.83001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.22, 0, 1.16398, -0.36544 ]
  4606. },
  4607. { "time": 1.5 },
  4608. {
  4609. "time": 2,
  4610. "offset": 178,
  4611. "vertices": [ 1.52501, 0.61001, 2.13499, 1.83001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.22, 0, 1.16398, -0.36544 ]
  4612. }
  4613. ]
  4614. },
  4615. "waitaozuo": {
  4616. "waitaozuo": [
  4617. { "time": 0 },
  4618. {
  4619. "time": 0.5,
  4620. "offset": 142,
  4621. "vertices": [ 3.05, 0.30501, 1.52499, -0.30499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.91501, -0.30499, 1.52501 ]
  4622. },
  4623. { "time": 1 },
  4624. {
  4625. "time": 1.5,
  4626. "offset": 142,
  4627. "vertices": [ 3.05, 0.30501, 1.52499, -0.30499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.91501, -0.30499, 1.52501 ]
  4628. },
  4629. { "time": 2 }
  4630. ]
  4631. },
  4632. "yifuhou": {
  4633. "yifuhou": [
  4634. {
  4635. "time": 0,
  4636. "offset": 20,
  4637. "vertices": [ -4.11268, -11.29911, -3.79298, -11.41042, -2.15165, -7.62726, -1.93609, -7.68481, -2.82838, -5.2159, -2.68042, -5.29347, -1.99916, -4.46294, -1.87273, -4.51745 ],
  4638. "curve": "stepped"
  4639. },
  4640. {
  4641. "time": 1,
  4642. "offset": 20,
  4643. "vertices": [ -4.11268, -11.29911, -3.79298, -11.41042, -2.15165, -7.62726, -1.93609, -7.68481, -2.82838, -5.2159, -2.68042, -5.29347, -1.99916, -4.46294, -1.87273, -4.51745 ],
  4644. "curve": "stepped"
  4645. },
  4646. {
  4647. "time": 2,
  4648. "offset": 20,
  4649. "vertices": [ -4.11268, -11.29911, -3.79298, -11.41042, -2.15165, -7.62726, -1.93609, -7.68481, -2.82838, -5.2159, -2.68042, -5.29347, -1.99916, -4.46294, -1.87273, -4.51745 ]
  4650. }
  4651. ]
  4652. },
  4653. "zuojiao": {
  4654. "zuojiao": [
  4655. {
  4656. "time": 0,
  4657. "offset": 72,
  4658. "vertices": [ -7.17892, -2.00689 ]
  4659. },
  4660. {
  4661. "time": 0.5,
  4662. "offset": 72,
  4663. "vertices": [ -0.24604, -0.72072 ]
  4664. },
  4665. {
  4666. "time": 1,
  4667. "offset": 72,
  4668. "vertices": [ -7.17892, -2.00689 ]
  4669. },
  4670. {
  4671. "time": 1.5,
  4672. "offset": 72,
  4673. "vertices": [ -0.24604, -0.72072 ]
  4674. },
  4675. {
  4676. "time": 2,
  4677. "offset": 72,
  4678. "vertices": [ -7.17892, -2.00689 ]
  4679. }
  4680. ]
  4681. }
  4682. }
  4683. }
  4684. }
  4685. }
  4686. }