60015.json 399 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902
  1. {
  2. "skeleton": { "hash": "qKqaoXQAlu2aSLloZ0M1Avua88Q", "spine": "3.6.53", "width": 406.89, "height": 205.83, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 0.71, "y": 81.14 },
  6. { "name": "bone2", "parent": "bone", "length": 12.22, "rotation": 90.7, "x": 0.15, "y": 0.3 },
  7. { "name": "bone3", "parent": "bone2", "length": 16.54, "rotation": 0.85, "x": 12.22 },
  8. { "name": "bone4", "parent": "bone3", "length": 5.23, "rotation": 3.35, "x": 16.54 },
  9. { "name": "bone5", "parent": "bone4", "length": 36.59, "rotation": 7.33, "x": 5.23 },
  10. { "name": "bone6", "parent": "bone3", "length": 23.49, "rotation": 142.75, "x": 14.58, "y": 6.31, "color": "e1b30bff" },
  11. { "name": "bone7", "parent": "bone6", "length": 17.04, "rotation": 4.66, "x": 23.49, "color": "e1b30bff" },
  12. { "name": "bone8", "parent": "bone7", "length": 12.14, "rotation": 1.65, "x": 17.04, "color": "e1b30bff" },
  13. { "name": "bone9", "parent": "bone3", "length": 23.03, "rotation": -158.3, "x": 16.02, "y": -12.06, "color": "1f31e5ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 15.05, "rotation": 8.4, "x": 23.03, "color": "1f31e5ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 12.59, "rotation": -5.69, "x": 15.05, "color": "1f31e5ff" },
  16. { "name": "bone12", "parent": "bone", "length": 12.27, "rotation": -92.03, "x": 0.11, "y": -0.2, "color": "bf07e4ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 9.07, "rotation": -2.37, "x": 12.27, "color": "bf07e4ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 9.92, "rotation": 3.9, "x": 9.07, "color": "bf07e4ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 7.75, "rotation": 0.5, "x": 9.67, "y": 0.12, "color": "bf07e4ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 8.25, "x": 7.75, "color": "bf07e4ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 7.62, "x": 8.25, "color": "bf07e4ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 8.9, "rotation": 3.27, "x": 7.62, "color": "bf07e4ff" },
  23. { "name": "bone19", "parent": "bone3", "length": 9.71, "rotation": 172.44, "x": 14.59, "y": 10.63, "color": "aed574ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 9.42, "rotation": 2.14, "x": 9.71, "color": "aed574ff" },
  25. { "name": "bone21", "parent": "bone20", "length": 9.96, "rotation": -1.99, "x": 9.42, "color": "aed574ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 8.78, "rotation": 2.54, "x": 9.96, "color": "aed574ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 8.38, "rotation": 4.76, "x": 8.78, "color": "aed574ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 10.16, "rotation": -0.29, "x": 8.38, "color": "aed574ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 8.4, "rotation": -2.89, "x": 10.16, "color": "aed574ff" },
  30. { "name": "bone26", "parent": "bone25", "length": 7.75, "rotation": 4.05, "x": 8.4, "color": "aed574ff" },
  31. { "name": "bone27", "parent": "bone26", "length": 8.39, "rotation": -2.03, "x": 7.75, "color": "aed574ff" },
  32. { "name": "bone28", "parent": "bone3", "length": 8.38, "rotation": 178.45, "x": 14.51, "y": -10.84, "color": "8185e8ff" },
  33. { "name": "bone29", "parent": "bone28", "length": 10.16, "rotation": 0.72, "x": 8.38, "color": "6d88f8ff" },
  34. { "name": "bone30", "parent": "bone29", "length": 10.55, "rotation": 1.35, "x": 10.16, "color": "6d88f8ff" },
  35. { "name": "bone31", "parent": "bone30", "length": 9.4, "rotation": -0.52, "x": 10.55, "color": "6d88f8ff" },
  36. { "name": "bone32", "parent": "bone31", "length": 8.27, "rotation": 1.97, "x": 9.4, "color": "6d88f8ff" },
  37. { "name": "bone33", "parent": "bone32", "length": 9.09, "rotation": 3.7, "x": 8.27, "color": "6d88f8ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 7.73, "rotation": 2.24, "x": 9.09, "color": "6d88f8ff" },
  39. { "name": "bone35", "parent": "bone34", "length": 8, "rotation": 0.6, "x": 7.73, "color": "6d88f8ff" },
  40. { "name": "bone36", "parent": "bone35", "length": 8.17, "rotation": 1.6, "x": 8, "color": "6d88f8ff" },
  41. { "name": "bone37", "parent": "bone10", "length": 9.16, "rotation": -29.85, "x": 12.24, "y": -1.61, "color": "f27edcff" },
  42. { "name": "bone38", "parent": "bone37", "length": 9.59, "rotation": 0.77, "x": 9.16, "y": 0.14, "color": "f27edcff" },
  43. { "name": "bone39", "parent": "bone38", "length": 9.73, "rotation": -0.04, "x": 9.59, "color": "f27edcff" },
  44. { "name": "bone40", "parent": "bone39", "length": 7.95, "rotation": 5.75, "x": 9.74, "y": 0.14, "color": "f27edcff" },
  45. { "name": "bone41", "parent": "bone40", "length": 6.6, "rotation": -3.31, "x": 7.95, "color": "f27edcff" },
  46. { "name": "bone42", "parent": "bone41", "length": 7.41, "rotation": 5.04, "x": 6.46, "y": 0.01, "color": "f27edcff" },
  47. { "name": "bone43", "parent": "bone7", "length": 8.42, "rotation": 21.27, "x": 5.55, "y": 0.71, "color": "4ac24dff" },
  48. { "name": "bone44", "parent": "bone43", "length": 8.33, "rotation": -2.11, "x": 8.42, "color": "4ac24dff" },
  49. { "name": "bone45", "parent": "bone44", "length": 8.72, "rotation": 1.5, "x": 8.67, "y": -0.22, "color": "4ac24dff" },
  50. { "name": "bone46", "parent": "bone45", "length": 10.39, "rotation": 2.48, "x": 8.72, "color": "4ac24dff" },
  51. { "name": "bone47", "parent": "bone46", "length": 8.07, "rotation": 0.78, "x": 10.39, "color": "4ac24dff" },
  52. { "name": "bone48", "parent": "bone47", "length": 6.35, "rotation": -0.64, "x": 8.07, "color": "4ac24dff" },
  53. { "name": "bone49", "parent": "bone48", "length": 6.76, "rotation": -5.68, "x": 6.35, "color": "4ac24dff" },
  54. { "name": "bone50", "parent": "bone", "length": 21.69, "rotation": -87.85, "x": 150.96, "y": -30.53, "color": "a80e0eff" },
  55. { "name": "bone51", "parent": "bone50", "length": 21.38, "rotation": 0.91, "x": 21.69, "color": "a80e0eff" },
  56. { "name": "bone52", "parent": "bone51", "length": 11.26, "rotation": -83.05, "x": 24.34, "y": 0.33, "color": "a80e0eff" },
  57. { "name": "bone53", "parent": "bone", "length": 20.62, "rotation": -94.99, "x": 192.24, "y": -31.25, "color": "027109ff" },
  58. { "name": "bone54", "parent": "bone53", "length": 23.42, "rotation": -0.6, "x": 20.62, "color": "027109ff" },
  59. { "name": "bone55", "parent": "bone54", "length": 11.65, "rotation": -77.98, "x": 25.28, "y": -0.64, "color": "027109ff" },
  60. { "name": "bone56", "parent": "bone", "x": -5.72, "y": 1.76 },
  61. { "name": "bone57", "parent": "bone56", "length": 4.07, "rotation": -91.04, "x": 0.07, "y": -1.63 },
  62. { "name": "bone58", "parent": "bone57", "length": 2.66, "rotation": 1.04, "x": 4.07 },
  63. { "name": "bone59", "parent": "bone58", "length": 2.81, "x": 2.66 },
  64. { "name": "bone60", "parent": "bone56", "length": 7.63, "rotation": -93.53, "x": 1.68, "y": -1.45, "color": "f7fdb1ff" },
  65. { "name": "bone61", "parent": "bone60", "length": 7.46, "rotation": -2.25, "x": 7.73, "y": -0.09, "color": "f7fdb1ff" },
  66. { "name": "bone62", "parent": "bone61", "length": 8.2, "rotation": 1.18, "x": 7.46, "color": "f7fdb1ff" },
  67. { "name": "bone63", "parent": "bone62", "length": 8, "rotation": 1.91, "x": 8.2, "color": "f7fdb1ff" },
  68. { "name": "bone64", "parent": "bone63", "length": 7.99, "rotation": 4.04, "x": 8.09, "color": "f7fdb1ff" },
  69. { "name": "bone65", "parent": "bone64", "length": 8.37, "rotation": -1.35, "x": 8.18, "color": "f7fdb1ff" },
  70. { "name": "bone66", "parent": "bone65", "length": 5.49, "rotation": 6.88, "x": 8.37, "color": "f7fdb1ff" },
  71. { "name": "bone67", "parent": "bone5", "length": 16.42, "rotation": -7.14, "x": 11.31, "y": -10.64 },
  72. { "name": "bone68", "parent": "bone5", "length": 15.8, "rotation": -5.3, "x": 17.37, "y": 17.85 },
  73. { "name": "bone69", "parent": "bone5", "x": 33.49, "y": 2.89 },
  74. { "name": "bone70", "parent": "bone5", "x": 20.12, "y": 4.64 },
  75. { "name": "bone71", "parent": "bone5", "x": 5.09, "y": 4.01 },
  76. { "name": "bone72", "parent": "bone5", "length": 12.63, "rotation": 174.9, "x": 68.06, "y": -15.78, "color": "17712dff" },
  77. { "name": "bone73", "parent": "bone72", "length": 11.82, "rotation": -0.78, "x": 12.63, "color": "17712dff" },
  78. { "name": "bone74", "parent": "bone73", "length": 10.23, "rotation": -0.48, "x": 12.11, "y": 0.23, "color": "17712dff" },
  79. { "name": "bone75", "parent": "bone74", "length": 12.08, "rotation": 0.35, "x": 10.23, "color": "17712dff" },
  80. { "name": "bone76", "parent": "bone75", "length": 14.93, "rotation": -1.19, "x": 12.08, "color": "17712dff" },
  81. { "name": "bone77", "parent": "bone76", "length": 12.01, "rotation": -5.01, "x": 14.93, "color": "17712dff" },
  82. { "name": "bone78", "parent": "bone77", "length": 11.48, "x": 12.01, "color": "17712dff" },
  83. { "name": "bone79", "parent": "bone78", "length": 12.27, "x": 11.48, "color": "17712dff" },
  84. { "name": "bone80", "parent": "bone79", "length": 11.22, "x": 12.27, "color": "17712dff" },
  85. { "name": "bone81", "parent": "bone80", "length": 9.66, "x": 11.48, "color": "17712dff" },
  86. { "name": "bone82", "parent": "bone81", "length": 9.4, "x": 9.66, "color": "17712dff" },
  87. { "name": "bone83", "parent": "bone", "length": 24.87, "rotation": -95.54, "x": -8.57, "y": -30.42, "color": "833d15ff" },
  88. { "name": "bone84", "parent": "bone83", "length": 21.43, "rotation": -0.89, "x": 24.87, "color": "833d15ff" },
  89. { "name": "bone85", "parent": "bone84", "length": 14.48, "rotation": -77.62, "x": 21.43, "color": "833d15ff" },
  90. { "name": "bone86", "parent": "bone", "length": 26.21, "rotation": -84.75, "x": 11.43, "y": -31.15, "color": "5a058cff" },
  91. { "name": "bone87", "parent": "bone86", "length": 18.76, "rotation": -3.42, "x": 26.21, "color": "5a058cff" },
  92. { "name": "bone88", "parent": "bone87", "length": 12.66, "rotation": -78.13, "x": 18.76, "color": "5a058cff" },
  93. { "name": "bone89", "parent": "bone8", "length": 27, "rotation": -78.35, "x": 7.13, "y": 0.88, "color": "e1b30bff" },
  94. { "name": "bone90", "parent": "bone3", "length": 23.92, "rotation": 104.98, "x": 17.01, "y": 96.34, "color": "266093ff" },
  95. { "name": "bone91", "parent": "bone90", "length": 14.92, "rotation": -11.68, "x": 23.92, "color": "266093ff" },
  96. { "name": "bone92", "parent": "bone91", "length": 11.74, "rotation": 10.09, "x": 14.92, "color": "266093ff" },
  97. { "name": "bone93", "parent": "bone3", "length": 29.48, "rotation": -63.4, "x": 12.45, "y": -88.55, "color": "a62e2eff" },
  98. { "name": "bone94", "parent": "bone93", "length": 22.73, "rotation": 165.19, "x": 31.17, "y": -1.68, "color": "a62e2eff" },
  99. { "name": "bone95", "parent": "bone94", "length": 14.32, "rotation": 0.48, "x": 22.73, "color": "a62e2eff" },
  100. { "name": "bone96", "parent": "bone92", "length": 27, "rotation": -32.68, "x": 6.18, "y": 0.47, "color": "e1b30bff" }
  101. ],
  102. "slots": [
  103. { "name": "toufa2", "bone": "bone72", "attachment": "toufa2" },
  104. { "name": "zuotui", "bone": "bone83", "attachment": "zuotui" },
  105. { "name": "teshuzuotui", "bone": "bone53", "attachment": "teshuzuotui" },
  106. { "name": "youtui", "bone": "bone86", "attachment": "youtui" },
  107. { "name": "teshuyoutui", "bone": "bone50" },
  108. { "name": "zuoshoupiaodai", "bone": "bone43", "attachment": "zuoshoupiaodai" },
  109. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  110. { "name": "jian", "bone": "bone89", "attachment": "jian" },
  111. { "name": "jian2", "bone": "bone96", "attachment": "jian" },
  112. { "name": "teshuzuoshou", "bone": "bone90", "attachment": "teshuzuoshou" },
  113. { "name": "shangyi", "bone": "bone2", "attachment": "shangyi" },
  114. { "name": "xiabaiqunzi", "bone": "bone12", "attachment": "xiabaiqunzi" },
  115. { "name": "shuyao", "bone": "bone56", "attachment": "shuyao" },
  116. { "name": "shuyaodai", "bone": "bone60", "attachment": "shuyaodai" },
  117. { "name": "shuyaolingjie", "bone": "bone57", "attachment": "shuyaolingjie" },
  118. { "name": "youwaitao", "bone": "bone28", "attachment": "youwaitao" },
  119. { "name": "zuowaitao", "bone": "bone19", "attachment": "zuowaitao" },
  120. { "name": "youshoupiaodai", "bone": "bone37", "attachment": "youshoupiaodai" },
  121. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  122. { "name": "teshuyoushou2", "bone": "bone93", "attachment": "teshuyoushou2" },
  123. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  124. { "name": "teshuyoushou1", "bone": "bone94", "attachment": "teshuyoushou1" },
  125. { "name": "zuiba", "bone": "bone71", "attachment": "zuiba" },
  126. { "name": "zuoyan", "bone": "bone68", "attachment": "zuoyan" },
  127. { "name": "youyan", "bone": "bone67", "attachment": "youyan" },
  128. { "name": "biyan", "bone": "bone70" },
  129. { "name": "meimao", "bone": "bone69", "attachment": "meimao" },
  130. { "name": "toufa", "bone": "bone5", "attachment": "toufa" },
  131. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  132. { "name": "xiaozui", "bone": "bone71", "attachment": "xiaozui" }
  133. ],
  134. "skins": {
  135. "default": {
  136. "biyan": {
  137. "biyan": { "x": 0.3, "y": -1.25, "rotation": -102.23, "width": 51, "height": 8 }
  138. },
  139. "erduo": {
  140. "erduo": { "x": 15.65, "y": -37.52, "rotation": -102.23, "width": 19, "height": 20 }
  141. },
  142. "jian": {
  143. "jian": { "x": 31.08, "y": 0.37, "rotation": -179.11, "width": 74, "height": 14 }
  144. },
  145. "jian2": {
  146. "jian": { "x": 31.08, "y": 0.37, "rotation": -179.11, "width": 74, "height": 14 }
  147. },
  148. "lian": {
  149. "lian": { "x": 35.51, "y": -9.6, "rotation": -102.23, "width": 80, "height": 87 }
  150. },
  151. "meimao": {
  152. "meimao": { "x": 0.71, "y": -1.97, "rotation": -102.23, "width": 54, "height": 8 }
  153. },
  154. "shangyi": {
  155. "shangyi": {
  156. "type": "mesh",
  157. "uvs": [ 0.74131, 0.05993, 0.74288, 0.08672, 0.74434, 0.10398, 1, 0.12458, 1, 0.48774, 0.98027, 0.58341, 0.97563, 0.60589, 0.97076, 0.62952, 0.89434, 1, 0.46752, 1, 0, 1, 0, 0.63303, 0, 0.60731, 0, 0.58146, 0, 0.1781, 0.25549, 0.12142, 0.25506, 0.09726, 0.25717, 0.07441, 0.26102, 0, 0.45096, 0.0031, 0.73627, 0.00776, 0.45281, 0.11449, 0.45212, 0.07345, 0.45254, 0.09834, 0.46108, 0.61203, 0.46144, 0.63416, 0.46053, 0.57931 ],
  158. "triangles": [ 15, 21, 26, 26, 21, 2, 15, 23, 21, 15, 16, 23, 21, 1, 2, 21, 23, 1, 16, 17, 23, 17, 22, 23, 1, 22, 0, 1, 23, 22, 22, 18, 19, 22, 17, 18, 22, 20, 0, 22, 19, 20, 12, 26, 24, 24, 26, 6, 12, 13, 26, 6, 26, 5, 5, 26, 4, 13, 15, 26, 13, 14, 15, 26, 2, 4, 2, 3, 4, 7, 8, 25, 10, 25, 9, 8, 9, 25, 10, 11, 25, 11, 24, 25, 25, 24, 7, 11, 12, 24, 7, 24, 6 ],
  159. "vertices": [ 2, 3, 20.47, -9.24, 0.3357, 4, 3.38, -9.46, 0.6643, 2, 3, 19.45, -9.27, 0.37817, 4, 2.36, -9.42, 0.62183, 2, 3, 18.8, -9.29, 0.43381, 4, 1.7, -9.41, 0.56619, 3, 2, 30.27, -17.19, 0.00165, 3, 17.79, -17.45, 0.7133, 4, 0.22, -17.5, 0.28505, 3, 2, 16.47, -17.02, 0.22909, 3, 4, -17.08, 0.71491, 4, -13.53, -16.32, 0.05601, 3, 2, 12.84, -16.34, 0.39378, 3, 0.38, -16.35, 0.5827, 4, -17.09, -15.38, 0.02352, 3, 2, 11.99, -16.18, 0.44022, 3, -0.47, -16.18, 0.54152, 4, -17.93, -15.16, 0.01826, 3, 2, 11.09, -16.02, 0.49062, 3, -1.36, -16, 0.49575, 4, -18.81, -14.92, 0.01362, 2, 2, -2.95, -13.4, 0.97656, 3, -15.37, -13.17, 0.02344, 1, 2, -2.79, 0.26, 1, 2, 2, -2.61, 15.22, 0.98566, 3, -14.6, 15.44, 0.01434, 3, 2, 11.34, 15.05, 0.56147, 3, -0.66, 15.06, 0.43606, 4, -16.29, 16.04, 0.00247, 3, 2, 12.32, 15.04, 0.50423, 3, 0.32, 15.03, 0.4914, 4, -15.32, 15.95, 0.00437, 3, 2, 13.3, 15.02, 0.44668, 3, 1.3, 15.01, 0.54609, 4, -14.34, 15.87, 0.00722, 3, 2, 28.62, 14.84, 0.00619, 3, 16.62, 14.59, 0.7663, 4, 0.93, 14.56, 0.22751, 2, 3, 18.56, 6.36, 0.32259, 4, 2.38, 6.23, 0.67741, 2, 3, 19.47, 6.35, 0.23587, 4, 3.29, 6.17, 0.76413, 2, 3, 20.34, 6.26, 0.17072, 4, 4.15, 6.03, 0.82928, 2, 3, 23.16, 6.06, 0.04531, 4, 6.96, 5.66, 0.95469, 2, 3, 22.88, -0.01, 7.1E-4, 4, 6.32, -0.38, 0.99929, 2, 3, 22.46, -9.14, 0.26564, 4, 5.37, -9.47, 0.73436, 2, 3, 18.65, 0.04, 7.2E-4, 4, 2.1, -0.08, 0.99928, 2, 3, 20.21, 0.02, 5.5E-4, 4, 3.66, -0.19, 0.99945, 1, 4, 2.71, -0.13, 1, 2, 2, 11.96, 0.28, 0.75389, 3, -0.26, 0.29, 0.24611, 1, 2, 11.12, 0.28, 1, 2, 2, 13.2, 0.29, 0.00913, 3, 0.98, 0.27, 0.99087 ],
  160. "hull": 21,
  161. "edges": [ 8, 6, 6, 4, 30, 28, 16, 18, 18, 20, 36, 38, 38, 40, 30, 42, 42, 4, 34, 36, 38, 44, 34, 44, 0, 40, 44, 0, 30, 32, 32, 34, 42, 46, 46, 44, 32, 46, 0, 2, 2, 4, 46, 2, 24, 48, 48, 12, 20, 22, 22, 24, 18, 50, 50, 48, 22, 50, 12, 14, 14, 16, 50, 14, 24, 26, 26, 28, 42, 52, 52, 48, 26, 52, 8, 10, 10, 12, 52, 10 ],
  162. "width": 32,
  163. "height": 38
  164. }
  165. },
  166. "shuyao": {
  167. "shuyao": {
  168. "type": "mesh",
  169. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  170. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  171. "vertices": [ 18.68, -5.26, -10.32, -5.26, -10.32, 1.74, 18.68, 1.74 ],
  172. "hull": 4,
  173. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  174. "width": 29,
  175. "height": 7
  176. }
  177. },
  178. "shuyaodai": {
  179. "shuyaodai": {
  180. "type": "mesh",
  181. "uvs": [ 0.63798, 0.17353, 0.64986, 0.2429, 0.66064, 0.30591, 0.67251, 0.37527, 0.68648, 0.45686, 0.73177, 0.51655, 0.77288, 0.57073, 0.82426, 0.63845, 0.87981, 0.71165, 0.9337, 0.78267, 1, 0.87006, 1, 0.93583, 1, 1, 0.42259, 1, 0, 1, 0, 0.95351, 0, 0.89288, 0, 0.82214, 0, 0.73572, 0, 0.67256, 0, 0.58757, 0, 0.53326, 0, 0.46803, 0.04556, 0.39078, 0.09497, 0.30701, 0.13046, 0.24682, 0.17367, 0.17356, 0.27603, 0, 0.50539, 0, 0.60828, 0, 0.47319, 0.17618, 0.42719, 0.31014, 0.39859, 0.46614, 0.39499, 0.5813, 0.38119, 0.72656, 0.39499, 0.87828, 0.44952, 0.24509, 0.41291, 0.38799, 0.39664, 0.52831, 0.38738, 0.6614, 0.38874, 0.80958, 0.40926, 0.94124 ],
  182. "triangles": [ 35, 9, 10, 16, 40, 35, 41, 35, 10, 11, 41, 10, 15, 16, 35, 15, 35, 41, 14, 15, 41, 13, 41, 11, 14, 41, 13, 13, 11, 12, 34, 7, 8, 18, 19, 34, 40, 34, 8, 40, 8, 9, 17, 18, 34, 17, 34, 40, 35, 40, 9, 16, 17, 40, 39, 20, 33, 39, 33, 6, 39, 6, 7, 19, 20, 39, 34, 19, 39, 34, 39, 7, 4, 32, 37, 22, 23, 32, 38, 22, 32, 38, 32, 4, 38, 4, 5, 21, 22, 38, 33, 21, 38, 33, 38, 5, 33, 5, 6, 20, 21, 33, 24, 25, 31, 2, 31, 36, 37, 24, 31, 3, 37, 31, 3, 31, 2, 23, 24, 37, 32, 23, 37, 4, 37, 3, 26, 27, 30, 36, 26, 30, 1, 36, 30, 1, 30, 0, 25, 26, 36, 31, 25, 36, 2, 36, 1, 30, 27, 28, 28, 29, 0, 30, 28, 0 ],
  183. "vertices": [ 2, 60, 8.01, 3.26, 0.8368, 61, 0.15, 3.36, 0.1632, 3, 60, 11.95, 3.74, 0.11244, 61, 4.06, 3.99, 0.81267, 62, -3.32, 4.06, 0.07489, 4, 60, 15.52, 4.18, 0.00355, 61, 7.62, 4.57, 0.36753, 62, 0.25, 4.57, 0.62892, 63, -7.8, 4.83, 0, 3, 61, 11.53, 5.2, 0.00994, 62, 4.17, 5.12, 0.9016, 63, -3.86, 5.25, 0.08846, 3, 62, 8.78, 5.77, 0.30098, 63, 0.77, 5.75, 0.67332, 64, -6.9, 6.25, 0.0257, 3, 62, 12.1, 6.95, 0.03168, 63, 4.13, 6.81, 0.7655, 64, -3.48, 7.07, 0.20282, 5, 62, 15.11, 8.01, 1.1E-4, 63, 7.17, 7.78, 0.48131, 64, -0.37, 7.82, 0.50906, 65, -8.73, 7.62, 0.00938, 66, -16.06, 9.62, 1.5E-4, 4, 63, 10.98, 8.99, 0.14877, 64, 3.51, 8.76, 0.72846, 65, -4.87, 8.65, 0.11, 66, -12.11, 10.17, 0.01277, 4, 63, 15.09, 10.29, 0.01789, 64, 7.71, 9.77, 0.51595, 65, -0.7, 9.76, 0.37354, 66, -7.83, 10.78, 0.09261, 4, 63, 19.09, 11.56, 7.0E-5, 64, 11.78, 10.75, 0.20864, 65, 3.35, 10.84, 0.4947, 66, -3.68, 11.36, 0.29659, 3, 64, 16.79, 11.96, 0.03973, 65, 8.33, 12.16, 0.32414, 66, 1.42, 12.08, 0.63613, 3, 64, 20.54, 11.87, 0.00618, 65, 12.08, 12.16, 0.17206, 66, 5.14, 11.63, 0.82177, 2, 65, 15.74, 12.16, 0.10684, 66, 8.77, 11.19, 0.89316, 1, 66, 7.39, -0.27, 1, 2, 65, 15.74, -7.84, 0.04097, 66, 6.38, -8.66, 0.95903, 2, 65, 13.09, -7.84, 0.10812, 66, 3.75, -8.35, 0.89188, 3, 64, 17.62, -8.06, 2.7E-4, 65, 9.63, -7.84, 0.39802, 66, 0.32, -7.93, 0.60171, 3, 64, 13.59, -7.97, 0.04293, 65, 5.6, -7.84, 0.77173, 66, -3.69, -7.45, 0.18534, 4, 63, 17.29, -7.22, 0.0036, 64, 8.67, -7.85, 0.36303, 65, 0.67, -7.84, 0.62704, 66, -8.58, -6.86, 0.00633, 3, 63, 13.7, -7.39, 0.06688, 64, 5.07, -7.77, 0.6719, 65, -2.93, -7.84, 0.26122, 4, 62, 17.31, -7.32, 0.00105, 63, 8.86, -7.62, 0.4454, 64, 0.22, -7.66, 0.52658, 65, -7.77, -7.84, 0.02697, 4, 62, 14.22, -7.57, 0.03121, 63, 5.76, -7.76, 0.73524, 64, -2.87, -7.58, 0.23233, 65, -10.87, -7.84, 0.00122, 3, 62, 10.52, -7.86, 0.19239, 63, 2.05, -7.94, 0.76533, 64, -6.59, -7.5, 0.04228, 4, 61, 13.67, -7.18, 0.03203, 62, 6.06, -7.31, 0.59112, 63, -2.39, -7.23, 0.37668, 64, -10.97, -6.48, 1.7E-4, 3, 61, 8.82, -6.68, 0.36073, 62, 1.22, -6.71, 0.59208, 63, -7.21, -6.47, 0.04719, 3, 61, 5.33, -6.32, 0.79282, 62, -2.26, -6.27, 0.20539, 63, -10.67, -5.92, 0.0018, 3, 60, 8.59, -6.01, 0.02187, 61, 1.09, -5.88, 0.97122, 62, -6.49, -5.75, 0.00691, 2, 60, -1.41, -4.57, 0.94841, 61, -8.96, -4.84, 0.05159, 2, 60, -1.69, 0.01, 0.99955, 61, -9.42, -0.28, 4.5E-4, 1, 60, -1.82, 2.06, 1, 1, 61, 0.64, 0.09, 1, 2, 62, 0.86, -0.07, 0.99999, 63, -7.34, 0.17, 1.0E-5, 2, 63, 1.57, 0.02, 1, 64, -6.51, 0.48, 0, 2, 63, 8.13, 0.26, 0.45673, 64, 0.05, 0.25, 0.54327, 1, 65, 0.15, -0.21, 1, 2, 65, 8.8, 0.06, 0.09417, 66, 0.44, 0.01, 0.90583, 1, 61, 4.59, 0.02, 1, 1, 62, 5.31, 0, 1, 2, 63, 5.11, 0.15, 0.99945, 64, -2.97, 0.35, 5.5E-4, 1, 64, 4.61, -0.01, 1, 1, 65, 4.88, -0.06, 1, 1, 66, 4.03, -0.13, 1 ],
  184. "hull": 30,
  185. "edges": [ 56, 58, 56, 60, 24, 26, 26, 28, 54, 56, 52, 54, 52, 60, 0, 58, 60, 0, 48, 62, 62, 4, 48, 50, 50, 52, 60, 72, 72, 62, 50, 72, 0, 2, 2, 4, 72, 2, 44, 64, 64, 8, 44, 46, 46, 48, 62, 74, 74, 64, 46, 74, 4, 6, 6, 8, 74, 6, 40, 66, 66, 12, 40, 42, 42, 44, 64, 76, 76, 66, 42, 76, 8, 10, 10, 12, 76, 10, 36, 68, 68, 16, 36, 38, 38, 40, 66, 78, 78, 68, 38, 78, 12, 14, 14, 16, 78, 14, 32, 70, 70, 20, 32, 34, 34, 36, 68, 80, 80, 70, 34, 80, 16, 18, 18, 20, 80, 18, 28, 30, 30, 32, 26, 82, 82, 70, 30, 82, 20, 22, 22, 24, 82, 22 ],
  186. "width": 20,
  187. "height": 57
  188. }
  189. },
  190. "shuyaolingjie": {
  191. "shuyaolingjie": {
  192. "type": "mesh",
  193. "uvs": [ 1, 0.28212, 1, 0.46985, 1, 0.67252, 1, 0.83251, 1, 1, 0.4478, 1, 0, 1, 0, 0.87731, 0, 0.70878, 0, 0.51252, 0, 0.31412, 0, 0, 0.46474, 0, 1, 0, 0.45533, 0.49972, 0.45345, 0.67892, 0.45041, 0.85169, 0.45918, 0.29538 ],
  194. "triangles": [ 15, 14, 2, 8, 9, 15, 15, 2, 3, 16, 8, 15, 16, 15, 3, 7, 8, 16, 5, 6, 7, 16, 5, 7, 16, 3, 4, 5, 16, 4, 15, 9, 14, 12, 13, 0, 17, 11, 12, 17, 12, 0, 10, 11, 17, 17, 0, 1, 14, 10, 17, 14, 17, 1, 9, 10, 14, 14, 1, 2 ],
  195. "vertices": [ 3, 57, 0.7, 9.12, 0.87149, 58, -3.21, 9.18, 0.00112, 59, -5.87, 9.18, 0.12739, 3, 57, 3.51, 9.17, 0.6767, 58, -0.39, 9.18, 0.01076, 59, -3.06, 9.18, 0.31254, 3, 57, 6.55, 9.23, 0.40775, 58, 2.65, 9.18, 0.01267, 59, -0.02, 9.18, 0.57958, 3, 57, 8.95, 9.27, 0.25035, 58, 5.05, 9.18, 0.00362, 59, 2.38, 9.18, 0.74603, 2, 57, 11.46, 9.32, 0.1905, 59, 4.9, 9.18, 0.8095, 3, 57, 11.63, -0.07, 3.1E-4, 58, 7.56, -0.2, 3.0E-5, 59, 4.9, -0.2, 0.99966, 3, 57, 11.77, -7.68, 0.00942, 58, 7.56, -7.82, 0.13715, 59, 4.9, -7.82, 0.85343, 3, 57, 9.93, -7.71, 0.03448, 58, 5.72, -7.82, 0.16352, 59, 3.06, -7.82, 0.802, 3, 57, 7.4, -7.76, 0.16015, 58, 3.19, -7.82, 0.24482, 59, 0.53, -7.82, 0.59503, 3, 57, 4.46, -7.81, 0.44742, 58, 0.25, -7.82, 0.26317, 59, -2.42, -7.82, 0.28942, 3, 57, 1.48, -7.87, 0.76437, 58, -2.73, -7.82, 0.14886, 59, -5.39, -7.82, 0.08677, 3, 57, -3.23, -7.95, 0.96361, 58, -7.44, -7.82, 0.03602, 59, -10.1, -7.82, 3.7E-4, 1, 57, -3.37, -0.05, 1, 2, 57, -3.54, 9.05, 0.97127, 59, -10.1, 9.18, 0.02873, 2, 57, 4.13, -0.08, 0.4115, 58, 0.06, -0.08, 0.5885, 2, 58, 2.74, -0.11, 0.33755, 59, 0.08, -0.11, 0.66245, 2, 58, 5.33, -0.16, 6.4E-4, 59, 2.67, -0.16, 0.99936, 2, 57, 1.06, -0.07, 0.99986, 58, -3.01, -0.01, 1.4E-4 ],
  196. "hull": 14,
  197. "edges": [ 22, 24, 24, 26, 28, 30, 8, 10, 10, 12, 18, 28, 28, 2, 16, 18, 16, 30, 2, 4, 30, 4, 12, 14, 14, 16, 10, 32, 32, 30, 14, 32, 4, 6, 6, 8, 32, 6, 18, 20, 20, 22, 24, 34, 34, 28, 20, 34, 2, 0, 0, 26, 34, 0 ],
  198. "width": 17,
  199. "height": 15
  200. }
  201. },
  202. "teshuyoushou1": {
  203. "teshuyoushou1": {
  204. "type": "mesh",
  205. "uvs": [ 1, 0.1929, 1, 0.58952, 0.47273, 0.98467, 0.44323, 0.99999, 0.41174, 1, 0, 1, 0, 0.73439, 0, 0.51622, 0.25594, 0, 0.30568, 0.00308, 0.35405, 0, 1, 0, 0.37221, 0.52815, 0.3401, 0.55023, 0.40662, 0.51421 ],
  206. "triangles": [ 13, 3, 4, 4, 5, 6, 12, 14, 2, 13, 4, 6, 3, 12, 2, 3, 13, 12, 6, 7, 13, 12, 13, 8, 12, 8, 9, 12, 9, 14, 8, 13, 7, 2, 14, 1, 14, 0, 1, 14, 9, 10, 14, 10, 0, 10, 11, 0 ],
  207. "vertices": [ 1, 94, -5.13, -0.64, 1, 1, 94, -2.93, 8.63, 1, 2, 94, 22.34, 12.38, 0.63151, 95, -0.28, 12.38, 0.36849, 2, 94, 23.72, 12.43, 0.55502, 95, 1.1, 12.42, 0.44498, 2, 94, 25.1, 12.1, 0.46932, 95, 2.47, 12.08, 0.53068, 1, 95, 20.46, 7.66, 1, 1, 95, 18.94, 1.47, 1, 2, 94, 40.45, -3.47, 5.0E-5, 95, 17.69, -3.62, 0.99995, 2, 94, 26.38, -12.87, 0.43428, 95, 3.55, -12.9, 0.56572, 2, 94, 24.22, -12.28, 0.52193, 95, 1.39, -12.29, 0.47807, 2, 94, 22.09, -11.85, 0.63953, 95, -0.74, -11.84, 0.36047, 1, 94, -6.19, -5.14, 1, 2, 94, 24.22, 0.67, 0.03716, 95, 1.49, 0.66, 0.96284, 1, 95, 3.02, 0.83, 1, 2, 94, 22.63, 0.71, 0.69691, 95, -0.09, 0.71, 0.30309 ],
  208. "hull": 12,
  209. "edges": [ 10, 12, 0, 22, 0, 2, 6, 24, 24, 18, 6, 8, 8, 10, 12, 26, 26, 24, 8, 26, 16, 18, 26, 16, 2, 4, 4, 6, 0, 28, 28, 24, 4, 28, 18, 20, 20, 22, 28, 20, 12, 14, 14, 16 ],
  210. "width": 45,
  211. "height": 24
  212. }
  213. },
  214. "teshuyoushou2": {
  215. "teshuyoushou2": {
  216. "type": "mesh",
  217. "uvs": [ 1, 0.72099, 0.39508, 1, 0, 1, 0, 0.4292, 0.50344, 0, 1, 0 ],
  218. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  219. "vertices": [ 24.07, -12.48, 3.31, -8.97, -8.18, -2.82, -1.72, 9.26, 17.79, 10.51, 32.24, 2.78 ],
  220. "hull": 6,
  221. "edges": [ 4, 6, 8, 10, 6, 8, 2, 4, 0, 10, 2, 0 ],
  222. "width": 33,
  223. "height": 24
  224. }
  225. },
  226. "teshuyoutui": {
  227. "teshuyoutui": {
  228. "type": "mesh",
  229. "uvs": [ 0.90829, 0.42454, 0.9116, 0.44014, 0.91471, 0.45478, 0.99633, 0.83912, 0.99813, 0.84759, 1, 0.8564, 1, 1, 0, 1, 0, 0.96313, 0, 0.89909, 0.23286, 0.87561, 0.23202, 0.86344, 0.23119, 0.85151, 0.205, 0.47274, 0.20397, 0.45775, 0.20296, 0.44316, 0.17232, 0, 0.50531, 0, 0.81813, 0, 0.59108, 0.86896, 0.59008, 0.85874, 0.58902, 0.84799, 0.54962, 0.44885, 0.55117, 0.46459, 0.54821, 0.43454 ],
  230. "triangles": [ 8, 9, 10, 8, 10, 19, 7, 8, 19, 7, 19, 6, 23, 22, 1, 23, 1, 2, 13, 14, 22, 13, 22, 23, 21, 23, 2, 21, 2, 3, 12, 13, 23, 12, 23, 21, 20, 21, 3, 20, 3, 4, 11, 12, 21, 11, 21, 20, 19, 20, 4, 19, 4, 5, 10, 11, 20, 10, 20, 19, 19, 5, 6, 24, 17, 18, 24, 18, 0, 15, 16, 17, 15, 17, 24, 22, 24, 0, 22, 0, 1, 14, 15, 24, 14, 24, 22 ],
  231. "vertices": [ 2, 50, 20.59, 8.4, 0.58149, 51, -0.97, 8.42, 0.41851, 2, 50, 21.4, 8.44, 0.49475, 51, -0.16, 8.45, 0.50525, 2, 50, 22.17, 8.48, 0.41359, 51, 0.61, 8.47, 0.58641, 2, 51, 20.66, 9.2, 0.68194, 52, -9.25, -2.58, 0.31806, 2, 51, 21.1, 9.22, 0.64606, 52, -9.21, -2.14, 0.35394, 2, 51, 21.56, 9.23, 0.60743, 52, -9.17, -1.68, 0.39257, 2, 51, 29.02, 8.84, 0.1242, 52, -7.87, 5.67, 0.8758, 1, 52, 13.79, 1.85, 1, 1, 52, 13.46, -0.04, 1, 2, 51, 22.6, -12.85, 9.3E-4, 52, 12.88, -3.32, 0.99907, 2, 51, 21.66, -7.67, 0.22514, 52, 7.62, -3.63, 0.77486, 2, 51, 21.02, -7.66, 0.35037, 52, 7.53, -4.26, 0.64963, 2, 51, 20.4, -7.64, 0.45177, 52, 7.44, -4.87, 0.54823, 2, 50, 22.51, -7.15, 0.39919, 51, 0.7, -7.17, 0.60081, 2, 50, 21.73, -7.15, 0.49503, 51, -0.07, -7.15, 0.50497, 2, 50, 20.97, -7.14, 0.58857, 51, -0.83, -7.13, 0.41143, 1, 50, -2.08, -6.95, 1, 1, 50, -1.8, 0.37, 1, 1, 50, -1.55, 7.25, 1, 2, 51, 21.73, 0.22, 0.92038, 52, -0.2, -2.6, 0.07962, 2, 51, 21.2, 0.22, 0.99445, 52, -0.27, -3.13, 0.00555, 1, 51, 20.64, 0.23, 1, 2, 50, 21.56, 0.47, 0.60225, 51, -0.13, 0.47, 0.39775, 2, 50, 22.37, 0.47, 0.11183, 51, 0.69, 0.46, 0.88817, 2, 50, 20.81, 0.46, 0.96314, 51, -0.88, 0.48, 0.03686 ],
  232. "hull": 19,
  233. "edges": [ 12, 14, 20, 18, 12, 10, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 8, 6, 42, 40, 6, 42, 22, 24, 42, 24, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  234. "width": 22,
  235. "height": 52
  236. }
  237. },
  238. "teshuzuoshou": {
  239. "teshuzuoshou": {
  240. "type": "mesh",
  241. "uvs": [ 1, 0.08311, 1, 0.42575, 0.65976, 0.7144, 0.64252, 0.72902, 0.62097, 0.7473, 0.33892, 0.98658, 0.31453, 0.98814, 0.1295, 1, 0.11829, 0.4251, 0.11, 0, 0.28994, 0, 0.31509, 0, 0.34642, 0, 0.60213, 0, 0.62452, 0, 0.6442, 0, 1, 0, 0.62675, 0.30317, 0.36171, 0.96673, 0.64522, 0.29228, 0.60075, 0.30783, 0.32224, 0.36103, 0.29393, 0.36992 ],
  242. "triangles": [ 21, 11, 12, 18, 21, 12, 21, 22, 10, 21, 10, 11, 22, 8, 9, 22, 9, 10, 22, 21, 5, 22, 6, 8, 21, 18, 5, 5, 6, 22, 7, 8, 6, 20, 12, 13, 20, 13, 17, 3, 20, 17, 18, 12, 20, 3, 4, 20, 20, 4, 18, 5, 18, 4, 15, 16, 0, 19, 15, 0, 19, 17, 14, 19, 14, 15, 13, 14, 17, 19, 0, 1, 2, 19, 1, 17, 19, 2, 17, 2, 3 ],
  243. "vertices": [ 1, 90, 1.68, 0.27, 1, 1, 90, 4.41, 9.47, 1, 3, 90, 24.98, 11.8, 0.40694, 91, -1.35, 11.77, 0.58229, 92, -13.96, 14.44, 0.01077, 3, 90, 26.02, 11.92, 0.33438, 91, -0.36, 12.1, 0.64756, 92, -12.92, 14.59, 0.01806, 3, 90, 27.32, 12.07, 0.25284, 91, 0.89, 12.51, 0.71578, 92, -11.63, 14.77, 0.03138, 2, 91, 17.19, 17.85, 0.31525, 92, 5.36, 17.17, 0.68475, 2, 91, 18.56, 17.78, 0.27056, 92, 6.69, 16.86, 0.72944, 2, 91, 28.91, 17.23, 0.05369, 92, 16.79, 14.51, 0.94631, 1, 92, 13.25, -1.2, 1, 1, 92, 10.63, -12.82, 1, 2, 91, 17.59, -9.91, 0.27742, 92, 0.89, -10.22, 0.72258, 2, 91, 16.19, -9.79, 0.3949, 92, -0.47, -9.86, 0.6051, 2, 91, 14.44, -9.64, 0.55932, 92, -2.16, -9.41, 0.44068, 2, 90, 22.38, -8.29, 0.40653, 91, 0.17, -8.43, 0.59347, 2, 90, 21.18, -7.94, 0.53903, 91, -1.08, -8.33, 0.46097, 2, 90, 20.12, -7.62, 0.65177, 91, -2.17, -8.23, 0.34823, 1, 90, 1.02, -1.96, 1, 2, 90, 23.47, 0.24, 0.88383, 91, -0.48, 0.14, 0.11617, 2, 91, 15.87, 17.4, 0.36561, 92, 3.99, 16.97, 0.63439, 1, 90, 22.4, 0.24, 1, 1, 91, 0.98, 0.15, 1, 1, 92, 1.75, 0.01, 1, 1, 92, 3.35, -0.16, 1 ],
  244. "hull": 17,
  245. "edges": [ 2, 0, 0, 32, 14, 16, 16, 18, 28, 34, 34, 6, 28, 30, 30, 32, 0, 38, 38, 34, 30, 38, 2, 4, 4, 6, 38, 4, 26, 28, 34, 40, 40, 36, 26, 40, 6, 8, 40, 8, 24, 26, 24, 36, 22, 24, 42, 36, 22, 42, 8, 10, 42, 10, 18, 20, 20, 22, 16, 44, 44, 42, 20, 44, 10, 12, 12, 14, 44, 12 ],
  246. "width": 56,
  247. "height": 28
  248. }
  249. },
  250. "teshuzuotui": {
  251. "teshuzuotui": {
  252. "type": "mesh",
  253. "uvs": [ 1, 0.43749, 1, 0.45396, 1, 0.47749, 1, 0.86973, 1, 0.89012, 1, 0.90864, 1, 1, 0, 1, 0, 0.96921, 0, 0.87687, 0.26191, 0.85531, 0.26554, 0.83881, 0.26937, 0.82143, 0.35111, 0.45047, 0.35726, 0.42257, 0.3608, 0.40648, 0.45037, 0, 0.75187, 0, 1, 0, 0.57956, 0.88293, 0.58297, 0.86546, 0.58723, 0.84364, 0.66622, 0.43888, 0.66914, 0.42389, 0.66149, 0.46311 ],
  254. "triangles": [ 8, 9, 10, 8, 10, 19, 7, 8, 19, 14, 15, 22, 24, 14, 22, 13, 14, 24, 22, 1, 2, 24, 22, 2, 21, 13, 24, 12, 13, 21, 20, 12, 21, 11, 12, 20, 24, 2, 3, 21, 24, 3, 19, 11, 20, 10, 11, 19, 21, 3, 4, 20, 21, 4, 20, 4, 5, 19, 20, 5, 19, 5, 6, 7, 19, 6, 23, 16, 17, 15, 16, 23, 17, 18, 0, 23, 17, 0, 22, 15, 23, 23, 0, 1, 22, 23, 1 ],
  255. "vertices": [ 2, 53, 19.82, 8.85, 0.60656, 54, -0.89, 8.84, 0.39344, 2, 53, 20.66, 8.92, 0.52409, 54, -0.05, 8.92, 0.47591, 2, 53, 21.85, 9.03, 0.40619, 54, 1.14, 9.04, 0.59381, 2, 54, 21.05, 10.99, 0.96633, 55, -12.25, -1.72, 0.03367, 2, 54, 22.09, 11.09, 0.94835, 55, -12.14, -0.68, 0.05165, 2, 54, 23.03, 11.18, 0.93058, 55, -12.03, 0.25, 0.06942, 2, 54, 27.66, 11.64, 0.86896, 55, -11.51, 4.88, 0.13104, 1, 55, 14.33, 1.97, 1, 1, 55, 14.15, 0.41, 1, 2, 54, 23.95, -14.85, 7.0E-5, 55, 13.62, -4.27, 0.99993, 2, 54, 22.19, -8.18, 0.28282, 55, 6.73, -4.6, 0.71718, 2, 54, 21.34, -8.17, 0.43091, 55, 6.55, -5.42, 0.56909, 2, 54, 20.45, -8.16, 0.55641, 55, 6.35, -6.29, 0.44359, 2, 53, 21.95, -7.9, 0.28984, 54, 1.42, -7.88, 0.71016, 2, 53, 20.52, -7.86, 0.43623, 54, -0.02, -7.86, 0.56377, 2, 53, 19.69, -7.84, 0.52594, 54, -0.84, -7.85, 0.47406, 1, 53, -1.16, -7.33, 1, 1, 53, -1.84, 0.48, 1, 1, 53, -2.41, 6.91, 1, 1, 54, 22.79, 0.18, 1, 1, 54, 21.89, 0.18, 1, 1, 54, 20.77, 0.18, 1, 2, 53, 20.65, 0.21, 0.47101, 54, 0.03, 0.21, 0.52899, 2, 53, 19.88, 0.22, 0.97073, 54, -0.74, 0.21, 0.02927, 1, 54, 1.27, 0.21, 1 ],
  256. "hull": 19,
  257. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 28, 30, 30, 32, 34, 46, 46, 44, 30, 46, 2, 0, 0, 36, 46, 0, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 2, 4, 4, 6, 48, 4 ],
  258. "width": 26,
  259. "height": 51
  260. }
  261. },
  262. "toufa": {
  263. "toufa": {
  264. "type": "mesh",
  265. "uvs": [ 0.97456, 0.29113, 0.94206, 0.37008, 1, 0.6464, 1, 0.7585, 0.90331, 0.8264, 0.90956, 0.87061, 0.79706, 1, 0.71456, 1, 0.68206, 0.81534, 0.65206, 0.69061, 0.53706, 0.59271, 0.44456, 0.48692, 0.32206, 0.43008, 0.13081, 0.61324, 0.10456, 0.72692, 0.04706, 0.73798, 0, 0.68745, 0, 0.24061, 0.09706, 0, 0.92706, 0 ],
  266. "triangles": [ 0, 11, 19, 12, 18, 19, 11, 12, 19, 17, 18, 12, 0, 1, 11, 10, 11, 1, 13, 17, 12, 9, 10, 1, 16, 17, 13, 2, 9, 1, 14, 16, 13, 15, 16, 14, 4, 9, 2, 4, 8, 9, 2, 3, 4, 8, 6, 7, 5, 8, 4, 5, 6, 8 ],
  267. "vertices": [ 55.89, -63.7, 50.69, -59.38, 28.99, -60.37, 20.66, -58.56, 17.58, -48.4, 14.17, -48.27, 6.85, -35.63, 8.52, -27.89, 22.9, -27.82, 32.77, -27.01, 42.38, -17.8, 52.12, -10.82, 58.83, -0.24, 49.12, 20.65, 41.21, 24.94, 41.56, 30.52, 46.26, 34.12, 79.45, 26.93, 95.35, 13.95, 78.48, -63.93 ],
  268. "hull": 20,
  269. "edges": [ 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 38, 32, 34, 36, 38, 34, 36 ],
  270. "width": 96,
  271. "height": 76
  272. }
  273. },
  274. "toufa2": {
  275. "toufa2": {
  276. "type": "mesh",
  277. "uvs": [ 1, 0.0919, 1, 0.17869, 1, 0.27051, 1, 0.35101, 1, 0.41625, 1, 0.47176, 1, 0.52317, 1, 0.57457, 1, 0.61624, 1, 0.65759, 1, 0.70643, 1, 0.74186, 1, 0.79234, 1, 0.84854, 1, 0.92653, 1, 1, 0.50578, 1, 0, 1, 0, 0.92275, 0, 0.84603, 0, 0.80995, 0, 0.75947, 0, 0.7102, 0, 0.66136, 0, 0.61499, 0, 0.56451, 0, 0.52317, 0, 0.45792, 0, 0.41751, 0, 0.36484, 0, 0.27051, 0, 0.19126, 0, 0.09819, 0, 0, 0.42442, 0, 1, 0, 0.43948, 0.09963, 0.45756, 0.18968, 0.46359, 0.26913, 0.48167, 0.35741, 0.50578, 0.47041, 0.50578, 0.56575, 0.50578, 0.66286, 0.5118, 0.75468, 0.5118, 0.85002, 0.50276, 0.92771, 0.5118, 0.79988, 0.50578, 0.62002, 0.50578, 0.52317, 0.49444, 0.41729, 0.5088, 0.70889 ],
  278. "triangles": [ 45, 18, 19, 17, 18, 45, 16, 45, 14, 17, 45, 16, 16, 14, 15, 44, 13, 14, 44, 45, 19, 45, 44, 14, 46, 43, 12, 21, 43, 46, 20, 21, 46, 44, 19, 20, 46, 12, 13, 44, 46, 13, 44, 20, 46, 50, 42, 9, 10, 50, 9, 22, 23, 42, 22, 42, 50, 43, 50, 10, 11, 43, 10, 21, 22, 50, 21, 50, 43, 43, 11, 12, 47, 41, 7, 8, 47, 7, 24, 41, 47, 47, 8, 9, 23, 24, 47, 42, 47, 9, 23, 47, 42, 48, 40, 5, 6, 48, 5, 26, 40, 48, 25, 26, 48, 41, 48, 6, 25, 48, 41, 41, 6, 7, 24, 25, 41, 49, 39, 3, 4, 49, 3, 28, 39, 49, 27, 28, 49, 40, 49, 4, 27, 49, 40, 40, 4, 5, 26, 27, 40, 39, 38, 2, 3, 39, 2, 29, 38, 39, 28, 29, 39, 0, 36, 35, 37, 36, 0, 1, 37, 0, 38, 37, 1, 38, 1, 2, 30, 37, 38, 31, 32, 36, 31, 36, 37, 30, 31, 37, 29, 30, 38, 36, 34, 35, 32, 33, 34, 32, 34, 36 ],
  279. "vertices": [ 5, 72, 17.73, 41.98, 0.189, 74, -7.93, 41.74, 0.676, 75, -17.91, 41.85, 0.08904, 76, -30.85, 41.22, 0.04306, 77, -49.21, 37.06, 0.0029, 6, 72, 28.75, 40.6, 0.11295, 74, 3.12, 40.61, 0.62972, 75, -6.87, 40.65, 0.14006, 76, -19.79, 40.25, 0.10077, 77, -38.11, 37.06, 0.01644, 78, -50.11, 37.06, 7.0E-5, 7, 72, 40.41, 39.14, 0.04714, 74, 14.81, 39.41, 0.49466, 75, 4.81, 39.38, 0.18803, 76, -8.08, 39.22, 0.20782, 77, -26.35, 37.06, 0.0575, 78, -38.36, 37.06, 0.00357, 79, -49.84, 37.06, 0.00127, 8, 72, 50.63, 37.86, 0.01558, 74, 25.06, 38.36, 0.33327, 75, 15.06, 38.27, 0.17896, 76, 2.19, 38.32, 0.31031, 77, -16.05, 37.06, 0.13346, 78, -28.05, 37.06, 0.01904, 79, -39.54, 37.06, 0.00924, 80, -51.81, 37.06, 1.5E-4, 9, 72, 58.92, 36.83, 0.00427, 74, 33.37, 37.51, 0.21238, 75, 23.36, 37.37, 0.13378, 76, 10.51, 37.59, 0.34724, 77, -7.7, 37.06, 0.22188, 78, -19.7, 37.06, 0.04995, 79, -31.19, 37.06, 0.02786, 80, -43.45, 37.06, 0.0025, 81, -54.94, 37.06, 1.4E-4, 9, 72, 65.97, 35.94, 7.4E-4, 74, 40.43, 36.78, 0.13139, 75, 30.42, 36.6, 0.08768, 76, 17.58, 36.97, 0.32312, 77, -0.59, 37.06, 0.29387, 78, -12.6, 37.06, 0.09305, 79, -24.08, 37.06, 0.05869, 80, -36.35, 37.06, 0.00959, 81, -47.83, 37.06, 0.00185, 10, 72, 72.5, 35.13, 2.0E-5, 74, 46.98, 36.11, 0.07692, 75, 36.97, 35.89, 0.05132, 76, 24.14, 36.4, 0.26332, 77, 5.99, 37.06, 0.33147, 78, -6.02, 37.06, 0.14207, 79, -17.5, 37.06, 0.10333, 80, -29.77, 37.06, 0.02417, 81, -41.25, 37.06, 0.00717, 82, -50.91, 37.06, 2.3E-4, 9, 74, 53.53, 35.44, 0.04054, 75, 43.51, 35.18, 0.02573, 76, 30.69, 35.82, 0.18879, 77, 12.57, 37.06, 0.32512, 78, 0.56, 37.06, 0.1856, 79, -10.92, 37.06, 0.16205, 80, -23.19, 37.06, 0.05042, 81, -34.67, 37.06, 0.01926, 82, -44.33, 37.06, 0.00247, 9, 74, 58.83, 34.9, 0.02181, 75, 48.81, 34.6, 0.01278, 76, 36.01, 35.36, 0.13233, 77, 17.9, 37.06, 0.28972, 78, 5.9, 37.06, 0.20327, 79, -5.59, 37.06, 0.21269, 80, -17.85, 37.06, 0.0824, 81, -29.34, 37.06, 0.03697, 82, -39, 37.06, 0.00802, 9, 74, 64.1, 34.36, 0.01035, 75, 54.07, 34.03, 0.00533, 76, 41.28, 34.89, 0.08651, 77, 23.19, 37.06, 0.23861, 78, 11.19, 37.06, 0.19899, 79, -0.3, 37.06, 0.25454, 80, -12.56, 37.06, 0.12263, 81, -24.05, 37.06, 0.06386, 82, -33.7, 37.06, 0.0192, 9, 74, 70.32, 33.72, 0.00321, 75, 60.29, 33.35, 0.00123, 76, 47.51, 34.35, 0.04721, 77, 29.45, 37.06, 0.17331, 78, 17.44, 37.06, 0.1697, 79, 5.96, 37.06, 0.27834, 80, -6.31, 37.06, 0.17436, 81, -17.79, 37.06, 0.10938, 82, -27.45, 37.06, 0.04325, 9, 74, 74.83, 33.26, 9.6E-4, 75, 64.8, 32.86, 2.2E-4, 76, 52.02, 33.95, 0.02814, 77, 33.98, 37.06, 0.12998, 78, 21.98, 37.06, 0.13847, 79, 10.49, 37.06, 0.27273, 80, -1.78, 37.06, 0.20742, 81, -13.26, 37.06, 0.15161, 82, -22.92, 37.06, 0.07047, 8, 74, 81.25, 32.6, 4.0E-5, 76, 58.46, 33.39, 0.0116, 77, 40.44, 37.06, 0.08011, 78, 28.44, 37.06, 0.09221, 79, 16.95, 37.06, 0.23521, 80, 4.69, 37.06, 0.23435, 81, -6.8, 37.06, 0.22031, 82, -16.46, 37.06, 0.12617, 7, 76, 65.63, 32.76, 0.00301, 77, 47.64, 37.06, 0.04148, 78, 35.63, 37.06, 0.04987, 79, 24.15, 37.06, 0.17458, 80, 11.88, 37.06, 0.22868, 81, 0.4, 37.06, 0.29339, 82, -9.26, 37.06, 0.20899, 7, 76, 75.57, 31.89, 6.0E-5, 77, 57.62, 37.06, 0.01245, 78, 45.61, 37.06, 0.01494, 79, 34.13, 37.06, 0.10206, 80, 21.86, 37.06, 0.18285, 81, 10.38, 37.06, 0.35766, 82, 0.72, 37.06, 0.32999, 6, 77, 67.02, 37.06, 0.00461, 78, 55.02, 37.06, 0.00522, 79, 43.53, 37.06, 0.07744, 80, 31.27, 37.06, 0.15853, 81, 19.78, 37.06, 0.37293, 82, 10.13, 37.06, 0.38126, 3, 79, 43.53, 0, 0, 80, 31.27, 0, 0, 82, 10.13, 0, 1, 5, 78, 55.02, -37.94, 0.03091, 79, 43.53, -37.94, 0.0479, 80, 31.27, -37.94, 0.30585, 81, 19.78, -37.94, 0.20945, 82, 10.13, -37.94, 0.40589, 8, 73, 101.94, -44.24, 1.6E-4, 76, 68.54, -42.78, 9.0E-5, 77, 57.14, -37.94, 0.00143, 78, 45.13, -37.94, 0.04953, 79, 33.65, -37.94, 0.07184, 80, 21.38, -37.94, 0.3285, 81, 9.89, -37.94, 0.1987, 82, 0.24, -37.94, 0.34976, 9, 73, 92.18, -43.16, 0.00215, 75, 69.95, -43.14, 1.1E-4, 76, 58.75, -41.93, 0.00265, 77, 47.31, -37.94, 0.00984, 78, 35.31, -37.94, 0.10585, 79, 23.82, -37.94, 0.13455, 80, 11.56, -37.94, 0.35896, 81, 0.07, -37.94, 0.15756, 82, -9.58, -37.94, 0.22833, 9, 73, 87.59, -42.65, 0.0047, 75, 65.35, -42.64, 6.5E-4, 76, 54.15, -41.52, 0.00649, 77, 42.7, -37.94, 0.01877, 78, 30.69, -37.94, 0.14591, 79, 19.21, -37.94, 0.1695, 80, 6.94, -37.94, 0.35509, 81, -4.54, -37.94, 0.12797, 82, -14.2, -37.94, 0.17092, 9, 73, 81.17, -41.94, 0.0112, 75, 58.93, -41.94, 0.00292, 76, 47.72, -40.96, 0.01689, 77, 36.24, -37.94, 0.03909, 78, 24.23, -37.94, 0.21222, 79, 12.75, -37.94, 0.20921, 80, 0.48, -37.94, 0.31973, 81, -11.01, -37.94, 0.08468, 82, -20.66, -37.94, 0.10406, 9, 73, 74.9, -41.24, 0.02243, 75, 52.66, -41.26, 0.00814, 76, 41.43, -40.41, 0.03537, 77, 29.93, -37.94, 0.06934, 78, 17.92, -37.94, 0.27751, 79, 6.44, -37.94, 0.22251, 80, -5.83, -37.94, 0.25788, 81, -17.31, -37.94, 0.049, 82, -26.97, -37.94, 0.05783, 9, 73, 68.69, -40.55, 0.04024, 75, 46.45, -40.58, 0.01788, 76, 35.21, -39.86, 0.06417, 77, 23.68, -37.94, 0.10779, 78, 11.67, -37.94, 0.32468, 79, 0.19, -37.94, 0.20478, 80, -12.08, -37.94, 0.18754, 81, -23.56, -37.94, 0.0243, 82, -33.22, -37.94, 0.02862, 9, 73, 62.79, -39.89, 0.06526, 75, 40.55, -39.94, 0.03293, 76, 29.29, -39.34, 0.10175, 77, 17.74, -37.94, 0.14585, 78, 5.74, -37.94, 0.33845, 79, -5.75, -37.94, 0.16632, 80, -18.02, -37.94, 0.12655, 81, -29.5, -37.94, 0.01031, 82, -39.16, -37.94, 0.01258, 9, 73, 56.37, -39.18, 0.10422, 75, 34.12, -39.24, 0.05743, 76, 22.86, -38.78, 0.15079, 77, 11.28, -37.94, 0.17657, 78, -0.73, -37.94, 0.31314, 79, -12.21, -37.94, 0.11583, 80, -24.48, -37.94, 0.07513, 81, -35.96, -37.94, 0.00293, 82, -45.62, -37.94, 0.00396, 9, 73, 51.11, -38.6, 0.14685, 75, 28.86, -38.67, 0.08401, 76, 17.58, -38.31, 0.19061, 77, 5.99, -37.94, 0.18477, 78, -6.02, -37.94, 0.26861, 79, -17.5, -37.94, 0.07812, 80, -29.77, -37.94, 0.0454, 81, -41.25, -37.94, 6.2E-4, 82, -50.91, -37.94, 0.00103, 9, 72, 54.91, -38.26, 0.00158, 73, 42.81, -37.67, 0.23716, 75, 20.56, -37.77, 0.13409, 76, 9.26, -37.58, 0.23129, 77, -2.36, -37.94, 0.16089, 78, -14.37, -37.94, 0.18212, 79, -25.85, -37.94, 0.03538, 80, -38.12, -37.94, 0.01748, 82, -59.26, -37.94, 1.0E-5, 8, 72, 49.78, -37.62, 0.00596, 73, 37.67, -37.1, 0.30795, 75, 15.42, -37.21, 0.16326, 76, 4.11, -37.13, 0.23128, 77, -7.54, -37.94, 0.13073, 78, -19.54, -37.94, 0.13295, 79, -31.03, -37.94, 0.01938, 80, -43.29, -37.94, 0.00849, 8, 72, 43.09, -36.78, 0.01937, 73, 30.97, -36.36, 0.41215, 75, 8.71, -36.48, 0.18668, 76, -2.6, -36.54, 0.20186, 77, -14.28, -37.94, 0.08827, 78, -26.28, -37.94, 0.08182, 79, -37.77, -37.94, 0.00734, 80, -50.03, -37.94, 0.00252, 8, 72, 31.11, -35.28, 0.08506, 73, 18.96, -35.02, 0.59024, 75, -3.29, -35.18, 0.15615, 76, -14.63, -35.49, 0.10768, 77, -26.35, -37.94, 0.03213, 78, -38.36, -37.94, 0.02826, 79, -49.84, -37.94, 4.5E-4, 80, -62.11, -37.94, 2.0E-5, 6, 72, 21.04, -34.02, 0.20645, 73, 8.88, -33.9, 0.64397, 75, -13.37, -34.08, 0.08615, 76, -24.74, -34.6, 0.04471, 77, -36.5, -37.94, 0.00981, 78, -48.5, -37.94, 0.00891, 6, 72, 9.22, -32.55, 0.41377, 73, -2.96, -32.59, 0.55211, 75, -25.22, -32.79, 0.02288, 76, -36.6, -33.56, 0.00899, 77, -48.41, -37.94, 0.00109, 78, -60.42, -37.94, 0.00116, 4, 72, -3.25, -30.99, 0.53783, 73, -15.45, -31.2, 0.46014, 75, -37.71, -31.44, 0.00201, 76, -49.12, -32.46, 2.0E-5, 2, 72, 0.7, 0.6, 0.99503, 74, -24.04, 0, 0.00497, 4, 72, 6.05, 43.43, 0.22958, 74, -19.64, 42.95, 0.67896, 75, -29.61, 43.13, 0.0675, 76, -42.57, 42.25, 0.02396, 3, 72, 13.49, 0.14, 0.21064, 73, 0.87, 0.15, 0.78816, 74, -11.24, -0.18, 0.00121, 5, 74, 0.37, 0, 0.99993, 75, -9.87, 0.06, 7.0E-5, 76, -21.94, -0.4, 1.0E-5, 77, -36.7, -3.62, 0, 78, -48.7, -3.62, 0, 6, 73, 22.63, -0.45, 0.01745, 74, 10.53, -0.59, 0.37968, 75, 0.29, -0.59, 0.60219, 76, -11.77, -0.84, 5.1E-4, 77, -26.53, -3.17, 7.0E-5, 78, -38.53, -3.17, 1.0E-4, 5, 73, 34.01, -0.35, 0.00266, 75, 11.67, -0.47, 0.61579, 76, -0.39, -0.47, 0.38098, 77, -15.23, -1.81, 3.1E-4, 78, -27.23, -1.81, 2.7E-4, 6, 73, 48.58, -0.15, 2.0E-5, 74, 36.48, -0.07, 9.0E-5, 76, 14.17, 0.06, 0.72393, 77, -0.76, 0, 0.27596, 78, -12.77, 0, 0, 79, -24.25, 0, 0, 2, 77, 11.44, 0, 0.68635, 78, -0.57, 0, 0.31365, 3, 78, 11.86, 0, 0.38551, 79, 0.38, 0, 0.61448, 80, -11.89, 0, 1.0E-5, 5, 77, 35.62, 0.45, 2.7E-4, 78, 23.62, 0.45, 1.6E-4, 79, 12.13, 0.45, 0.54816, 80, -0.14, 0.45, 0.45133, 81, -11.62, 0.45, 8.0E-5, 5, 77, 47.83, 0.45, 4.0E-5, 79, 24.34, 0.45, 4.8E-4, 80, 12.07, 0.45, 0.29789, 81, 0.58, 0.45, 0.70113, 82, -9.07, 0.45, 4.5E-4, 4, 78, 45.76, -0.23, 2.0E-5, 80, 22.01, -0.23, 9.8E-4, 81, 10.53, -0.23, 0.25347, 82, 0.87, -0.23, 0.74554, 4, 77, 41.41, 0.45, 1.2E-4, 79, 17.92, 0.45, 0.0038, 80, 5.65, 0.45, 0.99602, 82, -15.49, 0.45, 6.0E-5, 2, 74, 55.53, -2.03, 0, 78, 6.38, 0, 1, 6, 73, 55.3, -0.9, 1.0E-4, 74, 43.2, -0.76, 1.0E-5, 75, 32.96, -0.96, 4.0E-5, 76, 20.9, -0.53, 2.6E-4, 77, 5.99, 0, 0.99959, 80, -29.77, 0, 0, 5, 73, 41.73, -0.24, 4.5E-4, 75, 19.4, -0.34, 6.9E-4, 76, 7.32, -0.19, 0.99826, 77, -7.56, -0.85, 4.2E-4, 78, -19.57, -0.85, 1.8E-4, 4, 77, 29.76, 0.22, 2.0E-4, 79, 6.27, 0.22, 0.99966, 80, -6, 0.22, 1.2E-4, 81, -17.48, 0.22, 3.0E-5 ],
  280. "hull": 36,
  281. "edges": [ 66, 68, 68, 70, 68, 72, 72, 74, 74, 76, 76, 78, 88, 90, 30, 32, 32, 34, 90, 32, 64, 66, 64, 72, 0, 70, 72, 0, 62, 64, 62, 74, 0, 2, 74, 2, 60, 62, 60, 76, 2, 4, 76, 4, 58, 60, 58, 78, 4, 6, 78, 6, 54, 80, 80, 10, 50, 82, 82, 14, 46, 84, 84, 18, 42, 86, 86, 22, 38, 88, 88, 26, 34, 36, 36, 38, 36, 90, 26, 28, 28, 30, 90, 28, 38, 40, 40, 42, 86, 92, 92, 88, 40, 92, 22, 24, 24, 26, 92, 24, 46, 48, 48, 50, 82, 94, 94, 84, 48, 94, 14, 16, 16, 18, 94, 16, 50, 52, 52, 54, 80, 96, 96, 82, 52, 96, 10, 12, 12, 14, 96, 12, 54, 56, 56, 58, 78, 98, 98, 80, 56, 98, 6, 8, 8, 10, 98, 8, 42, 44, 44, 46, 84, 100, 100, 86, 44, 100, 18, 20, 20, 22, 100, 20 ],
  282. "width": 75,
  283. "height": 128
  284. }
  285. },
  286. "xiabaiqunzi": {
  287. "xiabaiqunzi": {
  288. "type": "mesh",
  289. "uvs": [ 0.78721, 0.10468, 0.81708, 0.19696, 0.83763, 0.26047, 0.86357, 0.3406, 0.88552, 0.4084, 0.90735, 0.47585, 0.93982, 0.57615, 0.98063, 0.70222, 0.99044, 0.77103, 0.99999, 0.83795, 0.99999, 0.92911, 1, 1, 0.77415, 1, 0.4597, 1, 0, 1, 0, 0.92558, 0, 0.83795, 0.00603, 0.792, 0.01423, 0.72947, 0.02748, 0.62843, 0.04268, 0.51259, 0.05178, 0.44322, 0.06205, 0.36493, 0.0728, 0.28299, 0.08259, 0.20836, 0.09571, 0.10828, 0.10992, 0, 0.46992, 0, 0.5962, 0, 0.75332, 0, 0.46773, 0.21441, 0.46625, 0.35911, 0.46484, 0.49682, 0.46367, 0.61155, 0.46252, 0.72446, 0.46122, 0.85146, 0.46052, 0.92033, 0.46555, 0.42797, 0.46706, 0.27971, 0.46187, 0.78803, 0.46866, 0.12266, 0.6418, 0.11289, 0.66051, 0.20478, 0.67442, 0.26894, 0.68317, 0.34901, 0.69115, 0.41746, 0.70516, 0.48543, 0.72959, 0.59178, 0.74826, 0.71219, 0.76033, 0.77843, 0.76343, 0.84388, 0.76679, 0.92532 ],
  290. "triangles": [ 50, 49, 8, 50, 8, 9, 16, 17, 35, 50, 35, 39, 35, 15, 16, 51, 50, 9, 36, 35, 50, 51, 36, 50, 36, 15, 35, 51, 9, 10, 13, 14, 15, 36, 13, 15, 13, 36, 51, 12, 51, 10, 13, 51, 12, 12, 10, 11, 39, 18, 34, 39, 48, 49, 17, 18, 39, 35, 17, 39, 50, 39, 49, 48, 47, 6, 48, 6, 7, 34, 19, 33, 34, 33, 47, 34, 47, 48, 18, 19, 34, 49, 48, 7, 49, 7, 8, 39, 34, 48, 45, 3, 4, 46, 45, 4, 46, 4, 5, 32, 45, 46, 47, 46, 5, 47, 5, 6, 33, 20, 32, 33, 32, 46, 33, 46, 47, 22, 23, 31, 45, 44, 3, 37, 22, 31, 37, 31, 44, 37, 44, 45, 21, 22, 37, 32, 21, 37, 32, 37, 45, 20, 21, 32, 19, 20, 33, 43, 1, 2, 38, 24, 30, 38, 30, 42, 38, 42, 43, 23, 24, 38, 44, 43, 2, 44, 2, 3, 31, 23, 38, 31, 38, 43, 31, 43, 44, 41, 28, 29, 41, 29, 0, 40, 26, 27, 25, 26, 40, 40, 27, 28, 40, 28, 41, 42, 41, 0, 42, 0, 1, 30, 25, 40, 24, 25, 30, 30, 40, 41, 30, 41, 42, 43, 42, 1 ],
  291. "vertices": [ 5, 12, 3.88, 15, 0.86547, 13, -9.01, 14.64, 0.10002, 14, -17.05, 15.83, 0.00192, 15, -26.58, 15.95, 0.03227, 16, -34.32, 15.95, 3.3E-4, 5, 12, 10.1, 16.62, 0.58889, 13, -2.86, 16.52, 0.26412, 14, -10.79, 17.29, 0.02645, 15, -20.3, 17.35, 0.11361, 16, -28.05, 17.35, 0.00693, 5, 12, 14.38, 17.74, 0.37021, 13, 1.37, 17.81, 0.33089, 14, -6.48, 18.3, 0.0639, 15, -15.98, 18.32, 0.21284, 16, -23.73, 18.32, 0.02216, 7, 12, 19.78, 19.15, 0.16484, 13, 6.71, 19.45, 0.29072, 14, -1.04, 19.56, 0.10386, 15, -10.53, 19.54, 0.37668, 16, -18.28, 19.54, 0.0633, 17, -26.54, 19.54, 2.7E-4, 18, -32.99, 21.45, 3.2E-4, 7, 12, 24.35, 20.35, 0.06797, 13, 11.23, 20.83, 0.19841, 14, 3.56, 20.64, 0.09806, 15, -5.92, 20.57, 0.50544, 16, -13.67, 20.57, 0.12217, 17, -21.93, 20.57, 0.00365, 18, -28.32, 22.22, 0.00428, 7, 12, 28.9, 21.54, 0.02251, 13, 15.72, 22.2, 0.11385, 14, 8.14, 21.7, 0.06226, 15, -1.34, 21.59, 0.57018, 16, -9.08, 21.59, 0.19898, 17, -17.34, 21.59, 0.01465, 18, -23.69, 22.98, 0.01756, 7, 12, 35.66, 23.3, 0.00165, 13, 22.41, 24.25, 0.03851, 14, 14.95, 23.29, 0.01543, 15, 5.48, 23.12, 0.51709, 16, -2.26, 23.12, 0.30698, 17, -10.52, 23.12, 0.05139, 18, -16.79, 24.12, 0.06894, 6, 13, 30.81, 26.82, 0.00584, 14, 23.5, 25.28, 1.8E-4, 15, 14.06, 25.04, 0.33229, 16, 6.31, 25.04, 0.33684, 17, -1.95, 25.04, 0.11285, 18, -8.12, 25.54, 0.212, 5, 13, 35.44, 27.64, 0.00121, 15, 18.74, 25.5, 0.24146, 16, 10.99, 25.5, 0.30329, 17, 2.73, 25.5, 0.13164, 18, -3.42, 25.74, 0.32241, 5, 13, 39.94, 28.43, 4.0E-5, 15, 23.29, 25.95, 0.17132, 16, 15.54, 25.95, 0.25681, 17, 7.28, 25.95, 0.13328, 18, 1.14, 25.92, 0.43855, 4, 15, 29.48, 25.95, 0.11197, 16, 21.74, 25.95, 0.20319, 17, 13.48, 25.95, 0.11953, 18, 7.33, 25.57, 0.56531, 4, 15, 34.31, 25.95, 0.09693, 16, 26.56, 25.95, 0.18749, 17, 18.3, 25.95, 0.11296, 18, 12.15, 25.3, 0.60262, 5, 14, 43.84, 15.75, 0, 15, 34.31, 15.33, 0.05645, 16, 26.56, 15.33, 0.10914, 17, 18.3, 15.33, 0.06574, 18, 11.54, 14.7, 0.76866, 4, 14, 43.97, 0.98, 1.0E-5, 15, 34.31, 0.55, 9.0E-5, 16, 26.56, 0.55, 5.0E-5, 18, 10.7, -0.06, 0.99985, 4, 14, 44.16, -20.63, 0.04745, 16, 26.56, -21.05, 0.11511, 17, 18.3, -21.05, 0.18631, 18, 9.46, -21.63, 0.65113, 4, 14, 39.1, -20.67, 0.06405, 16, 21.5, -21.05, 0.14144, 17, 13.24, -21.05, 0.20443, 18, 4.41, -21.34, 0.59008, 4, 14, 33.14, -20.73, 0.12577, 16, 15.54, -21.05, 0.22536, 17, 7.28, -21.05, 0.23645, 18, -1.54, -21, 0.41241, 5, 13, 40.41, -18.38, 1.4E-4, 14, 30.01, -20.47, 0.17714, 16, 12.41, -20.77, 0.27851, 17, 4.16, -20.77, 0.23668, 18, -4.64, -20.54, 0.30753, 5, 13, 36.14, -18.33, 0.00229, 14, 25.75, -20.12, 0.27527, 16, 8.16, -20.38, 0.33947, 17, -0.09, -20.38, 0.20414, 18, -8.86, -19.91, 0.17884, 5, 13, 29.24, -18.23, 0.02018, 14, 18.88, -19.56, 0.49156, 16, 1.29, -19.76, 0.33254, 17, -6.96, -19.76, 0.10421, 18, -15.69, -18.9, 0.05152, 6, 12, 32.84, -18.99, 0.00101, 13, 21.33, -18.12, 0.09398, 14, 11, -18.91, 0.70012, 16, -6.59, -19.05, 0.17658, 17, -14.84, -19.05, 0.02368, 18, -23.51, -17.73, 0.00462, 6, 12, 28.11, -18.73, 0.0127, 13, 16.59, -18.06, 0.18513, 14, 6.27, -18.53, 0.70638, 16, -11.3, -18.62, 0.08975, 17, -19.56, -18.62, 0.00587, 18, -28.2, -17.04, 1.6E-4, 5, 12, 22.77, -18.44, 0.06545, 13, 11.25, -17.99, 0.32166, 14, 0.95, -18.09, 0.58076, 16, -16.63, -18.14, 0.03183, 17, -24.88, -18.14, 3.0E-4, 4, 12, 17.18, -18.13, 0.21195, 13, 5.65, -17.91, 0.41862, 14, -4.63, -17.64, 0.36279, 16, -22.2, -17.63, 0.00663, 4, 12, 12.1, -17.85, 0.4437, 13, 0.56, -17.84, 0.37329, 14, -9.71, -17.22, 0.18253, 16, -27.27, -17.17, 4.8E-4, 3, 12, 5.27, -17.47, 0.77246, 13, -6.27, -17.75, 0.1845, 14, -16.52, -16.66, 0.04304, 3, 12, -2.11, -17.07, 0.92244, 13, -13.67, -17.65, 0.07528, 14, -23.89, -16.06, 0.00228, 1, 12, -2.71, -0.16, 1, 3, 12, -2.92, 5.77, 0.99164, 13, -15.42, 5.14, 0.00626, 15, -33.69, 6.97, 0.0021, 3, 12, -3.18, 13.15, 0.98124, 13, -15.98, 12.5, 0.01405, 15, -33.69, 14.35, 0.00472, 4, 12, 11.87, 0.26, 0.74836, 13, -0.42, 0.24, 0.25098, 15, -19.11, 0.93, 6.6E-4, 16, -26.86, 0.93, 0, 5, 12, 21.7, 0.54, 0.00124, 13, 9.4, 0.92, 0.32408, 14, 0.38, 0.9, 0.66378, 15, -9.28, 0.86, 0.01047, 16, -17.02, 0.86, 4.2E-4, 2, 15, 0.09, 0.8, 0.99765, 16, -7.66, 0.8, 0.00235, 3, 15, 7.89, 0.74, 0.46446, 16, 0.14, 0.74, 0.53552, 18, -15.66, 1.64, 2.0E-5, 4, 15, 15.57, 0.69, 0.00447, 16, 7.82, 0.69, 0.8114, 17, -0.43, 0.69, 0.18375, 18, -8, 1.14, 3.8E-4, 4, 15, 24.2, 0.63, 7.4E-4, 16, 16.46, 0.63, 0.00209, 17, 8.2, 0.63, 0.17799, 18, 0.62, 0.59, 0.81918, 4, 15, 28.89, 0.59, 2.1E-4, 16, 21.14, 0.59, 5.0E-4, 17, 12.89, 0.59, 1.5E-4, 18, 5.29, 0.29, 0.99913, 4, 12, 26.38, 0.67, 3.0E-5, 14, 5.07, 0.91, 0.94626, 15, -4.59, 0.83, 0.05274, 16, -12.34, 0.83, 9.7E-4, 4, 12, 16.31, 0.38, 0.00664, 13, 4.01, 0.55, 0.991, 15, -14.67, 0.9, 0.0023, 16, -22.42, 0.9, 6.0E-5, 4, 15, 19.89, 0.66, 0.00168, 16, 12.14, 0.66, 0.00983, 17, 3.89, 0.66, 0.98379, 18, -3.69, 0.87, 0.0047, 3, 12, 5.63, 0.08, 0.99995, 13, -6.64, -0.19, 1.0E-5, 15, -25.35, 0.98, 4.0E-5, 5, 12, 4.68, 8.19, 0.92686, 13, -7.93, 7.87, 0.05437, 14, -16.43, 9, 0.00104, 15, -26.02, 9.11, 0.01756, 16, -33.77, 9.11, 1.8E-4, 5, 12, 10.89, 9.29, 0.66036, 13, -1.77, 9.22, 0.25823, 14, -10.19, 9.94, 0.0146, 15, -19.77, 9.99, 0.06299, 16, -27.52, 9.99, 0.00383, 5, 12, 15.23, 10.1, 0.21008, 13, 2.53, 10.21, 0.62163, 14, -5.83, 10.63, 0.03576, 15, -15.41, 10.65, 0.12011, 16, -23.15, 10.65, 0.01242, 7, 12, 20.65, 10.7, 0.09056, 13, 7.93, 11.04, 0.30587, 14, -0.39, 11.09, 0.35808, 15, -9.96, 11.06, 0.21041, 16, -17.71, 11.06, 0.03475, 17, -25.96, 11.06, 1.5E-4, 18, -32.9, 12.96, 1.8E-4, 7, 12, 25.29, 11.24, 0.03653, 13, 12.54, 11.77, 0.10658, 14, 4.26, 11.51, 0.49063, 15, -5.31, 11.43, 0.29592, 16, -13.05, 11.43, 0.06608, 17, -21.31, 11.43, 0.00196, 18, -28.23, 13.06, 0.0023, 7, 12, 29.89, 12.06, 0.01223, 13, 17.1, 12.78, 0.06183, 14, 8.88, 12.2, 0.03381, 15, -0.69, 12.09, 0.7655, 16, -8.43, 12.09, 0.10914, 17, -16.69, 12.09, 0.00796, 18, -23.58, 13.46, 0.00954, 7, 12, 37.08, 13.47, 9.2E-4, 13, 24.22, 14.48, 0.02151, 14, 16.1, 13.42, 0.00862, 15, 6.55, 13.24, 0.49385, 16, -1.2, 13.24, 0.40789, 17, -9.46, 13.24, 0.0287, 18, -16.29, 14.19, 0.03851, 6, 13, 32.32, 15.98, 0.00322, 14, 24.28, 14.37, 1.0E-4, 15, 14.73, 14.12, 0.18527, 16, 6.99, 14.12, 0.54967, 17, -1.27, 14.12, 0.14465, 18, -8.07, 14.6, 0.11709, 5, 13, 36.77, 16.89, 6.8E-4, 15, 19.24, 14.68, 0.13707, 16, 11.49, 14.68, 0.17553, 17, 3.24, 14.68, 0.50262, 18, -3.54, 14.91, 0.18409, 5, 13, 41.19, 17.38, 2.0E-5, 15, 23.69, 14.83, 0.09642, 16, 15.94, 14.83, 0.14496, 17, 7.69, 14.83, 0.15291, 18, 0.91, 14.8, 0.60568, 4, 15, 29.23, 14.99, 0.06366, 16, 21.48, 14.99, 0.11557, 17, 13.22, 14.99, 0.06793, 18, 6.45, 14.64, 0.75285 ],
  292. "hull": 30,
  293. "edges": [ 52, 54, 26, 28, 48, 60, 44, 62, 40, 64, 38, 40, 66, 64, 38, 66, 10, 12, 36, 38, 68, 66, 36, 68, 12, 14, 32, 70, 28, 30, 30, 32, 26, 72, 72, 70, 30, 72, 18, 20, 20, 22, 40, 42, 42, 44, 62, 74, 74, 64, 42, 74, 6, 8, 8, 10, 44, 46, 46, 48, 60, 76, 76, 62, 46, 76, 2, 4, 4, 6, 32, 34, 34, 36, 68, 78, 78, 70, 34, 78, 14, 16, 16, 18, 48, 50, 50, 52, 54, 80, 80, 60, 50, 80, 2, 0, 0, 58, 54, 56, 56, 58, 0, 82, 82, 80, 56, 82, 2, 84, 84, 60, 82, 84, 4, 86, 86, 76, 84, 86, 6, 88, 88, 62, 86, 88, 8, 90, 90, 74, 88, 90, 10, 92, 92, 64, 90, 92, 12, 94, 94, 66, 92, 94, 14, 96, 96, 68, 94, 96, 16, 98, 98, 78, 96, 98, 18, 100, 100, 70, 98, 100, 20, 102, 102, 72, 100, 102, 22, 24, 24, 26, 102, 24 ],
  294. "width": 47,
  295. "height": 68
  296. }
  297. },
  298. "xiaozui": {
  299. "xiaozui": { "x": 0.01, "y": 0.78, "rotation": -102.23, "width": 12, "height": 9 }
  300. },
  301. "youshou": {
  302. "youshou": {
  303. "type": "mesh",
  304. "uvs": [ 0.61463, 0.27354, 0.65117, 0.30275, 0.68098, 0.32658, 0.95686, 0.54716, 1, 0.58165, 1, 0.60464, 1, 1, 0.40679, 1, 0.28407, 0.85367, 0.25243, 0.81593, 0.22772, 0.78647, 0.02918, 0.54973, 0.00289, 0.51837, 0.00271, 0.48694, 0, 0, 0.2725, 0, 0.35235, 0.40881, 0.63546, 0.65292, 0.33119, 0.38427, 0.38199, 0.43437, 0.66471, 0.68077, 0.60766, 0.62895 ],
  305. "triangles": [ 18, 15, 0, 14, 15, 18, 16, 18, 0, 16, 0, 1, 13, 14, 18, 12, 13, 18, 12, 18, 16, 19, 16, 1, 19, 1, 2, 11, 12, 16, 11, 16, 19, 17, 3, 4, 21, 19, 2, 21, 2, 3, 17, 21, 3, 10, 11, 19, 10, 19, 21, 9, 10, 21, 9, 21, 17, 4, 20, 17, 5, 20, 4, 8, 9, 17, 8, 17, 20, 7, 8, 20, 20, 5, 6, 7, 20, 6 ],
  306. "vertices": [ 2, 10, -3.02, 9.9, 0.29219, 9, 18.6, 9.36, 0.70781, 2, 10, -1.13, 9.9, 0.44827, 9, 20.46, 9.63, 0.55173, 2, 10, 0.41, 9.9, 0.58434, 9, 21.98, 9.85, 0.41566, 2, 11, -1.39, 9.79, 0.3888, 10, 14.64, 9.88, 0.6112, 2, 11, 0.83, 10, 0.53879, 10, 16.87, 9.87, 0.46121, 2, 11, 1.97, 9.45, 0.61658, 10, 17.94, 9.21, 0.38342, 1, 11, 21.52, -0.07, 1, 2, 11, 14.51, -14.47, 0.97798, 10, 28.05, -15.84, 0.02202, 2, 11, 5.82, -13.93, 0.80602, 10, 19.46, -14.43, 0.19398, 2, 11, 3.58, -13.79, 0.70486, 10, 17.25, -14.07, 0.29514, 2, 11, 1.83, -13.68, 0.61084, 10, 15.52, -13.79, 0.38916, 3, 11, -12.22, -12.8, 0.03084, 10, 1.62, -11.52, 0.73505, 9, 26.31, -11.16, 0.23411, 3, 11, -14.08, -12.68, 0.01542, 10, -0.22, -11.22, 0.64428, 9, 24.45, -11.13, 0.34031, 3, 11, -15.64, -11.93, 0.00711, 10, -1.69, -10.32, 0.53916, 9, 22.86, -10.46, 0.45373, 1, 9, -1.78, 0.05, 1, 1, 9, 1.13, 6.81, 1, 2, 10, -0.4, -0.03, 0.16067, 9, 22.64, -0.09, 0.83933, 2, 11, 0.05, -0.56, 0.56168, 10, 15.04, -0.56, 0.43832, 1, 9, 21.17, -0.08, 1, 2, 11, -13.76, -1.45, 1.0E-5, 10, 1.22, -0.08, 0.99999, 2, 11, 1.77, -0.52, 0.97437, 10, 16.76, -0.7, 0.02563, 2, 11, -1.47, -0.66, 0.017, 10, 13.53, -0.51, 0.983 ],
  307. "hull": 16,
  308. "edges": [ 28, 30, 12, 14, 24, 32, 32, 2, 24, 26, 26, 28, 28, 36, 36, 32, 26, 36, 2, 0, 0, 30, 36, 0, 22, 24, 32, 38, 22, 38, 2, 4, 38, 4, 18, 34, 34, 8, 14, 16, 16, 18, 12, 40, 40, 34, 16, 40, 8, 10, 10, 12, 40, 10, 18, 20, 20, 22, 34, 42, 42, 38, 20, 42, 4, 6, 6, 8, 42, 6 ],
  309. "width": 27,
  310. "height": 55
  311. }
  312. },
  313. "youshoupiaodai": {
  314. "youshoupiaodai": {
  315. "type": "mesh",
  316. "uvs": [ 0.71046, 0.24271, 0.74075, 0.32193, 0.77031, 0.39924, 0.80763, 0.49685, 0.83569, 0.57024, 0.86213, 0.63939, 0.88447, 0.69782, 0.90673, 0.75604, 0.92347, 0.79984, 0.9585, 0.89146, 1, 1, 0.61766, 1, 0.24978, 1, 0.22905, 0.94605, 0.19744, 0.86376, 0.17442, 0.80385, 0.15413, 0.75105, 0.1298, 0.68774, 0.1016, 0.61435, 0.07117, 0.53514, 0.0333, 0.43657, 0, 0.34991, 0, 0.27495, 0, 0, 0.24978, 0, 0.61766, 0, 0.29837, 0.25991, 0.34002, 0.41991, 0.38861, 0.59591, 0.45802, 0.72991, 0.49966, 0.83791, 0.31859, 0.33757, 0.36795, 0.52109, 0.42563, 0.66738, 0.56074, 0.9218, 0.47978, 0.78635 ],
  317. "triangles": [ 11, 9, 10, 12, 34, 11, 11, 34, 9, 12, 13, 34, 13, 30, 34, 13, 14, 30, 34, 8, 9, 34, 30, 8, 30, 7, 8, 14, 35, 30, 14, 15, 35, 30, 35, 7, 15, 29, 35, 15, 16, 29, 35, 6, 7, 35, 29, 6, 16, 33, 29, 29, 5, 6, 16, 17, 33, 29, 33, 5, 17, 28, 33, 17, 18, 28, 33, 4, 5, 33, 28, 4, 28, 3, 4, 28, 32, 3, 18, 32, 28, 18, 19, 32, 19, 27, 32, 19, 20, 27, 32, 2, 3, 32, 27, 2, 20, 31, 27, 20, 21, 31, 27, 1, 2, 27, 31, 1, 21, 26, 31, 31, 0, 1, 31, 26, 0, 21, 22, 26, 22, 24, 26, 22, 23, 24, 26, 25, 0, 26, 24, 25 ],
  318. "vertices": [ 2, 37, 8.47, 7.02, 0.17519, 38, -0.6, 6.89, 0.82481, 3, 38, 4.09, 7.19, 0.95536, 39, -5.5, 7.19, 0.03675, 40, -14.46, 8.54, 0.00789, 3, 38, 8.67, 7.49, 0.60845, 39, -0.92, 7.49, 0.30562, 40, -9.87, 8.38, 0.08593, 3, 38, 14.45, 7.87, 0.07758, 39, 4.86, 7.87, 0.4342, 40, -4.08, 8.18, 0.48823, 4, 38, 18.8, 8.15, 0.0015, 39, 9.2, 8.16, 0.10755, 40, 0.27, 8.03, 0.86856, 41, -8.13, 7.57, 0.0224, 3, 39, 13.3, 8.43, 0.00117, 40, 4.37, 7.88, 0.82839, 41, -4.03, 7.66, 0.17045, 3, 40, 7.84, 7.76, 0.52369, 41, -0.56, 7.74, 0.46496, 42, -6.31, 8.32, 0.01135, 3, 40, 11.29, 7.64, 0.18719, 41, 2.9, 7.82, 0.68508, 42, -2.86, 8.09, 0.12773, 3, 40, 13.89, 7.55, 0.05229, 41, 5.5, 7.88, 0.58523, 42, -0.27, 7.93, 0.36249, 2, 41, 10.93, 8.01, 0.11399, 42, 5.16, 7.57, 0.88601, 1, 42, 11.59, 7.15, 1, 1, 42, 10.46, 0.75, 1, 2, 41, 16.27, -4.55, 0.05271, 42, 9.37, -5.41, 0.94729, 2, 41, 13.07, -4.62, 0.16718, 42, 6.17, -5.2, 0.83282, 2, 41, 8.18, -4.74, 0.80338, 42, 1.3, -4.88, 0.19662, 3, 40, 12.29, -5.08, 0.02136, 41, 4.63, -4.82, 0.92932, 42, -2.25, -4.66, 0.04932, 4, 39, 19.35, -3.89, 0.00494, 40, 9.16, -4.97, 0.26152, 41, 1.5, -4.9, 0.7131, 42, -5.38, -4.45, 0.02044, 4, 39, 15.6, -4.14, 0.1098, 40, 5.4, -4.85, 0.74012, 41, -2.26, -4.99, 0.14911, 42, -9.13, -4.21, 9.7E-4, 2, 39, 11.25, -4.43, 0.68884, 40, 1.05, -4.7, 0.31116, 2, 38, 16.15, -4.74, 6.6E-4, 39, 6.56, -4.74, 0.99934, 3, 37, 19.54, -4.84, 0.00479, 38, 10.31, -5.12, 0.41056, 39, 0.72, -5.12, 0.58465, 3, 37, 14.41, -5.25, 0.16482, 38, 5.18, -5.46, 0.80869, 39, -4.41, -5.46, 0.02649, 2, 37, 9.99, -5.11, 0.74202, 38, 0.76, -5.26, 0.25798, 1, 37, -6.22, -4.6, 1, 1, 37, -6.09, -0.36, 1, 1, 37, -5.89, 5.89, 1, 2, 37, 9.26, -0.01, 0.87383, 38, 0.1, -0.16, 0.12617, 3, 38, 9.56, 0.13, 0.52258, 39, -0.03, 0.13, 0.47695, 40, -9.72, 0.96, 4.7E-4, 1, 40, 0.67, 0.29, 1, 2, 40, 8.67, 0.32, 0.04448, 41, 0.7, 0.36, 0.95552, 1, 42, 0.69, 0.44, 1, 3, 37, 13.85, 0.19, 4.3E-4, 38, 4.69, -0.02, 0.99957, 40, -14.58, 1.3, 0, 2, 39, 5.96, 0.34, 0.97765, 40, -3.75, 0.58, 0.02235, 2, 40, 4.94, 0.3, 0.99956, 41, -3.02, 0.13, 4.4E-4, 1, 42, 5.75, 0.6, 1, 1, 41, 4.05, 0.44, 1 ],
  319. "hull": 26,
  320. "edges": [ 46, 48, 48, 50, 48, 52, 20, 22, 22, 24, 42, 44, 44, 46, 44, 52, 0, 50, 52, 0, 52, 62, 62, 54, 42, 62, 0, 2, 62, 2, 40, 42, 40, 54, 2, 4, 54, 4, 36, 56, 56, 8, 36, 38, 38, 40, 54, 64, 64, 56, 38, 64, 4, 6, 6, 8, 64, 6, 32, 58, 58, 12, 32, 34, 34, 36, 56, 66, 66, 58, 34, 66, 8, 10, 10, 12, 66, 10, 28, 60, 60, 16, 24, 26, 26, 28, 22, 68, 68, 60, 26, 68, 16, 18, 18, 20, 68, 18, 28, 30, 30, 32, 58, 70, 70, 60, 30, 70, 12, 14, 14, 16, 70, 14 ],
  321. "width": 17,
  322. "height": 59
  323. }
  324. },
  325. "youtui": {
  326. "youtui": {
  327. "type": "mesh",
  328. "uvs": [ 1, 0.51293, 1, 0.53501, 1, 0.55116, 1, 0.85736, 1, 0.87513, 1, 0.89357, 1, 1, 0, 1, 0, 0.96287, 0, 0.89926, 0.21108, 0.87019, 0.20953, 0.85188, 0.20793, 0.833, 0.18531, 0.56575, 0.18358, 0.54526, 0.18179, 0.52406, 0.13744, 0, 0.52758, 0, 1, 0, 0.66577, 0.88003, 0.66331, 0.86437, 0.66026, 0.84496, 0.6118, 0.53636, 0.61494, 0.55634, 0.60876, 0.51695 ],
  329. "triangles": [ 10, 11, 20, 8, 9, 10, 8, 10, 19, 7, 8, 19, 23, 22, 1, 2, 23, 1, 13, 14, 22, 13, 22, 23, 12, 13, 23, 21, 23, 2, 12, 23, 21, 11, 12, 21, 21, 2, 3, 20, 21, 3, 11, 21, 20, 20, 3, 4, 19, 20, 4, 10, 20, 19, 19, 4, 5, 19, 5, 6, 7, 19, 6, 24, 17, 18, 0, 24, 18, 15, 16, 17, 15, 17, 24, 22, 24, 0, 1, 22, 0, 14, 15, 24, 14, 24, 22 ],
  330. "vertices": [ 2, 86, 25.71, 8.39, 0.61021, 87, -1, 8.35, 0.38979, 2, 86, 26.86, 8.29, 0.49043, 87, 0.15, 8.31, 0.50957, 2, 86, 27.69, 8.21, 0.40213, 87, 0.99, 8.29, 0.59787, 2, 87, 16.91, 7.78, 0.96856, 88, -7.99, -0.21, 0.03144, 2, 87, 17.83, 7.75, 0.94079, 88, -7.77, 0.68, 0.05921, 2, 87, 18.79, 7.72, 0.90234, 88, -7.55, 1.62, 0.09766, 2, 87, 24.32, 7.54, 0.68583, 88, -6.24, 6.99, 0.31417, 1, 88, 15.14, 1.78, 1, 1, 88, 14.68, -0.1, 1, 2, 87, 18.38, -14.28, 8.6E-4, 88, 13.9, -3.31, 0.99914, 2, 87, 17.02, -9.59, 0.13851, 88, 9.03, -3.68, 0.86149, 2, 87, 16.06, -9.59, 0.2597, 88, 8.83, -4.61, 0.7403, 2, 87, 15.08, -9.6, 0.3698, 88, 8.64, -5.57, 0.6302, 3, 86, 26.81, -9.7, 0.34304, 87, 1.18, -9.65, 0.64901, 88, 5.83, -19.19, 0.00795, 3, 86, 25.74, -9.64, 0.43286, 87, 0.11, -9.66, 0.56309, 88, 5.61, -20.24, 0.00405, 3, 86, 24.64, -9.58, 0.52788, 87, -0.99, -9.66, 0.47047, 88, 5.39, -21.32, 0.00165, 1, 86, -2.58, -8.06, 1, 1, 86, -1.8, 0.49, 1, 1, 86, -0.85, 10.84, 1, 1, 87, 17.85, 0.39, 1, 1, 87, 17.03, 0.36, 1, 1, 87, 16.02, 0.33, 1, 2, 86, 26.15, -0.22, 0.55495, 87, -0.05, -0.22, 0.44505, 2, 87, 0.99, -0.19, 1, 88, -3.47, -17.43, 0, 1, 86, 25.13, -0.2, 1 ],
  331. "hull": 19,
  332. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  333. "width": 22,
  334. "height": 52
  335. }
  336. },
  337. "youwaitao": {
  338. "youwaitao": {
  339. "type": "mesh",
  340. "uvs": [ 0.64908, 0.15263, 0.67622, 0.20641, 0.70005, 0.25362, 0.73876, 0.33031, 0.76803, 0.38829, 0.80176, 0.45512, 0.82452, 0.50019, 0.85019, 0.55105, 0.87294, 0.59612, 0.89935, 0.64844, 0.92322, 0.69572, 0.94885, 0.7465, 0.97463, 0.79756, 0.99999, 0.87454, 1, 0.95414, 1, 1, 0.57203, 1, 0, 1, 0, 0.94346, 0, 0.87402, 0, 0.79284, 0, 0.74477, 0, 0.69777, 0, 0.65291, 0, 0.6022, 0, 0.55627, 0, 0.505, 0, 0.45586, 0, 0.3945, 0, 0.33254, 0, 0.26845, 0, 0.21611, 0, 0.15843, 0, 0, 0.32132, 0, 0.57203, 0, 0.31017, 0.15529, 0.31575, 0.25987, 0.31575, 0.39106, 0.32132, 0.50451, 0.3436, 0.59846, 0.39375, 0.69951, 0.44389, 0.79701, 0.48846, 0.87323, 0.31575, 0.32613, 0.31312, 0.21069, 0.31866, 0.45043, 0.33273, 0.55263, 0.36945, 0.65055, 0.42091, 0.75233, 0.54283, 0.95571 ],
  341. "triangles": [ 36, 33, 34, 36, 34, 35, 36, 35, 0, 32, 33, 36, 43, 12, 13, 18, 19, 43, 50, 43, 13, 50, 13, 14, 18, 43, 50, 17, 18, 50, 16, 50, 14, 17, 50, 16, 16, 14, 15, 42, 11, 12, 43, 42, 12, 19, 20, 42, 19, 42, 43, 41, 9, 10, 21, 22, 41, 49, 41, 10, 21, 41, 49, 49, 10, 11, 20, 21, 49, 42, 49, 11, 20, 49, 42, 40, 7, 8, 48, 40, 8, 48, 8, 9, 23, 24, 40, 23, 40, 48, 22, 23, 48, 41, 48, 9, 22, 48, 41, 39, 5, 6, 47, 39, 6, 47, 6, 7, 25, 26, 39, 25, 39, 47, 40, 47, 7, 24, 25, 47, 24, 47, 40, 46, 38, 4, 46, 4, 5, 27, 28, 38, 27, 38, 46, 39, 46, 5, 26, 27, 46, 26, 46, 39, 30, 37, 44, 44, 2, 3, 29, 30, 44, 38, 44, 3, 29, 44, 38, 38, 3, 4, 28, 29, 38, 45, 36, 0, 45, 0, 1, 31, 32, 36, 31, 36, 45, 37, 45, 1, 37, 1, 2, 30, 31, 45, 30, 45, 37, 44, 37, 2 ],
  342. "vertices": [ 3, 29, -0.02, 9.69, 0.49839, 30, -9.95, 9.93, 0.02535, 28, 8.24, 9.69, 0.47627, 4, 29, 4.72, 10.39, 0.6971, 30, -5.19, 10.52, 0.16851, 31, -15.83, 10.38, 1.7E-4, 28, 12.97, 10.45, 0.13423, 4, 29, 8.89, 11.01, 0.53894, 30, -1.01, 11.04, 0.42658, 31, -11.66, 10.93, 0.0136, 28, 17.13, 11.12, 0.02088, 4, 29, 15.65, 12.01, 0.14397, 30, 5.77, 11.88, 0.66701, 31, -4.89, 11.83, 0.18086, 32, -13.87, 12.32, 0.00816, 5, 29, 20.76, 12.76, 0.02535, 30, 10.9, 12.51, 0.458, 31, 0.23, 12.51, 0.44518, 32, -8.73, 12.82, 0.06756, 33, -16.14, 13.89, 0.0039, 6, 29, 26.65, 13.64, 2.7E-4, 30, 16.81, 13.24, 0.15405, 31, 6.14, 13.3, 0.52909, 32, -2.8, 13.4, 0.26354, 33, -10.18, 14.09, 0.05059, 34, -18.71, 14.83, 0.00246, 6, 30, 20.79, 13.74, 0.05118, 31, 10.12, 13.83, 0.38304, 32, 1.2, 13.8, 0.40597, 33, -6.17, 14.22, 0.14283, 34, -14.69, 14.81, 0.01696, 35, -22.26, 15.04, 1.0E-5, 6, 30, 25.29, 14.29, 0.00816, 31, 14.61, 14.43, 0.18786, 32, 5.71, 14.24, 0.42431, 33, -1.64, 14.37, 0.30833, 34, -10.16, 14.78, 0.06729, 35, -17.73, 14.97, 0.00405, 6, 30, 29.28, 14.79, 2.9E-4, 31, 18.6, 14.96, 0.07619, 32, 9.7, 14.63, 0.30704, 33, 2.38, 14.51, 0.43115, 34, -6.14, 14.76, 0.16194, 35, -13.71, 14.9, 0.0234, 6, 31, 23.22, 15.57, 0.01816, 32, 14.35, 15.09, 0.14869, 33, 7.04, 14.66, 0.42088, 34, -1.48, 14.73, 0.32088, 35, -9.05, 14.83, 0.08873, 36, -16.63, 15.3, 0.00266, 6, 31, 27.4, 16.13, 0.00232, 32, 18.54, 15.5, 0.05797, 33, 11.25, 14.8, 0.28458, 34, 2.74, 14.71, 0.42179, 35, -4.84, 14.76, 0.20837, 36, -12.42, 15.11, 0.02497, 5, 32, 23.04, 15.94, 0.01428, 33, 15.77, 14.95, 0.1309, 34, 7.26, 14.68, 0.37811, 35, -0.31, 14.68, 0.37146, 36, -7.89, 14.91, 0.10525, 5, 32, 27.57, 16.38, 0.00137, 33, 20.32, 15.1, 0.04187, 34, 11.81, 14.65, 0.22762, 35, 4.24, 14.61, 0.45019, 36, -3.35, 14.71, 0.27895, 4, 33, 27.13, 14.95, 0.00207, 34, 18.61, 14.24, 0.05355, 35, 11.03, 14.12, 0.28025, 36, 3.43, 14.03, 0.66413, 3, 34, 25.52, 13.09, 0.00292, 35, 17.93, 12.9, 0.05687, 36, 10.29, 12.62, 0.94021, 2, 35, 21.9, 12.2, 0.01901, 36, 14.24, 11.8, 0.98099, 1, 36, 11.82, 0.07, 1, 3, 34, 24.9, -15.2, 5.1E-4, 35, 17.01, -15.37, 0.15652, 36, 8.58, -15.62, 0.84298, 3, 34, 19.99, -14.38, 0.01969, 35, 12.11, -14.5, 0.23373, 36, 3.71, -14.61, 0.74658, 4, 33, 23.56, -12.82, 0.00251, 34, 13.96, -13.37, 0.13154, 35, 6.1, -13.44, 0.45001, 36, -2.27, -13.38, 0.41594, 4, 33, 16.48, -11.92, 0.08447, 34, 6.92, -12.2, 0.43841, 35, -0.94, -12.19, 0.39787, 36, -9.27, -11.93, 0.07925, 5, 32, 21.26, -10.57, 0.00242, 33, 12.28, -11.39, 0.25933, 34, 2.74, -11.5, 0.52406, 35, -5.1, -11.45, 0.20147, 36, -13.41, -11.08, 0.01273, 5, 32, 17.13, -10.32, 0.03508, 33, 8.18, -10.87, 0.52147, 34, -1.34, -10.82, 0.37876, 35, -9.17, -10.73, 0.06447, 36, -17.46, -10.24, 2.1E-4, 5, 31, 22.93, -9.61, 2.9E-4, 32, 13.19, -10.07, 0.15388, 33, 4.26, -10.37, 0.66842, 34, -5.23, -10.17, 0.16559, 35, -13.06, -10.04, 0.01182, 5, 31, 18.47, -9.49, 0.02483, 32, 8.74, -9.8, 0.43315, 33, -0.17, -9.81, 0.5113, 34, -9.63, -9.44, 0.03059, 35, -17.45, -9.26, 1.4E-4, 4, 31, 14.43, -9.38, 0.14455, 32, 4.7, -9.55, 0.63423, 33, -4.18, -9.3, 0.21948, 34, -13.62, -8.78, 0.00174, 4, 30, 20.38, -9.35, 0.01449, 31, 9.92, -9.26, 0.46035, 32, 0.2, -9.27, 0.48745, 33, -8.65, -8.73, 0.0377, 4, 30, 16.06, -9.2, 0.11475, 31, 5.6, -9.14, 0.71363, 32, -4.12, -9.01, 0.17066, 33, -12.94, -8.19, 9.6E-4, 4, 29, 21.04, -8.75, 0.00215, 30, 10.67, -9, 0.5002, 31, 0.2, -9, 0.4847, 32, -9.51, -8.68, 0.01296, 3, 29, 15.58, -8.68, 0.09867, 30, 5.22, -8.8, 0.79337, 31, -5.25, -8.85, 0.10795, 4, 29, 9.95, -8.61, 0.52363, 30, -0.42, -8.6, 0.47146, 31, -10.89, -8.7, 0.00289, 28, 18.43, -8.48, 0.00202, 3, 29, 5.34, -8.55, 0.80683, 30, -5.02, -8.43, 0.11464, 28, 13.83, -8.48, 0.07853, 3, 29, 0.26, -8.49, 0.53254, 30, -10.09, -8.25, 0.00386, 28, 8.75, -8.48, 0.4636, 1, 28, -5.19, -8.48, 1, 1, 28, -5.19, 0.51, 1, 1, 28, -5.19, 7.53, 1, 2, 29, 0.1, 0.2, 0.54782, 28, 8.48, 0.2, 0.45218, 2, 29, 9.3, 0.24, 0.94627, 30, -0.85, 0.26, 0.05373, 2, 30, 10.68, -0.15, 0.42317, 31, 0.14, -0.15, 0.57683, 2, 31, 10.12, -0.27, 0.0761, 32, 0.71, -0.29, 0.9239, 2, 32, 9, -0.18, 0.13808, 33, 0.72, -0.22, 0.86192, 2, 33, 9.71, 0.05, 0.13031, 34, 0.63, 0.03, 0.86969, 1, 35, 1.6, -0.02, 1, 2, 35, 8.42, 0.04, 0.26827, 36, 0.42, 0.03, 0.73173, 1, 30, 4.97, 0.05, 1, 2, 29, 4.97, 0.22, 0.99983, 30, -5.18, 0.35, 1.7E-4, 3, 30, 15.91, -0.26, 7.2E-4, 31, 5.36, -0.21, 0.99896, 32, -4.04, -0.07, 3.2E-4, 2, 32, 4.96, -0.23, 0.99979, 33, -3.32, -0.02, 2.1E-4, 1, 33, 5.36, -0.08, 1, 1, 34, 5.34, 0.01, 1, 1, 36, 7.84, 0.05, 1 ],
  343. "hull": 36,
  344. "edges": [ 66, 68, 68, 70, 68, 72, 84, 86, 30, 32, 32, 34, 64, 66, 64, 72, 0, 70, 72, 0, 60, 74, 74, 4, 56, 76, 76, 8, 56, 58, 58, 60, 74, 88, 88, 76, 58, 88, 4, 6, 6, 8, 88, 6, 60, 62, 62, 64, 72, 90, 90, 74, 62, 90, 0, 2, 2, 4, 90, 2, 52, 78, 78, 12, 52, 54, 54, 56, 76, 92, 92, 78, 54, 92, 8, 10, 10, 12, 92, 10, 48, 80, 80, 16, 48, 50, 50, 52, 78, 94, 94, 80, 50, 94, 12, 14, 14, 16, 94, 14, 44, 82, 82, 20, 44, 46, 46, 48, 80, 96, 96, 82, 46, 96, 16, 18, 18, 20, 96, 18, 40, 84, 24, 26, 84, 24, 86, 26, 38, 40, 86, 38, 40, 42, 42, 44, 82, 98, 98, 84, 42, 98, 20, 22, 22, 24, 98, 22, 26, 28, 28, 30, 32, 100, 100, 86, 28, 100, 34, 36, 36, 38, 100, 36 ],
  345. "width": 28,
  346. "height": 88
  347. }
  348. },
  349. "youyan": {
  350. "youyan": { "x": 7.87, "y": -1.06, "rotation": -95.09, "width": 31, "height": 24 }
  351. },
  352. "zuiba": {
  353. "zuiba": { "x": 0.25, "y": 0.61, "rotation": -102.23, "width": 11, "height": 4 }
  354. },
  355. "zuoshou": {
  356. "zuoshou": {
  357. "type": "mesh",
  358. "uvs": [ 1, 0.40202, 0.95793, 0.49144, 0.9416, 0.52645, 0.92862, 0.5536, 0.80041, 0.82589, 0.79295, 0.84173, 0.78387, 0.86101, 0.71843, 1, 0, 1, 0, 0.65765, 0.09153, 0.57824, 0.10934, 0.56279, 0.13427, 0.54117, 0.37021, 0.33649, 0.40191, 0.30899, 0.43673, 0.28087, 0.75809, 0, 1, 0, 0.62306, 0.39639, 0.36864, 0.66206, 0.65111, 0.36323, 0.58745, 0.43002, 0.34759, 0.68136, 0.37963, 0.6504 ],
  359. "triangles": [ 22, 11, 19, 10, 11, 22, 22, 19, 6, 22, 8, 9, 22, 9, 10, 7, 22, 6, 8, 22, 7, 21, 14, 18, 13, 14, 21, 3, 18, 2, 21, 18, 3, 23, 13, 21, 12, 13, 23, 19, 12, 23, 11, 12, 19, 4, 21, 3, 23, 21, 4, 5, 23, 4, 19, 23, 5, 6, 19, 5, 20, 15, 16, 20, 16, 17, 18, 15, 20, 14, 15, 18, 20, 17, 0, 1, 20, 0, 2, 20, 1, 18, 20, 2 ],
  360. "vertices": [ 2, 6, 16.3, 10.08, 0.80217, 7, -6.34, 10.63, 0.19783, 3, 6, 21.03, 11.77, 0.48026, 7, -1.49, 11.93, 0.51792, 8, -18.18, 12.46, 0.00182, 3, 6, 22.88, 12.44, 0.34184, 7, 0.41, 12.44, 0.65048, 8, -16.27, 12.92, 0.00768, 3, 6, 24.32, 12.94, 0.24674, 7, 1.88, 12.83, 0.73654, 8, -14.78, 13.27, 0.01672, 2, 7, 16.66, 16.79, 0.45813, 8, 0.1, 16.8, 0.54187, 2, 7, 17.52, 17.02, 0.41592, 8, 0.97, 17, 0.58408, 2, 7, 18.57, 17.3, 0.36647, 8, 2.02, 17.25, 0.63353, 2, 7, 26.11, 19.32, 0.1692, 8, 9.62, 19.05, 0.8308, 1, 8, 21.26, -1.6, 1, 2, 7, 22.5, -10.52, 0.05977, 8, 5.15, -10.68, 0.94023, 2, 7, 17.27, -10.15, 0.32221, 8, -0.06, -10.15, 0.67779, 2, 7, 16.25, -10.07, 0.40489, 8, -1.08, -10.05, 0.59511, 2, 7, 14.83, -9.97, 0.52543, 8, -2.5, -9.9, 0.47457, 3, 6, 25.56, -8.86, 0.3961, 7, 1.35, -9, 0.60291, 8, -15.95, -8.54, 9.9E-4, 3, 6, 23.74, -8.88, 0.57418, 7, -0.47, -8.87, 0.42582, 8, -17.76, -8.36, 0, 2, 6, 21.84, -8.83, 0.75373, 7, -2.36, -8.67, 0.24627, 1, 6, 3.33, -9.07, 1, 1, 6, -1.33, -2.59, 1, 2, 6, 23.32, -0.2, 0.65931, 7, -0.19, -0.18, 0.34069, 2, 7, 16.43, 0.02, 0.96063, 8, -0.61, 0.04, 0.03937, 1, 6, 21.32, -0.49, 1, 2, 6, 25.48, -0.09, 0.00561, 7, 1.97, -0.25, 0.99439, 2, 7, 17.68, -0.04, 0.01546, 8, 0.64, -0.05, 0.98454, 1, 7, 15.71, 0.01, 1 ],
  361. "hull": 18,
  362. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 0, 2, 34, 40, 40, 36, 2, 40, 30, 32, 40, 30, 28, 30, 28, 36, 2, 4, 36, 4, 26, 28, 36, 42, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 18, 20, 20, 22, 16, 44, 44, 38, 20, 44, 10, 12, 12, 14, 44, 12, 6, 8, 8, 10, 38, 46, 46, 42, 8, 46, 22, 24, 24, 26, 46, 24 ],
  363. "width": 33,
  364. "height": 54
  365. }
  366. },
  367. "zuoshoupiaodai": {
  368. "zuoshoupiaodai": {
  369. "type": "mesh",
  370. "uvs": [ 0.99999, 0.1786, 0.9656, 0.23967, 0.93707, 0.29033, 0.90974, 0.34808, 0.8764, 0.41851, 0.84661, 0.48147, 0.82113, 0.5353, 0.78916, 0.60285, 0.75483, 0.6754, 0.72845, 0.73114, 0.69777, 0.79596, 0.65936, 0.87712, 0.62496, 0.9498, 0.6012, 1, 0.28347, 1, 0, 1, 0, 0.93178, 0.04017, 0.86056, 0.0919, 0.76885, 0.12402, 0.7119, 0.15335, 0.65989, 0.19894, 0.57907, 0.24036, 0.50564, 0.27531, 0.44366, 0.30939, 0.38324, 0.34361, 0.32258, 0.37304, 0.2704, 0.40819, 0.20808, 0.44162, 0.1488, 0.52555, 0, 0.8332, 0, 1, 0, 0.31456, 0.94344, 0.35358, 0.87246, 0.40152, 0.78526, 0.46637, 0.66729, 0.54719, 0.52026, 0.60987, 0.40625, 0.67979, 0.27907, 0.74361, 0.16297, 0.43747, 0.71986, 0.50702, 0.59335, 0.57799, 0.46424, 0.64837, 0.33621, 0.71004, 0.22404 ],
  371. "triangles": [ 32, 17, 33, 16, 17, 32, 12, 33, 11, 32, 33, 12, 14, 15, 16, 32, 14, 16, 13, 32, 12, 14, 32, 13, 33, 18, 34, 17, 18, 33, 11, 34, 10, 33, 34, 11, 40, 20, 35, 19, 20, 40, 9, 35, 8, 40, 35, 9, 34, 19, 40, 18, 19, 34, 10, 40, 9, 34, 40, 10, 41, 22, 36, 21, 22, 41, 7, 36, 6, 41, 36, 7, 35, 21, 41, 20, 21, 35, 8, 41, 7, 35, 41, 8, 42, 24, 37, 23, 24, 42, 42, 37, 5, 36, 23, 42, 22, 23, 36, 6, 42, 5, 36, 42, 6, 43, 26, 38, 25, 26, 43, 3, 38, 2, 43, 38, 3, 37, 25, 43, 24, 25, 37, 4, 43, 3, 37, 43, 4, 5, 37, 4, 39, 29, 30, 28, 29, 39, 0, 30, 31, 39, 30, 0, 44, 28, 39, 27, 28, 44, 1, 39, 0, 44, 39, 1, 38, 27, 44, 26, 27, 38, 2, 44, 1, 38, 44, 2 ],
  372. "vertices": [ 2, 43, -0.24, 6.68, 0.99815, 44, -8.9, 6.36, 0.00185, 2, 43, 4.16, 6.64, 0.89307, 44, -4.49, 6.48, 0.10693, 2, 43, 7.82, 6.61, 0.52827, 44, -0.84, 6.58, 0.47173, 2, 43, 11.97, 6.68, 0.09653, 44, 3.3, 6.81, 0.90347, 3, 44, 8.36, 7.09, 0.87395, 45, -0.12, 7.32, 0.11938, 46, -8.52, 7.69, 0.00667, 3, 44, 12.87, 7.34, 0.39931, 45, 4.4, 7.45, 0.45998, 46, -4, 7.63, 0.14071, 4, 44, 16.73, 7.55, 0.11852, 45, 8.26, 7.56, 0.37797, 46, -0.13, 7.57, 0.50341, 47, -10.42, 7.72, 1.0E-4, 4, 44, 21.58, 7.82, 0.01141, 45, 13.11, 7.7, 0.06611, 46, 4.72, 7.5, 0.8653, 47, -5.57, 7.58, 0.05719, 4, 45, 18.32, 7.85, 1.4E-4, 46, 9.93, 7.43, 0.54112, 47, -0.36, 7.44, 0.45118, 48, -8.52, 7.34, 0.00756, 3, 46, 13.93, 7.37, 0.14405, 47, 3.64, 7.33, 0.74256, 48, -4.51, 7.28, 0.11339, 4, 46, 18.59, 7.31, 0.00426, 47, 8.29, 7.2, 0.44728, 48, 0.14, 7.2, 0.53605, 49, -6.89, 6.55, 0.01241, 3, 47, 14.12, 7.03, 0.0291, 48, 5.97, 7.1, 0.58882, 49, -1.08, 7.03, 0.38207, 2, 48, 11.19, 7.01, 0.10358, 49, 4.12, 7.46, 0.89642, 2, 48, 14.8, 6.95, 0.01169, 49, 7.72, 7.76, 0.98831, 1, 49, 9.42, 0.65, 1, 1, 49, 10.93, -5.69, 1, 2, 48, 11.87, -7.4, 0.06586, 49, 6.22, -6.82, 0.93414, 3, 47, 14.72, -7.24, 0.01782, 48, 6.73, -7.17, 0.45214, 49, 1.09, -7.1, 0.53005, 4, 46, 18.6, -6.76, 6.1E-4, 47, 8.11, -6.87, 0.47159, 48, 0.12, -6.87, 0.50432, 49, -5.52, -7.45, 0.02348, 3, 46, 14.49, -6.58, 0.07899, 47, 4.01, -6.64, 0.79612, 48, -3.99, -6.68, 0.12488, 3, 46, 10.74, -6.42, 0.43908, 47, 0.26, -6.43, 0.55222, 48, -7.74, -6.51, 0.0087, 3, 45, 13.9, -5.96, 0.02928, 46, 4.92, -6.17, 0.93878, 47, -5.56, -6.1, 0.03194, 2, 45, 8.6, -5.96, 0.51809, 46, -0.38, -5.95, 0.48191, 2, 45, 4.13, -5.96, 0.95211, 46, -4.85, -5.76, 0.04789, 3, 43, 16.77, -6.5, 0.00125, 44, 8.59, -6.19, 0.13596, 45, -0.23, -5.96, 0.86279, 3, 43, 12.4, -6.46, 0.10287, 44, 4.21, -6.31, 0.57105, 45, -4.61, -5.97, 0.32608, 3, 43, 8.63, -6.42, 0.49666, 44, 0.45, -6.41, 0.43359, 45, -8.38, -5.97, 0.06975, 3, 43, 4.13, -6.37, 0.94347, 44, -4.05, -6.53, 0.05403, 45, -12.88, -5.97, 0.00249, 1, 43, -0.15, -6.33, 1, 1, 43, -10.88, -6.22, 1, 1, 43, -12.09, 0.75, 1, 1, 43, -12.74, 4.53, 1, 1, 49, 5.34, 0.41, 1, 2, 48, 6.59, 0.09, 0.33721, 49, 0.23, 0.11, 0.66279, 2, 47, 8.38, 0.34, 0.24987, 48, 0.31, 0.34, 0.75013, 2, 46, 10.27, 0.78, 0.54678, 47, -0.11, 0.78, 0.45322, 3, 44, 16.98, 1.17, 0.01055, 45, 8.35, 1.17, 0.59653, 46, -0.32, 1.19, 0.39292, 2, 44, 8.77, 0.91, 0.85915, 45, 0.13, 1.13, 0.14085, 2, 43, 8.04, 0.64, 0.71173, 44, -0.4, 0.62, 0.28827, 1, 43, -0.33, 0.68, 1, 2, 46, 14.06, 0.64, 0.00112, 47, 3.67, 0.59, 0.99888, 3, 44, 22.25, 1.33, 1.7E-4, 46, 4.94, 0.98, 0.99913, 47, -5.44, 1.06, 6.9E-4, 3, 44, 12.95, 1.04, 0.06229, 45, 4.31, 1.15, 0.93089, 46, -4.36, 1.34, 0.00681, 1, 44, 3.72, 0.75, 1, 2, 43, 4.07, 0.66, 0.99943, 44, -4.37, 0.5, 5.7E-4 ],
  373. "hull": 32,
  374. "edges": [ 30, 32, 0, 62, 58, 60, 60, 62, 26, 28, 28, 30, 28, 64, 32, 64, 24, 26, 64, 24, 32, 34, 66, 64, 34, 66, 22, 24, 66, 22, 34, 36, 68, 66, 36, 68, 20, 22, 68, 20, 40, 70, 70, 16, 44, 72, 72, 12, 48, 74, 74, 8, 52, 76, 76, 4, 56, 58, 60, 78, 56, 78, 78, 0, 36, 38, 38, 40, 68, 80, 80, 70, 38, 80, 16, 18, 18, 20, 80, 18, 40, 42, 42, 44, 70, 82, 82, 72, 42, 82, 12, 14, 14, 16, 82, 14, 44, 46, 46, 48, 72, 84, 84, 74, 46, 84, 8, 10, 10, 12, 84, 10, 48, 50, 50, 52, 74, 86, 86, 76, 50, 86, 4, 6, 6, 8, 86, 6, 52, 54, 54, 56, 76, 88, 88, 78, 54, 88, 0, 2, 2, 4, 88, 2 ],
  375. "width": 23,
  376. "height": 71
  377. }
  378. },
  379. "zuotui": {
  380. "zuotui": {
  381. "type": "mesh",
  382. "uvs": [ 1, 0.47077, 1, 0.49242, 1, 0.51689, 1, 0.84406, 1, 0.86725, 1, 0.8936, 1, 1, 0, 1, 0, 0.94718, 0, 0.8773, 0.26834, 0.84765, 0.27509, 0.81824, 0.28072, 0.79367, 0.35021, 0.49067, 0.355, 0.46981, 0.35973, 0.44916, 0.46274, 0, 0.82994, 0, 1, 0, 0.61826, 0.88365, 0.62473, 0.85666, 0.63004, 0.83449, 0.71288, 0.48869, 0.70792, 0.50938, 0.71836, 0.4658 ],
  383. "triangles": [ 7, 8, 19, 8, 10, 19, 8, 9, 10, 7, 19, 6, 19, 5, 6, 19, 20, 5, 20, 4, 5, 10, 11, 19, 19, 11, 20, 20, 21, 4, 21, 3, 4, 11, 12, 20, 20, 12, 21, 21, 23, 3, 23, 2, 3, 12, 13, 21, 21, 13, 23, 23, 22, 2, 13, 14, 23, 22, 1, 2, 23, 14, 22, 22, 24, 1, 24, 0, 1, 14, 15, 22, 22, 15, 24, 24, 17, 0, 17, 18, 0, 15, 16, 24, 24, 16, 17 ],
  384. "vertices": [ 2, 83, 22.75, 7.09, 0.70813, 84, -2.23, 7.05, 0.29187, 2, 83, 23.85, 7.19, 0.58163, 84, -1.13, 7.18, 0.41837, 2, 83, 25.09, 7.31, 0.42863, 84, 0.11, 7.32, 0.57137, 2, 84, 16.69, 9.18, 0.97955, 85, -9.99, -2.67, 0.02045, 2, 84, 17.86, 9.32, 0.95894, 85, -9.87, -1.49, 0.04106, 2, 84, 19.2, 9.47, 0.92599, 85, -9.73, -0.15, 0.07401, 2, 84, 24.59, 10.08, 0.79919, 85, -9.16, 5.24, 0.20081, 1, 85, 15.7, 2.65, 1, 1, 85, 15.42, -0.03, 1, 1, 85, 15.05, -3.57, 1, 2, 84, 18.92, -8.97, 0.20865, 85, 8.22, -4.38, 0.79135, 2, 84, 17.41, -8.97, 0.41718, 85, 7.9, -5.85, 0.58282, 2, 84, 16.15, -8.97, 0.55722, 85, 7.63, -7.09, 0.44278, 3, 83, 25.33, -8.98, 0.38265, 84, 0.6, -8.98, 0.61732, 85, 4.3, -22.28, 2.0E-5, 2, 83, 24.25, -8.97, 0.48227, 84, -0.47, -8.98, 0.51773, 2, 83, 23.2, -8.95, 0.58054, 84, -1.53, -8.98, 0.41946, 1, 83, 0.15, -8.6, 1, 1, 83, -0.74, 0.54, 1, 1, 83, -1.15, 4.77, 1, 2, 84, 19.76, -0.07, 0.99713, 85, -0.29, -1.65, 0.00287, 2, 84, 18.38, -0.07, 0.99851, 85, -0.59, -3, 0.00149, 2, 84, 17.24, -0.06, 0.99897, 85, -0.84, -4.11, 0.00103, 2, 83, 24.35, 0.03, 0.94076, 84, -0.52, 0.02, 0.05924, 2, 83, 25.41, 0.01, 0.07856, 84, 0.55, 0.02, 0.92144, 1, 83, 23.17, 0.05, 1 ],
  385. "hull": 19,
  386. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  387. "width": 25,
  388. "height": 51
  389. }
  390. },
  391. "zuowaitao": {
  392. "zuowaitao": {
  393. "type": "mesh",
  394. "uvs": [ 1, 0.16502, 1, 0.22506, 1, 0.26985, 1, 0.33885, 1, 0.38985, 1, 0.44127, 1, 0.4864, 1, 0.54027, 1, 0.58433, 1, 0.6495, 1, 0.70157, 1, 0.7485, 1, 0.79813, 1, 0.85251, 1, 0.89986, 1, 0.95264, 1, 1, 0.50259, 1, 0, 1, 0.00711, 0.95374, 0.01593, 0.89636, 0.02239, 0.85428, 0.03099, 0.79836, 0.05338, 0.75014, 0.07992, 0.69301, 0.10199, 0.64549, 0.12985, 0.5855, 0.1509, 0.54018, 0.17576, 0.48666, 0.19833, 0.43807, 0.22414, 0.38249, 0.24579, 0.33588, 0.27563, 0.27163, 0.29872, 0.22191, 0.32548, 0.1643, 0.40179, 0, 0.59859, 0, 1, 0, 0.58286, 0.1639, 0.57252, 0.27155, 0.56155, 0.38583, 0.55173, 0.48817, 0.54234, 0.58599, 0.53134, 0.70057, 0.52182, 0.79974, 0.5123, 0.89883, 0.53643, 0.6475, 0.52619, 0.7542, 0.51674, 0.85259, 0.50705, 0.9536, 0.54637, 0.54397, 0.55643, 0.43921, 0.56615, 0.33795, 0.57731, 0.22168 ],
  395. "triangles": [ 20, 21, 45, 45, 48, 14, 45, 14, 15, 49, 20, 45, 49, 45, 15, 19, 20, 49, 17, 19, 49, 18, 19, 17, 49, 15, 16, 17, 49, 16, 44, 12, 13, 48, 22, 44, 48, 44, 13, 21, 22, 48, 45, 21, 48, 48, 13, 14, 43, 10, 11, 47, 24, 43, 47, 43, 11, 23, 24, 47, 47, 11, 12, 44, 23, 47, 22, 23, 44, 44, 47, 12, 46, 26, 42, 25, 26, 46, 42, 8, 9, 46, 42, 9, 43, 25, 46, 24, 25, 43, 46, 9, 10, 43, 46, 10, 41, 6, 7, 50, 28, 41, 50, 41, 7, 27, 28, 50, 50, 7, 8, 42, 27, 50, 26, 27, 42, 42, 50, 8, 51, 30, 40, 29, 30, 51, 40, 4, 5, 51, 40, 5, 51, 5, 6, 41, 29, 51, 41, 51, 6, 28, 29, 41, 52, 32, 39, 31, 32, 52, 52, 39, 3, 40, 31, 52, 30, 31, 40, 52, 3, 4, 40, 52, 4, 53, 34, 38, 33, 34, 53, 38, 0, 1, 53, 38, 1, 53, 1, 2, 39, 33, 53, 39, 53, 2, 32, 33, 39, 39, 2, 3, 38, 35, 36, 34, 35, 38, 36, 37, 0, 38, 36, 0 ],
  396. "vertices": [ 3, 19, 8.56, 10.94, 0.53447, 20, -0.73, 10.97, 0.4436, 21, -10.53, 10.61, 0.02193, 4, 19, 13.76, 11.48, 0.17422, 20, 4.48, 11.32, 0.66313, 21, -5.33, 11.15, 0.15865, 22, -14.78, 11.81, 0.004, 5, 19, 17.63, 11.89, 0.04447, 20, 8.37, 11.59, 0.55329, 21, -1.46, 11.54, 0.37032, 22, -10.89, 12.04, 0.03186, 23, -18.6, 13.63, 6.0E-5, 5, 19, 23.6, 12.52, 3.6E-4, 20, 14.36, 11.99, 0.20728, 21, 4.52, 12.16, 0.58256, 22, -4.9, 12.39, 0.1938, 23, -12.6, 13.48, 0.01601, 5, 20, 18.78, 12.29, 0.06101, 21, 8.93, 12.61, 0.45538, 22, -0.47, 12.64, 0.40447, 23, -8.17, 13.37, 0.07766, 24, -16.62, 13.28, 0.00148, 5, 20, 23.24, 12.59, 0.00943, 21, 13.38, 13.07, 0.22568, 22, 4, 12.9, 0.51834, 23, -3.69, 13.25, 0.22491, 24, -12.14, 13.19, 0.02164, 6, 20, 27.16, 12.86, 3.3E-4, 21, 17.29, 13.47, 0.08627, 22, 7.92, 13.13, 0.42885, 23, 0.23, 13.15, 0.39927, 24, -8.22, 13.11, 0.08521, 25, -19.02, 12.17, 8.0E-5, 6, 21, 21.95, 13.94, 0.01619, 22, 12.6, 13.4, 0.21809, 23, 4.92, 13.04, 0.49866, 24, -3.53, 13.02, 0.25869, 25, -14.33, 12.31, 0.00836, 26, -21.8, 13.88, 1.0E-5, 6, 21, 25.76, 14.34, 0.00139, 22, 16.42, 13.62, 0.08932, 23, 8.75, 12.94, 0.40611, 24, 0.3, 12.94, 0.45731, 25, -10.5, 12.43, 0.0431, 26, -17.97, 13.73, 0.00278, 5, 22, 22.08, 13.95, 0.01168, 23, 14.42, 12.8, 0.16015, 24, 5.97, 12.83, 0.59367, 25, -4.83, 12.6, 0.19995, 26, -12.31, 13.5, 0.03454, 6, 22, 26.61, 14.21, 3.6E-4, 23, 18.95, 12.68, 0.04584, 24, 10.5, 12.74, 0.43596, 25, -0.3, 12.74, 0.39806, 26, -7.78, 13.32, 0.11905, 27, -15.99, 12.76, 7.2E-4, 5, 23, 23.03, 12.58, 0.00834, 24, 14.58, 12.65, 0.22328, 25, 3.78, 12.86, 0.48731, 26, -3.7, 13.15, 0.26409, 27, -11.91, 12.74, 0.01698, 5, 23, 27.34, 12.47, 1.5E-4, 24, 18.9, 12.57, 0.07317, 25, 8.09, 12.99, 0.39103, 26, 0.61, 12.98, 0.44156, 27, -7.59, 12.72, 0.09409, 4, 24, 23.63, 12.47, 0.01071, 25, 12.82, 13.13, 0.18866, 26, 5.34, 12.79, 0.49058, 27, -2.86, 12.7, 0.31004, 4, 24, 27.75, 12.39, 2.8E-4, 25, 16.94, 13.26, 0.0673, 26, 9.46, 12.62, 0.3409, 27, 1.26, 12.68, 0.59152, 3, 25, 21.53, 13.4, 0.01058, 26, 14.04, 12.44, 0.14133, 27, 5.85, 12.65, 0.8481, 2, 26, 18.16, 12.27, 0.07399, 27, 9.97, 12.63, 0.92601, 1, 27, 9.91, 0.2, 1, 2, 26, 17.15, -12.71, 0.09584, 27, 9.85, -12.37, 0.90416, 3, 25, 22.38, -11.41, 0.0025, 26, 13.14, -12.37, 0.16168, 27, 5.83, -12.17, 0.83582, 3, 25, 17.38, -11.34, 0.04445, 26, 8.16, -11.95, 0.39741, 27, 0.84, -11.92, 0.55813, 4, 24, 23.29, -11.97, 0.00162, 25, 13.72, -11.29, 0.15191, 26, 4.51, -11.64, 0.54687, 27, -2.82, -11.74, 0.2996, 4, 24, 18.43, -11.65, 0.03692, 25, 8.85, -11.22, 0.42027, 26, -0.34, -11.23, 0.46661, 27, -7.69, -11.51, 0.07621, 4, 24, 14.25, -11.01, 0.1598, 25, 4.64, -10.79, 0.60356, 26, -4.51, -10.5, 0.22615, 27, -11.88, -10.92, 0.0105, 4, 23, 17.62, -10.29, 0.01601, 24, 9.29, -10.25, 0.47469, 25, -0.35, -10.28, 0.46727, 26, -9.45, -9.63, 0.04204, 4, 23, 13.5, -9.64, 0.1114, 24, 5.17, -9.61, 0.68228, 25, -4.5, -9.85, 0.20321, 26, -13.56, -8.92, 0.0031, 4, 22, 17.78, -8.09, 0.00666, 23, 8.3, -8.81, 0.47129, 24, -0.04, -8.81, 0.49316, 25, -9.74, -9.31, 0.02889, 4, 22, 13.82, -7.79, 0.09134, 23, 4.37, -8.18, 0.73284, 24, -3.97, -8.2, 0.17438, 25, -13.7, -8.91, 0.00143, 4, 21, 19.41, -7.03, 7.0E-5, 22, 9.13, -7.44, 0.4729, 23, -0.27, -7.45, 0.51365, 24, -8.61, -7.49, 0.01339, 3, 21, 15.15, -6.9, 0.0531, 22, 4.88, -7.12, 0.82077, 23, -4.48, -6.78, 0.12613, 3, 21, 10.27, -6.75, 0.44607, 22, 0.01, -6.76, 0.55192, 23, -9.29, -6.01, 0.00201, 3, 20, 15.37, -6.84, 0.02805, 21, 6.18, -6.63, 0.84488, 22, -4.07, -6.45, 0.12707, 2, 20, 9.74, -6.47, 0.46658, 21, 0.55, -6.46, 0.53342, 3, 19, 15.32, -5.98, 0.01425, 20, 5.39, -6.19, 0.89822, 21, -3.82, -6.32, 0.08752, 2, 19, 10.26, -5.84, 0.41983, 20, 0.34, -5.86, 0.58017, 1, 19, -4.15, -5.44, 1, 1, 19, -4.67, -0.55, 1, 1, 19, -5.72, 9.43, 1, 2, 19, 9.56, 0.56, 0.59092, 20, -0.13, 0.56, 0.40908, 2, 20, 9.23, 0.93, 0.60193, 21, -0.22, 0.93, 0.39807, 4, 20, 19.17, 1.33, 3.9E-4, 21, 9.7, 1.67, 0.57008, 22, -0.18, 1.68, 0.42874, 23, -8.79, 2.42, 7.9E-4, 4, 21, 18.58, 2.33, 9.0E-5, 22, 8.72, 1.95, 0.48392, 23, 0.1, 1.95, 0.51569, 24, -8.29, 1.91, 3.0E-4, 3, 22, 17.23, 2.21, 0.00109, 23, 8.6, 1.5, 0.42397, 24, 0.21, 1.5, 0.57493, 3, 24, 10.18, 1.02, 0.50027, 25, -0.04, 1.02, 0.4964, 26, -8.34, 1.62, 0.00333, 2, 25, 8.59, 1.05, 0.36893, 26, 0.27, 1.03, 0.63107, 3, 25, 17.22, 1.07, 1.7E-4, 26, 8.88, 0.44, 0.00377, 27, 1.11, 0.48, 0.99606, 3, 23, 13.95, 1.22, 0.00275, 24, 5.56, 1.24, 0.99684, 26, -12.95, 1.93, 4.1E-4, 2, 25, 4.63, 1.04, 0.97571, 26, -3.68, 1.3, 0.02429, 2, 25, 13.19, 1.06, 0.00221, 26, 4.86, 0.72, 0.99779, 1, 27, 5.88, 0.33, 1, 3, 22, 13.57, 2.1, 0.00783, 23, 4.95, 1.69, 0.98232, 24, -3.44, 1.67, 0.00985, 3, 21, 14.33, 2.02, 0.01089, 22, 4.46, 1.82, 0.97764, 23, -4.15, 2.17, 0.01147, 3, 20, 15.01, 1.17, 0.00535, 21, 5.54, 1.36, 0.99307, 22, -4.35, 1.55, 0.00159, 2, 19, 14.57, 0.94, 2.7E-4, 20, 4.9, 0.76, 0.99973 ],
  397. "hull": 38,
  398. "edges": [ 70, 72, 72, 74, 32, 34, 34, 36, 68, 70, 76, 72, 68, 76, 0, 74, 76, 0, 64, 78, 78, 4, 60, 80, 80, 8, 56, 82, 82, 12, 52, 84, 84, 16, 48, 86, 86, 20, 44, 88, 88, 24, 40, 90, 90, 28, 48, 50, 50, 52, 84, 92, 92, 86, 50, 92, 16, 18, 18, 20, 92, 18, 44, 46, 46, 48, 86, 94, 94, 88, 46, 94, 20, 22, 22, 24, 94, 22, 40, 42, 42, 44, 88, 96, 96, 90, 42, 96, 24, 26, 26, 28, 96, 26, 36, 38, 38, 40, 34, 98, 98, 90, 38, 98, 28, 30, 30, 32, 98, 30, 52, 54, 54, 56, 82, 100, 100, 84, 54, 100, 12, 14, 14, 16, 100, 14, 56, 58, 58, 60, 80, 102, 102, 82, 58, 102, 8, 10, 10, 12, 102, 10, 60, 62, 62, 64, 78, 104, 104, 80, 62, 104, 4, 6, 6, 8, 104, 6, 64, 66, 66, 68, 76, 106, 106, 78, 66, 106, 0, 2, 2, 4, 106, 2 ],
  399. "width": 25,
  400. "height": 87
  401. }
  402. },
  403. "zuoyan": {
  404. "zuoyan": { "x": 7.73, "y": 1.1, "rotation": -96.92, "width": 24, "height": 21 }
  405. }
  406. }
  407. },
  408. "animations": {
  409. "stand1": {
  410. "slots": {
  411. "biyan": {
  412. "attachment": [
  413. { "time": 0.0667, "name": "biyan" },
  414. { "time": 0.1333, "name": null },
  415. { "time": 1.7333, "name": "biyan" },
  416. { "time": 1.8, "name": null },
  417. { "time": 3.1667, "name": "biyan" },
  418. { "time": 3.2333, "name": null }
  419. ]
  420. },
  421. "jian": {
  422. "attachment": [
  423. { "time": 0.8667, "name": "jian" }
  424. ]
  425. },
  426. "jian2": {
  427. "attachment": [
  428. { "time": 0, "name": null }
  429. ]
  430. },
  431. "teshuyoushou1": {
  432. "attachment": [
  433. { "time": 0, "name": null },
  434. { "time": 0.1333, "name": null },
  435. { "time": 0.7, "name": "teshuyoushou1" },
  436. { "time": 0.8667, "name": "teshuyoushou1" }
  437. ]
  438. },
  439. "teshuyoushou2": {
  440. "attachment": [
  441. { "time": 0, "name": null },
  442. { "time": 0.1333, "name": null },
  443. { "time": 0.7, "name": "teshuyoushou2" },
  444. { "time": 0.8667, "name": "teshuyoushou2" }
  445. ]
  446. },
  447. "teshuyoutui": {
  448. "attachment": [
  449. { "time": 0, "name": "teshuyoutui" },
  450. { "time": 0.1333, "name": "teshuyoutui" }
  451. ]
  452. },
  453. "teshuzuoshou": {
  454. "attachment": [
  455. { "time": 0, "name": null }
  456. ]
  457. },
  458. "teshuzuotui": {
  459. "attachment": [
  460. { "time": 0, "name": "teshuzuotui" },
  461. { "time": 0.1333, "name": "teshuzuotui" },
  462. { "time": 0.2333, "name": "teshuzuotui" },
  463. { "time": 0.3, "name": "teshuzuotui" },
  464. { "time": 0.4, "name": "teshuzuotui" },
  465. { "time": 0.6333, "name": "teshuzuotui" }
  466. ]
  467. },
  468. "xiaozui": {
  469. "attachment": [
  470. { "time": 0, "name": "xiaozui" },
  471. { "time": 0.1333, "name": null },
  472. { "time": 0.7, "name": "xiaozui" }
  473. ]
  474. },
  475. "youshou": {
  476. "attachment": [
  477. { "time": 0.7, "name": null },
  478. { "time": 0.8667, "name": null }
  479. ]
  480. },
  481. "youtui": {
  482. "attachment": [
  483. { "time": 0, "name": null },
  484. { "time": 0.1667, "name": null }
  485. ]
  486. },
  487. "youyan": {
  488. "attachment": [
  489. { "time": 0.0667, "name": null },
  490. { "time": 0.1333, "name": "youyan" },
  491. { "time": 1.7333, "name": null },
  492. { "time": 1.8, "name": "youyan" },
  493. { "time": 3.1667, "name": null },
  494. { "time": 3.2333, "name": "youyan" }
  495. ]
  496. },
  497. "zuiba": {
  498. "attachment": [
  499. { "time": 0.7, "name": null }
  500. ]
  501. },
  502. "zuoshou": {
  503. "attachment": [
  504. { "time": 0.8667, "name": "zuoshou" },
  505. { "time": 4.1, "name": "zuoshou" }
  506. ]
  507. },
  508. "zuotui": {
  509. "attachment": [
  510. { "time": 0, "name": null },
  511. { "time": 0.1667, "name": null }
  512. ]
  513. },
  514. "zuoyan": {
  515. "attachment": [
  516. { "time": 0.0667, "name": null },
  517. { "time": 0.1333, "name": "zuoyan" },
  518. { "time": 1.7333, "name": null },
  519. { "time": 1.8, "name": "zuoyan" },
  520. { "time": 3.1667, "name": null },
  521. { "time": 3.2333, "name": "zuoyan" }
  522. ]
  523. }
  524. },
  525. "bones": {
  526. "bone93": {
  527. "rotate": [
  528. { "time": 0, "angle": 0, "curve": "stepped" },
  529. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  530. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  531. { "time": 0.3, "angle": 0, "curve": "stepped" },
  532. { "time": 0.4, "angle": 0, "curve": "stepped" },
  533. { "time": 0.6333, "angle": 0 },
  534. { "time": 0.7, "angle": -61.8 },
  535. { "time": 0.8667, "angle": -8.17 },
  536. { "time": 1.2333, "angle": -10.56, "curve": "stepped" },
  537. { "time": 1.6333, "angle": -10.56, "curve": "stepped" },
  538. { "time": 2, "angle": -10.56, "curve": "stepped" },
  539. { "time": 3, "angle": -10.56, "curve": "stepped" },
  540. { "time": 3.4, "angle": -10.56, "curve": "stepped" },
  541. { "time": 3.7667, "angle": -10.56, "curve": "stepped" },
  542. { "time": 4.1, "angle": -10.56 }
  543. ],
  544. "translate": [
  545. { "time": 0, "x": 2.8, "y": 75.7, "curve": "stepped" },
  546. { "time": 0.1333, "x": 2.8, "y": 75.7, "curve": "stepped" },
  547. { "time": 0.2333, "x": 2.8, "y": 75.7, "curve": "stepped" },
  548. { "time": 0.3, "x": 2.8, "y": 75.7, "curve": "stepped" },
  549. { "time": 0.4, "x": 2.8, "y": 75.7 },
  550. { "time": 0.6333, "x": 1.57, "y": 75.09 },
  551. { "time": 0.7, "x": 1.35, "y": 76.72 },
  552. { "time": 0.8667, "x": 2.8, "y": 75.7, "curve": "stepped" },
  553. { "time": 1.2333, "x": 2.8, "y": 75.7, "curve": "stepped" },
  554. { "time": 1.6333, "x": 2.8, "y": 75.7, "curve": "stepped" },
  555. { "time": 2, "x": 2.8, "y": 75.7, "curve": "stepped" },
  556. { "time": 3, "x": 2.8, "y": 75.7, "curve": "stepped" },
  557. { "time": 3.4, "x": 2.8, "y": 75.7, "curve": "stepped" },
  558. { "time": 3.7667, "x": 2.8, "y": 75.7, "curve": "stepped" },
  559. { "time": 4.1, "x": 2.8, "y": 75.7 }
  560. ],
  561. "scale": [
  562. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  565. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  568. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  569. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  570. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  571. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  572. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  573. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  574. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  575. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  576. { "time": 4.1, "x": 1, "y": 1 }
  577. ]
  578. },
  579. "bone90": {
  580. "rotate": [
  581. { "time": 0, "angle": 0 }
  582. ],
  583. "translate": [
  584. { "time": 0, "x": -14.24, "y": -243.32 }
  585. ],
  586. "scale": [
  587. { "time": 0, "x": 1, "y": 1 }
  588. ]
  589. },
  590. "bone96": {
  591. "rotate": [
  592. { "time": 0, "angle": 0, "curve": "stepped" },
  593. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  594. { "time": 2.3, "angle": 0, "curve": "stepped" },
  595. { "time": 3, "angle": 0, "curve": "stepped" },
  596. { "time": 4.1, "angle": 0 }
  597. ],
  598. "translate": [
  599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  600. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  601. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 4.1, "x": 0, "y": 0 }
  604. ],
  605. "scale": [
  606. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  607. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  608. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 4.1, "x": 1, "y": 1 }
  611. ]
  612. },
  613. "bone94": {
  614. "rotate": [
  615. { "time": 0, "angle": 0, "curve": "stepped" },
  616. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  617. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  618. { "time": 0.3, "angle": 0, "curve": "stepped" },
  619. { "time": 0.4, "angle": 0, "curve": "stepped" },
  620. { "time": 0.6333, "angle": 0 },
  621. { "time": 0.7, "angle": -263.16 },
  622. { "time": 0.8667, "angle": 0 },
  623. { "time": 4.1, "angle": -4.6 }
  624. ],
  625. "translate": [
  626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  627. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  628. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  630. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  631. { "time": 0.6333, "x": 0, "y": 0 },
  632. { "time": 0.7, "x": -4.26, "y": 2.06 },
  633. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  634. { "time": 4.1, "x": 0, "y": 0 }
  635. ],
  636. "scale": [
  637. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  640. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  641. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  642. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  643. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  644. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  645. { "time": 4.1, "x": 1, "y": 1 }
  646. ]
  647. },
  648. "root": {
  649. "rotate": [
  650. { "time": 0, "angle": 0 }
  651. ],
  652. "translate": [
  653. { "time": 0, "x": 0, "y": 0 }
  654. ],
  655. "scale": [
  656. { "time": 0, "x": 0.65, "y": 0.65 }
  657. ]
  658. },
  659. "bone": {
  660. "rotate": [
  661. { "time": 0, "angle": 0, "curve": "stepped" },
  662. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  663. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  664. { "time": 0.3, "angle": 0, "curve": "stepped" },
  665. { "time": 0.4, "angle": 0, "curve": "stepped" },
  666. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  667. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  668. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  669. { "time": 4.1, "angle": 0 }
  670. ],
  671. "translate": [
  672. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  673. { "time": 0.1333, "x": 0, "y": 0 },
  674. { "time": 0.2333, "x": 4.87, "y": -1.56, "curve": "stepped" },
  675. { "time": 0.3, "x": 4.87, "y": -1.56 },
  676. { "time": 0.4, "x": -4.64, "y": -4.5 },
  677. { "time": 0.6333, "x": -4.07, "y": -5.6 },
  678. { "time": 0.8667, "x": 14.44, "y": -1.56 },
  679. { "time": 1.2333, "x": 15.21, "y": -1.56 },
  680. { "time": 4.1, "x": 17.42, "y": -1.56 }
  681. ],
  682. "scale": [
  683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  684. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  685. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 4.1, "x": 1, "y": 1 }
  692. ]
  693. },
  694. "bone2": {
  695. "rotate": [
  696. { "time": 0, "angle": 0, "curve": "stepped" },
  697. { "time": 0.1333, "angle": 0 },
  698. { "time": 0.2333, "angle": -2.03 },
  699. { "time": 0.3, "angle": -6.37 },
  700. { "time": 0.4, "angle": 7.44 },
  701. { "time": 0.6333, "angle": 8.04 },
  702. { "time": 0.8667, "angle": -3.81 },
  703. { "time": 1.2333, "angle": -5.42 },
  704. { "time": 1.6333, "angle": -5.72 },
  705. { "time": 2, "angle": -5.42, "curve": "stepped" },
  706. { "time": 2.3, "angle": -5.42 }
  707. ],
  708. "translate": [
  709. { "time": 0, "x": 0, "y": 0 },
  710. { "time": 0.1333, "x": 0.02, "y": -1.57 },
  711. { "time": 0.2333, "x": 1.05, "y": -0.02 },
  712. { "time": 0.3, "x": 1.84, "y": -0.1 },
  713. { "time": 0.4, "x": -3.68, "y": -5.96 },
  714. { "time": 0.6333, "x": -3.56, "y": -6.72 },
  715. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 2.3, "x": 0, "y": 0 }
  718. ],
  719. "scale": [
  720. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  722. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  726. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  727. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  728. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  729. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  730. { "time": 2.3, "x": 1, "y": 1 }
  731. ]
  732. },
  733. "bone3": {
  734. "rotate": [
  735. { "time": 0, "angle": 0, "curve": "stepped" },
  736. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  737. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  738. { "time": 0.3, "angle": 0, "curve": "stepped" },
  739. { "time": 0.4, "angle": 0, "curve": "stepped" },
  740. { "time": 0.6333, "angle": 0 },
  741. { "time": 0.8667, "angle": 5.86 },
  742. { "time": 1.2333, "angle": 5.47 },
  743. { "time": 4.1, "angle": 4.33 }
  744. ],
  745. "translate": [
  746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  750. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  751. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  753. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  754. { "time": 4.1, "x": 0, "y": 0 }
  755. ],
  756. "scale": [
  757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  763. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  764. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  765. { "time": 4.1, "x": 1, "y": 1 }
  766. ]
  767. },
  768. "bone4": {
  769. "rotate": [
  770. { "time": 0, "angle": 0, "curve": "stepped" },
  771. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  772. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  773. { "time": 0.3, "angle": 0, "curve": "stepped" },
  774. { "time": 0.4, "angle": 0, "curve": "stepped" },
  775. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  776. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  777. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  778. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  779. { "time": 2, "angle": 0, "curve": "stepped" },
  780. { "time": 2.3, "angle": 0, "curve": "stepped" },
  781. { "time": 3, "angle": 0, "curve": "stepped" },
  782. { "time": 3.4, "angle": 0, "curve": "stepped" },
  783. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  784. { "time": 4.1, "angle": 0 }
  785. ],
  786. "translate": [
  787. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  791. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  792. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  793. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  795. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  796. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  797. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  800. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  801. { "time": 4.1, "x": 0, "y": 0 }
  802. ],
  803. "scale": [
  804. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  808. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  809. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  810. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  811. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  812. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  813. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  814. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  815. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  816. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  817. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  818. { "time": 4.1, "x": 1, "y": 1 }
  819. ]
  820. },
  821. "bone5": {
  822. "rotate": [
  823. { "time": 0, "angle": 0, "curve": "stepped" },
  824. { "time": 0.1333, "angle": 0 },
  825. { "time": 0.2333, "angle": -3.85, "curve": "stepped" },
  826. { "time": 0.3, "angle": -3.85 },
  827. { "time": 0.4, "angle": -4.22, "curve": "stepped" },
  828. { "time": 0.6333, "angle": -4.22 },
  829. { "time": 0.8667, "angle": -2.95 },
  830. { "time": 1.2333, "angle": -2.64 },
  831. { "time": 4.1, "angle": -1.73 }
  832. ],
  833. "translate": [
  834. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  838. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  839. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  840. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  841. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  842. { "time": 4.1, "x": 0, "y": 0 }
  843. ],
  844. "scale": [
  845. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  846. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  848. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  849. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  851. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  852. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 4.1, "x": 1, "y": 1 }
  854. ]
  855. },
  856. "bone6": {
  857. "rotate": [
  858. { "time": 0, "angle": 0 },
  859. { "time": 0.1333, "angle": 5.73 },
  860. { "time": 0.2333, "angle": -117.8 },
  861. { "time": 0.3, "angle": -126.18 },
  862. { "time": 0.4, "angle": -8.89 },
  863. { "time": 0.6333, "angle": -13.86 },
  864. { "time": 0.7333, "angle": -21.09 },
  865. { "time": 0.8667, "angle": -43.61 },
  866. { "time": 1.2333, "angle": -43.97 },
  867. { "time": 4.1, "angle": -45 }
  868. ],
  869. "translate": [
  870. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  873. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  874. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  875. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  876. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  877. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 4.1, "x": 0, "y": 0 }
  879. ],
  880. "scale": [
  881. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  882. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 4.1, "x": 1, "y": 1 }
  890. ]
  891. },
  892. "bone7": {
  893. "rotate": [
  894. { "time": 0, "angle": 0, "curve": "stepped" },
  895. { "time": 0.1333, "angle": 0 },
  896. { "time": 0.2333, "angle": -46.17, "curve": "stepped" },
  897. { "time": 0.3, "angle": -46.17 },
  898. { "time": 0.4, "angle": -25.82 },
  899. { "time": 0.6333, "angle": -19.84 },
  900. { "time": 0.8667, "angle": -9.93 },
  901. { "time": 1.0333, "angle": -9.69, "curve": "stepped" },
  902. { "time": 1.2333, "angle": -9.69, "curve": "stepped" },
  903. { "time": 1.6333, "angle": -9.69, "curve": "stepped" },
  904. { "time": 2, "angle": -9.69, "curve": "stepped" },
  905. { "time": 3, "angle": -9.69, "curve": "stepped" },
  906. { "time": 3.4, "angle": -9.69, "curve": "stepped" },
  907. { "time": 3.7667, "angle": -9.69, "curve": "stepped" },
  908. { "time": 4.1, "angle": -9.69 }
  909. ],
  910. "translate": [
  911. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  914. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  915. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  916. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  917. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  918. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  919. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  920. { "time": 4.1, "x": 0, "y": 0 }
  921. ],
  922. "scale": [
  923. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  929. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  930. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  931. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  932. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  933. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  934. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  935. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 4.1, "x": 1, "y": 1 }
  937. ]
  938. },
  939. "bone8": {
  940. "rotate": [
  941. { "time": 0, "angle": 0, "curve": "stepped" },
  942. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  943. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  944. { "time": 0.3, "angle": 0, "curve": "stepped" },
  945. { "time": 0.4, "angle": 0 },
  946. { "time": 0.6333, "angle": -0.42 },
  947. { "time": 0.7333, "angle": 12.06 },
  948. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  949. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  950. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  951. { "time": 2, "angle": 0, "curve": "stepped" },
  952. { "time": 3, "angle": 0, "curve": "stepped" },
  953. { "time": 3.4, "angle": 0, "curve": "stepped" },
  954. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  955. { "time": 4.1, "angle": 0 }
  956. ],
  957. "translate": [
  958. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  971. { "time": 4.1, "x": 0, "y": 0 }
  972. ],
  973. "scale": [
  974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  987. { "time": 4.1, "x": 1, "y": 1 }
  988. ]
  989. },
  990. "bone9": {
  991. "rotate": [
  992. { "time": 0, "angle": 0 },
  993. { "time": 0.1333, "angle": -1.87 },
  994. { "time": 0.2333, "angle": 337.79 },
  995. { "time": 0.3, "angle": 330.25 },
  996. { "time": 0.4, "angle": 24.37 },
  997. { "time": 0.6333, "angle": 39.85 },
  998. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  999. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1000. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1001. { "time": 2, "angle": 0, "curve": "stepped" },
  1002. { "time": 2.3, "angle": 0, "curve": "stepped" },
  1003. { "time": 3, "angle": 0, "curve": "stepped" },
  1004. { "time": 3.4, "angle": 0, "curve": "stepped" },
  1005. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  1006. { "time": 4.1, "angle": 0 }
  1007. ],
  1008. "translate": [
  1009. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.3, "x": 0, "y": 0 },
  1013. { "time": 0.4, "x": -0.57, "y": 1.56 },
  1014. { "time": 0.6333, "x": -1.68, "y": 2.78 },
  1015. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 4.1, "x": 0, "y": 0 }
  1024. ],
  1025. "scale": [
  1026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1027. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1028. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1029. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1030. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1031. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1032. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 4.1, "x": 1, "y": 1 }
  1041. ]
  1042. },
  1043. "bone10": {
  1044. "rotate": [
  1045. { "time": 0, "angle": 0, "curve": "stepped" },
  1046. { "time": 0.1333, "angle": 0 },
  1047. { "time": 0.2333, "angle": -39.73 },
  1048. { "time": 0.3, "angle": -46.83 },
  1049. { "time": 0.4, "angle": -41.47 },
  1050. { "time": 0.6333, "angle": -47.75 },
  1051. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1052. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1053. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1054. { "time": 2, "angle": 0, "curve": "stepped" },
  1055. { "time": 2.3, "angle": 0, "curve": "stepped" },
  1056. { "time": 3, "angle": 0, "curve": "stepped" },
  1057. { "time": 3.4, "angle": 0, "curve": "stepped" },
  1058. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  1059. { "time": 4.1, "angle": 0 }
  1060. ],
  1061. "translate": [
  1062. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1065. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1066. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1067. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 4.1, "x": 0, "y": 0 }
  1077. ],
  1078. "scale": [
  1079. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 4.1, "x": 1, "y": 1 }
  1094. ]
  1095. },
  1096. "bone11": {
  1097. "rotate": [
  1098. { "time": 0, "angle": 0, "curve": "stepped" },
  1099. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1100. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1101. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1102. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1103. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  1104. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1105. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  1106. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1107. { "time": 2, "angle": 0, "curve": "stepped" },
  1108. { "time": 2.3, "angle": 0, "curve": "stepped" },
  1109. { "time": 3, "angle": 0, "curve": "stepped" },
  1110. { "time": 3.4, "angle": 0, "curve": "stepped" },
  1111. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  1112. { "time": 4.1, "angle": 0 }
  1113. ],
  1114. "translate": [
  1115. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  1128. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  1129. { "time": 4.1, "x": 0, "y": 0 }
  1130. ],
  1131. "scale": [
  1132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1141. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1142. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1143. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  1145. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  1146. { "time": 4.1, "x": 1, "y": 1 }
  1147. ]
  1148. },
  1149. "bone12": {
  1150. "rotate": [
  1151. { "time": 0, "angle": 0, "curve": "stepped" },
  1152. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1153. { "time": 0.2333, "angle": 0 },
  1154. { "time": 0.3, "angle": -13.33 },
  1155. { "time": 0.4, "angle": -7.28, "curve": "stepped" },
  1156. { "time": 0.6333, "angle": -7.28 },
  1157. { "time": 0.8667, "angle": -6.74 },
  1158. { "time": 1.2333, "angle": -15.88 },
  1159. { "time": 1.6333, "angle": -6.74 },
  1160. { "time": 2.3, "angle": -15.88 },
  1161. { "time": 2.7, "angle": -6.74 },
  1162. { "time": 3.3667, "angle": -15.88 },
  1163. { "time": 4.1, "angle": -6.74 }
  1164. ],
  1165. "translate": [
  1166. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1167. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1168. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1169. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1177. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 4.1, "x": 0, "y": 0 }
  1179. ],
  1180. "scale": [
  1181. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1182. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1187. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1188. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1189. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1190. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1191. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  1192. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1193. { "time": 4.1, "x": 1, "y": 1 }
  1194. ]
  1195. },
  1196. "bone13": {
  1197. "rotate": [
  1198. { "time": 0, "angle": 0, "curve": "stepped" },
  1199. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1200. { "time": 0.2333, "angle": 0 },
  1201. { "time": 0.3, "angle": 11.44 },
  1202. { "time": 0.4, "angle": -5.26 },
  1203. { "time": 0.6333, "angle": -7.28 },
  1204. { "time": 0.8667, "angle": 8.33, "curve": "stepped" },
  1205. { "time": 1.2333, "angle": 8.33, "curve": "stepped" },
  1206. { "time": 1.6333, "angle": 8.33, "curve": "stepped" },
  1207. { "time": 2, "angle": 8.33, "curve": "stepped" },
  1208. { "time": 2.3, "angle": 8.33, "curve": "stepped" },
  1209. { "time": 2.7, "angle": 8.33, "curve": "stepped" },
  1210. { "time": 3.0667, "angle": 8.33, "curve": "stepped" },
  1211. { "time": 3.3667, "angle": 8.33, "curve": "stepped" },
  1212. { "time": 4.1, "angle": 8.33 }
  1213. ],
  1214. "translate": [
  1215. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1216. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1217. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1218. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1226. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1227. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1228. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1229. { "time": 4.1, "x": 0, "y": 0 }
  1230. ],
  1231. "scale": [
  1232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1233. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1234. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1235. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1236. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1237. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1238. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1239. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1240. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1241. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1242. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1243. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  1244. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1245. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1246. { "time": 4.1, "x": 1, "y": 1 }
  1247. ]
  1248. },
  1249. "bone14": {
  1250. "rotate": [
  1251. { "time": 0, "angle": 0, "curve": "stepped" },
  1252. { "time": 0.1333, "angle": 0 },
  1253. { "time": 0.2333, "angle": 3.44 },
  1254. { "time": 0.3, "angle": 1.29 },
  1255. { "time": 0.4, "angle": -6.79 },
  1256. { "time": 0.6333, "angle": -7.28 },
  1257. { "time": 0.8667, "angle": -22.28 },
  1258. { "time": 1.2333, "angle": -2.99 },
  1259. { "time": 1.7333, "angle": 1.39 },
  1260. { "time": 2.3, "angle": -2.99 },
  1261. { "time": 2.8, "angle": 1.39 },
  1262. { "time": 3.3667, "angle": -2.99 },
  1263. { "time": 4.1, "angle": 1.39 }
  1264. ],
  1265. "translate": [
  1266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1276. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1277. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1278. { "time": 4.1, "x": 0, "y": 0 }
  1279. ],
  1280. "scale": [
  1281. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1285. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 4.1, "x": 1, "y": 1 }
  1294. ]
  1295. },
  1296. "bone15": {
  1297. "rotate": [
  1298. { "time": 0, "angle": 0, "curve": "stepped" },
  1299. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1300. { "time": 0.2333, "angle": 0 },
  1301. { "time": 0.3, "angle": 1.29 },
  1302. { "time": 0.4, "angle": -7.28, "curve": "stepped" },
  1303. { "time": 0.6333, "angle": -7.28 },
  1304. { "time": 0.8667, "angle": -6.74 },
  1305. { "time": 1.2333, "angle": -2.99 },
  1306. { "time": 1.7333, "angle": 1.39 },
  1307. { "time": 2.3, "angle": -2.99 },
  1308. { "time": 2.8, "angle": 1.39 },
  1309. { "time": 3.3667, "angle": -2.99 },
  1310. { "time": 4.1, "angle": 1.39 }
  1311. ],
  1312. "translate": [
  1313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1323. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1324. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 4.1, "x": 0, "y": 0 }
  1326. ],
  1327. "scale": [
  1328. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1330. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1331. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1332. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1333. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 4.1, "x": 1, "y": 1 }
  1341. ]
  1342. },
  1343. "bone16": {
  1344. "rotate": [
  1345. { "time": 0, "angle": 0, "curve": "stepped" },
  1346. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1347. { "time": 0.2333, "angle": 0 },
  1348. { "time": 0.3, "angle": 5.21 },
  1349. { "time": 0.4, "angle": -7.28 },
  1350. { "time": 0.6333, "angle": -8.87 },
  1351. { "time": 0.8667, "angle": -6.74 },
  1352. { "time": 1.2333, "angle": -2.99 },
  1353. { "time": 1.7333, "angle": 1.39 },
  1354. { "time": 2.3, "angle": -2.99 },
  1355. { "time": 2.8, "angle": 1.39 },
  1356. { "time": 3.3667, "angle": -2.99 },
  1357. { "time": 4.1, "angle": 1.39 }
  1358. ],
  1359. "translate": [
  1360. { "time": 0, "x": 0, "y": 0 },
  1361. { "time": 0.1333, "x": 1.53, "y": 0 },
  1362. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1363. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1364. { "time": 0.4, "x": 0, "y": 0 },
  1365. { "time": 0.6333, "x": 0.86, "y": -0.13 },
  1366. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1369. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1370. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1371. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1372. { "time": 4.1, "x": 0, "y": 0 }
  1373. ],
  1374. "scale": [
  1375. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1380. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1381. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1382. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1383. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1384. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1385. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1386. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1387. { "time": 4.1, "x": 1, "y": 1 }
  1388. ]
  1389. },
  1390. "bone17": {
  1391. "rotate": [
  1392. { "time": 0, "angle": 0, "curve": "stepped" },
  1393. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1394. { "time": 0.2333, "angle": 0 },
  1395. { "time": 0.3, "angle": 5.21 },
  1396. { "time": 0.4, "angle": -7.28 },
  1397. { "time": 0.6333, "angle": -8.87 },
  1398. { "time": 0.8667, "angle": -6.74 },
  1399. { "time": 1.2333, "angle": -2.99 },
  1400. { "time": 1.7333, "angle": 1.39 },
  1401. { "time": 2.3, "angle": -2.99 },
  1402. { "time": 2.8, "angle": 1.39 },
  1403. { "time": 3.3667, "angle": -2.99 },
  1404. { "time": 4.1, "angle": 1.39 }
  1405. ],
  1406. "translate": [
  1407. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1408. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1409. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1410. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1411. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1412. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1413. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1414. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1415. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1416. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1417. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1418. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1419. { "time": 4.1, "x": 0, "y": 0 }
  1420. ],
  1421. "scale": [
  1422. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1423. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1424. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1425. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1426. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1427. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1428. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1429. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1430. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1431. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1432. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1433. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1434. { "time": 4.1, "x": 1, "y": 1 }
  1435. ]
  1436. },
  1437. "bone18": {
  1438. "rotate": [
  1439. { "time": 0, "angle": 0, "curve": "stepped" },
  1440. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1441. { "time": 0.2333, "angle": 0 },
  1442. { "time": 0.3, "angle": 5.21 },
  1443. { "time": 0.4, "angle": -7.28 },
  1444. { "time": 0.6333, "angle": -8.87 },
  1445. { "time": 0.8667, "angle": -6.74 },
  1446. { "time": 1.2333, "angle": -2.99 },
  1447. { "time": 1.7333, "angle": 1.39 },
  1448. { "time": 2.3, "angle": -2.99 },
  1449. { "time": 2.8, "angle": 1.39 },
  1450. { "time": 3.3667, "angle": -2.99 },
  1451. { "time": 4.1, "angle": 1.39 }
  1452. ],
  1453. "translate": [
  1454. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1455. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1456. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1457. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1459. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1460. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1461. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1462. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1463. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1464. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1465. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1466. { "time": 4.1, "x": 0, "y": 0 }
  1467. ],
  1468. "scale": [
  1469. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1470. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1479. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1480. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 4.1, "x": 1, "y": 1 }
  1482. ]
  1483. },
  1484. "bone19": {
  1485. "rotate": [
  1486. { "time": 0, "angle": 0, "curve": "stepped" },
  1487. { "time": 0.1333, "angle": 0 },
  1488. { "time": 0.2333, "angle": -11.48 },
  1489. { "time": 0.3, "angle": -13.27 },
  1490. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1491. { "time": 0.6333, "angle": 0 },
  1492. { "time": 0.8667, "angle": -10.93 },
  1493. { "time": 1.2333, "angle": -6.4, "curve": "stepped" },
  1494. { "time": 1.7, "angle": -6.4, "curve": "stepped" },
  1495. { "time": 2.3, "angle": -6.4, "curve": "stepped" },
  1496. { "time": 2.7667, "angle": -6.4, "curve": "stepped" },
  1497. { "time": 3.3667, "angle": -6.4, "curve": "stepped" },
  1498. { "time": 4.1, "angle": -6.4 }
  1499. ],
  1500. "translate": [
  1501. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1502. { "time": 0.1333, "x": 0, "y": 0 },
  1503. { "time": 0.2333, "x": 2.94, "y": 1.89, "curve": "stepped" },
  1504. { "time": 0.3, "x": 2.94, "y": 1.89 },
  1505. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1506. { "time": 0.6333, "x": 0, "y": 0 },
  1507. { "time": 0.8667, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1508. { "time": 1.2333, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1509. { "time": 1.7, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1510. { "time": 2.3, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1511. { "time": 2.7667, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1512. { "time": 3.3667, "x": 1.68, "y": -0.95, "curve": "stepped" },
  1513. { "time": 4.1, "x": 1.68, "y": -0.95 }
  1514. ],
  1515. "scale": [
  1516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1517. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 4.1, "x": 1, "y": 1 }
  1529. ]
  1530. },
  1531. "bone20": {
  1532. "rotate": [
  1533. { "time": 0, "angle": 0, "curve": "stepped" },
  1534. { "time": 0.1333, "angle": 0 },
  1535. { "time": 0.2333, "angle": 9.68 },
  1536. { "time": 0.3, "angle": 8.18 },
  1537. { "time": 0.4, "angle": -7.95 },
  1538. { "time": 0.6333, "angle": -5.7 },
  1539. { "time": 0.8667, "angle": 1.96 },
  1540. { "time": 1.2333, "angle": 1.44 },
  1541. { "time": 1.7, "angle": 0.64 },
  1542. { "time": 2.3, "angle": 1.44 },
  1543. { "time": 2.7667, "angle": 0.64 },
  1544. { "time": 3.3667, "angle": 1.44 },
  1545. { "time": 4.1, "angle": 0.64 }
  1546. ],
  1547. "translate": [
  1548. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1551. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1552. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1553. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1554. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1555. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1556. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1557. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1558. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1559. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1560. { "time": 4.1, "x": 0, "y": 0 }
  1561. ],
  1562. "scale": [
  1563. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1564. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1565. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1566. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1567. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1568. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1569. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 4.1, "x": 1, "y": 1 }
  1576. ]
  1577. },
  1578. "bone21": {
  1579. "rotate": [
  1580. { "time": 0, "angle": 0, "curve": "stepped" },
  1581. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1582. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1583. { "time": 0.3, "angle": 0 },
  1584. { "time": 0.4, "angle": -5.92, "curve": "stepped" },
  1585. { "time": 0.6333, "angle": -5.92 },
  1586. { "time": 0.8667, "angle": 3.66 },
  1587. { "time": 1.2333, "angle": -9.12 },
  1588. { "time": 1.7, "angle": -2.13 },
  1589. { "time": 2.3, "angle": -9.12 },
  1590. { "time": 2.7667, "angle": -2.13 },
  1591. { "time": 3.3667, "angle": -9.12 },
  1592. { "time": 4.1, "angle": -2.13 }
  1593. ],
  1594. "translate": [
  1595. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1596. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1597. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1598. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1599. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1600. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1601. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1602. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1603. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1604. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1605. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 4.1, "x": 0, "y": 0 }
  1608. ],
  1609. "scale": [
  1610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1611. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1613. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1615. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1618. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 4.1, "x": 1, "y": 1 }
  1623. ]
  1624. },
  1625. "bone22": {
  1626. "rotate": [
  1627. { "time": 0, "angle": 0, "curve": "stepped" },
  1628. { "time": 0.1333, "angle": 0 },
  1629. { "time": 0.2333, "angle": -5.88 },
  1630. { "time": 0.3, "angle": 0 },
  1631. { "time": 0.4, "angle": -5.92 },
  1632. { "time": 0.6333, "angle": -11.88 },
  1633. { "time": 0.8667, "angle": -6.76 },
  1634. { "time": 1.2333, "angle": -5.1 },
  1635. { "time": 1.7, "angle": -3.27 },
  1636. { "time": 2.3, "angle": -4.13 },
  1637. { "time": 2.7667, "angle": -4.78 },
  1638. { "time": 3.3667, "angle": -4.13 },
  1639. { "time": 4.1, "angle": -8.7 }
  1640. ],
  1641. "translate": [
  1642. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1645. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1646. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1647. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1648. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1649. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1652. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1653. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1654. { "time": 4.1, "x": 0, "y": 0 }
  1655. ],
  1656. "scale": [
  1657. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1660. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1661. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1663. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1664. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1665. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1666. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1667. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1668. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1669. { "time": 4.1, "x": 1, "y": 1 }
  1670. ]
  1671. },
  1672. "bone23": {
  1673. "rotate": [
  1674. { "time": 0, "angle": 0 },
  1675. { "time": 0.1333, "angle": -3.9 },
  1676. { "time": 0.2333, "angle": 0 },
  1677. { "time": 0.3, "angle": -2.94 },
  1678. { "time": 0.4, "angle": -15.05 },
  1679. { "time": 0.6333, "angle": -18.49 },
  1680. { "time": 0.8667, "angle": -13.95 },
  1681. { "time": 1.2333, "angle": -10.81 },
  1682. { "time": 1.7, "angle": -6.09 },
  1683. { "time": 2.3, "angle": -10.81 },
  1684. { "time": 2.7667, "angle": -6.09 },
  1685. { "time": 3.3667, "angle": -10.81 },
  1686. { "time": 4.1, "angle": -6.09 }
  1687. ],
  1688. "translate": [
  1689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1690. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1691. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1696. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1698. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1699. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 4.1, "x": 0, "y": 0 }
  1702. ],
  1703. "scale": [
  1704. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1705. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1706. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1707. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1708. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1709. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1710. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 4.1, "x": 1, "y": 1 }
  1717. ]
  1718. },
  1719. "bone24": {
  1720. "rotate": [
  1721. { "time": 0, "angle": 0 },
  1722. { "time": 0.1333, "angle": -3.9 },
  1723. { "time": 0.2333, "angle": 0 },
  1724. { "time": 0.3, "angle": -11.15 },
  1725. { "time": 0.4, "angle": -16.89 },
  1726. { "time": 0.6333, "angle": -5.92 },
  1727. { "time": 0.8667, "angle": 7.11 },
  1728. { "time": 1.2333, "angle": -0.34 },
  1729. { "time": 1.7, "angle": 0.05 },
  1730. { "time": 2.3, "angle": -0.34 },
  1731. { "time": 2.7667, "angle": 0.05 },
  1732. { "time": 3.3667, "angle": -0.34 },
  1733. { "time": 4.1, "angle": 0.05 }
  1734. ],
  1735. "translate": [
  1736. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1737. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1738. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1739. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1740. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1741. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1744. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1745. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1746. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1747. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1748. { "time": 4.1, "x": 0, "y": 0 }
  1749. ],
  1750. "scale": [
  1751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1755. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1759. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1760. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 4.1, "x": 1, "y": 1 }
  1764. ]
  1765. },
  1766. "bone25": {
  1767. "rotate": [
  1768. { "time": 0, "angle": 0 },
  1769. { "time": 0.1333, "angle": -3.9 },
  1770. { "time": 0.2333, "angle": 0 },
  1771. { "time": 0.3, "angle": -6.02 },
  1772. { "time": 0.4, "angle": -16.89 },
  1773. { "time": 0.6333, "angle": -5.92 },
  1774. { "time": 0.8667, "angle": 0.85 },
  1775. { "time": 1.2333, "angle": -2.59 },
  1776. { "time": 1.7, "angle": -2.21 },
  1777. { "time": 2.3, "angle": -2.59 },
  1778. { "time": 2.7667, "angle": -2.21 },
  1779. { "time": 3.3667, "angle": -2.59 },
  1780. { "time": 4.1, "angle": -2.21 }
  1781. ],
  1782. "translate": [
  1783. { "time": 0, "x": 0, "y": 0 },
  1784. { "time": 0.1333, "x": 0.75, "y": -0.04 },
  1785. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1787. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1788. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1789. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1790. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1791. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 4.1, "x": 0, "y": 0 }
  1796. ],
  1797. "scale": [
  1798. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1799. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1800. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1805. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1806. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1807. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1808. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1809. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1810. { "time": 4.1, "x": 1, "y": 1 }
  1811. ]
  1812. },
  1813. "bone26": {
  1814. "rotate": [
  1815. { "time": 0, "angle": 0 },
  1816. { "time": 0.1333, "angle": -3.9 },
  1817. { "time": 0.2333, "angle": 0 },
  1818. { "time": 0.3, "angle": -6.02 },
  1819. { "time": 0.4, "angle": -16.89 },
  1820. { "time": 0.6333, "angle": -5.92 },
  1821. { "time": 0.8667, "angle": 0.85 },
  1822. { "time": 1.2333, "angle": -2.59 },
  1823. { "time": 1.7, "angle": -2.21 },
  1824. { "time": 2.3, "angle": -2.59 },
  1825. { "time": 2.7667, "angle": -2.21 },
  1826. { "time": 3.3667, "angle": -2.59 },
  1827. { "time": 4.1, "angle": -2.21 }
  1828. ],
  1829. "translate": [
  1830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1831. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1832. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1833. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1834. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1835. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1836. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1837. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1838. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1839. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1840. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1841. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 4.1, "x": 0, "y": 0 }
  1843. ],
  1844. "scale": [
  1845. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1850. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1851. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1852. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1853. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1857. { "time": 4.1, "x": 1, "y": 1 }
  1858. ]
  1859. },
  1860. "bone27": {
  1861. "rotate": [
  1862. { "time": 0, "angle": 0 },
  1863. { "time": 0.1333, "angle": -3.9 },
  1864. { "time": 0.2333, "angle": 0 },
  1865. { "time": 0.3, "angle": -6.02 },
  1866. { "time": 0.4, "angle": -16.89 },
  1867. { "time": 0.6333, "angle": -5.92 },
  1868. { "time": 0.8667, "angle": 0.85 },
  1869. { "time": 1.2333, "angle": -2.59 },
  1870. { "time": 1.7, "angle": -2.21 },
  1871. { "time": 2.3, "angle": -2.59 },
  1872. { "time": 2.7667, "angle": -2.21 },
  1873. { "time": 3.3667, "angle": -2.59 },
  1874. { "time": 4.1, "angle": -2.21 }
  1875. ],
  1876. "translate": [
  1877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1878. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1883. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1885. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1886. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1887. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1888. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 4.1, "x": 0, "y": 0 }
  1890. ],
  1891. "scale": [
  1892. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1894. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1897. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1898. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1899. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1900. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1901. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 4.1, "x": 1, "y": 1 }
  1905. ]
  1906. },
  1907. "bone28": {
  1908. "rotate": [
  1909. { "time": 0, "angle": 0, "curve": "stepped" },
  1910. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1911. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1912. { "time": 0.3, "angle": 0, "curve": "stepped" },
  1913. { "time": 0.4, "angle": 0, "curve": "stepped" },
  1914. { "time": 0.6333, "angle": 0 },
  1915. { "time": 0.8667, "angle": -1.45, "curve": "stepped" },
  1916. { "time": 1.2333, "angle": -1.45, "curve": "stepped" },
  1917. { "time": 1.6333, "angle": -1.45, "curve": "stepped" },
  1918. { "time": 2, "angle": -1.45, "curve": "stepped" },
  1919. { "time": 2.3, "angle": -1.45, "curve": "stepped" },
  1920. { "time": 2.7, "angle": -1.45, "curve": "stepped" },
  1921. { "time": 3.0667, "angle": -1.45, "curve": "stepped" },
  1922. { "time": 3.3667, "angle": -1.45, "curve": "stepped" },
  1923. { "time": 4.1, "angle": -1.45 }
  1924. ],
  1925. "translate": [
  1926. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1929. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1930. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1931. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1933. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1934. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1936. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1937. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1938. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1939. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 4.1, "x": 0, "y": 0 }
  1941. ],
  1942. "scale": [
  1943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1945. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1946. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1947. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1948. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1949. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1950. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1952. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  1957. { "time": 4.1, "x": 1, "y": 1 }
  1958. ]
  1959. },
  1960. "bone29": {
  1961. "rotate": [
  1962. { "time": 0, "angle": 0, "curve": "stepped" },
  1963. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1964. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1965. { "time": 0.3, "angle": 0 },
  1966. { "time": 0.4, "angle": -1.54, "curve": "stepped" },
  1967. { "time": 0.6333, "angle": -1.54 },
  1968. { "time": 0.8667, "angle": -1.45, "curve": "stepped" },
  1969. { "time": 1.2333, "angle": -1.45 },
  1970. { "time": 1.6333, "angle": 5.14 },
  1971. { "time": 2.3, "angle": -1.45 },
  1972. { "time": 2.7, "angle": 5.14 },
  1973. { "time": 3.3667, "angle": -1.45 },
  1974. { "time": 4.1, "angle": 5.14 }
  1975. ],
  1976. "translate": [
  1977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1979. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1980. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1981. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1982. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1983. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1984. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 4.1, "x": 0, "y": 0 }
  1990. ],
  1991. "scale": [
  1992. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1993. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1994. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1995. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1996. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1997. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1998. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1999. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 4.1, "x": 1, "y": 1 }
  2005. ]
  2006. },
  2007. "bone30": {
  2008. "rotate": [
  2009. { "time": 0, "angle": 0, "curve": "stepped" },
  2010. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2011. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2012. { "time": 0.3, "angle": 0 },
  2013. { "time": 0.4, "angle": -1.54, "curve": "stepped" },
  2014. { "time": 0.6333, "angle": -1.54 },
  2015. { "time": 0.8667, "angle": -1.45 },
  2016. { "time": 1.2333, "angle": 6.92 },
  2017. { "time": 1.6333, "angle": 6.7 },
  2018. { "time": 2.3, "angle": 6.92 },
  2019. { "time": 2.7, "angle": 6.7 },
  2020. { "time": 3.3667, "angle": 6.92 },
  2021. { "time": 4.1, "angle": 6.7 }
  2022. ],
  2023. "translate": [
  2024. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2025. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2026. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2027. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2028. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2029. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2030. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2031. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2032. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2033. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2034. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2035. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2036. { "time": 4.1, "x": 0, "y": 0 }
  2037. ],
  2038. "scale": [
  2039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2040. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2041. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2042. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2043. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2044. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2045. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2046. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2047. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 4.1, "x": 1, "y": 1 }
  2052. ]
  2053. },
  2054. "bone31": {
  2055. "rotate": [
  2056. { "time": 0, "angle": 0, "curve": "stepped" },
  2057. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2058. { "time": 0.2333, "angle": 0 },
  2059. { "time": 0.3, "angle": 15.22 },
  2060. { "time": 0.4, "angle": 4.14 },
  2061. { "time": 0.6333, "angle": 3.99 },
  2062. { "time": 0.8667, "angle": -1.45 },
  2063. { "time": 1.2333, "angle": 15.52 },
  2064. { "time": 1.6333, "angle": 8.11 },
  2065. { "time": 2.3, "angle": 15.52 },
  2066. { "time": 2.7, "angle": 8.11 },
  2067. { "time": 3.3667, "angle": -4.89 },
  2068. { "time": 4.1, "angle": 8.11 }
  2069. ],
  2070. "translate": [
  2071. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2077. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2078. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2079. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2083. { "time": 4.1, "x": 0, "y": 0 }
  2084. ],
  2085. "scale": [
  2086. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2087. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2098. { "time": 4.1, "x": 1, "y": 1 }
  2099. ]
  2100. },
  2101. "bone32": {
  2102. "rotate": [
  2103. { "time": 0, "angle": 0, "curve": "stepped" },
  2104. { "time": 0.1333, "angle": 0 },
  2105. { "time": 0.2333, "angle": 8.61 },
  2106. { "time": 0.3, "angle": 13.22 },
  2107. { "time": 0.4, "angle": 17.32 },
  2108. { "time": 0.8667, "angle": -1.45 },
  2109. { "time": 1.2333, "angle": -5.87 },
  2110. { "time": 1.6333, "angle": 1.64 },
  2111. { "time": 2.3, "angle": -5.87 },
  2112. { "time": 2.7, "angle": 1.64 },
  2113. { "time": 3.3667, "angle": 3.85 },
  2114. { "time": 4.1, "angle": 1.64 }
  2115. ],
  2116. "translate": [
  2117. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2121. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2125. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 4.1, "x": 0, "y": 0 }
  2129. ],
  2130. "scale": [
  2131. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 4.1, "x": 1, "y": 1 }
  2143. ]
  2144. },
  2145. "bone33": {
  2146. "rotate": [
  2147. { "time": 0, "angle": 0, "curve": "stepped" },
  2148. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2149. { "time": 0.2333, "angle": 0 },
  2150. { "time": 0.3, "angle": 13.22 },
  2151. { "time": 0.4, "angle": 17.32 },
  2152. { "time": 0.8667, "angle": -1.45 },
  2153. { "time": 1.2333, "angle": -5.87 },
  2154. { "time": 1.6333, "angle": 1.64 },
  2155. { "time": 2.3, "angle": -5.87 },
  2156. { "time": 2.7, "angle": 1.64 },
  2157. { "time": 3.3667, "angle": -2.98 },
  2158. { "time": 4.1, "angle": 1.64 }
  2159. ],
  2160. "translate": [
  2161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2162. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2163. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2164. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2165. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2166. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2167. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 4.1, "x": 0, "y": 0 }
  2173. ],
  2174. "scale": [
  2175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2181. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2182. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2183. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2184. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2185. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2186. { "time": 4.1, "x": 1, "y": 1 }
  2187. ]
  2188. },
  2189. "bone34": {
  2190. "rotate": [
  2191. { "time": 0, "angle": 0, "curve": "stepped" },
  2192. { "time": 0.1333, "angle": 0 },
  2193. { "time": 0.2333, "angle": 4.57 },
  2194. { "time": 0.3, "angle": 13.22 },
  2195. { "time": 0.4, "angle": 17.32 },
  2196. { "time": 0.8667, "angle": -1.45 },
  2197. { "time": 1.2333, "angle": -5.87 },
  2198. { "time": 1.6333, "angle": 1.64 },
  2199. { "time": 2.3, "angle": -5.87 },
  2200. { "time": 2.7, "angle": 1.64 },
  2201. { "time": 3.3667, "angle": 3.85 },
  2202. { "time": 4.1, "angle": 1.64 }
  2203. ],
  2204. "translate": [
  2205. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2206. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2207. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2208. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2209. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2210. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2211. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2215. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2216. { "time": 4.1, "x": 0, "y": 0 }
  2217. ],
  2218. "scale": [
  2219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2226. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2227. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2228. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2230. { "time": 4.1, "x": 1, "y": 1 }
  2231. ]
  2232. },
  2233. "bone35": {
  2234. "rotate": [
  2235. { "time": 0, "angle": 0, "curve": "stepped" },
  2236. { "time": 0.1333, "angle": 0 },
  2237. { "time": 0.2333, "angle": 4.57 },
  2238. { "time": 0.3, "angle": 13.22 },
  2239. { "time": 0.4, "angle": 17.32 },
  2240. { "time": 0.8667, "angle": -1.45 },
  2241. { "time": 1.2333, "angle": -5.87 },
  2242. { "time": 1.6333, "angle": 1.64 },
  2243. { "time": 2.3, "angle": -5.87 },
  2244. { "time": 2.7, "angle": 1.64 },
  2245. { "time": 3.3667, "angle": 3.85 },
  2246. { "time": 4.1, "angle": 1.64 }
  2247. ],
  2248. "translate": [
  2249. { "time": 0, "x": 0, "y": 0 },
  2250. { "time": 0.1333, "x": 0.93, "y": 0.01 },
  2251. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2252. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2253. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2254. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2255. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2256. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2257. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2258. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2259. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2260. { "time": 4.1, "x": 0, "y": 0 }
  2261. ],
  2262. "scale": [
  2263. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2265. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2266. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2267. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2268. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2269. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2270. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2271. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2272. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2273. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 4.1, "x": 1, "y": 1 }
  2275. ]
  2276. },
  2277. "bone36": {
  2278. "rotate": [
  2279. { "time": 0, "angle": 0, "curve": "stepped" },
  2280. { "time": 0.1333, "angle": 0 },
  2281. { "time": 0.2333, "angle": 4.57 },
  2282. { "time": 0.3, "angle": 13.22 },
  2283. { "time": 0.4, "angle": 17.32 },
  2284. { "time": 0.8667, "angle": -1.45 },
  2285. { "time": 1.2333, "angle": -5.87 },
  2286. { "time": 1.6333, "angle": 1.64 },
  2287. { "time": 2.3, "angle": -5.87 },
  2288. { "time": 2.7, "angle": 1.64 },
  2289. { "time": 3.3667, "angle": 3.85 },
  2290. { "time": 4.1, "angle": 1.64 }
  2291. ],
  2292. "translate": [
  2293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2294. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2295. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2296. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2297. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2299. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 4.1, "x": 0, "y": 0 }
  2305. ],
  2306. "scale": [
  2307. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2309. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2310. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2311. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2314. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2317. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  2318. { "time": 4.1, "x": 1, "y": 1 }
  2319. ]
  2320. },
  2321. "bone37": {
  2322. "rotate": [
  2323. { "time": 0, "angle": 0, "curve": "stepped" },
  2324. { "time": 0.1333, "angle": 0 },
  2325. { "time": 0.2333, "angle": 41.31, "curve": "stepped" },
  2326. { "time": 0.3, "angle": 41.31, "curve": "stepped" },
  2327. { "time": 0.4, "angle": 41.31, "curve": "stepped" },
  2328. { "time": 0.6333, "angle": 41.31 },
  2329. { "time": 0.8333, "angle": 1.57 },
  2330. { "time": 0.8667, "angle": 10.19 },
  2331. { "time": 1.2333, "angle": 27.02 },
  2332. { "time": 1.7, "angle": 34.25 },
  2333. { "time": 2.3, "angle": 28.37 },
  2334. { "time": 3, "angle": 27.02 },
  2335. { "time": 3.4667, "angle": 34.25 },
  2336. { "time": 4.1, "angle": 28.37 }
  2337. ],
  2338. "translate": [
  2339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2340. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2341. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2342. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2343. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 0.6333, "x": 0, "y": 0 },
  2345. { "time": 0.7333, "x": -5.79, "y": -3.49 },
  2346. { "time": 0.8667, "x": -33.9, "y": 10.18, "curve": "stepped" },
  2347. { "time": 1.2333, "x": -33.9, "y": 10.18 },
  2348. { "time": 1.7, "x": -32.36, "y": 10.89 },
  2349. { "time": 2.3, "x": -33.09, "y": 11.99 },
  2350. { "time": 3, "x": -33.9, "y": 10.18 },
  2351. { "time": 3.4667, "x": -32.36, "y": 10.89 },
  2352. { "time": 4.1, "x": -33.09, "y": 11.99 }
  2353. ],
  2354. "scale": [
  2355. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2356. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2357. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2358. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2360. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2362. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2365. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2366. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 4.1, "x": 1, "y": 1 }
  2368. ]
  2369. },
  2370. "bone38": {
  2371. "rotate": [
  2372. { "time": 0, "angle": 0 },
  2373. { "time": 0.1333, "angle": 3.54 },
  2374. { "time": 0.3, "angle": -20.02 },
  2375. { "time": 0.4, "angle": -20.51 },
  2376. { "time": 0.6333, "angle": -3.23 },
  2377. { "time": 0.8667, "angle": -7.19 },
  2378. { "time": 1.2333, "angle": -8.28 },
  2379. { "time": 1.7, "angle": 1.16 },
  2380. { "time": 2.3, "angle": 2.58 },
  2381. { "time": 3, "angle": -8.28 },
  2382. { "time": 3.4667, "angle": 1.16 },
  2383. { "time": 4.1, "angle": 2.58 }
  2384. ],
  2385. "translate": [
  2386. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2387. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2388. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2391. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2393. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2394. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2395. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2396. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  2397. { "time": 4.1, "x": 0, "y": 0 }
  2398. ],
  2399. "scale": [
  2400. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2403. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2405. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2406. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2407. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2408. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2409. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2410. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 4.1, "x": 1, "y": 1 }
  2412. ]
  2413. },
  2414. "bone39": {
  2415. "rotate": [
  2416. { "time": 0, "angle": 0 },
  2417. { "time": 0.1333, "angle": 3.54 },
  2418. { "time": 0.3, "angle": -20.02 },
  2419. { "time": 0.4, "angle": -20.51 },
  2420. { "time": 0.6333, "angle": -3.23 },
  2421. { "time": 0.7333, "angle": 8.52 },
  2422. { "time": 0.8667, "angle": -14.85 },
  2423. { "time": 1.2333, "angle": -8.28 },
  2424. { "time": 1.7, "angle": -12.17 },
  2425. { "time": 2.3, "angle": 4.71 },
  2426. { "time": 3, "angle": -3.91 },
  2427. { "time": 3.4667, "angle": -12.17 },
  2428. { "time": 4.1, "angle": 4.71 }
  2429. ],
  2430. "translate": [
  2431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2432. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2433. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2434. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2435. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2436. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2437. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2438. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 4.1, "x": 0, "y": 0 }
  2443. ],
  2444. "scale": [
  2445. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2446. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 4.1, "x": 1, "y": 1 }
  2457. ]
  2458. },
  2459. "bone40": {
  2460. "rotate": [
  2461. { "time": 0, "angle": 0 },
  2462. { "time": 0.1333, "angle": 0.09 },
  2463. { "time": 0.3, "angle": -20.02 },
  2464. { "time": 0.4, "angle": -20.51 },
  2465. { "time": 0.6333, "angle": -3.23 },
  2466. { "time": 0.7333, "angle": 2.94 },
  2467. { "time": 0.8667, "angle": -11.07 },
  2468. { "time": 1.2333, "angle": -8.28 },
  2469. { "time": 1.7, "angle": -3.36 },
  2470. { "time": 2.3, "angle": 3.94 },
  2471. { "time": 3, "angle": -3.91 },
  2472. { "time": 3.4667, "angle": -3.36 },
  2473. { "time": 4.1, "angle": 11.14 }
  2474. ],
  2475. "translate": [
  2476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2477. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2478. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2480. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2481. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2482. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2483. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2484. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2485. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2486. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 4.1, "x": 0, "y": 0 }
  2488. ],
  2489. "scale": [
  2490. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2491. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2493. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2496. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2500. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2501. { "time": 4.1, "x": 1, "y": 1 }
  2502. ]
  2503. },
  2504. "bone41": {
  2505. "rotate": [
  2506. { "time": 0, "angle": 0 },
  2507. { "time": 0.1333, "angle": 0.09 },
  2508. { "time": 0.3, "angle": -20.02 },
  2509. { "time": 0.4, "angle": -20.51 },
  2510. { "time": 0.6333, "angle": -3.23 },
  2511. { "time": 0.7333, "angle": 15.6 },
  2512. { "time": 0.8667, "angle": -11.07 },
  2513. { "time": 1.2333, "angle": -8.28 },
  2514. { "time": 1.7, "angle": -3.36 },
  2515. { "time": 2.3, "angle": 3.94 },
  2516. { "time": 3, "angle": -3.91 },
  2517. { "time": 3.4667, "angle": -3.36 },
  2518. { "time": 4.1, "angle": 11.14 }
  2519. ],
  2520. "translate": [
  2521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2524. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2525. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2526. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2527. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2528. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2529. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2530. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2531. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 4.1, "x": 0, "y": 0 }
  2533. ],
  2534. "scale": [
  2535. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2536. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2537. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2538. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2539. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2540. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2541. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2542. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2543. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2544. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 4.1, "x": 1, "y": 1 }
  2547. ]
  2548. },
  2549. "bone42": {
  2550. "rotate": [
  2551. { "time": 0, "angle": 0 },
  2552. { "time": 0.1333, "angle": 0.09 },
  2553. { "time": 0.3, "angle": -20.02 },
  2554. { "time": 0.4, "angle": -20.51 },
  2555. { "time": 0.6333, "angle": -3.23 },
  2556. { "time": 0.7333, "angle": 15.6 },
  2557. { "time": 0.8667, "angle": -11.07 },
  2558. { "time": 1.2333, "angle": -8.28 },
  2559. { "time": 1.7, "angle": -3.36 },
  2560. { "time": 2.3, "angle": 3.94 },
  2561. { "time": 3, "angle": -3.91 },
  2562. { "time": 3.4667, "angle": -3.36 },
  2563. { "time": 4.1, "angle": 11.14 }
  2564. ],
  2565. "translate": [
  2566. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2574. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  2577. { "time": 4.1, "x": 0, "y": 0 }
  2578. ],
  2579. "scale": [
  2580. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2584. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2587. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 4.1, "x": 1, "y": 1 }
  2592. ]
  2593. },
  2594. "bone43": {
  2595. "rotate": [
  2596. { "time": 0, "angle": 0, "curve": "stepped" },
  2597. { "time": 0.1333, "angle": 0 },
  2598. { "time": 0.2333, "angle": 5.13, "curve": "stepped" },
  2599. { "time": 0.3, "angle": 5.13 },
  2600. { "time": 0.4, "angle": -2.98, "curve": "stepped" },
  2601. { "time": 0.6333, "angle": -2.98 },
  2602. { "time": 0.8333, "angle": 14.51 },
  2603. { "time": 1.2333, "angle": 21.82 },
  2604. { "time": 1.8, "angle": 49.78 },
  2605. { "time": 2.3, "angle": 42.86 },
  2606. { "time": 3, "angle": 21.82 },
  2607. { "time": 3.5667, "angle": 49.78 },
  2608. { "time": 4.1, "angle": 42.86 }
  2609. ],
  2610. "translate": [
  2611. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2612. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2613. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2614. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2615. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2616. { "time": 0.6333, "x": 0, "y": 0 },
  2617. { "time": 0.8333, "x": 8.08, "y": 2.34, "curve": "stepped" },
  2618. { "time": 1.2333, "x": 8.08, "y": 2.34, "curve": "stepped" },
  2619. { "time": 2.3, "x": 8.08, "y": 2.34, "curve": "stepped" },
  2620. { "time": 3, "x": 8.08, "y": 2.34, "curve": "stepped" },
  2621. { "time": 4.1, "x": 8.08, "y": 2.34 }
  2622. ],
  2623. "scale": [
  2624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2626. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2627. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2628. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2629. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2630. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2631. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2632. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2633. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2634. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2635. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2636. { "time": 4.1, "x": 1, "y": 1 }
  2637. ]
  2638. },
  2639. "bone44": {
  2640. "rotate": [
  2641. { "time": 0, "angle": 0, "curve": "stepped" },
  2642. { "time": 0.1333, "angle": 0 },
  2643. { "time": 0.2333, "angle": 50.5, "curve": "stepped" },
  2644. { "time": 0.3, "angle": 50.5 },
  2645. { "time": 0.3333, "angle": 29.77 },
  2646. { "time": 0.4, "angle": 71.68 },
  2647. { "time": 0.6333, "angle": 84.8 },
  2648. { "time": 0.8333, "angle": 31.92 },
  2649. { "time": 1.2333, "angle": -10.47 },
  2650. { "time": 1.8, "angle": -17.15 },
  2651. { "time": 2.3, "angle": 1.74 },
  2652. { "time": 3, "angle": -10.47 },
  2653. { "time": 3.5667, "angle": -17.15 },
  2654. { "time": 4.1, "angle": 1.74 }
  2655. ],
  2656. "translate": [
  2657. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2660. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 4.1, "x": 0, "y": 0 }
  2670. ],
  2671. "scale": [
  2672. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2676. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2677. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2678. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2679. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2680. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2681. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2682. { "time": 4.1, "x": 1, "y": 1 }
  2683. ]
  2684. },
  2685. "bone45": {
  2686. "rotate": [
  2687. { "time": 0, "angle": 0 },
  2688. { "time": 0.1333, "angle": 1.88 },
  2689. { "time": 0.1667, "angle": 15.07 },
  2690. { "time": 0.2, "angle": 7.72 },
  2691. { "time": 0.2333, "angle": 9.37 },
  2692. { "time": 0.3, "angle": -1.65 },
  2693. { "time": 0.3333, "angle": -28.97 },
  2694. { "time": 0.4, "angle": -33.8 },
  2695. { "time": 0.6333, "angle": -10.57 },
  2696. { "time": 0.8333, "angle": 5.92 },
  2697. { "time": 1.2333, "angle": 9.38 },
  2698. { "time": 1.8, "angle": -15.05 },
  2699. { "time": 2.3, "angle": 0.38 },
  2700. { "time": 3, "angle": 9.38 },
  2701. { "time": 3.5667, "angle": -15.05 },
  2702. { "time": 4.1, "angle": 0.38 }
  2703. ],
  2704. "translate": [
  2705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2706. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2707. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2708. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2709. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2710. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2711. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2712. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2713. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2714. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2716. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2717. { "time": 4.1, "x": 0, "y": 0 }
  2718. ],
  2719. "scale": [
  2720. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2721. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2722. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2725. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2726. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 4.1, "x": 1, "y": 1 }
  2731. ]
  2732. },
  2733. "bone46": {
  2734. "rotate": [
  2735. { "time": 0, "angle": 0 },
  2736. { "time": 0.1333, "angle": 1.88 },
  2737. { "time": 0.1667, "angle": 16.46 },
  2738. { "time": 0.2, "angle": 10.49 },
  2739. { "time": 0.2333, "angle": 13.54 },
  2740. { "time": 0.3, "angle": -4.81 },
  2741. { "time": 0.3333, "angle": -28.47 },
  2742. { "time": 0.4, "angle": -29.63 },
  2743. { "time": 0.6333, "angle": -6.4 },
  2744. { "time": 0.8333, "angle": 21.03 },
  2745. { "time": 1.2333, "angle": 15.08 },
  2746. { "time": 1.8, "angle": -10.54 },
  2747. { "time": 2.3, "angle": -9.92 },
  2748. { "time": 3, "angle": 15.08 },
  2749. { "time": 3.5667, "angle": -10.54 },
  2750. { "time": 4.1, "angle": -9.92 }
  2751. ],
  2752. "translate": [
  2753. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2757. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2758. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2759. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2760. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2761. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2762. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2763. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2764. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2765. { "time": 4.1, "x": 0, "y": 0 }
  2766. ],
  2767. "scale": [
  2768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2769. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2771. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2772. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2773. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2774. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2775. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2776. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 4.1, "x": 1, "y": 1 }
  2779. ]
  2780. },
  2781. "bone47": {
  2782. "rotate": [
  2783. { "time": 0, "angle": 0 },
  2784. { "time": 0.1333, "angle": 1.88 },
  2785. { "time": 0.1667, "angle": 16.46 },
  2786. { "time": 0.2, "angle": 10.49 },
  2787. { "time": 0.2333, "angle": 13.54 },
  2788. { "time": 0.3, "angle": -4.81 },
  2789. { "time": 0.3333, "angle": -28.47 },
  2790. { "time": 0.4, "angle": -29.63 },
  2791. { "time": 0.6333, "angle": -6.4 },
  2792. { "time": 0.8333, "angle": 18.98 },
  2793. { "time": 1.2333, "angle": 15.08 },
  2794. { "time": 1.8, "angle": -10.54 },
  2795. { "time": 2.3, "angle": -9.92 },
  2796. { "time": 3, "angle": 15.08 },
  2797. { "time": 3.5667, "angle": -10.54 },
  2798. { "time": 4.1, "angle": -9.92 }
  2799. ],
  2800. "translate": [
  2801. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2804. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2805. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2806. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2807. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2808. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2809. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2810. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2811. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2812. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2813. { "time": 4.1, "x": 0, "y": 0 }
  2814. ],
  2815. "scale": [
  2816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2818. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2819. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2820. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 4.1, "x": 1, "y": 1 }
  2827. ]
  2828. },
  2829. "bone48": {
  2830. "rotate": [
  2831. { "time": 0, "angle": 0 },
  2832. { "time": 0.1333, "angle": 1.88 },
  2833. { "time": 0.1667, "angle": 16.46 },
  2834. { "time": 0.2, "angle": 10.49 },
  2835. { "time": 0.2333, "angle": 13.54 },
  2836. { "time": 0.3, "angle": -4.81 },
  2837. { "time": 0.3333, "angle": -28.47 },
  2838. { "time": 0.4, "angle": -29.63 },
  2839. { "time": 0.6333, "angle": -6.4 },
  2840. { "time": 0.8333, "angle": 18.98 },
  2841. { "time": 1.2333, "angle": 15.08 },
  2842. { "time": 1.8, "angle": -10.54 },
  2843. { "time": 2.3, "angle": -9.92 },
  2844. { "time": 3, "angle": 15.08 },
  2845. { "time": 3.5667, "angle": -10.54 },
  2846. { "time": 4.1, "angle": -9.92 }
  2847. ],
  2848. "translate": [
  2849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2860. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2861. { "time": 4.1, "x": 0, "y": 0 }
  2862. ],
  2863. "scale": [
  2864. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 4.1, "x": 1, "y": 1 }
  2875. ]
  2876. },
  2877. "bone49": {
  2878. "rotate": [
  2879. { "time": 0, "angle": 0 },
  2880. { "time": 0.1333, "angle": 1.88 },
  2881. { "time": 0.1667, "angle": 16.46 },
  2882. { "time": 0.2, "angle": 10.49 },
  2883. { "time": 0.2333, "angle": 13.54 },
  2884. { "time": 0.3, "angle": -4.81 },
  2885. { "time": 0.3333, "angle": -23.15 },
  2886. { "time": 0.4, "angle": -19 },
  2887. { "time": 0.6333, "angle": 4.23 },
  2888. { "time": 0.8333, "angle": 20.37 },
  2889. { "time": 1.2333, "angle": 15.08 },
  2890. { "time": 1.8, "angle": -10.54 },
  2891. { "time": 2.3, "angle": -9.92 },
  2892. { "time": 3, "angle": 15.08 },
  2893. { "time": 3.5667, "angle": -10.54 },
  2894. { "time": 4.1, "angle": -9.92 }
  2895. ],
  2896. "translate": [
  2897. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2899. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2900. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2901. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  2902. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2903. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2904. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2905. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2906. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2907. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2908. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2909. { "time": 4.1, "x": 0, "y": 0 }
  2910. ],
  2911. "scale": [
  2912. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2913. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2914. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2915. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2916. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2918. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2919. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2920. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2921. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2922. { "time": 4.1, "x": 1, "y": 1 }
  2923. ]
  2924. },
  2925. "bone56": {
  2926. "rotate": [
  2927. { "time": 0, "angle": 0, "curve": "stepped" },
  2928. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2929. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2930. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2931. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2932. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2933. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2934. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2935. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2936. { "time": 2, "angle": 0, "curve": "stepped" },
  2937. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2938. { "time": 3, "angle": 0, "curve": "stepped" },
  2939. { "time": 3.4, "angle": 0, "curve": "stepped" },
  2940. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  2941. { "time": 4.1, "angle": 0 }
  2942. ],
  2943. "translate": [
  2944. { "time": 0, "x": 0, "y": 0 },
  2945. { "time": 0.1333, "x": 0, "y": -0.94 },
  2946. { "time": 0.2333, "x": -0.55, "y": 3.58 },
  2947. { "time": 0.3, "x": -0.92, "y": 2.79 },
  2948. { "time": 0.4, "x": -3.91, "y": -3.07 },
  2949. { "time": 0.6333, "x": -3.91, "y": -3.91 },
  2950. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2951. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2952. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2953. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2954. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2955. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2956. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  2957. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  2958. { "time": 4.1, "x": 0, "y": 0 }
  2959. ],
  2960. "scale": [
  2961. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2963. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2964. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2965. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  2966. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  2967. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2969. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2970. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2971. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2972. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2973. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  2974. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 4.1, "x": 1, "y": 1 }
  2976. ]
  2977. },
  2978. "bone57": {
  2979. "rotate": [
  2980. { "time": 0, "angle": 0, "curve": "stepped" },
  2981. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2982. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2983. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2984. { "time": 0.4, "angle": 0, "curve": "stepped" },
  2985. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2986. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2987. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2988. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2989. { "time": 2, "angle": 0, "curve": "stepped" },
  2990. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2991. { "time": 3, "angle": 0, "curve": "stepped" },
  2992. { "time": 3.4, "angle": 0, "curve": "stepped" },
  2993. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  2994. { "time": 4.1, "angle": 0 }
  2995. ],
  2996. "translate": [
  2997. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2999. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3000. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3001. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3002. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3003. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3005. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3009. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3010. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3011. { "time": 4.1, "x": 0, "y": 0 }
  3012. ],
  3013. "scale": [
  3014. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3015. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3017. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3018. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3019. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3020. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3021. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3022. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3023. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3024. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3028. { "time": 4.1, "x": 1, "y": 1 }
  3029. ]
  3030. },
  3031. "bone58": {
  3032. "rotate": [
  3033. { "time": 0, "angle": 0, "curve": "stepped" },
  3034. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3035. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3036. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3037. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3038. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3039. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3040. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3041. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3042. { "time": 2, "angle": 0, "curve": "stepped" },
  3043. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3044. { "time": 3, "angle": 0, "curve": "stepped" },
  3045. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3046. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3047. { "time": 4.1, "angle": 0 }
  3048. ],
  3049. "translate": [
  3050. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3051. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3052. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3054. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3055. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3056. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3057. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3058. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3059. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3060. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3061. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3062. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3063. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3064. { "time": 4.1, "x": 0, "y": 0 }
  3065. ],
  3066. "scale": [
  3067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3068. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3069. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3081. { "time": 4.1, "x": 1, "y": 1 }
  3082. ]
  3083. },
  3084. "bone59": {
  3085. "rotate": [
  3086. { "time": 0, "angle": 0, "curve": "stepped" },
  3087. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3088. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3089. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3090. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3091. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3092. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3093. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3094. { "time": 1.7333, "angle": 0 },
  3095. { "time": 2.3, "angle": 1.53 },
  3096. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  3097. { "time": 3.3333, "angle": 0 },
  3098. { "time": 4.1, "angle": 1.53 }
  3099. ],
  3100. "translate": [
  3101. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3106. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3107. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3108. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3109. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3110. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3112. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 4.1, "x": 0, "y": 0 }
  3114. ],
  3115. "scale": [
  3116. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3118. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3119. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3120. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3121. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3124. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3125. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3126. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3127. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  3128. { "time": 4.1, "x": 1, "y": 1 }
  3129. ]
  3130. },
  3131. "bone60": {
  3132. "rotate": [
  3133. { "time": 0, "angle": 0, "curve": "stepped" },
  3134. { "time": 0.1333, "angle": 0 },
  3135. { "time": 0.2333, "angle": -9.3 },
  3136. { "time": 0.3, "angle": -13.7 },
  3137. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3138. { "time": 0.6333, "angle": 0 },
  3139. { "time": 0.8667, "angle": -0.48, "curve": "stepped" },
  3140. { "time": 1.2333, "angle": -0.48 },
  3141. { "time": 1.7333, "angle": 0.48 },
  3142. { "time": 2.3, "angle": -0.48 },
  3143. { "time": 2.8333, "angle": 0.48 },
  3144. { "time": 3.4667, "angle": -0.48 },
  3145. { "time": 4.1, "angle": 0.48 }
  3146. ],
  3147. "translate": [
  3148. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3149. { "time": 0.1333, "x": 0, "y": 0 },
  3150. { "time": 0.2333, "x": 1.1, "y": -0.25, "curve": "stepped" },
  3151. { "time": 0.3, "x": 1.1, "y": -0.25 },
  3152. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3153. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3154. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3155. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3156. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3157. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 4.1, "x": 0, "y": 0 }
  3161. ],
  3162. "scale": [
  3163. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3164. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3166. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3169. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3172. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 4.1, "x": 1, "y": 1 }
  3176. ]
  3177. },
  3178. "bone61": {
  3179. "rotate": [
  3180. { "time": 0, "angle": 0, "curve": "stepped" },
  3181. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3182. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3183. { "time": 0.3, "angle": 0 },
  3184. { "time": 0.4, "angle": -6.48 },
  3185. { "time": 0.6333, "angle": 0.62 },
  3186. { "time": 0.8667, "angle": 4.01, "curve": "stepped" },
  3187. { "time": 1.2333, "angle": 4.01 },
  3188. { "time": 1.7333, "angle": 1 },
  3189. { "time": 2.3, "angle": 4.01 },
  3190. { "time": 2.8333, "angle": 1 },
  3191. { "time": 3.4667, "angle": 4.01 },
  3192. { "time": 4.1, "angle": 1 }
  3193. ],
  3194. "translate": [
  3195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3196. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3197. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3198. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3199. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3200. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3201. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3202. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3203. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3204. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3206. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 4.1, "x": 0, "y": 0 }
  3208. ],
  3209. "scale": [
  3210. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3211. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3219. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 4.1, "x": 1, "y": 1 }
  3223. ]
  3224. },
  3225. "bone62": {
  3226. "rotate": [
  3227. { "time": 0, "angle": 0, "curve": "stepped" },
  3228. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3229. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3230. { "time": 0.3, "angle": 0 },
  3231. { "time": 0.4, "angle": -6.48 },
  3232. { "time": 0.6333, "angle": -10.75 },
  3233. { "time": 0.8667, "angle": -11.29 },
  3234. { "time": 1.2333, "angle": -3.29 },
  3235. { "time": 1.7333, "angle": -11.62 },
  3236. { "time": 2.3, "angle": -3.29 },
  3237. { "time": 2.8333, "angle": -11.62 },
  3238. { "time": 3.4667, "angle": -3.29 },
  3239. { "time": 4.1, "angle": -11.62 }
  3240. ],
  3241. "translate": [
  3242. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3246. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3247. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3248. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3249. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3250. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 4.1, "x": 0, "y": 0 }
  3255. ],
  3256. "scale": [
  3257. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 4.1, "x": 1, "y": 1 }
  3270. ]
  3271. },
  3272. "bone63": {
  3273. "rotate": [
  3274. { "time": 0, "angle": 0, "curve": "stepped" },
  3275. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3276. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3277. { "time": 0.3, "angle": 0 },
  3278. { "time": 0.4, "angle": -6.48 },
  3279. { "time": 0.6333, "angle": -10.75 },
  3280. { "time": 0.8667, "angle": -12.51 },
  3281. { "time": 1.2333, "angle": -4.51 },
  3282. { "time": 1.7333, "angle": -1.44 },
  3283. { "time": 2.3, "angle": -4.51 },
  3284. { "time": 2.8333, "angle": -1.44 },
  3285. { "time": 3.4667, "angle": -4.51 },
  3286. { "time": 4.1, "angle": -1.44 }
  3287. ],
  3288. "translate": [
  3289. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3290. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3291. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3294. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3295. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3296. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 4.1, "x": 0, "y": 0 }
  3302. ],
  3303. "scale": [
  3304. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3308. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 4.1, "x": 1, "y": 1 }
  3317. ]
  3318. },
  3319. "bone64": {
  3320. "rotate": [
  3321. { "time": 0, "angle": 0, "curve": "stepped" },
  3322. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3323. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3324. { "time": 0.3, "angle": 0 },
  3325. { "time": 0.4, "angle": -6.48 },
  3326. { "time": 0.6333, "angle": -10.75 },
  3327. { "time": 0.8667, "angle": -12.17 },
  3328. { "time": 1.2333, "angle": -4.17 },
  3329. { "time": 1.7333, "angle": -7.36 },
  3330. { "time": 2.3, "angle": -4.17 },
  3331. { "time": 2.8333, "angle": -7.36 },
  3332. { "time": 3.4667, "angle": -4.17 },
  3333. { "time": 4.1, "angle": -7.36 }
  3334. ],
  3335. "translate": [
  3336. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3337. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3338. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3339. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3340. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 4.1, "x": 0, "y": 0 }
  3349. ],
  3350. "scale": [
  3351. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3358. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3359. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 4.1, "x": 1, "y": 1 }
  3364. ]
  3365. },
  3366. "bone65": {
  3367. "rotate": [
  3368. { "time": 0, "angle": 0, "curve": "stepped" },
  3369. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3370. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3371. { "time": 0.3, "angle": 0 },
  3372. { "time": 0.4, "angle": -6.48 },
  3373. { "time": 0.6333, "angle": -10.75 },
  3374. { "time": 0.8667, "angle": 1.39, "curve": "stepped" },
  3375. { "time": 1.2333, "angle": 1.39 },
  3376. { "time": 1.7333, "angle": -1.8 },
  3377. { "time": 2.3, "angle": 1.39 },
  3378. { "time": 2.8333, "angle": -1.8 },
  3379. { "time": 3.4667, "angle": 1.39 },
  3380. { "time": 4.1, "angle": -1.8 }
  3381. ],
  3382. "translate": [
  3383. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3388. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3391. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3392. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3393. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3395. { "time": 4.1, "x": 0, "y": 0 }
  3396. ],
  3397. "scale": [
  3398. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 4.1, "x": 1, "y": 1 }
  3411. ]
  3412. },
  3413. "bone66": {
  3414. "rotate": [
  3415. { "time": 0, "angle": 0, "curve": "stepped" },
  3416. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3417. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3418. { "time": 0.3, "angle": 0 },
  3419. { "time": 0.4, "angle": -6.48 },
  3420. { "time": 0.6333, "angle": -10.75 },
  3421. { "time": 0.8667, "angle": -12.52 },
  3422. { "time": 1.2333, "angle": -4.52 },
  3423. { "time": 1.7333, "angle": -7.72 },
  3424. { "time": 2.3, "angle": -4.52 },
  3425. { "time": 2.8333, "angle": -7.72 },
  3426. { "time": 3.4667, "angle": -4.52 },
  3427. { "time": 4.1, "angle": -7.72 }
  3428. ],
  3429. "translate": [
  3430. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3438. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3439. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3440. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 4.1, "x": 0, "y": 0 }
  3443. ],
  3444. "scale": [
  3445. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3446. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3451. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3452. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3453. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 4.1, "x": 1, "y": 1 }
  3458. ]
  3459. },
  3460. "bone67": {
  3461. "rotate": [
  3462. { "time": 0, "angle": 0, "curve": "stepped" },
  3463. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  3464. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3465. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3466. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3467. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3468. { "time": 1.8, "angle": 0, "curve": "stepped" },
  3469. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  3470. { "time": 3.1, "angle": 0, "curve": "stepped" },
  3471. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  3472. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  3473. { "time": 3.3667, "angle": 0 }
  3474. ],
  3475. "translate": [
  3476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3486. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3487. { "time": 3.3667, "x": 0, "y": 0 }
  3488. ],
  3489. "scale": [
  3490. { "time": 0, "x": 1, "y": 1 },
  3491. { "time": 0.0667, "x": 0.465, "y": 1, "curve": "stepped" },
  3492. { "time": 0.1333, "x": 0.465, "y": 1 },
  3493. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 1.6667, "x": 1, "y": 1 },
  3495. { "time": 1.7333, "x": 0.465, "y": 1, "curve": "stepped" },
  3496. { "time": 1.8, "x": 0.465, "y": 1 },
  3497. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 3.1, "x": 1, "y": 1 },
  3499. { "time": 3.1667, "x": 0.465, "y": 1, "curve": "stepped" },
  3500. { "time": 3.2333, "x": 0.465, "y": 1 },
  3501. { "time": 3.3667, "x": 1, "y": 1 }
  3502. ]
  3503. },
  3504. "bone68": {
  3505. "rotate": [
  3506. { "time": 0, "angle": 0, "curve": "stepped" },
  3507. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  3508. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3509. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3510. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3511. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3512. { "time": 1.8, "angle": 0, "curve": "stepped" },
  3513. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  3514. { "time": 3.1, "angle": 0, "curve": "stepped" },
  3515. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  3516. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  3517. { "time": 3.3667, "angle": 0 }
  3518. ],
  3519. "translate": [
  3520. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3525. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3526. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3527. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  3528. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 3.3667, "x": 0, "y": 0 }
  3532. ],
  3533. "scale": [
  3534. { "time": 0, "x": 1, "y": 1 },
  3535. { "time": 0.0667, "x": 0.335, "y": 1, "curve": "stepped" },
  3536. { "time": 0.1333, "x": 0.335, "y": 1 },
  3537. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 1.6667, "x": 1, "y": 1 },
  3539. { "time": 1.7333, "x": 0.335, "y": 1, "curve": "stepped" },
  3540. { "time": 1.8, "x": 0.335, "y": 1 },
  3541. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  3542. { "time": 3.1, "x": 1, "y": 1 },
  3543. { "time": 3.1667, "x": 0.335, "y": 1, "curve": "stepped" },
  3544. { "time": 3.2333, "x": 0.335, "y": 1 },
  3545. { "time": 3.3667, "x": 1, "y": 1 }
  3546. ]
  3547. },
  3548. "bone69": {
  3549. "rotate": [
  3550. { "time": 0, "angle": 0, "curve": "stepped" },
  3551. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  3552. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3553. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3554. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3555. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3556. { "time": 1.8, "angle": 0, "curve": "stepped" },
  3557. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  3558. { "time": 3.1, "angle": 0, "curve": "stepped" },
  3559. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  3560. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  3561. { "time": 3.3667, "angle": 0 }
  3562. ],
  3563. "translate": [
  3564. { "time": 0, "x": 0, "y": 0 },
  3565. { "time": 0.0667, "x": -1.87, "y": 0.49, "curve": "stepped" },
  3566. { "time": 0.1333, "x": -1.87, "y": 0.49 },
  3567. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 1.6667, "x": 0, "y": 0 },
  3569. { "time": 1.7333, "x": -1.87, "y": 0.49, "curve": "stepped" },
  3570. { "time": 1.8, "x": -1.87, "y": 0.49 },
  3571. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 3.1, "x": 0, "y": 0 },
  3573. { "time": 3.1667, "x": -1.87, "y": 0.49, "curve": "stepped" },
  3574. { "time": 3.2333, "x": -1.87, "y": 0.49 },
  3575. { "time": 3.3667, "x": 0, "y": 0 }
  3576. ],
  3577. "scale": [
  3578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3579. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  3580. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3581. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3582. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3583. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3584. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3585. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  3588. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3589. { "time": 3.3667, "x": 1, "y": 1 }
  3590. ]
  3591. },
  3592. "bone70": {
  3593. "rotate": [
  3594. { "time": 0, "angle": 0, "curve": "stepped" },
  3595. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  3596. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3597. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3598. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3599. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3600. { "time": 1.8, "angle": 0, "curve": "stepped" },
  3601. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  3602. { "time": 3.1, "angle": 0, "curve": "stepped" },
  3603. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  3604. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  3605. { "time": 3.3667, "angle": 0 }
  3606. ],
  3607. "translate": [
  3608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3609. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3611. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3612. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3613. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3614. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3615. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  3616. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 3.3667, "x": 0, "y": 0 }
  3620. ],
  3621. "scale": [
  3622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3623. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  3630. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  3632. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3633. { "time": 3.3667, "x": 1, "y": 1 }
  3634. ]
  3635. },
  3636. "bone71": {
  3637. "rotate": [
  3638. { "time": 0, "angle": 0, "curve": "stepped" },
  3639. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3640. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3641. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3642. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3643. { "time": 0.7, "angle": 0, "curve": "stepped" },
  3644. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3645. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3646. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3647. { "time": 2, "angle": 0, "curve": "stepped" },
  3648. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3649. { "time": 3, "angle": 0, "curve": "stepped" },
  3650. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3651. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3652. { "time": 4.1, "angle": 0 }
  3653. ],
  3654. "translate": [
  3655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3659. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3660. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3661. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3662. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3663. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3664. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3668. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3669. { "time": 4.1, "x": 0, "y": 0 }
  3670. ],
  3671. "scale": [
  3672. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3677. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 4.1, "x": 1, "y": 1 }
  3687. ]
  3688. },
  3689. "bone72": {
  3690. "rotate": [
  3691. { "time": 0, "angle": 0, "curve": "stepped" },
  3692. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3693. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3694. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3695. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3696. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3697. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3698. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3699. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3700. { "time": 2, "angle": 0, "curve": "stepped" },
  3701. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3702. { "time": 3, "angle": 0, "curve": "stepped" },
  3703. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3704. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3705. { "time": 4.1, "angle": 0 }
  3706. ],
  3707. "translate": [
  3708. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3709. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3710. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3715. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3719. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3720. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3721. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3722. { "time": 4.1, "x": 0, "y": 0 }
  3723. ],
  3724. "scale": [
  3725. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3733. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3734. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3735. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3736. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3737. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3738. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3739. { "time": 4.1, "x": 1, "y": 1 }
  3740. ]
  3741. },
  3742. "bone73": {
  3743. "rotate": [
  3744. { "time": 0, "angle": 0, "curve": "stepped" },
  3745. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3746. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3747. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3748. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3749. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3750. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3751. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3752. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3753. { "time": 2, "angle": 0, "curve": "stepped" },
  3754. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3755. { "time": 3, "angle": 0, "curve": "stepped" },
  3756. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3757. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3758. { "time": 4.1, "angle": 0 }
  3759. ],
  3760. "translate": [
  3761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3762. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3763. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3764. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3765. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3766. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3767. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3769. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3770. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3771. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3772. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3773. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3774. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3775. { "time": 4.1, "x": 0, "y": 0 }
  3776. ],
  3777. "scale": [
  3778. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3779. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3780. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3781. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3783. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3784. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3785. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3786. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3787. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 4.1, "x": 1, "y": 1 }
  3793. ]
  3794. },
  3795. "bone74": {
  3796. "rotate": [
  3797. { "time": 0, "angle": 0, "curve": "stepped" },
  3798. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3799. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3800. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3801. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3802. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3803. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3804. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3805. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3806. { "time": 2, "angle": 0, "curve": "stepped" },
  3807. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3808. { "time": 3, "angle": 0, "curve": "stepped" },
  3809. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3810. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3811. { "time": 4.1, "angle": 0 }
  3812. ],
  3813. "translate": [
  3814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3815. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3816. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3817. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3818. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3819. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3820. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3821. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3822. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3823. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3824. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3825. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3826. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3827. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3828. { "time": 4.1, "x": 0, "y": 0 }
  3829. ],
  3830. "scale": [
  3831. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3832. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3833. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3834. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3835. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3836. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3837. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3838. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3839. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3840. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3841. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3842. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3843. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3844. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3845. { "time": 4.1, "x": 1, "y": 1 }
  3846. ]
  3847. },
  3848. "bone75": {
  3849. "rotate": [
  3850. { "time": 0, "angle": 0, "curve": "stepped" },
  3851. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3852. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3853. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3854. { "time": 0.4, "angle": 0, "curve": "stepped" },
  3855. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  3856. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3857. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3858. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3859. { "time": 2, "angle": 0, "curve": "stepped" },
  3860. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3861. { "time": 3, "angle": 0, "curve": "stepped" },
  3862. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3863. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3864. { "time": 4.1, "angle": 0 }
  3865. ],
  3866. "translate": [
  3867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3868. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3869. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3870. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3871. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3872. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3873. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3874. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3875. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3876. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3881. { "time": 4.1, "x": 0, "y": 0 }
  3882. ],
  3883. "scale": [
  3884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3888. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3890. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3891. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3892. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3893. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3894. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3895. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3896. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3897. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3898. { "time": 4.1, "x": 1, "y": 1 }
  3899. ]
  3900. },
  3901. "bone76": {
  3902. "rotate": [
  3903. { "time": 0, "angle": 0, "curve": "stepped" },
  3904. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3905. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  3906. { "time": 0.3, "angle": 0 },
  3907. { "time": 0.4, "angle": 7.16, "curve": "stepped" },
  3908. { "time": 0.6333, "angle": 7.16 },
  3909. { "time": 0.8667, "angle": 9.29 },
  3910. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  3911. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  3912. { "time": 2, "angle": 0, "curve": "stepped" },
  3913. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3914. { "time": 3, "angle": 0, "curve": "stepped" },
  3915. { "time": 3.4, "angle": 0, "curve": "stepped" },
  3916. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  3917. { "time": 4.1, "angle": 0 }
  3918. ],
  3919. "translate": [
  3920. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3921. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3922. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3923. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3924. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3927. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3928. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3929. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3930. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3931. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3932. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  3933. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  3934. { "time": 4.1, "x": 0, "y": 0 }
  3935. ],
  3936. "scale": [
  3937. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3938. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3939. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3940. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3941. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3942. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3943. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3944. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3945. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3946. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3947. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 4.1, "x": 1, "y": 1 }
  3952. ]
  3953. },
  3954. "bone77": {
  3955. "rotate": [
  3956. { "time": 0, "angle": 0, "curve": "stepped" },
  3957. { "time": 0.1333, "angle": 0 },
  3958. { "time": 0.2333, "angle": -8.86, "curve": "stepped" },
  3959. { "time": 0.3, "angle": -8.86 },
  3960. { "time": 0.4, "angle": 7.16 },
  3961. { "time": 0.6333, "angle": 26.06 },
  3962. { "time": 0.8667, "angle": 2.98 },
  3963. { "time": 1.2333, "angle": 0 },
  3964. { "time": 1.8, "angle": 6.64 },
  3965. { "time": 2.3, "angle": 0 },
  3966. { "time": 2.8667, "angle": 6.64 },
  3967. { "time": 3.3667, "angle": 0 },
  3968. { "time": 4.1, "angle": 6.64 }
  3969. ],
  3970. "translate": [
  3971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3972. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3973. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3974. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3975. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  3976. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3977. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  3982. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  3983. { "time": 4.1, "x": 0, "y": 0 }
  3984. ],
  3985. "scale": [
  3986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3989. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3990. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3991. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3992. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3993. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  3994. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  3995. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3996. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  3997. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  3998. { "time": 4.1, "x": 1, "y": 1 }
  3999. ]
  4000. },
  4001. "bone78": {
  4002. "rotate": [
  4003. { "time": 0, "angle": 0, "curve": "stepped" },
  4004. { "time": 0.1333, "angle": 0 },
  4005. { "time": 0.2333, "angle": -8.86 },
  4006. { "time": 0.3, "angle": -15.94 },
  4007. { "time": 0.4, "angle": 7.16 },
  4008. { "time": 0.6333, "angle": 12.66 },
  4009. { "time": 0.8667, "angle": 2.98 },
  4010. { "time": 1.2333, "angle": 0 },
  4011. { "time": 1.8, "angle": 6.64 },
  4012. { "time": 2.3, "angle": 0 },
  4013. { "time": 2.8667, "angle": 6.64 },
  4014. { "time": 3.3667, "angle": 0 },
  4015. { "time": 4.1, "angle": 6.64 }
  4016. ],
  4017. "translate": [
  4018. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4019. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4020. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4021. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4022. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4023. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4024. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4025. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4026. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  4027. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4028. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4029. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  4030. { "time": 4.1, "x": 0, "y": 0 }
  4031. ],
  4032. "scale": [
  4033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4034. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4035. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4036. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4037. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4038. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4039. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4040. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4041. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  4042. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4043. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4044. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  4045. { "time": 4.1, "x": 1, "y": 1 }
  4046. ]
  4047. },
  4048. "bone79": {
  4049. "rotate": [
  4050. { "time": 0, "angle": 0, "curve": "stepped" },
  4051. { "time": 0.1333, "angle": 0 },
  4052. { "time": 0.2333, "angle": -8.86 },
  4053. { "time": 0.3, "angle": -15.94 },
  4054. { "time": 0.4, "angle": 7.16 },
  4055. { "time": 0.6333, "angle": 12.66 },
  4056. { "time": 0.8667, "angle": 2.98 },
  4057. { "time": 1.2333, "angle": 0 },
  4058. { "time": 1.8, "angle": 6.64 },
  4059. { "time": 2.3, "angle": 0 },
  4060. { "time": 2.8667, "angle": 6.64 },
  4061. { "time": 3.3667, "angle": 0 },
  4062. { "time": 4.1, "angle": 6.64 }
  4063. ],
  4064. "translate": [
  4065. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4066. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4067. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4068. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4069. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  4074. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 4.1, "x": 0, "y": 0 }
  4078. ],
  4079. "scale": [
  4080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4082. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4087. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4088. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  4089. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4090. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4091. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  4092. { "time": 4.1, "x": 1, "y": 1 }
  4093. ]
  4094. },
  4095. "bone80": {
  4096. "rotate": [
  4097. { "time": 0, "angle": 0, "curve": "stepped" },
  4098. { "time": 0.1333, "angle": 0 },
  4099. { "time": 0.2333, "angle": -8.86 },
  4100. { "time": 0.3, "angle": -15.94 },
  4101. { "time": 0.4, "angle": 7.16 },
  4102. { "time": 0.6333, "angle": 12.66 },
  4103. { "time": 0.8667, "angle": 2.98 },
  4104. { "time": 1.2333, "angle": 0 },
  4105. { "time": 1.8, "angle": 6.64 },
  4106. { "time": 2.3, "angle": 0 },
  4107. { "time": 2.8667, "angle": 6.64 },
  4108. { "time": 3.3667, "angle": 0 },
  4109. { "time": 4.1, "angle": 6.64 }
  4110. ],
  4111. "translate": [
  4112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4113. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4114. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4115. { "time": 3.3667, "x": 0, "y": 0 }
  4116. ],
  4117. "scale": [
  4118. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4119. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4120. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4121. { "time": 3.3667, "x": 1, "y": 1 }
  4122. ]
  4123. },
  4124. "bone81": {
  4125. "rotate": [
  4126. { "time": 0, "angle": 0, "curve": "stepped" },
  4127. { "time": 0.1333, "angle": 0 },
  4128. { "time": 0.2333, "angle": -8.86 },
  4129. { "time": 0.3, "angle": -15.94 },
  4130. { "time": 0.4, "angle": 7.16 },
  4131. { "time": 0.6333, "angle": 12.66 },
  4132. { "time": 0.8667, "angle": 2.98 },
  4133. { "time": 1.2333, "angle": 0 },
  4134. { "time": 1.8, "angle": 6.64 },
  4135. { "time": 2.3, "angle": 0 },
  4136. { "time": 2.8667, "angle": 6.64 },
  4137. { "time": 3.3667, "angle": 0 },
  4138. { "time": 4.1, "angle": 6.64 }
  4139. ],
  4140. "translate": [
  4141. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4142. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4143. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4144. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4145. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4146. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4147. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4148. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4149. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  4150. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4151. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4152. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  4153. { "time": 4.1, "x": 0, "y": 0 }
  4154. ],
  4155. "scale": [
  4156. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4159. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4160. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4161. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4162. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4164. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  4165. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4166. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4167. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  4168. { "time": 4.1, "x": 1, "y": 1 }
  4169. ]
  4170. },
  4171. "bone82": {
  4172. "rotate": [
  4173. { "time": 0, "angle": 0, "curve": "stepped" },
  4174. { "time": 0.1333, "angle": 0 },
  4175. { "time": 0.2333, "angle": -8.86 },
  4176. { "time": 0.3, "angle": -15.94 },
  4177. { "time": 0.4, "angle": 7.16 },
  4178. { "time": 0.6333, "angle": 12.66 },
  4179. { "time": 0.8667, "angle": 2.98 },
  4180. { "time": 1.2333, "angle": 0 },
  4181. { "time": 1.8, "angle": 6.64 },
  4182. { "time": 2.3, "angle": 0 },
  4183. { "time": 2.8667, "angle": 6.64 },
  4184. { "time": 3.3667, "angle": 0 },
  4185. { "time": 4.1, "angle": 6.64 }
  4186. ],
  4187. "translate": [
  4188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4191. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4192. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4193. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4194. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  4197. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 3.3667, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 4.1, "x": 0, "y": 0 }
  4201. ],
  4202. "scale": [
  4203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4211. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  4212. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4213. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4214. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  4215. { "time": 4.1, "x": 1, "y": 1 }
  4216. ]
  4217. },
  4218. "bone83": {
  4219. "rotate": [
  4220. { "time": 0, "angle": 0, "curve": "stepped" },
  4221. { "time": 0.1667, "angle": 0 }
  4222. ],
  4223. "translate": [
  4224. { "time": 0, "x": 134.14, "y": -3.39, "curve": "stepped" },
  4225. { "time": 0.1667, "x": 134.14, "y": -3.39 }
  4226. ],
  4227. "scale": [
  4228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4229. { "time": 0.1667, "x": 1, "y": 1 }
  4230. ]
  4231. },
  4232. "bone84": {
  4233. "rotate": [
  4234. { "time": 0, "angle": 0, "curve": "stepped" },
  4235. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4236. { "time": 0.3667, "angle": 0 },
  4237. { "time": 0.5333, "angle": 42.29, "curve": "stepped" },
  4238. { "time": 0.7, "angle": 42.29 }
  4239. ],
  4240. "translate": [
  4241. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4242. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4243. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4244. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4245. { "time": 0.7, "x": 0, "y": 0 }
  4246. ],
  4247. "scale": [
  4248. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4250. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4251. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4252. { "time": 0.7, "x": 1, "y": 1 }
  4253. ]
  4254. },
  4255. "bone85": {
  4256. "rotate": [
  4257. { "time": 0, "angle": 0, "curve": "stepped" },
  4258. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4259. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4260. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4261. { "time": 0.7, "angle": 0 }
  4262. ],
  4263. "translate": [
  4264. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4268. { "time": 0.7, "x": 0, "y": 0 }
  4269. ],
  4270. "scale": [
  4271. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4272. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4273. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4274. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4275. { "time": 0.7, "x": 1, "y": 1 }
  4276. ]
  4277. },
  4278. "bone86": {
  4279. "rotate": [
  4280. { "time": 0, "angle": 0, "curve": "stepped" },
  4281. { "time": 0.1667, "angle": 0 }
  4282. ],
  4283. "translate": [
  4284. { "time": 0, "x": 143.97, "y": -3.17, "curve": "stepped" },
  4285. { "time": 0.1667, "x": 143.97, "y": -3.17 }
  4286. ],
  4287. "scale": [
  4288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 0.1667, "x": 1, "y": 1 }
  4290. ]
  4291. },
  4292. "bone87": {
  4293. "rotate": [
  4294. { "time": 0, "angle": 0, "curve": "stepped" },
  4295. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4296. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4297. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4298. { "time": 0.7, "angle": 0 }
  4299. ],
  4300. "translate": [
  4301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4302. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4303. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4304. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4305. { "time": 0.7, "x": 0, "y": 0 }
  4306. ],
  4307. "scale": [
  4308. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4309. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4310. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4311. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4312. { "time": 0.7, "x": 1, "y": 1 }
  4313. ]
  4314. },
  4315. "bone88": {
  4316. "rotate": [
  4317. { "time": 0, "angle": 0, "curve": "stepped" },
  4318. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4319. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4320. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4321. { "time": 0.7, "angle": 0 }
  4322. ],
  4323. "translate": [
  4324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4325. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4326. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4327. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4328. { "time": 0.7, "x": 0, "y": 0 }
  4329. ],
  4330. "scale": [
  4331. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4332. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4333. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4334. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4335. { "time": 0.7, "x": 1, "y": 1 }
  4336. ]
  4337. },
  4338. "bone89": {
  4339. "rotate": [
  4340. { "time": 0, "angle": 0, "curve": "stepped" },
  4341. { "time": 0.1333, "angle": 0 },
  4342. { "time": 0.2333, "angle": 39.33, "curve": "stepped" },
  4343. { "time": 0.3, "angle": 39.33 },
  4344. { "time": 0.4, "angle": 62.15 },
  4345. { "time": 0.6333, "angle": 73.74 },
  4346. { "time": 0.8667, "angle": 72.11 },
  4347. { "time": 1.2333, "angle": 73.69 },
  4348. { "time": 4.1, "angle": 78.28 }
  4349. ],
  4350. "translate": [
  4351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 0.8667, "x": 0, "y": 0 },
  4358. { "time": 1.2333, "x": 0.02, "y": -0.09 },
  4359. { "time": 4.1, "x": 0.07, "y": -0.34 }
  4360. ],
  4361. "scale": [
  4362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4365. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4366. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4367. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4368. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 4.1, "x": 1, "y": 1 }
  4371. ]
  4372. },
  4373. "bone91": {
  4374. "rotate": [
  4375. { "time": 0, "angle": 0 }
  4376. ],
  4377. "translate": [
  4378. { "time": 0, "x": 0, "y": 0 }
  4379. ],
  4380. "scale": [
  4381. { "time": 0, "x": 1, "y": 1 }
  4382. ]
  4383. },
  4384. "bone92": {
  4385. "rotate": [
  4386. { "time": 0, "angle": 0 }
  4387. ],
  4388. "translate": [
  4389. { "time": 0, "x": 0, "y": 0 }
  4390. ],
  4391. "scale": [
  4392. { "time": 0, "x": 1, "y": 1 }
  4393. ]
  4394. },
  4395. "bone95": {
  4396. "rotate": [
  4397. { "time": 0, "angle": 0, "curve": "stepped" },
  4398. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4399. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4400. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4401. { "time": 0.4, "angle": 0, "curve": "stepped" },
  4402. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  4403. { "time": 0.7, "angle": 0, "curve": "stepped" },
  4404. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4405. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  4406. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4407. { "time": 2, "angle": 0, "curve": "stepped" },
  4408. { "time": 3, "angle": 0, "curve": "stepped" },
  4409. { "time": 3.4, "angle": 0, "curve": "stepped" },
  4410. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  4411. { "time": 4.1, "angle": 0 }
  4412. ],
  4413. "translate": [
  4414. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4415. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4416. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4417. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4420. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4421. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4422. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 4.1, "x": 0, "y": 0 }
  4429. ],
  4430. "scale": [
  4431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4444. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  4445. { "time": 4.1, "x": 1, "y": 1 }
  4446. ]
  4447. },
  4448. "bone53": {
  4449. "rotate": [
  4450. { "time": 0, "angle": 0, "curve": "stepped" },
  4451. { "time": 0.1333, "angle": 0 },
  4452. { "time": 0.2333, "angle": -20.43, "curve": "stepped" },
  4453. { "time": 0.3, "angle": -20.43 },
  4454. { "time": 0.3667, "angle": -42.07 },
  4455. { "time": 0.4, "angle": -36.62, "curve": "stepped" },
  4456. { "time": 0.6333, "angle": -36.62 },
  4457. { "time": 0.7667, "angle": -35.68 },
  4458. { "time": 0.8667, "angle": -34.43 },
  4459. { "time": 1.2333, "angle": -41.55, "curve": "stepped" },
  4460. { "time": 1.6333, "angle": -41.55, "curve": "stepped" },
  4461. { "time": 2, "angle": -41.55, "curve": "stepped" },
  4462. { "time": 3, "angle": -41.55, "curve": "stepped" },
  4463. { "time": 3.4, "angle": -41.55, "curve": "stepped" },
  4464. { "time": 3.7667, "angle": -41.55, "curve": "stepped" },
  4465. { "time": 4.1, "angle": -41.55 }
  4466. ],
  4467. "translate": [
  4468. { "time": 0, "x": -202.49, "y": -1.58, "curve": "stepped" },
  4469. { "time": 0.1333, "x": -202.49, "y": -1.58, "curve": "stepped" },
  4470. { "time": 0.2333, "x": -202.49, "y": -1.58, "curve": "stepped" },
  4471. { "time": 0.3, "x": -202.49, "y": -1.58, "curve": "stepped" },
  4472. { "time": 0.4, "x": -202.49, "y": -1.58, "curve": "stepped" },
  4473. { "time": 0.6333, "x": -202.49, "y": -1.58 },
  4474. { "time": 0.7667, "x": -201.68, "y": -0.83 },
  4475. { "time": 0.8667, "x": -204.94, "y": 11.56 },
  4476. { "time": 1.2333, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4477. { "time": 1.6333, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4478. { "time": 2, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4479. { "time": 3, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4480. { "time": 3.4, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4481. { "time": 3.7667, "x": -203.78, "y": 13.3, "curve": "stepped" },
  4482. { "time": 4.1, "x": -203.78, "y": 13.3 }
  4483. ],
  4484. "scale": [
  4485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4489. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4490. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4491. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4492. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4493. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4494. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4495. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4496. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 4.1, "x": 1, "y": 1 }
  4500. ]
  4501. },
  4502. "bone54": {
  4503. "rotate": [
  4504. { "time": 0, "angle": 0, "curve": "stepped" },
  4505. { "time": 0.1333, "angle": 0 },
  4506. { "time": 0.2333, "angle": 22.47, "curve": "stepped" },
  4507. { "time": 0.3, "angle": 22.47 },
  4508. { "time": 0.3667, "angle": 39.44 },
  4509. { "time": 0.4, "angle": 26.77, "curve": "stepped" },
  4510. { "time": 0.6333, "angle": 26.77 },
  4511. { "time": 0.7667, "angle": 40.55 },
  4512. { "time": 0.8667, "angle": 58.91 },
  4513. { "time": 1.2333, "angle": 74.5, "curve": "stepped" },
  4514. { "time": 1.6333, "angle": 74.5, "curve": "stepped" },
  4515. { "time": 2, "angle": 74.5, "curve": "stepped" },
  4516. { "time": 3, "angle": 74.5, "curve": "stepped" },
  4517. { "time": 3.4, "angle": 74.5, "curve": "stepped" },
  4518. { "time": 3.7667, "angle": 74.5, "curve": "stepped" },
  4519. { "time": 4.1, "angle": 74.5 }
  4520. ],
  4521. "translate": [
  4522. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4523. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4524. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 0.4, "x": 0, "y": 0 },
  4527. { "time": 0.6333, "x": -1.29, "y": -0.85 },
  4528. { "time": 0.7667, "x": -0.74, "y": -0.49 },
  4529. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4530. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4531. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4532. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4533. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4534. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4535. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 4.1, "x": 0, "y": 0 }
  4537. ],
  4538. "scale": [
  4539. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4540. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4541. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4542. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4543. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4544. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4545. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4546. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4547. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4548. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4549. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4550. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4551. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4552. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  4553. { "time": 4.1, "x": 1, "y": 1 }
  4554. ]
  4555. },
  4556. "bone55": {
  4557. "rotate": [
  4558. { "time": 0, "angle": 0, "curve": "stepped" },
  4559. { "time": 0.1333, "angle": 0 },
  4560. { "time": 0.2333, "angle": -2.44, "curve": "stepped" },
  4561. { "time": 0.3, "angle": -2.44 },
  4562. { "time": 0.3667, "angle": -4.84 },
  4563. { "time": 0.4, "angle": 18.36, "curve": "stepped" },
  4564. { "time": 0.6333, "angle": 18.36 },
  4565. { "time": 0.7667, "angle": 15.12 },
  4566. { "time": 0.8667, "angle": 21.51, "curve": "stepped" },
  4567. { "time": 1.2333, "angle": 21.51, "curve": "stepped" },
  4568. { "time": 1.6333, "angle": 21.51, "curve": "stepped" },
  4569. { "time": 2, "angle": 21.51, "curve": "stepped" },
  4570. { "time": 3, "angle": 21.51, "curve": "stepped" },
  4571. { "time": 3.4, "angle": 21.51, "curve": "stepped" },
  4572. { "time": 3.7667, "angle": 21.51, "curve": "stepped" },
  4573. { "time": 4.1, "angle": 21.51 }
  4574. ],
  4575. "translate": [
  4576. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4577. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4578. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4579. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4580. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4581. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4582. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4583. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4584. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4585. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4587. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4588. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  4589. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  4590. { "time": 4.1, "x": 0, "y": 0 }
  4591. ],
  4592. "scale": [
  4593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4598. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4599. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4601. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4604. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4605. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  4606. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  4607. { "time": 4.1, "x": 1, "y": 1 }
  4608. ]
  4609. },
  4610. "bone50": {
  4611. "rotate": [
  4612. { "time": 0, "angle": 0, "curve": "stepped" },
  4613. { "time": 0.1333, "angle": 0 },
  4614. { "time": 0.2333, "angle": 22.4, "curve": "stepped" },
  4615. { "time": 0.3, "angle": 22.4 },
  4616. { "time": 0.4, "angle": 26.38, "curve": "stepped" },
  4617. { "time": 0.6333, "angle": 26.38 },
  4618. { "time": 0.8667, "angle": 0.88 },
  4619. { "time": 1.2333, "angle": 0.56 },
  4620. { "time": 4.1, "angle": -0.36 }
  4621. ],
  4622. "translate": [
  4623. { "time": 0, "x": -139.01, "y": -0.43, "curve": "stepped" },
  4624. { "time": 0.1333, "x": -139.01, "y": -0.43, "curve": "stepped" },
  4625. { "time": 0.2333, "x": -139.01, "y": -0.43, "curve": "stepped" },
  4626. { "time": 0.3, "x": -139.01, "y": -0.43 },
  4627. { "time": 0.4, "x": -140.04, "y": 1.81, "curve": "stepped" },
  4628. { "time": 0.6333, "x": -140.04, "y": 1.81 },
  4629. { "time": 0.8667, "x": -139.01, "y": -0.43, "curve": "stepped" },
  4630. { "time": 1.2333, "x": -139.01, "y": -0.43, "curve": "stepped" },
  4631. { "time": 4.1, "x": -139.01, "y": -0.43 }
  4632. ],
  4633. "scale": [
  4634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4635. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4636. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4637. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4638. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4639. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4641. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4642. { "time": 4.1, "x": 1, "y": 1 }
  4643. ]
  4644. },
  4645. "bone51": {
  4646. "rotate": [
  4647. { "time": 0, "angle": 0, "curve": "stepped" },
  4648. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4649. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4650. { "time": 0.3, "angle": 0 },
  4651. { "time": 0.4, "angle": 10.98, "curve": "stepped" },
  4652. { "time": 0.6333, "angle": 10.98 },
  4653. { "time": 0.8667, "angle": 0 },
  4654. { "time": 1.2333, "angle": -0.87 },
  4655. { "time": 4.1, "angle": -3.41 }
  4656. ],
  4657. "translate": [
  4658. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4659. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4660. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4661. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4662. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4663. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4664. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 4.1, "x": 0, "y": 0 }
  4667. ],
  4668. "scale": [
  4669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4670. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4671. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4672. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4673. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4674. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4675. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4676. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4677. { "time": 4.1, "x": 1, "y": 1 }
  4678. ]
  4679. },
  4680. "bone52": {
  4681. "rotate": [
  4682. { "time": 0, "angle": 0, "curve": "stepped" },
  4683. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4684. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  4685. { "time": 0.3, "angle": 0 },
  4686. { "time": 0.4, "angle": 3.98, "curve": "stepped" },
  4687. { "time": 0.6333, "angle": 3.98 },
  4688. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4689. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  4690. { "time": 2, "angle": 0, "curve": "stepped" },
  4691. { "time": 3, "angle": 0, "curve": "stepped" },
  4692. { "time": 3.7667, "angle": 0, "curve": "stepped" },
  4693. { "time": 4.1, "angle": 0 }
  4694. ],
  4695. "translate": [
  4696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4697. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4698. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4699. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4700. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4706. { "time": 3.7667, "x": 0, "y": 0, "curve": "stepped" },
  4707. { "time": 4.1, "x": 0, "y": 0 }
  4708. ],
  4709. "scale": [
  4710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4713. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 3.7667, "x": 1, "y": 1, "curve": "stepped" },
  4721. { "time": 4.1, "x": 1, "y": 1 }
  4722. ]
  4723. }
  4724. },
  4725. "deform": {
  4726. "default": {
  4727. "shangyi": {
  4728. "shangyi": [
  4729. { "time": 0.1333 },
  4730. {
  4731. "time": 0.3,
  4732. "offset": 110,
  4733. "vertices": [ 1.88, 1.03489, 1.89505, 1.0069, 1.88, 1.03489, 1.88, 1.03489, 1.89505, 1.0069 ]
  4734. },
  4735. { "time": 0.4 }
  4736. ]
  4737. },
  4738. "teshuyoushou2": {
  4739. "teshuyoushou2": [
  4740. {
  4741. "time": 0.7,
  4742. "offset": 2,
  4743. "vertices": [ -2.07168, 3.27874, 0.57736, 1.81069, 2.29796, -3.35131 ]
  4744. },
  4745. { "time": 0.8667 }
  4746. ]
  4747. },
  4748. "teshuyoutui": {
  4749. "teshuyoutui": [
  4750. {
  4751. "time": 0.1333,
  4752. "offset": 60,
  4753. "vertices": [ -15.79972, -3.84938, -13.72839, -3.02718, -13.56326, -3.50543 ]
  4754. }
  4755. ]
  4756. },
  4757. "youshou": {
  4758. "youshou": [
  4759. { "time": 0, "curve": "stepped" },
  4760. { "time": 0.1333 },
  4761. {
  4762. "time": 0.6333,
  4763. "offset": 60,
  4764. "vertices": [ 0.31213, -6.36661, -2.44349, 0.06793 ]
  4765. },
  4766. { "time": 0.7 }
  4767. ]
  4768. },
  4769. "zuoshoupiaodai": {
  4770. "zuoshoupiaodai": [
  4771. {
  4772. "time": 0,
  4773. "offset": 154,
  4774. "vertices": [ 7.66005, 0.33126, 6.85827, 0.39093, 7.75285, 0.94093 ]
  4775. }
  4776. ]
  4777. }
  4778. }
  4779. }
  4780. },
  4781. "walk1": {
  4782. "slots": {
  4783. "biyan": {
  4784. "attachment": [
  4785. { "time": 1.0667, "name": "biyan" },
  4786. { "time": 1.1667, "name": null }
  4787. ]
  4788. },
  4789. "jian2": {
  4790. "attachment": [
  4791. { "time": 0, "name": null }
  4792. ]
  4793. },
  4794. "teshuyoushou1": {
  4795. "attachment": [
  4796. { "time": 0, "name": null }
  4797. ]
  4798. },
  4799. "teshuyoushou2": {
  4800. "attachment": [
  4801. { "time": 0, "name": null }
  4802. ]
  4803. },
  4804. "teshuzuoshou": {
  4805. "attachment": [
  4806. { "time": 0, "name": null }
  4807. ]
  4808. },
  4809. "teshuzuotui": {
  4810. "attachment": [
  4811. { "time": 0, "name": null }
  4812. ]
  4813. },
  4814. "youyan": {
  4815. "attachment": [
  4816. { "time": 1.0667, "name": null },
  4817. { "time": 1.1667, "name": "youyan" }
  4818. ]
  4819. },
  4820. "zuoyan": {
  4821. "attachment": [
  4822. { "time": 1.0667, "name": null },
  4823. { "time": 1.1667, "name": "zuoyan" }
  4824. ]
  4825. }
  4826. },
  4827. "bones": {
  4828. "root": {
  4829. "rotate": [
  4830. { "time": 0, "angle": 0 }
  4831. ],
  4832. "translate": [
  4833. { "time": 0, "x": 0, "y": 0 }
  4834. ],
  4835. "scale": [
  4836. { "time": 0, "x": 0.65, "y": 0.65 }
  4837. ]
  4838. },
  4839. "bone": {
  4840. "rotate": [
  4841. { "time": 0, "angle": 0, "curve": "stepped" },
  4842. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4843. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4844. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4845. { "time": 1, "angle": 0, "curve": "stepped" },
  4846. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4847. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4848. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4849. { "time": 2, "angle": 0 }
  4850. ],
  4851. "translate": [
  4852. { "time": 0, "x": 0, "y": 0 },
  4853. { "time": 0.1667, "x": 0, "y": 0.86 },
  4854. { "time": 0.5, "x": 0, "y": 0 },
  4855. { "time": 0.6667, "x": 0, "y": 0.86 },
  4856. { "time": 1, "x": 0, "y": 0 },
  4857. { "time": 1.1667, "x": 0, "y": 0.86 },
  4858. { "time": 1.5, "x": 0, "y": 0 },
  4859. { "time": 1.6667, "x": 0, "y": 0.86 },
  4860. { "time": 2, "x": 0, "y": 0 }
  4861. ],
  4862. "scale": [
  4863. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4864. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4866. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4867. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4869. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4871. { "time": 2, "x": 1, "y": 1 }
  4872. ]
  4873. },
  4874. "bone2": {
  4875. "rotate": [
  4876. { "time": 0, "angle": 0, "curve": "stepped" },
  4877. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4878. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4879. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4880. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4881. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4882. { "time": 1, "angle": 0, "curve": "stepped" },
  4883. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4884. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4885. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4886. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4887. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4888. { "time": 2, "angle": 0 }
  4889. ],
  4890. "translate": [
  4891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4892. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4893. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4894. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4895. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4896. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4897. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4898. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4899. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4900. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4901. { "time": 2, "x": 0, "y": 0 }
  4902. ],
  4903. "scale": [
  4904. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4905. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4906. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4910. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4912. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4913. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4914. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4915. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4916. { "time": 2, "x": 1, "y": 1 }
  4917. ]
  4918. },
  4919. "bone3": {
  4920. "rotate": [
  4921. { "time": 0, "angle": 0, "curve": "stepped" },
  4922. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4923. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4924. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4925. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4926. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4927. { "time": 1, "angle": 0, "curve": "stepped" },
  4928. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4929. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4930. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4931. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4932. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4933. { "time": 2, "angle": 0 }
  4934. ],
  4935. "translate": [
  4936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4937. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4938. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4939. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4940. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4941. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4942. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4943. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4944. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4945. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4946. { "time": 2, "x": 0, "y": 0 }
  4947. ],
  4948. "scale": [
  4949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4950. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4951. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4952. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4953. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4954. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4955. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4956. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4957. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4958. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 2, "x": 1, "y": 1 }
  4962. ]
  4963. },
  4964. "bone4": {
  4965. "rotate": [
  4966. { "time": 0, "angle": 0, "curve": "stepped" },
  4967. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4968. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4969. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4970. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4971. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4972. { "time": 1, "angle": 0, "curve": "stepped" },
  4973. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4974. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4975. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4976. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4977. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4978. { "time": 2, "angle": 0 }
  4979. ],
  4980. "translate": [
  4981. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4982. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4983. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4984. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4985. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4986. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4987. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4988. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4989. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4990. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4991. { "time": 2, "x": 0, "y": 0 }
  4992. ],
  4993. "scale": [
  4994. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4995. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4996. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4997. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5001. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5002. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5003. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5004. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5005. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5006. { "time": 2, "x": 1, "y": 1 }
  5007. ]
  5008. },
  5009. "bone5": {
  5010. "rotate": [
  5011. { "time": 0, "angle": -3.39, "curve": "stepped" },
  5012. { "time": 0.1667, "angle": -3.39, "curve": "stepped" },
  5013. { "time": 0.3333, "angle": -3.39, "curve": "stepped" },
  5014. { "time": 0.5, "angle": -3.39, "curve": "stepped" },
  5015. { "time": 0.6667, "angle": -3.39, "curve": "stepped" },
  5016. { "time": 0.8333, "angle": -3.39, "curve": "stepped" },
  5017. { "time": 1, "angle": -3.39, "curve": "stepped" },
  5018. { "time": 1.1667, "angle": -3.39, "curve": "stepped" },
  5019. { "time": 1.3333, "angle": -3.39, "curve": "stepped" },
  5020. { "time": 1.5, "angle": -3.39, "curve": "stepped" },
  5021. { "time": 1.6667, "angle": -3.39, "curve": "stepped" },
  5022. { "time": 1.8333, "angle": -3.39, "curve": "stepped" },
  5023. { "time": 2, "angle": -3.39 }
  5024. ],
  5025. "translate": [
  5026. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5027. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5028. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5029. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5030. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5031. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5032. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5033. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5034. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5035. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5036. { "time": 2, "x": 0, "y": 0 }
  5037. ],
  5038. "scale": [
  5039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5040. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5041. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5042. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5043. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5044. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5045. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5047. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5048. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5049. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5050. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5051. { "time": 2, "x": 1, "y": 1 }
  5052. ]
  5053. },
  5054. "bone6": {
  5055. "rotate": [
  5056. {
  5057. "time": 0,
  5058. "angle": -310.55,
  5059. "curve": [ 0.25, 0, 0.75, 1 ]
  5060. },
  5061. {
  5062. "time": 0.5,
  5063. "angle": 9.81,
  5064. "curve": [ 0.25, 0, 0.75, 1 ]
  5065. },
  5066. {
  5067. "time": 1,
  5068. "angle": -310.55,
  5069. "curve": [ 0.25, 0, 0.75, 1 ]
  5070. },
  5071. {
  5072. "time": 1.5,
  5073. "angle": 9.81,
  5074. "curve": [ 0.25, 0, 0.75, 1 ]
  5075. },
  5076. { "time": 2, "angle": -310.55 }
  5077. ],
  5078. "translate": [
  5079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5080. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5081. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5082. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5083. { "time": 2, "x": 0, "y": 0 }
  5084. ],
  5085. "scale": [
  5086. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5087. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5088. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5089. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5090. { "time": 2, "x": 1, "y": 1 }
  5091. ]
  5092. },
  5093. "bone7": {
  5094. "rotate": [
  5095. {
  5096. "time": 0,
  5097. "angle": -19.46,
  5098. "curve": [ 0.25, 0, 0.75, 1 ]
  5099. },
  5100. {
  5101. "time": 0.5,
  5102. "angle": -12.6,
  5103. "curve": [ 0.25, 0, 0.75, 1 ]
  5104. },
  5105. {
  5106. "time": 1,
  5107. "angle": -19.46,
  5108. "curve": [ 0.25, 0, 0.75, 1 ]
  5109. },
  5110. {
  5111. "time": 1.5,
  5112. "angle": -12.6,
  5113. "curve": [ 0.25, 0, 0.75, 1 ]
  5114. },
  5115. { "time": 2, "angle": -19.46 }
  5116. ],
  5117. "translate": [
  5118. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5119. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5120. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5121. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 2, "x": 0, "y": 0 }
  5123. ],
  5124. "scale": [
  5125. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5126. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5127. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 2, "x": 1, "y": 1 }
  5130. ]
  5131. },
  5132. "bone8": {
  5133. "rotate": [
  5134. {
  5135. "time": 0,
  5136. "angle": 0,
  5137. "curve": [ 0.25, 0, 0.75, 1 ]
  5138. },
  5139. {
  5140. "time": 0.5,
  5141. "angle": -4.08,
  5142. "curve": [ 0.25, 0, 0.75, 1 ]
  5143. },
  5144. {
  5145. "time": 1,
  5146. "angle": 0,
  5147. "curve": [ 0.25, 0, 0.75, 1 ]
  5148. },
  5149. {
  5150. "time": 1.5,
  5151. "angle": -4.08,
  5152. "curve": [ 0.25, 0, 0.75, 1 ]
  5153. },
  5154. { "time": 2, "angle": 0 }
  5155. ],
  5156. "translate": [
  5157. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5158. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5159. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5160. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5161. { "time": 2, "x": 0, "y": 0 }
  5162. ],
  5163. "scale": [
  5164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5165. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5166. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5167. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5168. { "time": 2, "x": 1, "y": 1 }
  5169. ]
  5170. },
  5171. "bone9": {
  5172. "rotate": [
  5173. {
  5174. "time": 0,
  5175. "angle": 325.11,
  5176. "curve": [ 0.25, 0, 0.75, 1 ]
  5177. },
  5178. {
  5179. "time": 0.5,
  5180. "angle": 4.86,
  5181. "curve": [ 0.25, 0, 0.75, 1 ]
  5182. },
  5183. {
  5184. "time": 1,
  5185. "angle": 325.11,
  5186. "curve": [ 0.25, 0, 0.75, 1 ]
  5187. },
  5188. {
  5189. "time": 1.5,
  5190. "angle": 4.86,
  5191. "curve": [ 0.25, 0, 0.75, 1 ]
  5192. },
  5193. { "time": 2, "angle": 325.11 }
  5194. ],
  5195. "translate": [
  5196. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5197. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5198. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5199. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5200. { "time": 2, "x": 0, "y": 0 }
  5201. ],
  5202. "scale": [
  5203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5204. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5205. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5206. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5207. { "time": 2, "x": 1, "y": 1 }
  5208. ]
  5209. },
  5210. "bone10": {
  5211. "rotate": [
  5212. {
  5213. "time": 0,
  5214. "angle": -26.18,
  5215. "curve": [ 0.25, 0, 0.75, 1 ]
  5216. },
  5217. {
  5218. "time": 0.5,
  5219. "angle": -12.29,
  5220. "curve": [ 0.25, 0, 0.75, 1 ]
  5221. },
  5222. {
  5223. "time": 1,
  5224. "angle": -26.18,
  5225. "curve": [ 0.25, 0, 0.75, 1 ]
  5226. },
  5227. {
  5228. "time": 1.5,
  5229. "angle": -12.29,
  5230. "curve": [ 0.25, 0, 0.75, 1 ]
  5231. },
  5232. { "time": 2, "angle": -26.18 }
  5233. ],
  5234. "translate": [
  5235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5236. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5237. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 2, "x": 0, "y": 0 }
  5240. ],
  5241. "scale": [
  5242. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5243. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5244. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5245. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5246. { "time": 2, "x": 1, "y": 1 }
  5247. ]
  5248. },
  5249. "bone11": {
  5250. "rotate": [
  5251. { "time": 0, "angle": 0, "curve": "stepped" },
  5252. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5253. { "time": 1, "angle": 0, "curve": "stepped" },
  5254. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5255. { "time": 2, "angle": 0 }
  5256. ],
  5257. "translate": [
  5258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5259. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5260. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5261. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5262. { "time": 2, "x": 0, "y": 0 }
  5263. ],
  5264. "scale": [
  5265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5266. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5267. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5268. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5269. { "time": 2, "x": 1, "y": 1 }
  5270. ]
  5271. },
  5272. "bone12": {
  5273. "rotate": [
  5274. { "time": 0, "angle": -1.95, "curve": "stepped" },
  5275. { "time": 0.5, "angle": -1.95, "curve": "stepped" },
  5276. { "time": 1, "angle": -1.95, "curve": "stepped" },
  5277. { "time": 1.5, "angle": -1.95, "curve": "stepped" },
  5278. { "time": 2, "angle": -1.95 }
  5279. ],
  5280. "translate": [
  5281. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5282. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5283. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5284. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5285. { "time": 2, "x": 0, "y": 0 }
  5286. ],
  5287. "scale": [
  5288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5289. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5290. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5291. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5292. { "time": 2, "x": 1, "y": 1 }
  5293. ]
  5294. },
  5295. "bone13": {
  5296. "rotate": [
  5297. { "time": 0, "angle": 5.78 },
  5298. { "time": 0.5, "angle": 0.2 },
  5299. { "time": 1, "angle": 5.78 },
  5300. { "time": 1.5, "angle": 0.2 },
  5301. { "time": 2, "angle": 5.78 }
  5302. ],
  5303. "translate": [
  5304. { "time": 0, "x": 0, "y": 0 },
  5305. { "time": 0.5, "x": 0.04, "y": 0.95 },
  5306. { "time": 1, "x": 0, "y": 0 },
  5307. { "time": 1.5, "x": 0.04, "y": 0.95 },
  5308. { "time": 2, "x": 0, "y": 0 }
  5309. ],
  5310. "scale": [
  5311. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5313. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5314. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5315. { "time": 2, "x": 1, "y": 1 }
  5316. ]
  5317. },
  5318. "bone14": {
  5319. "rotate": [
  5320. { "time": 0, "angle": -1.95, "curve": "stepped" },
  5321. { "time": 0.5, "angle": -1.95, "curve": "stepped" },
  5322. { "time": 1, "angle": -1.95, "curve": "stepped" },
  5323. { "time": 1.5, "angle": -1.95, "curve": "stepped" },
  5324. { "time": 2, "angle": -1.95 }
  5325. ],
  5326. "translate": [
  5327. { "time": 0, "x": -2.14, "y": -0.07 },
  5328. { "time": 0.5, "x": 0, "y": 0 },
  5329. { "time": 1, "x": -2.14, "y": -0.07 },
  5330. { "time": 1.5, "x": 0, "y": 0 },
  5331. { "time": 2, "x": -2.14, "y": -0.07 }
  5332. ],
  5333. "scale": [
  5334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5335. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5336. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5337. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5338. { "time": 2, "x": 1, "y": 1 }
  5339. ]
  5340. },
  5341. "bone15": {
  5342. "rotate": [
  5343. { "time": 0, "angle": -1.95 },
  5344. { "time": 0.5, "angle": 8.96 },
  5345. { "time": 1, "angle": -1.95 },
  5346. { "time": 1.5, "angle": 8.96 },
  5347. { "time": 2, "angle": -1.95 }
  5348. ],
  5349. "translate": [
  5350. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5351. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5352. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5353. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5354. { "time": 2, "x": 0, "y": 0 }
  5355. ],
  5356. "scale": [
  5357. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5358. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5359. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5360. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5361. { "time": 2, "x": 1, "y": 1 }
  5362. ]
  5363. },
  5364. "bone16": {
  5365. "rotate": [
  5366. { "time": 0, "angle": -1.95 },
  5367. { "time": 0.5, "angle": -0.01 },
  5368. { "time": 1, "angle": -1.95 },
  5369. { "time": 1.5, "angle": -0.01 },
  5370. { "time": 2, "angle": -1.95 }
  5371. ],
  5372. "translate": [
  5373. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 2, "x": 0, "y": 0 }
  5378. ],
  5379. "scale": [
  5380. { "time": 0, "x": 1, "y": 1.2 },
  5381. { "time": 0.5, "x": 1, "y": 1 },
  5382. { "time": 1, "x": 1, "y": 1.2 },
  5383. { "time": 1.5, "x": 1, "y": 1 },
  5384. { "time": 2, "x": 1, "y": 1.2 }
  5385. ]
  5386. },
  5387. "bone17": {
  5388. "rotate": [
  5389. { "time": 0, "angle": 0.38 },
  5390. { "time": 0.5, "angle": -4.04 },
  5391. { "time": 1, "angle": 0.38 },
  5392. { "time": 1.5, "angle": -4.04 },
  5393. { "time": 2, "angle": 0.38 }
  5394. ],
  5395. "translate": [
  5396. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5397. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5398. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5399. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5400. { "time": 2, "x": 0, "y": 0 }
  5401. ],
  5402. "scale": [
  5403. { "time": 0, "x": 1, "y": 1.2, "curve": "stepped" },
  5404. { "time": 0.5, "x": 1, "y": 1.2, "curve": "stepped" },
  5405. { "time": 1, "x": 1, "y": 1.2, "curve": "stepped" },
  5406. { "time": 1.5, "x": 1, "y": 1.2, "curve": "stepped" },
  5407. { "time": 2, "x": 1, "y": 1.2 }
  5408. ]
  5409. },
  5410. "bone18": {
  5411. "rotate": [
  5412. { "time": 0, "angle": 0.38 },
  5413. { "time": 0.5, "angle": 3.9 },
  5414. { "time": 1, "angle": 0.38 },
  5415. { "time": 1.5, "angle": 3.9 },
  5416. { "time": 2, "angle": 0.38 }
  5417. ],
  5418. "translate": [
  5419. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5420. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5421. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5422. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5423. { "time": 2, "x": 0, "y": 0 }
  5424. ],
  5425. "scale": [
  5426. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5427. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5428. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5429. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5430. { "time": 2, "x": 1, "y": 1 }
  5431. ]
  5432. },
  5433. "bone19": {
  5434. "rotate": [
  5435. { "time": 0, "angle": 0, "curve": "stepped" },
  5436. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5437. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5438. { "time": 1, "angle": 0, "curve": "stepped" },
  5439. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5440. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5441. { "time": 2, "angle": 0 }
  5442. ],
  5443. "translate": [
  5444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5445. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5446. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5447. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 2, "x": 0, "y": 0 }
  5451. ],
  5452. "scale": [
  5453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5454. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5455. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5456. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5458. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5459. { "time": 2, "x": 1, "y": 1 }
  5460. ]
  5461. },
  5462. "bone20": {
  5463. "rotate": [
  5464. { "time": 0, "angle": -2.77 },
  5465. { "time": 0.5, "angle": -0.32 },
  5466. { "time": 0.6667, "angle": -1.14 },
  5467. { "time": 1, "angle": -2.77 },
  5468. { "time": 1.5, "angle": -0.32 },
  5469. { "time": 1.6667, "angle": -1.14 },
  5470. { "time": 2, "angle": -2.77 }
  5471. ],
  5472. "translate": [
  5473. { "time": 0, "x": 0, "y": 0 },
  5474. { "time": 0.5, "x": 0.02, "y": -0.52 },
  5475. { "time": 0.6667, "x": 0.01, "y": -0.35 },
  5476. { "time": 1, "x": 0, "y": 0 },
  5477. { "time": 1.5, "x": 0.02, "y": -0.52 },
  5478. { "time": 1.6667, "x": 0.01, "y": -0.35 },
  5479. { "time": 2, "x": 0, "y": 0 }
  5480. ],
  5481. "scale": [
  5482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5483. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5484. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5485. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5486. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5487. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5488. { "time": 2, "x": 1, "y": 1 }
  5489. ]
  5490. },
  5491. "bone21": {
  5492. "rotate": [
  5493. { "time": 0, "angle": -2.77 },
  5494. { "time": 0.5, "angle": -0.32 },
  5495. { "time": 0.6667, "angle": -1.14 },
  5496. { "time": 1, "angle": -2.77 },
  5497. { "time": 1.5, "angle": -0.32 },
  5498. { "time": 1.6667, "angle": -1.14 },
  5499. { "time": 2, "angle": -2.77 }
  5500. ],
  5501. "translate": [
  5502. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 2, "x": 0, "y": 0 }
  5509. ],
  5510. "scale": [
  5511. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5512. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5513. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5514. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5515. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5516. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5517. { "time": 2, "x": 1, "y": 1 }
  5518. ]
  5519. },
  5520. "bone22": {
  5521. "rotate": [
  5522. { "time": 0, "angle": -2.77 },
  5523. { "time": 0.5, "angle": -0.32 },
  5524. { "time": 0.6667, "angle": -1.14 },
  5525. { "time": 1, "angle": -2.77 },
  5526. { "time": 1.5, "angle": -0.32 },
  5527. { "time": 1.6667, "angle": -1.14 },
  5528. { "time": 2, "angle": -2.77 }
  5529. ],
  5530. "translate": [
  5531. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5532. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5533. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5534. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5535. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5536. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5537. { "time": 2, "x": 0, "y": 0 }
  5538. ],
  5539. "scale": [
  5540. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5541. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5542. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5543. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5544. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5545. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5546. { "time": 2, "x": 1, "y": 1 }
  5547. ]
  5548. },
  5549. "bone23": {
  5550. "rotate": [
  5551. { "time": 0, "angle": -2.77 },
  5552. { "time": 0.5, "angle": -0.32 },
  5553. { "time": 0.6667, "angle": -1.14 },
  5554. { "time": 1, "angle": -2.77 },
  5555. { "time": 1.5, "angle": -0.32 },
  5556. { "time": 1.6667, "angle": -1.14 },
  5557. { "time": 2, "angle": -2.77 }
  5558. ],
  5559. "translate": [
  5560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5561. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5562. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5563. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5564. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5566. { "time": 2, "x": 0, "y": 0 }
  5567. ],
  5568. "scale": [
  5569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5571. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5573. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5574. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5575. { "time": 2, "x": 1, "y": 1 }
  5576. ]
  5577. },
  5578. "bone24": {
  5579. "rotate": [
  5580. { "time": 0, "angle": -9.08 },
  5581. { "time": 0.5, "angle": -0.32 },
  5582. { "time": 0.6667, "angle": 0.17 },
  5583. { "time": 1, "angle": -9.08 },
  5584. { "time": 1.5, "angle": -0.32 },
  5585. { "time": 1.6667, "angle": 0.17 },
  5586. { "time": 2, "angle": -9.08 }
  5587. ],
  5588. "translate": [
  5589. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5590. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5591. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5592. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5593. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5594. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5595. { "time": 2, "x": 0, "y": 0 }
  5596. ],
  5597. "scale": [
  5598. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5599. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5600. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5601. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5602. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5603. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5604. { "time": 2, "x": 1, "y": 1 }
  5605. ]
  5606. },
  5607. "bone25": {
  5608. "rotate": [
  5609. { "time": 0, "angle": -9.08 },
  5610. { "time": 0.5, "angle": -0.32 },
  5611. { "time": 0.6667, "angle": 0.17 },
  5612. { "time": 1, "angle": -9.08 },
  5613. { "time": 1.5, "angle": -0.32 },
  5614. { "time": 1.6667, "angle": 0.17 },
  5615. { "time": 2, "angle": -9.08 }
  5616. ],
  5617. "translate": [
  5618. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5619. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5620. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5621. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5622. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5623. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5624. { "time": 2, "x": 0, "y": 0 }
  5625. ],
  5626. "scale": [
  5627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5628. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5629. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5630. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5631. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5632. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5633. { "time": 2, "x": 1, "y": 1 }
  5634. ]
  5635. },
  5636. "bone26": {
  5637. "rotate": [
  5638. { "time": 0, "angle": -9.08 },
  5639. { "time": 0.5, "angle": -0.32 },
  5640. { "time": 0.6667, "angle": 0.17 },
  5641. { "time": 1, "angle": -9.08 },
  5642. { "time": 1.5, "angle": -0.32 },
  5643. { "time": 1.6667, "angle": 0.17 },
  5644. { "time": 2, "angle": -9.08 }
  5645. ],
  5646. "translate": [
  5647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5648. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5649. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5650. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5651. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5652. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5653. { "time": 2, "x": 0, "y": 0 }
  5654. ],
  5655. "scale": [
  5656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5657. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5658. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5659. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5660. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 2, "x": 1, "y": 1 }
  5663. ]
  5664. },
  5665. "bone27": {
  5666. "rotate": [
  5667. { "time": 0, "angle": -9.08 },
  5668. { "time": 0.5, "angle": -0.32 },
  5669. { "time": 0.6667, "angle": 0.17 },
  5670. { "time": 1, "angle": -9.08 },
  5671. { "time": 1.5, "angle": -0.32 },
  5672. { "time": 1.6667, "angle": 0.17 },
  5673. { "time": 2, "angle": -9.08 }
  5674. ],
  5675. "translate": [
  5676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5677. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5678. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5680. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5681. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5682. { "time": 2, "x": 0, "y": 0 }
  5683. ],
  5684. "scale": [
  5685. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5686. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5687. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5688. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5689. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5690. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5691. { "time": 2, "x": 1, "y": 1 }
  5692. ]
  5693. },
  5694. "bone28": {
  5695. "rotate": [
  5696. { "time": 0, "angle": 0 },
  5697. { "time": 0.5, "angle": -353.15 },
  5698. { "time": 1, "angle": 0 },
  5699. { "time": 1.5, "angle": -353.15 },
  5700. { "time": 2, "angle": 0 }
  5701. ],
  5702. "translate": [
  5703. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5704. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5705. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5706. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5707. { "time": 2, "x": 0, "y": 0 }
  5708. ],
  5709. "scale": [
  5710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5711. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5712. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 2, "x": 1, "y": 1 }
  5715. ]
  5716. },
  5717. "bone29": {
  5718. "rotate": [
  5719. { "time": 0, "angle": 2.15 },
  5720. { "time": 0.5, "angle": -3.05 },
  5721. { "time": 1, "angle": 2.15 },
  5722. { "time": 1.5, "angle": -3.05 },
  5723. { "time": 2, "angle": 2.15 }
  5724. ],
  5725. "translate": [
  5726. { "time": 0, "x": 0.06, "y": -1.27 },
  5727. { "time": 0.5, "x": 0, "y": 0 },
  5728. { "time": 1, "x": 0.06, "y": -1.27 },
  5729. { "time": 1.5, "x": 0, "y": 0 },
  5730. { "time": 2, "x": 0.06, "y": -1.27 }
  5731. ],
  5732. "scale": [
  5733. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5734. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5736. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5737. { "time": 2, "x": 1, "y": 1 }
  5738. ]
  5739. },
  5740. "bone30": {
  5741. "rotate": [
  5742. { "time": 0, "angle": 2.15 },
  5743. { "time": 0.5, "angle": -4.5 },
  5744. { "time": 1, "angle": 2.15 },
  5745. { "time": 1.5, "angle": -4.5 },
  5746. { "time": 2, "angle": 2.15 }
  5747. ],
  5748. "translate": [
  5749. { "time": 0, "x": -0.02, "y": 1.61 },
  5750. { "time": 0.5, "x": 0, "y": 0 },
  5751. { "time": 1, "x": -0.02, "y": 1.61 },
  5752. { "time": 1.5, "x": 0, "y": 0 },
  5753. { "time": 2, "x": -0.02, "y": 1.61 }
  5754. ],
  5755. "scale": [
  5756. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5757. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5758. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5759. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5760. { "time": 2, "x": 1, "y": 1 }
  5761. ]
  5762. },
  5763. "bone31": {
  5764. "rotate": [
  5765. { "time": 0, "angle": 4.13 },
  5766. { "time": 0.5, "angle": 0.45 },
  5767. { "time": 1, "angle": 4.13 },
  5768. { "time": 1.5, "angle": 0.45 },
  5769. { "time": 2, "angle": 4.13 }
  5770. ],
  5771. "translate": [
  5772. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5773. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5774. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5775. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5776. { "time": 2, "x": 0, "y": 0 }
  5777. ],
  5778. "scale": [
  5779. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5780. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5781. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5782. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5783. { "time": 2, "x": 1, "y": 1 }
  5784. ]
  5785. },
  5786. "bone32": {
  5787. "rotate": [
  5788. { "time": 0, "angle": 4.13 },
  5789. { "time": 0.5, "angle": -0.06 },
  5790. { "time": 0.6667, "angle": -0.83 },
  5791. { "time": 1, "angle": 4.13 },
  5792. { "time": 1.5, "angle": -0.06 },
  5793. { "time": 1.6667, "angle": -0.83 },
  5794. { "time": 2, "angle": 4.13 }
  5795. ],
  5796. "translate": [
  5797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5798. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5799. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5800. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5801. { "time": 2, "x": 0, "y": 0 }
  5802. ],
  5803. "scale": [
  5804. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5805. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5806. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5807. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5808. { "time": 2, "x": 1, "y": 1 }
  5809. ]
  5810. },
  5811. "bone33": {
  5812. "rotate": [
  5813. { "time": 0, "angle": 4.13 },
  5814. { "time": 0.5, "angle": -7.27 },
  5815. { "time": 0.6667, "angle": -5.64 },
  5816. { "time": 1, "angle": 4.13 },
  5817. { "time": 1.5, "angle": -7.27 },
  5818. { "time": 1.6667, "angle": -5.64 },
  5819. { "time": 2, "angle": 4.13 }
  5820. ],
  5821. "translate": [
  5822. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5823. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5824. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5825. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5826. { "time": 2, "x": 0, "y": 0 }
  5827. ],
  5828. "scale": [
  5829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5830. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5832. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5833. { "time": 2, "x": 1, "y": 1 }
  5834. ]
  5835. },
  5836. "bone34": {
  5837. "rotate": [
  5838. { "time": 0, "angle": 4.13 },
  5839. { "time": 0.5, "angle": 0.94 },
  5840. { "time": 0.6667, "angle": -0.17 },
  5841. { "time": 1, "angle": 4.13 },
  5842. { "time": 1.5, "angle": 0.94 },
  5843. { "time": 1.6667, "angle": -0.17 },
  5844. { "time": 2, "angle": 4.13 }
  5845. ],
  5846. "translate": [
  5847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5849. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5850. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5851. { "time": 2, "x": 0, "y": 0 }
  5852. ],
  5853. "scale": [
  5854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5855. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5856. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5857. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5858. { "time": 2, "x": 1, "y": 1 }
  5859. ]
  5860. },
  5861. "bone35": {
  5862. "rotate": [
  5863. { "time": 0, "angle": 4.13 },
  5864. { "time": 0.5, "angle": 0.94 },
  5865. { "time": 0.6667, "angle": -0.17 },
  5866. { "time": 1, "angle": 4.13 },
  5867. { "time": 1.5, "angle": 0.94 },
  5868. { "time": 1.6667, "angle": -0.17 },
  5869. { "time": 2, "angle": 4.13 }
  5870. ],
  5871. "translate": [
  5872. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5873. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5874. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5875. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5876. { "time": 2, "x": 0, "y": 0 }
  5877. ],
  5878. "scale": [
  5879. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5880. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5881. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5882. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5883. { "time": 2, "x": 1, "y": 1 }
  5884. ]
  5885. },
  5886. "bone36": {
  5887. "rotate": [
  5888. { "time": 0, "angle": 4.13 },
  5889. { "time": 0.5, "angle": 0.94 },
  5890. { "time": 0.6667, "angle": -0.17 },
  5891. { "time": 1, "angle": 4.13 },
  5892. { "time": 1.5, "angle": 0.94 },
  5893. { "time": 1.6667, "angle": -0.17 },
  5894. { "time": 2, "angle": 4.13 }
  5895. ],
  5896. "translate": [
  5897. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5898. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5899. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5900. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5901. { "time": 2, "x": 0, "y": 0 }
  5902. ],
  5903. "scale": [
  5904. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5905. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5907. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 2, "x": 1, "y": 1 }
  5909. ]
  5910. },
  5911. "bone37": {
  5912. "rotate": [
  5913. { "time": 0, "angle": 46.54 },
  5914. { "time": 0.1667, "angle": 38.99 },
  5915. { "time": 0.3333, "angle": 31.43 },
  5916. { "time": 0.5, "angle": 23.88 },
  5917. { "time": 0.6667, "angle": 34.88 },
  5918. { "time": 0.8333, "angle": 33.72 },
  5919. { "time": 1, "angle": 46.54 },
  5920. { "time": 1.1667, "angle": 38.99 },
  5921. { "time": 1.3333, "angle": 31.43 },
  5922. { "time": 1.5, "angle": 23.88 },
  5923. { "time": 1.6667, "angle": 34.88 },
  5924. { "time": 1.8333, "angle": 33.72 },
  5925. { "time": 2, "angle": 46.54 }
  5926. ],
  5927. "translate": [
  5928. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5929. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5930. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5931. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5932. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5933. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5934. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5935. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5936. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5937. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5938. { "time": 2, "x": 0, "y": 0 }
  5939. ],
  5940. "scale": [
  5941. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5942. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5943. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5944. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5945. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5946. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5947. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5948. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5949. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5950. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5951. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5952. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5953. { "time": 2, "x": 1, "y": 1 }
  5954. ]
  5955. },
  5956. "bone38": {
  5957. "rotate": [
  5958. { "time": 0, "angle": -9.66 },
  5959. { "time": 0.1667, "angle": -4.77 },
  5960. { "time": 0.3333, "angle": -10.32 },
  5961. { "time": 0.5, "angle": 5.02 },
  5962. { "time": 0.6667, "angle": 3.58 },
  5963. { "time": 0.8333, "angle": 2.44 },
  5964. { "time": 1, "angle": -9.66 },
  5965. { "time": 1.1667, "angle": -4.77 },
  5966. { "time": 1.3333, "angle": -10.32 },
  5967. { "time": 1.5, "angle": 5.02 },
  5968. { "time": 1.6667, "angle": 3.58 },
  5969. { "time": 1.8333, "angle": 2.44 },
  5970. { "time": 2, "angle": -9.66 }
  5971. ],
  5972. "translate": [
  5973. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5974. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5975. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5976. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5977. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5978. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5979. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5980. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5981. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5982. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5983. { "time": 2, "x": 0, "y": 0 }
  5984. ],
  5985. "scale": [
  5986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5987. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5988. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5989. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5990. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5991. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5992. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5993. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5994. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5995. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5996. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5997. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5998. { "time": 2, "x": 1, "y": 1 }
  5999. ]
  6000. },
  6001. "bone39": {
  6002. "rotate": [
  6003. { "time": 0, "angle": -9.66 },
  6004. { "time": 0.1667, "angle": -17.01 },
  6005. { "time": 0.3333, "angle": -8.71 },
  6006. { "time": 0.5, "angle": -11.53 },
  6007. { "time": 0.6667, "angle": 3.58 },
  6008. { "time": 0.8333, "angle": 13 },
  6009. { "time": 1, "angle": -9.66 },
  6010. { "time": 1.1667, "angle": -17.01 },
  6011. { "time": 1.3333, "angle": -8.71 },
  6012. { "time": 1.5, "angle": -11.53 },
  6013. { "time": 1.6667, "angle": 3.58 },
  6014. { "time": 1.8333, "angle": 13 },
  6015. { "time": 2, "angle": -9.66 }
  6016. ],
  6017. "translate": [
  6018. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6019. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6020. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6021. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6022. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6023. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6024. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6025. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6026. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6027. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6028. { "time": 2, "x": 0, "y": 0 }
  6029. ],
  6030. "scale": [
  6031. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6032. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6033. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6034. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6035. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6036. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6037. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6038. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6039. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6041. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6042. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 2, "x": 1, "y": 1 }
  6044. ]
  6045. },
  6046. "bone40": {
  6047. "rotate": [
  6048. { "time": 0, "angle": -9.66 },
  6049. { "time": 0.1667, "angle": -28 },
  6050. { "time": 0.3333, "angle": -20.68 },
  6051. { "time": 0.5, "angle": -11.53 },
  6052. { "time": 0.6667, "angle": 3.58 },
  6053. { "time": 0.8333, "angle": 2.44 },
  6054. { "time": 1, "angle": -9.66 },
  6055. { "time": 1.1667, "angle": -28 },
  6056. { "time": 1.3333, "angle": -20.68 },
  6057. { "time": 1.5, "angle": -11.53 },
  6058. { "time": 1.6667, "angle": 3.58 },
  6059. { "time": 1.8333, "angle": 2.44 },
  6060. { "time": 2, "angle": -9.66 }
  6061. ],
  6062. "translate": [
  6063. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6064. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6065. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6066. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6067. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6068. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6069. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6070. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6071. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6072. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6073. { "time": 2, "x": 0, "y": 0 }
  6074. ],
  6075. "scale": [
  6076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6077. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6078. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6079. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6080. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6081. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6082. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6083. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6084. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6085. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6086. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6087. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6088. { "time": 2, "x": 1, "y": 1 }
  6089. ]
  6090. },
  6091. "bone41": {
  6092. "rotate": [
  6093. { "time": 0, "angle": -9.66 },
  6094. { "time": 0.1667, "angle": -28 },
  6095. { "time": 0.3333, "angle": -20.68 },
  6096. { "time": 0.5, "angle": -11.53 },
  6097. { "time": 0.6667, "angle": 3.58 },
  6098. { "time": 0.8333, "angle": 21.14 },
  6099. { "time": 1, "angle": -9.66 },
  6100. { "time": 1.1667, "angle": -28 },
  6101. { "time": 1.3333, "angle": -20.68 },
  6102. { "time": 1.5, "angle": -11.53 },
  6103. { "time": 1.6667, "angle": 3.58 },
  6104. { "time": 1.8333, "angle": 21.14 },
  6105. { "time": 2, "angle": -9.66 }
  6106. ],
  6107. "translate": [
  6108. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6109. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6110. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6111. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6112. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6113. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6114. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6115. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6116. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6117. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6118. { "time": 2, "x": 0, "y": 0 }
  6119. ],
  6120. "scale": [
  6121. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6122. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6123. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6124. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6125. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6126. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6127. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6128. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6129. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6130. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6131. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6132. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6133. { "time": 2, "x": 1, "y": 1 }
  6134. ]
  6135. },
  6136. "bone42": {
  6137. "rotate": [
  6138. { "time": 0, "angle": -9.66 },
  6139. { "time": 0.1667, "angle": -28 },
  6140. { "time": 0.3333, "angle": -20.68 },
  6141. { "time": 0.5, "angle": -11.53 },
  6142. { "time": 0.6667, "angle": 3.58 },
  6143. { "time": 0.8333, "angle": 21.14 },
  6144. { "time": 1, "angle": -9.66 },
  6145. { "time": 1.1667, "angle": -28 },
  6146. { "time": 1.3333, "angle": -20.68 },
  6147. { "time": 1.5, "angle": -11.53 },
  6148. { "time": 1.6667, "angle": 3.58 },
  6149. { "time": 1.8333, "angle": 21.14 },
  6150. { "time": 2, "angle": -9.66 }
  6151. ],
  6152. "translate": [
  6153. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6158. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6159. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6160. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6161. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6162. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6163. { "time": 2, "x": 0, "y": 0 }
  6164. ],
  6165. "scale": [
  6166. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6167. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6168. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6169. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6170. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6171. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6172. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6173. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6174. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6175. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6176. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6177. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6178. { "time": 2, "x": 1, "y": 1 }
  6179. ]
  6180. },
  6181. "bone43": {
  6182. "rotate": [
  6183. { "time": 0, "angle": -13.82 },
  6184. { "time": 0.1667, "angle": 0.89 },
  6185. { "time": 0.3333, "angle": -1.87 },
  6186. { "time": 0.5, "angle": -4.64 },
  6187. { "time": 0.6667, "angle": -1.87 },
  6188. { "time": 0.8333, "angle": 0.89 },
  6189. { "time": 1, "angle": -13.82 },
  6190. { "time": 1.1667, "angle": 0.89 },
  6191. { "time": 1.3333, "angle": -1.87 },
  6192. { "time": 1.5, "angle": -4.64 },
  6193. { "time": 1.6667, "angle": -1.87 },
  6194. { "time": 1.8333, "angle": 0.89 },
  6195. { "time": 2, "angle": -13.82 }
  6196. ],
  6197. "translate": [
  6198. { "time": 0, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6199. { "time": 0.1667, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6200. { "time": 0.5, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6201. { "time": 0.6667, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6202. { "time": 0.8333, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6203. { "time": 1, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6204. { "time": 1.1667, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6205. { "time": 1.5, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6206. { "time": 1.6667, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6207. { "time": 1.8333, "x": 0.96, "y": 2.59, "curve": "stepped" },
  6208. { "time": 2, "x": 0.96, "y": 2.59 }
  6209. ],
  6210. "scale": [
  6211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6212. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6213. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6214. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6215. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6216. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6217. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6218. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6219. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6220. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6221. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6222. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6223. { "time": 2, "x": 1, "y": 1 }
  6224. ]
  6225. },
  6226. "bone44": {
  6227. "rotate": [
  6228. { "time": 0, "angle": 5.24 },
  6229. { "time": 0.1667, "angle": 2.48 },
  6230. { "time": 0.3333, "angle": -0.29 },
  6231. { "time": 0.5, "angle": -3.05 },
  6232. { "time": 0.6667, "angle": -0.29 },
  6233. { "time": 0.8333, "angle": 2.48 },
  6234. { "time": 1, "angle": 5.24 },
  6235. { "time": 1.1667, "angle": 2.48 },
  6236. { "time": 1.3333, "angle": -0.29 },
  6237. { "time": 1.5, "angle": -3.05 },
  6238. { "time": 1.6667, "angle": -0.29 },
  6239. { "time": 1.8333, "angle": 2.48 },
  6240. { "time": 2, "angle": 5.24 }
  6241. ],
  6242. "translate": [
  6243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6244. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6245. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6246. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6247. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6248. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6249. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6252. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6253. { "time": 2, "x": 0, "y": 0 }
  6254. ],
  6255. "scale": [
  6256. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6257. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6258. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6259. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6260. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6261. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6268. { "time": 2, "x": 1, "y": 1 }
  6269. ]
  6270. },
  6271. "bone45": {
  6272. "rotate": [
  6273. { "time": 0, "angle": 5.24 },
  6274. { "time": 0.1667, "angle": 9.43 },
  6275. { "time": 0.3333, "angle": 8.74 },
  6276. { "time": 0.5, "angle": -3.05 },
  6277. { "time": 0.6667, "angle": -10.5 },
  6278. { "time": 0.8333, "angle": -10.43 },
  6279. { "time": 1, "angle": 5.24 },
  6280. { "time": 1.1667, "angle": 9.43 },
  6281. { "time": 1.3333, "angle": 8.74 },
  6282. { "time": 1.5, "angle": -3.05 },
  6283. { "time": 1.6667, "angle": -10.5 },
  6284. { "time": 1.8333, "angle": -10.43 },
  6285. { "time": 2, "angle": 5.24 }
  6286. ],
  6287. "translate": [
  6288. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6289. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6290. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6291. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6292. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6293. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6294. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6295. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6296. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6297. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6298. { "time": 2, "x": 0, "y": 0 }
  6299. ],
  6300. "scale": [
  6301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6302. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6303. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6304. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6305. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6306. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6307. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6308. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6309. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6310. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6311. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6312. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6313. { "time": 2, "x": 1, "y": 1 }
  6314. ]
  6315. },
  6316. "bone46": {
  6317. "rotate": [
  6318. { "time": 0, "angle": 5.24 },
  6319. { "time": 0.1667, "angle": 9.43 },
  6320. { "time": 0.3333, "angle": 8.74 },
  6321. { "time": 0.5, "angle": -3.05 },
  6322. { "time": 0.6667, "angle": -10.5 },
  6323. { "time": 0.8333, "angle": -10.43 },
  6324. { "time": 1, "angle": 5.24 },
  6325. { "time": 1.1667, "angle": 9.43 },
  6326. { "time": 1.3333, "angle": 8.74 },
  6327. { "time": 1.5, "angle": -3.05 },
  6328. { "time": 1.6667, "angle": -10.5 },
  6329. { "time": 1.8333, "angle": -10.43 },
  6330. { "time": 2, "angle": 5.24 }
  6331. ],
  6332. "translate": [
  6333. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6334. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6335. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6336. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6337. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6338. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6339. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6340. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6341. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6343. { "time": 2, "x": 0, "y": 0 }
  6344. ],
  6345. "scale": [
  6346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6347. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6348. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6349. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6350. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6351. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6352. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6353. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6354. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6355. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6356. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6357. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6358. { "time": 2, "x": 1, "y": 1 }
  6359. ]
  6360. },
  6361. "bone47": {
  6362. "rotate": [
  6363. { "time": 0, "angle": 5.24 },
  6364. { "time": 0.1667, "angle": 9.43 },
  6365. { "time": 0.3333, "angle": 8.74 },
  6366. { "time": 0.5, "angle": -3.05 },
  6367. { "time": 0.6667, "angle": -10.5 },
  6368. { "time": 0.8333, "angle": -10.43 },
  6369. { "time": 1, "angle": 5.24 },
  6370. { "time": 1.1667, "angle": 9.43 },
  6371. { "time": 1.3333, "angle": 8.74 },
  6372. { "time": 1.5, "angle": -3.05 },
  6373. { "time": 1.6667, "angle": -10.5 },
  6374. { "time": 1.8333, "angle": -10.43 },
  6375. { "time": 2, "angle": 5.24 }
  6376. ],
  6377. "translate": [
  6378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6379. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6381. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6382. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6383. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6384. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6385. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6386. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6387. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6388. { "time": 2, "x": 0, "y": 0 }
  6389. ],
  6390. "scale": [
  6391. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6392. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6393. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6394. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6395. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6396. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6397. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6398. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6399. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6400. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6401. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6402. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6403. { "time": 2, "x": 1, "y": 1 }
  6404. ]
  6405. },
  6406. "bone48": {
  6407. "rotate": [
  6408. { "time": 0, "angle": 5.24 },
  6409. { "time": 0.1667, "angle": 9.43 },
  6410. { "time": 0.3333, "angle": 8.74 },
  6411. { "time": 0.5, "angle": -3.05 },
  6412. { "time": 0.6667, "angle": -10.5 },
  6413. { "time": 0.8333, "angle": -10.43 },
  6414. { "time": 1, "angle": 5.24 },
  6415. { "time": 1.1667, "angle": 9.43 },
  6416. { "time": 1.3333, "angle": 8.74 },
  6417. { "time": 1.5, "angle": -3.05 },
  6418. { "time": 1.6667, "angle": -10.5 },
  6419. { "time": 1.8333, "angle": -10.43 },
  6420. { "time": 2, "angle": 5.24 }
  6421. ],
  6422. "translate": [
  6423. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6424. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6426. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6427. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6428. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6429. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6430. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6431. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6432. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6433. { "time": 2, "x": 0, "y": 0 }
  6434. ],
  6435. "scale": [
  6436. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6437. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6438. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6439. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6440. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6441. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6442. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6443. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6444. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6445. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6446. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6447. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6448. { "time": 2, "x": 1, "y": 1 }
  6449. ]
  6450. },
  6451. "bone49": {
  6452. "rotate": [
  6453. { "time": 0, "angle": 5.24 },
  6454. { "time": 0.1667, "angle": 9.43 },
  6455. { "time": 0.3333, "angle": 8.74 },
  6456. { "time": 0.5, "angle": -3.05 },
  6457. { "time": 0.6667, "angle": -10.5 },
  6458. { "time": 0.8333, "angle": -10.43 },
  6459. { "time": 1, "angle": 5.24 },
  6460. { "time": 1.1667, "angle": 9.43 },
  6461. { "time": 1.3333, "angle": 8.74 },
  6462. { "time": 1.5, "angle": -3.05 },
  6463. { "time": 1.6667, "angle": -10.5 },
  6464. { "time": 1.8333, "angle": -10.43 },
  6465. { "time": 2, "angle": 5.24 }
  6466. ],
  6467. "translate": [
  6468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6469. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6470. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6471. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6472. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6473. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6474. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6475. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6476. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6477. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6478. { "time": 2, "x": 0, "y": 0 }
  6479. ],
  6480. "scale": [
  6481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6482. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6483. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6484. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6485. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6486. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6487. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6488. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6489. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6490. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6491. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6492. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6493. { "time": 2, "x": 1, "y": 1 }
  6494. ]
  6495. },
  6496. "bone56": {
  6497. "rotate": [
  6498. { "time": 0, "angle": 0, "curve": "stepped" },
  6499. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6500. { "time": 1, "angle": 0, "curve": "stepped" },
  6501. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6502. { "time": 2, "angle": 0 }
  6503. ],
  6504. "translate": [
  6505. { "time": 0, "x": 1.23, "y": 0 },
  6506. { "time": 0.5, "x": 0, "y": 0 },
  6507. { "time": 1, "x": 1.23, "y": 0 },
  6508. { "time": 1.5, "x": 0, "y": 0 },
  6509. { "time": 2, "x": 1.23, "y": 0 }
  6510. ],
  6511. "scale": [
  6512. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6513. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6514. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6515. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6516. { "time": 2, "x": 1, "y": 1 }
  6517. ]
  6518. },
  6519. "bone57": {
  6520. "rotate": [
  6521. { "time": 0, "angle": 0, "curve": "stepped" },
  6522. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6523. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6524. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6525. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6526. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6527. { "time": 1, "angle": 0, "curve": "stepped" },
  6528. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6529. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6530. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6531. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6532. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6533. { "time": 2, "angle": 0 }
  6534. ],
  6535. "translate": [
  6536. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6537. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6538. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6539. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6540. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6541. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6542. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6543. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6544. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6545. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6546. { "time": 2, "x": 0, "y": 0 }
  6547. ],
  6548. "scale": [
  6549. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6550. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6551. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6552. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6553. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6554. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6555. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6556. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6557. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6558. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6559. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6560. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6561. { "time": 2, "x": 1, "y": 1 }
  6562. ]
  6563. },
  6564. "bone58": {
  6565. "rotate": [
  6566. { "time": 0, "angle": 0, "curve": "stepped" },
  6567. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6568. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6569. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6570. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6571. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6572. { "time": 1, "angle": 0, "curve": "stepped" },
  6573. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6574. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6575. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6576. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6577. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6578. { "time": 2, "angle": 0 }
  6579. ],
  6580. "translate": [
  6581. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6582. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6583. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6584. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6585. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6586. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6587. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6588. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6589. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6590. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6591. { "time": 2, "x": 0, "y": 0 }
  6592. ],
  6593. "scale": [
  6594. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6595. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6596. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6597. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6598. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6599. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6600. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6601. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6602. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6603. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6604. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6605. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6606. { "time": 2, "x": 1, "y": 1 }
  6607. ]
  6608. },
  6609. "bone59": {
  6610. "rotate": [
  6611. { "time": 0, "angle": 0, "curve": "stepped" },
  6612. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6613. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6614. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6615. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6616. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6617. { "time": 1, "angle": 0, "curve": "stepped" },
  6618. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6619. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6620. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6621. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6622. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6623. { "time": 2, "angle": 0 }
  6624. ],
  6625. "translate": [
  6626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6627. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6628. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6629. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6630. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6631. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6632. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6633. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6634. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6635. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6636. { "time": 2, "x": 0, "y": 0 }
  6637. ],
  6638. "scale": [
  6639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6640. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6641. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6642. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6643. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6644. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6645. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6646. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6647. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6648. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6649. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6650. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6651. { "time": 2, "x": 1, "y": 1 }
  6652. ]
  6653. },
  6654. "bone60": {
  6655. "rotate": [
  6656. { "time": 0, "angle": 0, "curve": "stepped" },
  6657. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6658. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6659. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6660. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6661. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6662. { "time": 1, "angle": 0, "curve": "stepped" },
  6663. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6664. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6665. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6666. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6667. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6668. { "time": 2, "angle": 0 }
  6669. ],
  6670. "translate": [
  6671. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6672. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6673. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6674. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6675. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6676. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6677. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6678. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6679. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6680. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6681. { "time": 2, "x": 0, "y": 0 }
  6682. ],
  6683. "scale": [
  6684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6685. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6686. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6687. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6688. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6689. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6690. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6691. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6692. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6693. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6694. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6695. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6696. { "time": 2, "x": 1, "y": 1 }
  6697. ]
  6698. },
  6699. "bone61": {
  6700. "rotate": [
  6701. { "time": 0, "angle": 0.03 },
  6702. { "time": 0.5, "angle": -3.3 },
  6703. { "time": 1, "angle": 0.03 },
  6704. { "time": 1.5, "angle": -3.3 },
  6705. { "time": 2, "angle": 0.03 }
  6706. ],
  6707. "translate": [
  6708. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6709. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6710. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6711. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6712. { "time": 2, "x": 0, "y": 0 }
  6713. ],
  6714. "scale": [
  6715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6716. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6717. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6718. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6719. { "time": 2, "x": 1, "y": 1 }
  6720. ]
  6721. },
  6722. "bone62": {
  6723. "rotate": [
  6724. { "time": 0, "angle": 0 },
  6725. { "time": 0.5, "angle": -3.3 },
  6726. { "time": 1, "angle": 0 },
  6727. { "time": 1.5, "angle": -3.3 },
  6728. { "time": 2, "angle": 0.03 }
  6729. ],
  6730. "translate": [
  6731. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6732. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6733. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6734. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6735. { "time": 2, "x": 0, "y": 0 }
  6736. ],
  6737. "scale": [
  6738. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6739. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6740. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6741. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6742. { "time": 2, "x": 1, "y": 1 }
  6743. ]
  6744. },
  6745. "bone63": {
  6746. "rotate": [
  6747. { "time": 0, "angle": 0 },
  6748. { "time": 0.1667, "angle": 3.78 },
  6749. { "time": 0.5, "angle": -5.09 },
  6750. { "time": 1, "angle": 0 },
  6751. { "time": 1.1667, "angle": 3.78 },
  6752. { "time": 1.5, "angle": -5.09 },
  6753. { "time": 2, "angle": 0.03 }
  6754. ],
  6755. "translate": [
  6756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6757. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6758. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6759. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6760. { "time": 2, "x": 0, "y": 0 }
  6761. ],
  6762. "scale": [
  6763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6764. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6766. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6767. { "time": 2, "x": 1, "y": 1 }
  6768. ]
  6769. },
  6770. "bone64": {
  6771. "rotate": [
  6772. { "time": 0, "angle": 0 },
  6773. { "time": 0.1667, "angle": 3.78 },
  6774. { "time": 0.5, "angle": -5.09 },
  6775. { "time": 0.6667, "angle": -12.89 },
  6776. { "time": 1, "angle": 0 },
  6777. { "time": 1.1667, "angle": 3.78 },
  6778. { "time": 1.5, "angle": -5.09 },
  6779. { "time": 1.6667, "angle": -12.89 },
  6780. { "time": 2, "angle": 0.03 }
  6781. ],
  6782. "translate": [
  6783. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6784. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6785. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6786. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6787. { "time": 2, "x": 0, "y": 0 }
  6788. ],
  6789. "scale": [
  6790. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6791. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6792. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6793. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6794. { "time": 2, "x": 1, "y": 1 }
  6795. ]
  6796. },
  6797. "bone65": {
  6798. "rotate": [
  6799. { "time": 0, "angle": 0 },
  6800. { "time": 0.1667, "angle": 3.78 },
  6801. { "time": 0.5, "angle": -5.09 },
  6802. { "time": 0.6667, "angle": -12.89 },
  6803. { "time": 1, "angle": 0 },
  6804. { "time": 1.1667, "angle": 3.78 },
  6805. { "time": 1.5, "angle": -5.09 },
  6806. { "time": 1.6667, "angle": -12.89 },
  6807. { "time": 2, "angle": 0.03 }
  6808. ],
  6809. "translate": [
  6810. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6811. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6812. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6813. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6814. { "time": 2, "x": 0, "y": 0 }
  6815. ],
  6816. "scale": [
  6817. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6818. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6819. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6820. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6821. { "time": 2, "x": 1, "y": 1 }
  6822. ]
  6823. },
  6824. "bone66": {
  6825. "rotate": [
  6826. { "time": 0, "angle": 0 },
  6827. { "time": 0.1667, "angle": 3.78 },
  6828. { "time": 0.5, "angle": -5.09 },
  6829. { "time": 0.6667, "angle": -12.89 },
  6830. { "time": 1, "angle": 0 },
  6831. { "time": 1.1667, "angle": 3.78 },
  6832. { "time": 1.5, "angle": -5.09 },
  6833. { "time": 1.6667, "angle": -12.89 },
  6834. { "time": 2, "angle": 0.03 }
  6835. ],
  6836. "translate": [
  6837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6838. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6839. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6840. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6841. { "time": 2, "x": 0, "y": 0 }
  6842. ],
  6843. "scale": [
  6844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6845. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6846. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6847. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6848. { "time": 2, "x": 1, "y": 1 }
  6849. ]
  6850. },
  6851. "bone67": {
  6852. "rotate": [
  6853. { "time": 0, "angle": 0, "curve": "stepped" },
  6854. { "time": 1, "angle": 0, "curve": "stepped" },
  6855. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6856. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6857. { "time": 1.2667, "angle": 0 }
  6858. ],
  6859. "translate": [
  6860. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6861. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6862. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  6863. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6864. { "time": 1.2667, "x": 0, "y": 0 }
  6865. ],
  6866. "scale": [
  6867. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6868. { "time": 1, "x": 1, "y": 1 },
  6869. { "time": 1.0667, "x": 0.425, "y": 1, "curve": "stepped" },
  6870. { "time": 1.1667, "x": 0.425, "y": 1 },
  6871. { "time": 1.2667, "x": 1, "y": 1 }
  6872. ]
  6873. },
  6874. "bone68": {
  6875. "rotate": [
  6876. { "time": 0, "angle": 0, "curve": "stepped" },
  6877. { "time": 1, "angle": 0, "curve": "stepped" },
  6878. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6879. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6880. { "time": 1.2667, "angle": 0 }
  6881. ],
  6882. "translate": [
  6883. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6884. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6885. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  6886. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6887. { "time": 1.2667, "x": 0, "y": 0 }
  6888. ],
  6889. "scale": [
  6890. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6891. { "time": 1, "x": 1, "y": 1 },
  6892. { "time": 1.0667, "x": 0.392, "y": 1, "curve": "stepped" },
  6893. { "time": 1.1667, "x": 0.392, "y": 1 },
  6894. { "time": 1.2667, "x": 1, "y": 1 }
  6895. ]
  6896. },
  6897. "bone69": {
  6898. "rotate": [
  6899. { "time": 0, "angle": 0, "curve": "stepped" },
  6900. { "time": 1, "angle": 0, "curve": "stepped" },
  6901. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6902. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6903. { "time": 1.2667, "angle": 0 }
  6904. ],
  6905. "translate": [
  6906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6907. { "time": 1, "x": 0, "y": 0 },
  6908. { "time": 1.0667, "x": -3.08, "y": 0.58 },
  6909. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6910. { "time": 1.2667, "x": 0, "y": 0 }
  6911. ],
  6912. "scale": [
  6913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6914. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6915. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  6916. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6917. { "time": 1.2667, "x": 1, "y": 1 }
  6918. ]
  6919. },
  6920. "bone70": {
  6921. "rotate": [
  6922. { "time": 0, "angle": 0, "curve": "stepped" },
  6923. { "time": 1, "angle": 0, "curve": "stepped" },
  6924. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6925. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6926. { "time": 1.2667, "angle": 0 }
  6927. ],
  6928. "translate": [
  6929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6930. { "time": 1, "x": 0, "y": 0 },
  6931. { "time": 1.0667, "x": -3.87, "y": 0.33, "curve": "stepped" },
  6932. { "time": 1.1667, "x": -3.87, "y": 0.33 },
  6933. { "time": 1.2667, "x": 0, "y": 0 }
  6934. ],
  6935. "scale": [
  6936. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6937. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6938. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  6939. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6940. { "time": 1.2667, "x": 1, "y": 1 }
  6941. ]
  6942. },
  6943. "bone71": {
  6944. "rotate": [
  6945. { "time": 0, "angle": 0, "curve": "stepped" },
  6946. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6947. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6948. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6949. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6950. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6951. { "time": 1, "angle": 0, "curve": "stepped" },
  6952. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6953. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6954. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6955. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6956. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6957. { "time": 2, "angle": 0 }
  6958. ],
  6959. "translate": [
  6960. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6963. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6964. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6965. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6966. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6967. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6968. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6969. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6970. { "time": 2, "x": 0, "y": 0 }
  6971. ],
  6972. "scale": [
  6973. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6974. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6975. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6976. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6977. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6978. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6979. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6980. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6981. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6982. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6983. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6984. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6985. { "time": 2, "x": 1, "y": 1 }
  6986. ]
  6987. },
  6988. "bone72": {
  6989. "rotate": [
  6990. { "time": 0, "angle": 0, "curve": "stepped" },
  6991. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6992. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6993. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6994. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6995. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6996. { "time": 1, "angle": 0, "curve": "stepped" },
  6997. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6998. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6999. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7000. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7001. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7002. { "time": 2, "angle": 0 }
  7003. ],
  7004. "translate": [
  7005. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7006. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7007. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7008. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7009. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7010. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7011. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7012. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7013. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7014. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7015. { "time": 2, "x": 0, "y": 0 }
  7016. ],
  7017. "scale": [
  7018. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7019. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7020. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7021. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7022. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7023. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7024. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7025. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7026. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7027. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7028. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7029. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7030. { "time": 2, "x": 1, "y": 1 }
  7031. ]
  7032. },
  7033. "bone73": {
  7034. "rotate": [
  7035. { "time": 0, "angle": 0, "curve": "stepped" },
  7036. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7037. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7038. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7039. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7040. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7041. { "time": 1, "angle": 0, "curve": "stepped" },
  7042. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7043. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7044. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7045. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7046. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7047. { "time": 2, "angle": 0 }
  7048. ],
  7049. "translate": [
  7050. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7051. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7052. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7053. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7054. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7055. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7056. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7057. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7058. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7059. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7060. { "time": 2, "x": 0, "y": 0 }
  7061. ],
  7062. "scale": [
  7063. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7064. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7065. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7066. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7067. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7068. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7069. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7070. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7071. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7072. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7073. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7074. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7075. { "time": 2, "x": 1, "y": 1 }
  7076. ]
  7077. },
  7078. "bone74": {
  7079. "rotate": [
  7080. { "time": 0, "angle": 0, "curve": "stepped" },
  7081. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7082. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7083. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7084. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7085. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7086. { "time": 1, "angle": 0, "curve": "stepped" },
  7087. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7088. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7089. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7090. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7091. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7092. { "time": 2, "angle": 0 }
  7093. ],
  7094. "translate": [
  7095. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7096. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7097. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7098. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7099. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7100. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7101. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7102. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7103. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7104. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7105. { "time": 2, "x": 0, "y": 0 }
  7106. ],
  7107. "scale": [
  7108. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7109. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7110. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7111. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7112. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7113. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7114. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7115. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7116. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7117. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7118. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7119. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7120. { "time": 2, "x": 1, "y": 1 }
  7121. ]
  7122. },
  7123. "bone75": {
  7124. "rotate": [
  7125. { "time": 0, "angle": 0, "curve": "stepped" },
  7126. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7127. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7128. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7129. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7130. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7131. { "time": 1, "angle": 0, "curve": "stepped" },
  7132. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7133. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7134. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7135. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7136. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7137. { "time": 2, "angle": 0 }
  7138. ],
  7139. "translate": [
  7140. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7141. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7142. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7143. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7144. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7145. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7146. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7147. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7148. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7149. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7150. { "time": 2, "x": 0, "y": 0 }
  7151. ],
  7152. "scale": [
  7153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7154. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7155. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7156. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7157. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7158. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7159. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7160. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7161. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7162. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7163. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7164. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7165. { "time": 2, "x": 1, "y": 1 }
  7166. ]
  7167. },
  7168. "bone76": {
  7169. "rotate": [
  7170. { "time": 0, "angle": 0, "curve": "stepped" },
  7171. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7172. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7173. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7174. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7175. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7176. { "time": 1, "angle": 0, "curve": "stepped" },
  7177. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7178. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7179. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7180. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7181. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7182. { "time": 2, "angle": 0 }
  7183. ],
  7184. "translate": [
  7185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7186. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7187. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7188. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7189. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7190. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7191. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7192. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7193. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7194. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7195. { "time": 2, "x": 0, "y": 0 }
  7196. ],
  7197. "scale": [
  7198. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7199. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7200. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7201. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7202. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7203. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7204. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7205. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7206. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7207. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7208. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7209. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7210. { "time": 2, "x": 1, "y": 1 }
  7211. ]
  7212. },
  7213. "bone77": {
  7214. "rotate": [
  7215. { "time": 0, "angle": 0 },
  7216. { "time": 0.1667, "angle": 2.99 },
  7217. { "time": 0.3333, "angle": 5.98 },
  7218. { "time": 0.5, "angle": 8.98 },
  7219. { "time": 0.6667, "angle": 5.98 },
  7220. { "time": 0.8333, "angle": 2.99 },
  7221. { "time": 1, "angle": 0 },
  7222. { "time": 1.1667, "angle": 2.99 },
  7223. { "time": 1.3333, "angle": 5.98 },
  7224. { "time": 1.5, "angle": 8.98 },
  7225. { "time": 1.6667, "angle": 5.98 },
  7226. { "time": 1.8333, "angle": 2.99 },
  7227. { "time": 2, "angle": 0 }
  7228. ],
  7229. "translate": [
  7230. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7231. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7232. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7233. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7234. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7235. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7236. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7237. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7238. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7239. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7240. { "time": 2, "x": 0, "y": 0 }
  7241. ],
  7242. "scale": [
  7243. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7244. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7245. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7246. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7247. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7248. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7250. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7251. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7252. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7253. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7254. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7255. { "time": 2, "x": 1, "y": 1 }
  7256. ]
  7257. },
  7258. "bone78": {
  7259. "rotate": [
  7260. { "time": 0, "angle": 0 },
  7261. { "time": 0.1667, "angle": 2.99 },
  7262. { "time": 0.3333, "angle": 5.98 },
  7263. { "time": 0.5, "angle": 8.98 },
  7264. { "time": 0.6667, "angle": 5.98 },
  7265. { "time": 0.8333, "angle": 2.99 },
  7266. { "time": 1, "angle": 0 },
  7267. { "time": 1.1667, "angle": 2.99 },
  7268. { "time": 1.3333, "angle": 5.98 },
  7269. { "time": 1.5, "angle": 8.98 },
  7270. { "time": 1.6667, "angle": 5.98 },
  7271. { "time": 1.8333, "angle": 2.99 },
  7272. { "time": 2, "angle": 0 }
  7273. ],
  7274. "translate": [
  7275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7276. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7277. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7278. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7279. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7280. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7281. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7282. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7283. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7284. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7285. { "time": 2, "x": 0, "y": 0 }
  7286. ],
  7287. "scale": [
  7288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7289. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7290. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7291. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7292. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7293. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7294. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7295. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7296. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7297. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7298. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7299. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7300. { "time": 2, "x": 1, "y": 1 }
  7301. ]
  7302. },
  7303. "bone79": {
  7304. "rotate": [
  7305. { "time": 0, "angle": 0 },
  7306. { "time": 0.1667, "angle": 2.99 },
  7307. { "time": 0.3333, "angle": 5.98 },
  7308. { "time": 0.5, "angle": 8.98 },
  7309. { "time": 0.6667, "angle": 5.98 },
  7310. { "time": 0.8333, "angle": 2.99 },
  7311. { "time": 1, "angle": 0 },
  7312. { "time": 1.1667, "angle": 2.99 },
  7313. { "time": 1.3333, "angle": 5.98 },
  7314. { "time": 1.5, "angle": 8.98 },
  7315. { "time": 1.6667, "angle": 5.98 },
  7316. { "time": 1.8333, "angle": 2.99 },
  7317. { "time": 2, "angle": 0 }
  7318. ],
  7319. "translate": [
  7320. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7321. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7322. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7323. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7324. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7325. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7326. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7327. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7328. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7329. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7330. { "time": 2, "x": 0, "y": 0 }
  7331. ],
  7332. "scale": [
  7333. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7334. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7335. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7336. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7337. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7338. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7339. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7340. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7341. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7342. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7343. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7344. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7345. { "time": 2, "x": 1, "y": 1 }
  7346. ]
  7347. },
  7348. "bone80": {
  7349. "rotate": [
  7350. { "time": 0, "angle": 0 },
  7351. { "time": 0.1667, "angle": 2.99 },
  7352. { "time": 0.3333, "angle": 5.98 },
  7353. { "time": 0.5, "angle": 8.98 },
  7354. { "time": 0.6667, "angle": 5.98 },
  7355. { "time": 0.8333, "angle": 2.99 },
  7356. { "time": 1, "angle": 0 },
  7357. { "time": 1.1667, "angle": 2.99 },
  7358. { "time": 1.3333, "angle": 5.98 },
  7359. { "time": 1.5, "angle": 8.98 },
  7360. { "time": 1.6667, "angle": 5.98 },
  7361. { "time": 1.8333, "angle": 2.99 },
  7362. { "time": 2, "angle": 0 }
  7363. ],
  7364. "translate": [
  7365. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7366. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7367. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7368. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7369. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7370. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7371. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7372. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7373. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7374. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7375. { "time": 2, "x": 0, "y": 0 }
  7376. ],
  7377. "scale": [
  7378. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7379. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7380. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7381. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7382. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7383. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7384. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7385. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7386. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7387. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7388. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7389. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7390. { "time": 2, "x": 1, "y": 1 }
  7391. ]
  7392. },
  7393. "bone81": {
  7394. "rotate": [
  7395. { "time": 0, "angle": 0 },
  7396. { "time": 0.1667, "angle": 2.99 },
  7397. { "time": 0.3333, "angle": 5.98 },
  7398. { "time": 0.5, "angle": 8.98 },
  7399. { "time": 0.6667, "angle": 5.98 },
  7400. { "time": 0.8333, "angle": 2.99 },
  7401. { "time": 1, "angle": 0 },
  7402. { "time": 1.1667, "angle": 2.99 },
  7403. { "time": 1.3333, "angle": 5.98 },
  7404. { "time": 1.5, "angle": 8.98 },
  7405. { "time": 1.6667, "angle": 5.98 },
  7406. { "time": 1.8333, "angle": 2.99 },
  7407. { "time": 2, "angle": 0 }
  7408. ],
  7409. "translate": [
  7410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7411. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7412. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7413. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7414. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7415. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7416. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7417. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7418. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7419. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7420. { "time": 2, "x": 0, "y": 0 }
  7421. ],
  7422. "scale": [
  7423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7424. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7425. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7426. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7427. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7428. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7429. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7430. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7431. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7432. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7433. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7434. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7435. { "time": 2, "x": 1, "y": 1 }
  7436. ]
  7437. },
  7438. "bone82": {
  7439. "rotate": [
  7440. { "time": 0, "angle": 0 },
  7441. { "time": 0.1667, "angle": 2.99 },
  7442. { "time": 0.3333, "angle": 5.98 },
  7443. { "time": 0.5, "angle": 8.98 },
  7444. { "time": 0.6667, "angle": 5.98 },
  7445. { "time": 0.8333, "angle": 2.99 },
  7446. { "time": 1, "angle": 0 },
  7447. { "time": 1.1667, "angle": 2.99 },
  7448. { "time": 1.3333, "angle": 5.98 },
  7449. { "time": 1.5, "angle": 8.98 },
  7450. { "time": 1.6667, "angle": 5.98 },
  7451. { "time": 1.8333, "angle": 2.99 },
  7452. { "time": 2, "angle": 0 }
  7453. ],
  7454. "translate": [
  7455. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7456. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7457. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7458. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7459. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7460. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7461. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7462. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7463. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7464. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7465. { "time": 2, "x": 0, "y": 0 }
  7466. ],
  7467. "scale": [
  7468. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7469. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7470. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7471. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7472. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7473. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7474. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7475. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7476. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7477. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7478. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7479. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7480. { "time": 2, "x": 1, "y": 1 }
  7481. ]
  7482. },
  7483. "bone83": {
  7484. "rotate": [
  7485. { "time": 0, "angle": -9.92 },
  7486. { "time": 0.1667, "angle": 6.85 },
  7487. { "time": 0.3333, "angle": 23.63 },
  7488. { "time": 0.5, "angle": 42.43 },
  7489. { "time": 0.6667, "angle": 14.7 },
  7490. { "time": 0.8333, "angle": 0.31 },
  7491. { "time": 1, "angle": -9.92 },
  7492. { "time": 1.1667, "angle": 6.85 },
  7493. { "time": 1.3333, "angle": 23.63 },
  7494. { "time": 1.5, "angle": 42.43 },
  7495. { "time": 1.6667, "angle": 14.7 },
  7496. { "time": 1.8333, "angle": 0.31 },
  7497. { "time": 2, "angle": -9.92 }
  7498. ],
  7499. "translate": [
  7500. { "time": 0, "x": 0.34, "y": 1.24 },
  7501. { "time": 0.1667, "x": 0.3, "y": 1.71 },
  7502. { "time": 0.3333, "x": 0.28, "y": 1.45 },
  7503. { "time": 0.5, "x": 0.34, "y": 1.24 },
  7504. { "time": 0.6667, "x": 2.49, "y": 2.99 },
  7505. { "time": 0.8333, "x": 1.54, "y": 1.82 },
  7506. { "time": 1, "x": 0.34, "y": 1.24 },
  7507. { "time": 1.1667, "x": 0.3, "y": 1.71 },
  7508. { "time": 1.3333, "x": 0.28, "y": 1.45 },
  7509. { "time": 1.5, "x": 0.34, "y": 1.24 },
  7510. { "time": 1.6667, "x": 2.49, "y": 2.99 },
  7511. { "time": 1.8333, "x": 1.54, "y": 1.82 },
  7512. { "time": 2, "x": 0.34, "y": 1.24 }
  7513. ],
  7514. "scale": [
  7515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7516. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7517. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7518. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7519. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7520. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7521. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7522. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7523. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7524. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7525. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7526. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7527. { "time": 2, "x": 1, "y": 1 }
  7528. ]
  7529. },
  7530. "bone84": {
  7531. "rotate": [
  7532. { "time": 0, "angle": 0, "curve": "stepped" },
  7533. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7534. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7535. { "time": 0.5, "angle": 0 },
  7536. { "time": 0.6667, "angle": 49.55 },
  7537. { "time": 0.8333, "angle": 22.42 },
  7538. { "time": 1, "angle": 0, "curve": "stepped" },
  7539. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7540. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7541. { "time": 1.5, "angle": 0 },
  7542. { "time": 1.6667, "angle": 49.55 },
  7543. { "time": 1.8333, "angle": 22.42 },
  7544. { "time": 2, "angle": 0 }
  7545. ],
  7546. "translate": [
  7547. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7548. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7549. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7550. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7551. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7552. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7553. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7554. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7555. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7556. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7557. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7558. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7559. { "time": 2, "x": 0, "y": 0 }
  7560. ],
  7561. "scale": [
  7562. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7563. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7564. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7565. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7566. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7567. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7568. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7569. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7570. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7571. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7572. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7573. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7574. { "time": 2, "x": 1, "y": 1 }
  7575. ]
  7576. },
  7577. "bone85": {
  7578. "rotate": [
  7579. { "time": 0, "angle": 0, "curve": "stepped" },
  7580. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7581. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7582. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7583. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7584. { "time": 1, "angle": 0, "curve": "stepped" },
  7585. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7586. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7587. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7588. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7589. { "time": 2, "angle": 0 }
  7590. ],
  7591. "translate": [
  7592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7593. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7594. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7595. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7596. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7597. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7598. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7599. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7600. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7601. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7602. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7603. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7604. { "time": 2, "x": 0, "y": 0 }
  7605. ],
  7606. "scale": [
  7607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7608. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7609. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7610. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7611. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7612. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7613. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7614. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7615. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7616. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7617. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7618. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7619. { "time": 2, "x": 1, "y": 1 }
  7620. ]
  7621. },
  7622. "bone86": {
  7623. "rotate": [
  7624. { "time": 0, "angle": 17.03 },
  7625. { "time": 0.1667, "angle": -2.27 },
  7626. { "time": 0.3333, "angle": -23.87 },
  7627. { "time": 0.5, "angle": -29.55 },
  7628. { "time": 0.6667, "angle": -21.2 },
  7629. { "time": 0.8333, "angle": 3.48 },
  7630. { "time": 1, "angle": 17.03 },
  7631. { "time": 1.1667, "angle": -2.27 },
  7632. { "time": 1.3333, "angle": -23.87 },
  7633. { "time": 1.5, "angle": -29.55 },
  7634. { "time": 1.6667, "angle": -21.2 },
  7635. { "time": 1.8333, "angle": 3.48 },
  7636. { "time": 2, "angle": 17.03 }
  7637. ],
  7638. "translate": [
  7639. { "time": 0, "x": 0, "y": 0 },
  7640. { "time": 0.1667, "x": -2.03, "y": 1.01 },
  7641. { "time": 0.3333, "x": -3.59, "y": -2 },
  7642. { "time": 0.5, "x": -5.38, "y": -3 },
  7643. { "time": 0.6667, "x": -3.59, "y": -2 },
  7644. { "time": 0.8333, "x": -1.79, "y": -1 },
  7645. { "time": 1, "x": 0, "y": 0 },
  7646. { "time": 1.1667, "x": -2.03, "y": 1.01 },
  7647. { "time": 1.3333, "x": -3.59, "y": -2 },
  7648. { "time": 1.5, "x": -5.38, "y": -3 },
  7649. { "time": 1.6667, "x": -3.59, "y": -2 },
  7650. { "time": 1.8333, "x": -1.79, "y": -1 },
  7651. { "time": 2, "x": 0, "y": 0 }
  7652. ],
  7653. "scale": [
  7654. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7655. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7656. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7657. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7658. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7659. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7660. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7661. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7662. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7663. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7664. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7665. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7666. { "time": 2, "x": 1, "y": 1 }
  7667. ]
  7668. },
  7669. "bone87": {
  7670. "rotate": [
  7671. { "time": 0, "angle": -0.03 },
  7672. { "time": 0.1667, "angle": 48.96 },
  7673. { "time": 0.3333, "angle": 42.37 },
  7674. { "time": 0.5, "angle": 0 },
  7675. { "time": 0.6667, "angle": 20.28 },
  7676. { "time": 0.8333, "angle": 6.84 },
  7677. { "time": 1, "angle": -0.03 },
  7678. { "time": 1.1667, "angle": 48.96 },
  7679. { "time": 1.3333, "angle": 42.37 },
  7680. { "time": 1.5, "angle": 0 },
  7681. { "time": 1.6667, "angle": 20.28 },
  7682. { "time": 1.8333, "angle": 6.84 },
  7683. { "time": 2, "angle": -0.03 }
  7684. ],
  7685. "translate": [
  7686. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7687. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7688. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7689. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7690. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7691. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7692. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7693. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7694. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7695. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7696. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7697. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7698. { "time": 2, "x": 0, "y": 0 }
  7699. ],
  7700. "scale": [
  7701. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7702. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7703. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7704. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7705. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7706. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7707. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7708. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7709. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7710. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7711. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7712. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7713. { "time": 2, "x": 1, "y": 1 }
  7714. ]
  7715. },
  7716. "bone88": {
  7717. "rotate": [
  7718. { "time": 0, "angle": 0, "curve": "stepped" },
  7719. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7720. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7721. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7722. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7723. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7724. { "time": 1, "angle": 0, "curve": "stepped" },
  7725. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7726. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7727. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7728. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7729. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7730. { "time": 2, "angle": 0 }
  7731. ],
  7732. "translate": [
  7733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7734. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7735. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7736. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7737. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7738. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7739. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7740. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7741. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7742. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7743. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7744. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7745. { "time": 2, "x": 0, "y": 0 }
  7746. ],
  7747. "scale": [
  7748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7749. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7750. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7751. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7752. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7753. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7754. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7755. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7756. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7757. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7758. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7759. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7760. { "time": 2, "x": 1, "y": 1 }
  7761. ]
  7762. },
  7763. "bone89": {
  7764. "rotate": [
  7765. { "time": 0, "angle": 0 },
  7766. { "time": 0.1667, "angle": 3.92 },
  7767. { "time": 0.3333, "angle": 7.84 },
  7768. { "time": 0.5, "angle": 11.76 },
  7769. { "time": 0.6667, "angle": 7.84 },
  7770. { "time": 0.8333, "angle": 3.92 },
  7771. { "time": 1, "angle": 0 },
  7772. { "time": 1.1667, "angle": 3.92 },
  7773. { "time": 1.3333, "angle": 7.84 },
  7774. { "time": 1.5, "angle": 11.76 },
  7775. { "time": 1.6667, "angle": 7.84 },
  7776. { "time": 1.8333, "angle": 3.92 },
  7777. { "time": 2, "angle": 0 }
  7778. ],
  7779. "translate": [
  7780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7781. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7782. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7783. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7784. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7785. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7786. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7787. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7788. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7789. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7790. { "time": 2, "x": 0, "y": 0 }
  7791. ],
  7792. "scale": [
  7793. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7794. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7795. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7796. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7797. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7798. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7799. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7800. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7801. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7802. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7803. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7804. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7805. { "time": 2, "x": 1, "y": 1 }
  7806. ]
  7807. },
  7808. "bone96": {
  7809. "rotate": [
  7810. { "time": 0, "angle": 0 },
  7811. { "time": 0.1667, "angle": 3.92 },
  7812. { "time": 0.3333, "angle": 7.84 },
  7813. { "time": 0.5, "angle": 11.76 },
  7814. { "time": 0.6667, "angle": 7.84 },
  7815. { "time": 0.8333, "angle": 3.92 },
  7816. { "time": 1, "angle": 0 },
  7817. { "time": 1.1667, "angle": 3.92 },
  7818. { "time": 1.3333, "angle": 7.84 },
  7819. { "time": 1.5, "angle": 11.76 },
  7820. { "time": 1.6667, "angle": 7.84 },
  7821. { "time": 1.8333, "angle": 3.92 },
  7822. { "time": 2, "angle": 0 }
  7823. ],
  7824. "translate": [
  7825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7826. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7827. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7828. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7829. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7830. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7831. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7832. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7833. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7834. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7835. { "time": 2, "x": 0, "y": 0 }
  7836. ],
  7837. "scale": [
  7838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7839. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7840. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7841. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7842. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7843. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7844. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7845. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7846. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7847. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7848. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7849. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7850. { "time": 2, "x": 1, "y": 1 }
  7851. ]
  7852. }
  7853. },
  7854. "deform": {
  7855. "default": {
  7856. "shangyi": {
  7857. "shangyi": [
  7858. {
  7859. "time": 0,
  7860. "offset": 110,
  7861. "vertices": [ 0.03954, 3.23973, 0.08749, 3.23879, 0.03954, 3.23973, 0.03954, 3.23973, 0.08749, 3.23879 ]
  7862. },
  7863. { "time": 0.5 },
  7864. {
  7865. "time": 1,
  7866. "offset": 110,
  7867. "vertices": [ 0.03954, 3.23973, 0.08749, 3.23879, 0.03954, 3.23973, 0.03954, 3.23973, 0.08749, 3.23879 ]
  7868. },
  7869. { "time": 1.5 },
  7870. {
  7871. "time": 2,
  7872. "offset": 110,
  7873. "vertices": [ 0.03954, 3.23973, 0.08749, 3.23879, 0.03954, 3.23973, 0.03954, 3.23973, 0.08749, 3.23879 ]
  7874. }
  7875. ]
  7876. },
  7877. "youshou": {
  7878. "youshou": [
  7879. {
  7880. "time": 0,
  7881. "offset": 12,
  7882. "vertices": [ -1.03998, 3.97491, -0.64084, 4.0584, -0.13525, 2.84011, 0.14693, 2.83954, -0.52857, 2.85411, -0.24306, 2.89244, 0, 0, -1.54619, 5.21906, -1.02106, 5.34661, 0.19347, 3.55068, 0.5444, 3.51405, -1.33067, 3.55213, -0.97205, 3.66649, -1.33067, 3.55213, -0.97205, 3.66649 ]
  7883. },
  7884. { "time": 0.5 },
  7885. {
  7886. "time": 1,
  7887. "offset": 12,
  7888. "vertices": [ -1.03998, 3.97491, -0.64084, 4.0584, -0.13525, 2.84011, 0.14693, 2.83954, -0.52857, 2.85411, -0.24306, 2.89244, 0, 0, -1.54619, 5.21906, -1.02106, 5.34661, 0.19347, 3.55068, 0.5444, 3.51405, -1.33067, 3.55213, -0.97205, 3.66649, -1.33067, 3.55213, -0.97205, 3.66649 ]
  7889. },
  7890. { "time": 1.5 },
  7891. {
  7892. "time": 2,
  7893. "offset": 12,
  7894. "vertices": [ -1.03998, 3.97491, -0.64084, 4.0584, -0.13525, 2.84011, 0.14693, 2.83954, -0.52857, 2.85411, -0.24306, 2.89244, 0, 0, -1.54619, 5.21906, -1.02106, 5.34661, 0.19347, 3.55068, 0.5444, 3.51405, -1.33067, 3.55213, -0.97205, 3.66649, -1.33067, 3.55213, -0.97205, 3.66649 ]
  7895. }
  7896. ]
  7897. }
  7898. }
  7899. }
  7900. }
  7901. }
  7902. }