60019.json 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483
  1. {
  2. "skeleton": { "hash": "YD4DMem8VoJb4E3BBUkf438Je6Q", "spine": "3.6.53", "width": 198.95, "height": 200, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.94, "y": 56.37 },
  6. { "name": "bone2", "parent": "bone", "length": 15.44, "rotation": 88.12, "y": -0.25 },
  7. { "name": "bone3", "parent": "bone2", "length": 28.12, "rotation": -1.22, "x": 15.44 },
  8. { "name": "bone4", "parent": "bone3", "length": 8.87, "rotation": -0.18, "x": 28.12 },
  9. { "name": "bone5", "parent": "bone4", "length": 54.82, "rotation": 5.5, "x": 6.29, "y": 0.01 },
  10. { "name": "bone6", "parent": "bone3", "length": 21.65, "rotation": 154.59, "x": 28.92, "y": 16.61, "color": "cb0909ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 16.92, "rotation": -5.03, "x": 21.65, "color": "cb0909ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 11.36, "rotation": -11.46, "x": 16.92, "color": "cb0909ff" },
  13. { "name": "bone9", "parent": "bone3", "length": 26.47, "rotation": -134.42, "x": 30.39, "y": -19.77, "color": "f302e3ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 16.93, "rotation": 1.73, "x": 26.47, "color": "f302e3ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 10.56, "rotation": -8.06, "x": 16.93, "color": "f302e3ff" },
  16. { "name": "bone12", "parent": "bone", "length": 26.48, "rotation": -94.26, "x": -6.97, "y": -4.25, "color": "e60c62ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 18.28, "rotation": -0.89, "x": 26.48, "color": "e60c62ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 15.1, "rotation": -67.8, "x": 18.28, "color": "e60c62ff" },
  19. { "name": "bone15", "parent": "bone", "length": 26.12, "rotation": -82.79, "x": 14.35, "y": -3.59, "color": "184de2ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 20.97, "rotation": -0.48, "x": 26.12, "color": "184de2ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 11.41, "rotation": -89.3, "x": 20.97, "color": "184de2ff" },
  22. { "name": "bone18", "parent": "bone3", "length": 9.5, "rotation": 174.64, "x": 30.15, "y": 11.58, "color": "e6d00bff" },
  23. { "name": "bone19", "parent": "bone18", "length": 11.07, "rotation": -0.79, "x": 9.5, "color": "e6d00bff" },
  24. { "name": "bone20", "parent": "bone19", "length": 8.08, "rotation": 1.12, "x": 11.07, "color": "e6d00bff" },
  25. { "name": "bone21", "parent": "bone20", "length": 8.29, "rotation": 2.86, "x": 8.08, "color": "e6d00bff" },
  26. { "name": "bone22", "parent": "bone21", "length": 9.41, "rotation": 2.18, "x": 8.29, "color": "e6d00bff" },
  27. { "name": "bone23", "parent": "bone22", "length": 7, "rotation": -0.03, "x": 9.41, "color": "e6d00bff" },
  28. { "name": "bone24", "parent": "bone3", "length": 11.31, "rotation": -178.19, "x": 31.3, "y": -14.43, "color": "93ec50ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 8.64, "rotation": 1.29, "x": 11.31, "color": "93ec50ff" },
  30. { "name": "bone26", "parent": "bone25", "length": 10.03, "x": 8.64, "color": "93ec50ff" },
  31. { "name": "bone27", "parent": "bone26", "length": 8.65, "rotation": 3.37, "x": 10.03, "color": "93ec50ff" },
  32. { "name": "bone28", "parent": "bone27", "length": 7.6, "rotation": 6.25, "x": 8.78, "y": -0.01, "color": "93ec50ff" },
  33. { "name": "bone29", "parent": "bone28", "length": 7.56, "rotation": -1.9, "x": 7.6, "color": "93ec50ff" },
  34. { "name": "bone30", "parent": "bone5", "x": 42.68, "y": 18.25 },
  35. { "name": "bone31", "parent": "bone5", "x": 34.33, "y": 6.12 },
  36. { "name": "bone32", "parent": "bone5", "length": 18.65, "rotation": 70.75, "x": 71.83, "y": -10.93 },
  37. { "name": "bone33", "parent": "bone32", "length": 14.97, "rotation": 0.79, "x": 18.65 },
  38. { "name": "bone34", "parent": "bone33", "length": 15.31, "rotation": -28.29, "x": 14.97 },
  39. { "name": "bone35", "parent": "bone", "length": 14.68, "rotation": -86.53, "x": -0.43, "y": -0.77 },
  40. { "name": "bone36", "parent": "bone5", "x": 46.33, "y": -7.18 },
  41. { "name": "bone37", "parent": "bone", "length": 20.65, "rotation": -84.81, "x": 128.74, "y": 3.15, "color": "10d170ff" },
  42. { "name": "bone38", "parent": "bone37", "length": 21, "rotation": -3.3, "x": 20.65, "color": "10d170ff" },
  43. { "name": "bone39", "parent": "bone38", "length": 17.99, "rotation": 79.13, "x": 23.35, "y": -0.53, "color": "10d170ff" },
  44. { "name": "bone40", "parent": "bone3", "x": 27.97, "y": 2.29 },
  45. { "name": "bone41", "parent": "bone3", "length": 18.2, "rotation": 156.08, "x": 36.43, "y": -85.25, "color": "4c2494ff" },
  46. { "name": "bone42", "parent": "bone41", "length": 18.3, "rotation": 109.02, "x": 18.2, "color": "4c2494ff" },
  47. { "name": "bone43", "parent": "bone42", "length": 8.68, "rotation": -18.11, "x": 18.3, "color": "4c2494ff" },
  48. { "name": "bone44", "parent": "bone3", "length": 16.32, "rotation": -143.84, "x": 33.17, "y": -135.95, "color": "922f63ff" },
  49. { "name": "bone45", "parent": "bone44", "length": 18.29, "rotation": -121.58, "x": 16.32, "color": "922f63ff" },
  50. { "name": "bone46", "parent": "bone45", "length": 10.35, "rotation": 1.15, "x": 18.29, "color": "922f63ff" }
  51. ],
  52. "slots": [
  53. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  54. { "name": "yifu", "bone": "bone2", "attachment": "yifu" },
  55. { "name": "zuojiao", "bone": "bone12", "attachment": "zuojiao" },
  56. { "name": "youjiao", "bone": "bone15", "attachment": "youjiao" },
  57. { "name": "youjiao fan", "bone": "bone37", "attachment": "youjiao fan" },
  58. { "name": "dangbu", "bone": "bone35", "attachment": "dangbu" },
  59. { "name": "waitao2", "bone": "bone24", "attachment": "waitao2" },
  60. { "name": "waitao1", "bone": "bone18", "attachment": "waitao1" },
  61. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  62. { "name": "zuoshou1", "bone": "bone41" },
  63. { "name": "youshou 1", "bone": "bone44" },
  64. { "name": "lingdai", "bone": "bone40" },
  65. { "name": "tou", "bone": "bone5", "attachment": "tou" },
  66. { "name": "yanjing", "bone": "bone31", "attachment": "yanjing" },
  67. { "name": "toufa1", "bone": "bone32", "attachment": "toufa1" },
  68. { "name": "mijing", "bone": "bone31", "attachment": "mijing" },
  69. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  70. { "name": "toufa3", "bone": "bone5", "attachment": "toufa3" },
  71. { "name": "toufa4", "bone": "bone5", "attachment": "toufa4" },
  72. { "name": "miemao1", "bone": "bone30", "attachment": "miemao1" },
  73. { "name": "miemao2", "bone": "bone36" }
  74. ],
  75. "skins": {
  76. "default": {
  77. "dangbu": {
  78. "dangbu": {
  79. "type": "mesh",
  80. "uvs": [ 1, 0.60721, 1, 0.83008, 1, 1, 0, 1, 0, 0.80664, 0, 0.63903, 0, 0, 1, 0 ],
  81. "triangles": [ 6, 7, 0, 5, 6, 0, 1, 4, 5, 1, 5, 0, 3, 4, 1, 3, 1, 2 ],
  82. "vertices": [ 11.16, 26.07, 16.28, 25.76, 20.18, 25.52, 17.46, -19.4, 13.02, -19.13, 9.17, -18.89, -5.5, -18.01, -2.78, 26.91 ],
  83. "hull": 8,
  84. "edges": [ 4, 6, 12, 14, 10, 12, 0, 14, 10, 0, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  85. "width": 45,
  86. "height": 23
  87. }
  88. },
  89. "erduo": {
  90. "erduo": { "x": 24.13, "y": -37.85, "rotation": -92.23, "width": 16, "height": 25 }
  91. },
  92. "lingdai": {
  93. "lingdai": { "x": 0.54, "y": -2.51, "rotation": -86.91, "width": 24, "height": 10 }
  94. },
  95. "miemao1": {
  96. "miemao1": { "x": 1.41, "y": 1.05, "rotation": -92.23, "width": 27, "height": 13 }
  97. },
  98. "miemao2": {
  99. "miemao2": { "x": -3.16, "y": -1.97, "rotation": -92.23, "width": 24, "height": 13 }
  100. },
  101. "mijing": {
  102. "mijing": { "x": -5.71, "y": -5.62, "rotation": -92.23, "width": 75, "height": 25 }
  103. },
  104. "tou": {
  105. "tou": { "x": 40.96, "y": -3.98, "rotation": -92.23, "width": 75, "height": 90 }
  106. },
  107. "toufa1": {
  108. "toufa1": {
  109. "type": "mesh",
  110. "uvs": [ 0.23059, 0.16181, 0.3573, 0.14906, 0.4718, 0.13755, 0.64713, 0.12792, 0.82529, 0.11814, 0.89344, 0.27522, 1, 0.52084, 1, 0.79255, 1, 0.87503, 0.89599, 1, 0.76238, 1, 0.65062, 1, 0.5092, 1, 0.32209, 1, 0.19822, 0.94496, 0.09544, 0.89929, 0, 0.72947, 0, 0.35284, 0, 0, 0.08143, 0, 0.11415, 0, 0.43853, 0.65184, 0.19317, 0.42866, 0.91934, 0.77233, 0.709, 0.71962, 0.11109, 0.24653, 0.29634, 0.52251, 0.58132, 0.68763, 0.81577, 0.74638, 0.06908, 0.1533 ],
  111. "triangles": [ 29, 18, 19, 20, 29, 19, 20, 25, 29, 20, 0, 25, 17, 18, 29, 17, 29, 25, 22, 25, 0, 16, 17, 25, 22, 16, 25, 15, 16, 22, 1, 22, 0, 26, 22, 1, 2, 26, 1, 26, 15, 22, 14, 15, 26, 21, 14, 26, 13, 14, 21, 21, 26, 2, 3, 21, 2, 27, 21, 3, 24, 3, 4, 24, 27, 3, 4, 5, 24, 28, 24, 5, 6, 28, 5, 23, 28, 6, 23, 6, 7, 23, 7, 8, 12, 21, 27, 11, 12, 27, 13, 21, 12, 24, 11, 27, 10, 11, 24, 28, 10, 24, 9, 10, 28, 23, 9, 28, 8, 9, 23 ],
  112. "vertices": [ 3, 32, 33.54, -8.05, 0.00184, 33, 14.77, -8.25, 0.39646, 34, 3.73, -7.36, 0.6017, 3, 32, 26.01, -10.71, 0.14644, 33, 7.21, -10.81, 0.79243, 34, -1.72, -13.2, 0.06113, 3, 32, 19.2, -13.12, 0.55981, 33, 0.37, -13.13, 0.43954, 34, -6.64, -18.48, 6.4E-4, 2, 32, 8.72, -16.6, 0.95224, 33, -10.17, -16.46, 0.04776, 2, 32, -1.94, -20.14, 0.99998, 33, -20.87, -19.85, 2.0E-5, 1, 32, -7.29, -17.34, 1, 1, 32, -15.65, -12.96, 1, 1, 32, -17.79, -5.95, 1, 1, 32, -18.45, -3.82, 1, 1, 32, -13.17, 1.32, 1, 1, 32, -5.12, 3.79, 1, 1, 32, 1.61, 5.85, 1, 2, 32, 10.13, 8.46, 0.95808, 33, -8.4, 8.57, 0.04192, 3, 32, 21.4, 11.91, 0.23234, 33, 2.91, 11.87, 0.76517, 34, -16.24, 4.74, 0.00248, 3, 32, 29.3, 12.77, 0.0148, 33, 10.82, 12.62, 0.83946, 34, -9.64, 9.15, 0.14574, 2, 33, 17.38, 13.25, 0.52652, 34, -4.16, 12.81, 0.47348, 2, 33, 24.44, 10.53, 0.20034, 34, 3.34, 13.76, 0.79966, 2, 33, 27.28, 0.76, 0.00139, 34, 10.47, 6.5, 0.99861, 1, 34, 17.15, -0.29, 1, 1, 34, 13.5, -3.89, 1, 2, 33, 23.04, -10.39, 0.00228, 34, 12.03, -5.33, 0.99772, 2, 32, 17.14, 0.77, 0.9822, 33, -1.5, 0.79, 0.0178, 2, 33, 15.02, -0.67, 0.2885, 34, 0.36, -0.57, 0.7115, 1, 32, -12.78, -4.98, 1, 1, 32, 0.31, -2.47, 1, 2, 33, 21.36, -3.95, 0.00145, 34, 7.5, -0.45, 0.99855, 3, 32, 26.73, 0.05, 7.0E-5, 33, 8.08, -0.06, 0.9997, 34, -6.05, -3.32, 2.2E-4, 2, 32, 8.26, -0.94, 0.99987, 33, -10.41, -0.79, 1.3E-4, 1, 32, -6.33, -3.74, 1, 1, 34, 11.15, -0.39, 1 ],
  113. "hull": 21,
  114. "edges": [ 0, 40, 16, 18, 30, 32, 12, 14, 14, 16, 14, 46, 18, 46, 46, 12, 22, 48, 48, 8, 26, 42, 42, 4, 30, 44, 44, 0, 50, 44, 32, 50, 50, 40, 26, 28, 28, 30, 42, 52, 52, 44, 28, 52, 0, 2, 2, 4, 52, 2, 22, 24, 24, 26, 42, 54, 54, 48, 24, 54, 4, 6, 6, 8, 54, 6, 18, 20, 20, 22, 46, 56, 56, 48, 20, 56, 8, 10, 10, 12, 56, 10, 32, 34, 34, 36, 36, 58, 58, 50, 34, 58, 36, 38, 38, 40, 58, 38 ],
  115. "width": 63,
  116. "height": 27
  117. }
  118. },
  119. "toufa3": {
  120. "toufa3": { "x": 63.48, "y": 22.11, "rotation": -92.23, "width": 21, "height": 30 }
  121. },
  122. "toufa4": {
  123. "toufa4": { "x": 47.86, "y": -29.5, "rotation": -92.23, "width": 24, "height": 53 }
  124. },
  125. "waitao1": {
  126. "waitao1": {
  127. "type": "mesh",
  128. "uvs": [ 1, 0.05925, 0.88479, 0.18089, 0.82698, 0.24193, 0.76264, 0.30987, 0.73679, 0.39748, 0.70811, 0.49471, 0.69289, 0.54631, 0.67933, 0.62944, 0.66624, 0.70967, 0.66607, 0.81414, 0.68294, 0.89539, 0.71282, 1, 0.31757, 1, 0, 1, 0, 0.91478, 0, 0.80847, 1.0E-5, 0.71731, 0.03317, 0.61101, 0.06375, 0.53695, 0.09503, 0.46119, 0.16643, 0.34565, 0.22457, 0.25155, 0.2717, 0.19747, 0.33088, 0.12956, 0.44378, 0, 0.63642, 0, 1, 0, 0.38067, 0.54947, 0.50531, 0.28169, 0.56459, 0.15434, 0.41191, 0.47188, 0.35853, 0.71871, 0.34492, 0.80473, 0.36952, 0.62907, 0.4601, 0.37881, 0.32958, 0.91424, 0.53254, 0.22318 ],
  129. "triangles": [ 11, 12, 10, 12, 35, 10, 35, 12, 14, 12, 13, 14, 14, 15, 35, 35, 9, 10, 35, 32, 9, 35, 15, 32, 32, 31, 9, 9, 31, 8, 15, 16, 32, 32, 16, 31, 16, 17, 31, 31, 33, 8, 31, 17, 33, 8, 33, 7, 33, 27, 7, 17, 18, 33, 33, 18, 27, 7, 27, 6, 18, 19, 27, 27, 30, 6, 27, 19, 30, 6, 30, 5, 30, 34, 5, 19, 20, 30, 5, 34, 4, 30, 20, 34, 34, 28, 4, 4, 28, 3, 20, 21, 34, 34, 21, 28, 28, 36, 3, 21, 22, 28, 3, 36, 2, 28, 22, 36, 36, 29, 2, 2, 29, 1, 22, 23, 36, 36, 23, 29, 29, 25, 1, 0, 1, 26, 23, 24, 29, 29, 24, 25, 1, 25, 26 ],
  130. "vertices": [ 2, 18, -3.22, 12.48, 0.99991, 19, -12.89, 12.3, 9.0E-5, 2, 18, 4.35, 10.34, 0.9133, 19, -5.29, 10.27, 0.0867, 2, 18, 8.15, 9.27, 0.68125, 19, -1.47, 9.25, 0.31875, 3, 18, 12.38, 8.08, 0.23897, 19, 2.77, 8.11, 0.74887, 20, -8.13, 8.27, 0.01215, 4, 18, 17.6, 8.12, 0.0098, 19, 7.99, 8.23, 0.78094, 20, -2.92, 8.29, 0.20687, 21, -10.57, 8.83, 0.00238, 3, 19, 13.78, 8.36, 0.24426, 20, 2.88, 8.31, 0.64109, 21, -4.78, 8.55, 0.11465, 4, 19, 16.85, 8.43, 0.0676, 20, 5.95, 8.31, 0.60077, 21, -1.71, 8.41, 0.32659, 22, -9.68, 8.78, 0.00504, 4, 19, 21.76, 8.84, 7.8E-4, 20, 10.86, 8.63, 0.20961, 21, 3.2, 8.48, 0.6748, 22, -4.76, 8.67, 0.11481, 4, 20, 15.6, 8.94, 0.02371, 21, 7.95, 8.55, 0.47554, 22, -0.01, 8.56, 0.49328, 23, -9.43, 8.55, 0.00747, 3, 21, 14.09, 9.11, 0.06007, 22, 6.14, 8.89, 0.718, 23, -3.27, 8.89, 0.22193, 3, 21, 18.82, 10.03, 0.00117, 22, 10.9, 9.62, 0.36317, 23, 1.49, 9.62, 0.63566, 2, 22, 17.02, 10.79, 0.11971, 23, 7.6, 10.79, 0.88029, 1, 23, 8.21, -0.26, 1, 2, 22, 18.1, -9.14, 0.05526, 23, 8.69, -9.14, 0.94474, 2, 22, 13.08, -9.41, 0.23607, 23, 3.67, -9.41, 0.76393, 3, 21, 15.47, -9.49, 0.0366, 22, 6.81, -9.75, 0.72804, 23, -2.59, -9.75, 0.23536, 4, 20, 18.68, -9.46, 0.00446, 21, 10.12, -9.98, 0.24937, 22, 1.44, -10.04, 0.7213, 23, -7.96, -10.05, 0.02488, 4, 19, 23.59, -9.19, 5.3E-4, 20, 12.34, -9.43, 0.14409, 21, 3.78, -9.63, 0.57501, 22, -4.87, -9.45, 0.28036, 4, 19, 19.14, -9.05, 0.03301, 20, 7.9, -9.2, 0.45546, 21, -0.65, -9.18, 0.43624, 22, -9.28, -8.84, 0.07529, 4, 19, 14.59, -8.9, 0.20749, 20, 3.35, -8.97, 0.64601, 21, -5.18, -8.72, 0.13857, 22, -13.79, -8.2, 0.00793, 4, 18, 16.93, -8.13, 0.00549, 19, 7.54, -8.02, 0.79562, 20, -3.68, -7.95, 0.19784, 21, -12.15, -7.36, 0.00106, 3, 18, 11.2, -7.33, 0.23284, 19, 1.8, -7.31, 0.75961, 20, -9.41, -7.13, 0.00755, 2, 18, 7.85, -6.5, 0.6242, 19, -1.57, -6.52, 0.3758, 2, 18, 3.64, -5.45, 0.9657, 19, -5.79, -5.53, 0.0343, 1, 18, -4.39, -3.44, 1, 1, 18, -5.18, 1.89, 1, 1, 18, -6.68, 11.96, 1, 4, 19, 18.44, -0.17, 1.2E-4, 20, 7.37, -0.31, 0.97935, 21, -0.73, -0.28, 0.02016, 22, -9.02, 0.07, 3.8E-4, 2, 18, 11.8, 0.7, 0.0029, 19, 2.29, 0.74, 0.9971, 2, 18, 4.12, 1.24, 0.99965, 19, -5.39, 1.17, 3.5E-4, 2, 19, 13.78, -0.04, 1.7E-4, 20, 2.72, -0.1, 0.99983, 1, 22, 0.98, -0.02, 1, 1, 22, 6.07, -0.12, 1, 2, 21, 3.98, -0.16, 0.99835, 22, -4.31, 0.01, 0.00165, 1, 19, 8.15, 0.41, 1, 1, 23, 3.14, -0.2, 1, 2, 18, 8.27, 0.95, 0.93778, 19, -1.24, 0.93, 0.06222 ],
  131. "hull": 27,
  132. "edges": [ 0, 52, 48, 50, 50, 52, 22, 24, 24, 26, 42, 56, 56, 6, 46, 48, 50, 58, 46, 58, 0, 2, 58, 2, 54, 60, 38, 60, 10, 12, 60, 10, 12, 54, 36, 38, 54, 36, 32, 62, 16, 18, 62, 16, 64, 62, 18, 64, 30, 32, 64, 30, 32, 34, 34, 36, 54, 66, 66, 62, 34, 66, 12, 14, 14, 16, 66, 14, 6, 8, 8, 10, 56, 68, 68, 60, 8, 68, 38, 40, 40, 42, 68, 40, 26, 28, 28, 30, 24, 70, 70, 64, 28, 70, 18, 20, 20, 22, 70, 20, 2, 4, 4, 6, 56, 72, 72, 58, 4, 72, 42, 44, 44, 46, 72, 44 ],
  133. "width": 28,
  134. "height": 59
  135. }
  136. },
  137. "waitao2": {
  138. "waitao2": {
  139. "type": "mesh",
  140. "uvs": [ 0.84644, 0.25068, 0.86834, 0.32763, 0.88747, 0.39488, 0.91797, 0.48799, 0.93757, 0.57096, 0.96414, 0.6587, 0.98477, 0.73685, 0.99999, 0.84208, 1, 0.91728, 1, 1, 0.55983, 1, 0, 1, 0, 0.93765, 0, 0.86558, 0, 0.76531, 0, 0.67758, 1.0E-5, 0.59611, 0, 0.49115, 0.0349, 0.40502, 0.06526, 0.33007, 0.09501, 0.25664, 0.19899, 0, 0.45976, 0, 0.77512, 0, 0.45976, 0.57731, 0.45976, 0.50211, 0.45976, 0.40655, 0.45976, 0.25615, 0.45976, 0.33291, 0.48323, 0.66804, 0.503, 0.75374, 0.52254, 0.85974, 0.54459, 0.93396 ],
  141. "triangles": [ 10, 8, 9, 11, 32, 10, 10, 32, 8, 11, 12, 32, 12, 31, 32, 12, 13, 31, 8, 32, 7, 32, 31, 7, 13, 30, 31, 31, 6, 7, 31, 30, 6, 13, 14, 30, 14, 29, 30, 14, 15, 29, 15, 16, 24, 30, 5, 6, 30, 29, 5, 15, 24, 29, 29, 4, 5, 29, 24, 4, 24, 3, 4, 24, 17, 25, 24, 16, 17, 24, 25, 3, 25, 2, 3, 17, 18, 25, 18, 26, 25, 25, 26, 2, 18, 19, 26, 26, 1, 2, 19, 28, 26, 26, 28, 1, 28, 0, 1, 19, 20, 28, 20, 27, 28, 28, 27, 0, 27, 21, 22, 27, 20, 21, 27, 23, 0, 27, 22, 23 ],
  142. "vertices": [ 4, 24, 10.4, 12.1, 0.53644, 25, -0.64, 12.12, 0.37505, 26, -9.27, 12.12, 0.08412, 27, -18.56, 13.23, 0.00439, 4, 24, 15, 12.89, 0.23519, 25, 3.98, 12.8, 0.47097, 26, -4.66, 12.8, 0.25885, 27, -13.91, 13.64, 0.03499, 4, 24, 19.02, 13.57, 0.08006, 25, 8.02, 13.39, 0.36231, 26, -0.62, 13.39, 0.44778, 27, -9.85, 14, 0.10985, 5, 24, 24.58, 14.64, 0.0078, 25, 13.6, 14.34, 0.14433, 26, 4.97, 14.34, 0.5255, 27, -4.22, 14.61, 0.322, 28, -11.32, 15.95, 3.7E-4, 6, 24, 29.55, 15.36, 1.0E-5, 25, 18.58, 14.95, 0.04139, 26, 9.94, 14.95, 0.37235, 27, 0.79, 14.93, 0.56472, 28, -6.31, 15.71, 0.01628, 29, -14.43, 15.25, 0.00524, 5, 25, 23.84, 15.77, 0.00526, 26, 15.21, 15.77, 0.17106, 27, 6.09, 15.44, 0.68416, 28, -0.99, 15.65, 0.08849, 29, -9.1, 15.35, 0.05103, 5, 25, 28.53, 16.41, 6.0E-5, 26, 19.9, 16.41, 0.06386, 27, 10.81, 15.8, 0.59043, 28, 3.74, 15.49, 0.17953, 29, -4.37, 15.36, 0.16613, 4, 26, 26.21, 16.88, 0.00908, 27, 17.14, 15.9, 0.33864, 28, 10.05, 14.9, 0.20614, 29, 1.95, 14.98, 0.44614, 4, 26, 30.72, 16.88, 5.7E-4, 27, 21.65, 15.64, 0.19686, 28, 14.5, 14.15, 0.15352, 29, 6.42, 14.37, 0.64905, 3, 27, 26.6, 15.35, 0.13773, 28, 19.39, 13.32, 0.11569, 29, 11.34, 13.7, 0.74658, 3, 27, 25.8, 1.72, 0.00214, 28, 17.11, -0.13, 0.00142, 29, 9.51, 0.18, 0.99644, 2, 28, 14.21, -17.24, 0.31185, 29, 7.18, -17.01, 0.68815, 3, 26, 31.95, -14.12, 1.1E-4, 28, 10.52, -16.62, 0.36146, 29, 3.47, -16.51, 0.63843, 4, 26, 27.62, -14.12, 0.00531, 27, 16.73, -15.13, 1.9E-4, 28, 6.26, -15.9, 0.5105, 29, -0.82, -15.93, 0.484, 4, 26, 21.61, -14.12, 0.05309, 27, 10.72, -14.77, 0.0264, 28, 0.33, -14.89, 0.69461, 29, -6.78, -15.12, 0.22589, 5, 25, 24.98, -14.12, 0.00259, 26, 16.34, -14.12, 0.19197, 27, 5.47, -14.46, 0.10257, 28, -4.86, -14.01, 0.62612, 29, -11.99, -14.42, 0.07676, 5, 25, 20.09, -14.12, 0.0279, 26, 11.45, -14.12, 0.41817, 27, 0.59, -14.18, 0.13039, 28, -9.68, -13.19, 0.407, 29, -16.84, -13.76, 0.01653, 6, 24, 25.41, -13.8, 2.5E-4, 25, 13.79, -14.12, 0.15016, 26, 5.16, -14.12, 0.62669, 27, -5.7, -13.81, 0.05381, 28, -15.89, -12.14, 0.16892, 29, -23.08, -12.91, 1.8E-4, 5, 24, 20.22, -12.84, 0.02457, 25, 8.62, -13.04, 0.3654, 26, -0.01, -13.04, 0.53939, 27, -10.79, -12.42, 0.00837, 28, -20.81, -10.21, 0.06227, 5, 24, 15.7, -12, 0.14237, 25, 4.13, -12.1, 0.53534, 26, -4.51, -12.1, 0.3044, 27, -15.23, -11.22, 0, 28, -25.08, -8.53, 0.01788, 4, 24, 11.28, -11.18, 0.4223, 25, -0.28, -11.17, 0.46679, 26, -8.92, -11.17, 0.10815, 28, -29.27, -6.89, 0.00276, 1, 24, -4.19, -8.3, 1, 1, 24, -4.37, -0.22, 1, 1, 24, -4.59, 9.56, 1, 2, 26, 10.33, 0.13, 0.27606, 27, 0.3, 0.12, 0.72394, 2, 26, 5.81, 0.13, 0.99918, 27, -4.2, 0.38, 8.2E-4, 4, 24, 20.02, 0.33, 2.0E-5, 25, 8.72, 0.13, 0.45166, 26, 0.08, 0.13, 0.54815, 27, -9.93, 0.72, 1.8E-4, 2, 24, 10.99, 0.13, 0.72438, 25, -0.31, 0.13, 0.27562, 3, 24, 15.6, 0.23, 3.0E-4, 25, 4.3, 0.13, 0.99968, 27, -14.34, 0.98, 1.0E-5, 2, 26, 15.77, 0.86, 4.7E-4, 27, 5.78, 0.52, 0.99953, 3, 26, 20.91, 1.47, 8.0E-5, 27, 10.95, 0.83, 0.06739, 28, 2.25, 0.6, 0.93253, 2, 27, 17.33, 1.06, 0.00187, 29, 1.01, 0.17, 0.99813, 3, 27, 21.82, 1.49, 7.9E-4, 28, 13.12, 0.06, 0.00144, 29, 5.52, 0.25, 0.99777 ],
  143. "hull": 24,
  144. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 50, 48, 34, 50, 50, 6, 32, 34, 32, 48, 6, 8, 48, 8, 34, 36, 52, 50, 36, 52, 6, 4, 52, 4, 40, 42, 44, 54, 40, 54, 0, 46, 54, 0, 36, 38, 38, 40, 52, 56, 56, 54, 38, 56, 0, 2, 2, 4, 56, 2, 30, 32, 58, 48, 30, 58, 8, 10, 58, 10, 28, 30, 60, 58, 28, 60, 10, 12, 12, 14, 60, 12, 62, 60, 14, 62, 26, 28, 62, 26, 22, 24, 24, 26, 20, 64, 64, 62, 24, 64, 14, 16, 16, 18, 64, 16 ],
  145. "width": 31,
  146. "height": 60
  147. }
  148. },
  149. "yanjing": {
  150. "yanjing": { "x": -5.09, "y": -2.65, "rotation": -92.23, "width": 53, "height": 16 }
  151. },
  152. "yifu": {
  153. "yifu": {
  154. "type": "mesh",
  155. "uvs": [ 1, 0.52367, 1, 0.59951, 1, 0.66523, 1, 0.71241, 1, 1, 0.48089, 1, 0, 1, 0, 0.69388, 0, 0.64669, 0, 0.58602, 0, 0.53041, 0.18223, 0.05351, 0.36889, 0, 0.55089, 0, 0.95456, 0, 0.51281, 0.54404, 0.50891, 0.59976, 0.50419, 0.66725, 0.50091, 0.71406 ],
  156. "triangles": [ 5, 18, 4, 18, 3, 4, 18, 5, 7, 5, 6, 7, 18, 17, 3, 18, 7, 17, 17, 2, 3, 7, 8, 17, 17, 16, 2, 17, 8, 9, 16, 17, 9, 16, 1, 2, 16, 15, 1, 15, 16, 10, 15, 0, 1, 16, 9, 10, 15, 13, 0, 13, 14, 0, 10, 11, 15, 11, 12, 15, 15, 12, 13 ],
  157. "vertices": [ 2, 3, 8.23, -19.34, 0.72412, 2, 23.26, -19.51, 0.27588, 2, 3, 4.14, -19.56, 0.55382, 2, 19.16, -19.64, 0.44618, 2, 3, 0.59, -19.75, 0.38826, 2, 15.62, -19.76, 0.61174, 2, 3, -1.95, -19.89, 0.27741, 2, 13.07, -19.84, 0.72259, 2, 3, -17.46, -20.73, 5.3E-4, 2, -2.45, -20.35, 0.99947, 1, 2, -3.12, -0.12, 1, 2, 3, -19.56, 18.22, 4.1E-4, 2, -3.73, 18.63, 0.99959, 2, 3, -3.06, 19.11, 0.27118, 2, 12.79, 19.17, 0.72882, 2, 3, -0.51, 19.25, 0.37316, 2, 15.34, 19.25, 0.62684, 2, 3, 2.76, 19.42, 0.50953, 2, 18.61, 19.36, 0.49047, 2, 3, 5.76, 19.58, 0.61933, 2, 21.61, 19.46, 0.38067, 1, 3, 31.86, 13.88, 1, 1, 3, 35.14, 6.76, 1, 1, 3, 35.52, -0.32, 1, 1, 3, 36.37, -16.04, 1, 1, 3, 6.1, -0.43, 1, 1, 3, 3.09, -0.44, 1, 2, 3, -0.56, -0.45, 0.08085, 2, 14.87, -0.44, 0.91915, 1, 2, 12.34, -0.39, 1 ],
  158. "hull": 15,
  159. "edges": [ 20, 22, 22, 24, 28, 0, 24, 26, 26, 28, 8, 10, 10, 12, 30, 26, 20, 30, 30, 0, 18, 20, 32, 30, 18, 32, 0, 2, 32, 2, 16, 18, 34, 32, 16, 34, 2, 4, 34, 4, 12, 14, 14, 16, 10, 36, 36, 34, 14, 36, 4, 6, 6, 8, 36, 6 ],
  160. "width": 39,
  161. "height": 54
  162. }
  163. },
  164. "youjiao": {
  165. "youjiao": {
  166. "type": "mesh",
  167. "uvs": [ 0.94277, 0.47498, 0.94464, 0.50665, 0.95071, 0.53284, 1, 0.74571, 1, 0.80907, 1, 0.85203, 1, 1, 0.10216, 1, 0.10216, 0.97158, 0.10216, 0.90075, 0.39575, 0.84097, 0.37602, 0.81129, 0.3509, 0.7735, 0.23737, 0.56279, 0.21482, 0.52156, 0.18573, 0.49121, 0, 0.29741, 0, 0, 0.49475, 0, 0.91464, 0, 0.65625, 0.76043, 0.66547, 0.81026, 0.67593, 0.8461, 0.68592, 0.89499, 0.61093, 0.54704, 0.60461, 0.51728, 0.59847, 0.48838 ],
  168. "triangles": [ 8, 9, 10, 23, 8, 10, 7, 8, 23, 7, 23, 6, 25, 26, 0, 25, 0, 1, 14, 26, 25, 24, 25, 1, 24, 1, 2, 13, 14, 25, 13, 25, 24, 20, 24, 2, 20, 2, 3, 12, 13, 24, 12, 24, 20, 21, 20, 3, 4, 21, 3, 11, 12, 20, 11, 20, 21, 10, 11, 21, 22, 21, 4, 10, 21, 22, 22, 4, 5, 23, 22, 5, 23, 10, 22, 23, 5, 6, 16, 17, 18, 26, 18, 19, 26, 19, 0, 15, 16, 18, 26, 15, 18, 14, 15, 26 ],
  169. "vertices": [ 2, 15, 26.42, 10.02, 0.50282, 16, 0.22, 10.02, 0.49718, 2, 15, 28.09, 9.86, 0.35582, 16, 1.89, 9.88, 0.64418, 2, 15, 29.49, 9.86, 0.24518, 16, 3.29, 9.89, 0.75482, 2, 16, 14.66, 9.98, 0.99126, 17, -10.06, -6.19, 0.00874, 2, 16, 18, 9.59, 0.92486, 17, -9.63, -2.86, 0.07514, 2, 16, 20.26, 9.32, 0.8153, 17, -9.33, -0.6, 0.1847, 2, 16, 28.05, 8.4, 0.42132, 17, -8.32, 7.18, 0.57868, 1, 17, 17.5, 3.81, 1, 1, 17, 17.31, 2.31, 1, 1, 17, 16.82, -1.41, 1, 2, 16, 17.62, -8.01, 0.23487, 17, 7.97, -3.45, 0.76513, 2, 16, 15.99, -8.39, 0.4969, 17, 8.33, -5.08, 0.5031, 3, 15, 39.96, -9, 1.4E-4, 16, 13.92, -8.88, 0.69919, 17, 8.8, -7.16, 0.30067, 3, 15, 28.47, -10.86, 0.36095, 16, 2.44, -10.84, 0.63492, 17, 10.62, -18.66, 0.00413, 3, 15, 26.22, -11.24, 0.55049, 16, 0.19, -11.24, 0.44896, 17, 10.98, -20.91, 5.6E-4, 3, 15, 24.52, -11.87, 0.68863, 16, -1.5, -11.88, 0.31136, 17, 11.61, -22.62, 1.0E-5, 2, 15, 13.65, -15.93, 0.99335, 16, -12.33, -16.03, 0.00665, 1, 15, -1.99, -13.95, 1, 1, 15, -0.19, 0.29, 1, 1, 15, 1.34, 12.37, 1, 2, 16, 14.27, -0.01, 0.99964, 17, -0.07, -6.7, 3.6E-4, 2, 16, 16.92, -0.05, 0.99939, 17, 0, -4.05, 6.1E-4, 2, 16, 18.84, 0.03, 0.99741, 17, -0.05, -2.13, 0.00259, 2, 16, 21.45, 0.01, 0.30265, 17, 0, 0.48, 0.69735, 1, 16, 2.88, 0.01, 1, 1, 16, 1.3, 0.02, 1, 2, 15, 25.87, 0.02, 0.67317, 16, -0.25, 0.02, 0.32683 ],
  170. "hull": 20,
  171. "edges": [ 32, 34, 28, 26, 20, 18, 12, 14, 10, 12, 6, 8, 8, 10, 20, 22, 22, 24, 24, 26, 34, 36, 36, 38, 6, 40, 40, 24, 8, 42, 42, 22, 40, 42, 10, 44, 44, 20, 42, 44, 44, 46, 14, 16, 16, 18, 46, 16, 48, 40, 26, 48, 2, 4, 4, 6, 48, 4, 50, 48, 28, 50, 50, 2, 28, 30, 30, 32, 36, 52, 52, 50, 30, 52, 2, 0, 0, 38, 52, 0 ],
  172. "width": 29,
  173. "height": 53
  174. }
  175. },
  176. "youjiao fan": {
  177. "youjiao fan": {
  178. "type": "mesh",
  179. "uvs": [ 0.74183, 0.40688, 0.74216, 0.43453, 0.7424, 0.45412, 0.74674, 0.81723, 0.74699, 0.8389, 0.74725, 0.85985, 1, 0.9061, 1, 0.97235, 1, 1, 0.25391, 1, 0.257, 0.93068, 0.25794, 0.90973, 0.25905, 0.88475, 0.12715, 0.51158, 0.12079, 0.49358, 0.11079, 0.4653, 0, 0.15187, 0, 0, 0.37479, 0, 0.73697, 0, 0.45334, 0.90048, 0.44995, 0.86163, 0.45186, 0.88347, 0.41552, 0.46688, 0.4171, 0.48499, 0.41319, 0.44016 ],
  180. "triangles": [ 5, 22, 4, 20, 22, 5, 11, 12, 22, 20, 10, 11, 20, 11, 22, 5, 6, 7, 20, 5, 7, 20, 7, 8, 9, 10, 20, 8, 9, 20, 2, 23, 1, 24, 23, 2, 13, 14, 23, 24, 13, 23, 24, 2, 3, 21, 24, 3, 21, 3, 4, 22, 21, 4, 12, 13, 24, 21, 12, 24, 12, 21, 22, 16, 17, 18, 0, 25, 18, 0, 18, 19, 25, 0, 1, 16, 18, 25, 23, 25, 1, 15, 16, 25, 14, 15, 25, 14, 25, 23 ],
  181. "vertices": [ 2, 37, 19.15, 11.49, 0.66495, 38, -2.17, 11.38, 0.33505, 3, 37, 20.58, 11.37, 0.55759, 38, -0.73, 11.35, 0.4424, 39, 7.13, 25.88, 1.0E-5, 2, 37, 21.6, 11.29, 0.47707, 38, 0.29, 11.32, 0.52293, 3, 37, 40.42, 9.73, 0.00153, 38, 19.17, 10.86, 0.42356, 39, 10.4, 6.25, 0.5749, 3, 37, 41.54, 9.64, 0.00108, 38, 20.29, 10.83, 0.3027, 39, 10.58, 5.14, 0.69622, 3, 37, 42.62, 9.55, 5.8E-4, 38, 21.38, 10.8, 0.15964, 39, 10.76, 4.07, 0.83978, 1, 39, 20.12, 3.11, 1, 1, 39, 20.66, -0.29, 1, 1, 39, 20.88, -1.71, 1, 2, 38, 28.08, -7.19, 0.05778, 39, -5.65, -5.9, 0.94222, 2, 38, 24.48, -6.96, 0.2445, 39, -6.1, -2.32, 0.7555, 2, 38, 23.39, -6.89, 0.37264, 39, -6.24, -1.24, 0.62736, 2, 38, 22.1, -6.81, 0.56094, 39, -6.4, 0.05, 0.43906, 2, 37, 22.57, -11.04, 0.35636, 38, 2.54, -10.91, 0.64364, 2, 37, 21.61, -11.18, 0.4302, 38, 1.6, -11.11, 0.5698, 2, 37, 20.12, -11.41, 0.54743, 38, 0.12, -11.42, 0.45257, 2, 37, 3.52, -13.91, 0.99999, 38, -16.3, -14.87, 1.0E-5, 1, 37, -4.34, -13.19, 1, 2, 37, -3.12, 0.25, 1, 39, -9.46, 46.14, 0, 2, 37, -1.94, 13.23, 0.99991, 39, 3.42, 48.17, 9.0E-5, 2, 38, 23.14, 0.16, 0.09594, 39, 0.64, 0.33, 0.90406, 3, 37, 41.75, -1.12, 0, 38, 21.12, 0.1, 0.97936, 39, 0.2, 2.31, 0.02064, 2, 38, 22.26, 0.13, 0.48518, 39, 0.45, 1.2, 0.51482, 2, 37, 21.19, -0.49, 0.1482, 38, 0.56, -0.46, 0.8518, 2, 37, 22.14, -0.52, 0.00143, 38, 1.51, -0.43, 0.99857, 2, 37, 19.8, -0.45, 0.96761, 38, -0.83, -0.5, 0.03239 ],
  182. "hull": 20,
  183. "edges": [ 10, 12, 32, 34, 16, 18, 34, 36, 36, 38, 12, 14, 14, 16, 40, 14, 24, 42, 42, 6, 18, 20, 20, 40, 40, 10, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 28, 46, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 46, 30, 50, 2, 0, 0, 38, 50, 0 ],
  184. "width": 36,
  185. "height": 52
  186. }
  187. },
  188. "youshou": {
  189. "youshou": {
  190. "type": "mesh",
  191. "uvs": [ 0.5561, 0.33812, 0.57881, 0.36075, 0.60634, 0.38014, 0.93175, 0.60938, 0.9705, 0.63668, 1, 0.65746, 1, 1, 0.70165, 1, 0.63569, 0.81104, 0.62407, 0.77775, 0.59625, 0.75361, 0.38913, 0.57388, 0.36223, 0.55053, 0.3316, 0.52996, 0, 0.30728, 0, 0, 0.21676, 0, 0.79584, 0.72118, 0.49481, 0.44839, 0.46429, 0.42073, 0.51693, 0.46844, 0.77321, 0.70068, 0.75138, 0.6809 ],
  192. "triangles": [ 20, 1, 2, 11, 18, 20, 22, 2, 3, 20, 2, 22, 10, 20, 22, 11, 20, 10, 9, 10, 22, 9, 22, 21, 21, 22, 3, 21, 3, 4, 17, 21, 4, 17, 4, 5, 8, 9, 21, 8, 21, 17, 7, 8, 17, 17, 5, 6, 7, 17, 6, 19, 14, 15, 16, 19, 15, 0, 19, 16, 18, 19, 0, 18, 0, 1, 20, 18, 1, 13, 14, 19, 12, 13, 19, 12, 19, 18, 11, 12, 18 ],
  193. "vertices": [ 2, 9, 23.59, 5.9, 0.86483, 10, -2.69, 5.98, 0.13517, 2, 9, 25.12, 5.82, 0.68802, 10, -1.17, 5.86, 0.31198, 2, 9, 26.66, 6.01, 0.45392, 10, 0.38, 6, 0.54608, 2, 11, 0.65, 7.89, 0.68688, 10, 18.68, 7.72, 0.31312, 2, 11, 2.78, 8.4, 0.85334, 10, 20.86, 7.93, 0.14666, 2, 11, 4.4, 8.78, 0.91261, 10, 22.52, 8.08, 0.08739, 1, 11, 18.78, -1.73, 1, 1, 11, 11.21, -12.08, 1, 2, 11, 1.6, -8.58, 0.71422, 10, 17.32, -8.72, 0.28578, 2, 11, -0.09, -7.96, 0.49461, 10, 15.73, -7.87, 0.50539, 2, 11, -1.81, -8.18, 0.28041, 10, 14, -7.85, 0.71959, 2, 9, 27.78, -7.68, 0.41396, 10, 1.09, -7.71, 0.58604, 2, 9, 26.11, -7.71, 0.60284, 10, -0.59, -7.7, 0.39716, 2, 9, 24.43, -7.96, 0.76902, 10, -2.28, -7.9, 0.23098, 1, 9, 6.26, -10.65, 1, 1, 9, -5.52, 0.14, 1, 1, 9, 0.77, 7.01, 1, 2, 11, 1.89, -0.26, 0.99984, 10, 18.77, -0.52, 1.6E-4, 2, 9, 26.04, 0.08, 0.87074, 10, -0.42, 0.09, 0.12926, 1, 9, 24.09, 0.08, 1, 1, 10, 0.99, 0.05, 1, 2, 11, 0.46, -0.42, 0.88669, 10, 17.33, -0.48, 0.11331, 2, 11, -0.93, -0.57, 0.04674, 10, 15.94, -0.43, 0.95326 ],
  194. "hull": 17,
  195. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 34, 12, 24, 36, 36, 2, 24, 26, 26, 28, 30, 38, 38, 36, 26, 38, 2, 0, 0, 32, 38, 0, 22, 24, 40, 36, 22, 40, 2, 4, 40, 4, 14, 16, 16, 18, 16, 34, 34, 10, 34, 42, 18, 42, 8, 10, 42, 8, 18, 20, 20, 22, 40, 44, 44, 42, 20, 44, 4, 6, 6, 8, 44, 6 ],
  196. "width": 43,
  197. "height": 52
  198. }
  199. },
  200. "youshou 1": {
  201. "youshou 1": {
  202. "type": "mesh",
  203. "uvs": [ 0.95713, 0.57311, 0.91125, 0.84019, 0.79626, 1, 0.37051, 1, 0.3235, 1, 0.29576, 1, 0, 1, 0, 0.7518, 0, 0.43499, 0.23238, 0.3727, 0.25822, 0.37337, 0.28859, 0.37417, 0.43876, 0.37811, 0.45679, 0.34397, 0.47451, 0.3104, 0.47776, 0, 0.55536, 0, 0.69713, 0, 0.73761, 0.60492, 0.29699, 0.70034, 0.69103, 0.46268, 0.6928, 0.68907, 0.27838, 0.70356, 0.3303, 0.69939 ],
  204. "triangles": [ 10, 11, 19, 22, 10, 19, 9, 10, 22, 22, 7, 8, 22, 8, 9, 5, 6, 7, 4, 5, 22, 5, 7, 22, 4, 22, 19, 21, 12, 18, 23, 11, 12, 23, 12, 21, 19, 11, 23, 21, 18, 1, 4, 19, 23, 3, 23, 21, 4, 23, 3, 2, 21, 1, 3, 21, 2, 20, 16, 17, 14, 15, 16, 20, 14, 16, 0, 20, 17, 18, 20, 0, 13, 14, 20, 18, 13, 20, 18, 12, 13, 1, 18, 0 ],
  205. "vertices": [ 2, 44, 18.97, 7.74, 0.94604, 45, -7.99, -1.79, 0.05396, 2, 44, 23.34, 2.71, 0.39582, 45, -5.99, 4.57, 0.60418, 2, 44, 24.05, -3.24, 0.02123, 45, -1.29, 8.28, 0.97877, 2, 45, 15.74, 7.84, 0.71357, 46, -2.4, 7.89, 0.28643, 2, 45, 17.62, 7.79, 0.51591, 46, -0.52, 7.8, 0.48409, 2, 45, 18.73, 7.76, 0.39047, 46, 0.59, 7.75, 0.60953, 1, 46, 12.41, 7.2, 1, 1, 46, 12.13, 1.25, 1, 1, 46, 11.78, -6.34, 1, 3, 44, -0.88, -13.92, 0.00522, 45, 20.87, -7.36, 0.16686, 46, 2.43, -7.41, 0.82792, 3, 44, -0.3, -13.07, 0.01088, 45, 19.83, -7.32, 0.24601, 46, 1.4, -7.34, 0.74311, 3, 44, 0.38, -12.06, 0.02282, 45, 18.62, -7.26, 0.36429, 46, 0.18, -7.27, 0.6129, 3, 44, 3.74, -7.08, 0.34875, 45, 12.62, -7.01, 0.60493, 46, -5.81, -6.9, 0.04633, 3, 44, 3.44, -6.03, 0.53177, 45, 11.88, -7.81, 0.45214, 46, -6.57, -7.68, 0.01609, 3, 44, 3.15, -4.99, 0.70339, 45, 11.15, -8.6, 0.29197, 46, -7.32, -8.46, 0.00463, 1, 44, -3.02, -0.82, 1, 1, 44, -1.32, 1.78, 1, 1, 44, 1.77, 6.53, 1, 2, 44, 14.82, -0.03, 0.98742, 45, 0.81, -1.26, 0.01258, 2, 45, 18.49, 0.57, 0.31745, 46, 0.21, 0.57, 0.68255, 1, 44, 10.94, 0.27, 1, 1, 45, 2.66, 0.71, 1, 2, 45, 19.24, 0.63, 0.04725, 46, 0.96, 0.61, 0.95275, 2, 45, 17.16, 0.58, 0.98626, 46, -1.12, 0.6, 0.01374 ],
  206. "hull": 18,
  207. "edges": [ 34, 0, 0, 2, 2, 4, 30, 28, 18, 16, 4, 6, 10, 12, 30, 32, 32, 34, 12, 14, 14, 16, 32, 40, 40, 36, 28, 40, 40, 0, 36, 42, 24, 42, 42, 4, 2, 36, 24, 26, 26, 28, 36, 26, 14, 44, 44, 38, 10, 44, 44, 18, 38, 46, 46, 42, 6, 46, 22, 24, 46, 22, 18, 20, 20, 22, 20, 38, 6, 8, 8, 10, 38, 8 ],
  208. "width": 40,
  209. "height": 24
  210. }
  211. },
  212. "zuojiao": {
  213. "zuojiao": {
  214. "type": "mesh",
  215. "uvs": [ 1, 0.21144, 0.90711, 0.51122, 0.89848, 0.53907, 0.89104, 0.5631, 0.80403, 0.85139, 0.80128, 0.87442, 0.79912, 0.89515, 0.82515, 1, 0, 1, 0, 0.96071, 0, 0.90372, 0.25709, 0.85331, 0.27089, 0.8318, 0.27505, 0.81524, 0.28408, 0.54195, 0.28485, 0.51818, 0.28608, 0.48042, 0.3017, 0, 0.71092, 0, 1, 0, 0.56711, 0.87274, 0.623, 0.53356, 0.6179, 0.56448, 0.62846, 0.5004, 0.56701, 0.8544, 0.57257, 0.83244 ],
  216. "triangles": [ 12, 13, 24, 12, 24, 20, 11, 12, 20, 6, 20, 5, 9, 10, 11, 9, 11, 20, 8, 9, 20, 20, 6, 7, 8, 20, 7, 22, 14, 15, 3, 21, 2, 21, 22, 15, 22, 21, 3, 25, 13, 14, 22, 25, 14, 4, 22, 3, 25, 22, 4, 24, 13, 25, 5, 20, 24, 5, 25, 4, 5, 24, 25, 18, 19, 0, 23, 17, 18, 23, 18, 0, 16, 17, 23, 1, 23, 0, 21, 15, 16, 23, 21, 16, 2, 23, 1, 21, 23, 2 ],
  217. "vertices": [ 1, 12, 7.97, 10.86, 1, 2, 12, 24.63, 9.12, 0.7131, 13, -1.99, 9.09, 0.2869, 2, 12, 26.18, 8.96, 0.56846, 13, -0.44, 8.95, 0.43154, 2, 12, 27.52, 8.82, 0.43252, 13, 0.9, 8.83, 0.56748, 2, 13, 16.94, 7.48, 0.76926, 14, -7.43, 1.59, 0.23074, 2, 13, 18.21, 7.51, 0.64589, 14, -6.98, 2.78, 0.35411, 2, 13, 19.35, 7.54, 0.52599, 14, -6.58, 3.85, 0.47401, 2, 13, 25.02, 8.89, 0.23628, 14, -5.68, 9.61, 0.76372, 1, 14, 19.56, 1.86, 1, 1, 14, 18.93, -0.21, 1, 1, 14, 18.01, -3.2, 1, 2, 13, 18.62, -9.94, 0.07333, 14, 9.33, -3.44, 0.92667, 2, 13, 17.4, -9.61, 0.18373, 14, 8.56, -4.44, 0.81627, 2, 13, 16.48, -9.55, 0.27905, 14, 8.17, -5.27, 0.72095, 3, 12, 27.8, -10.64, 0.41291, 13, 1.49, -10.62, 0.57671, 14, 3.48, -19.56, 0.01038, 3, 12, 26.49, -10.71, 0.51813, 13, 0.18, -10.71, 0.47665, 14, 3.08, -20.8, 0.00522, 3, 12, 24.42, -10.83, 0.67606, 13, -1.89, -10.86, 0.32288, 14, 2.43, -22.77, 0.00106, 1, 12, -1.97, -12.29, 1, 1, 12, -2.94, 0.77, 1, 1, 12, -3.63, 9.99, 1, 2, 13, 18.79, 0.04, 0.21099, 14, 0.16, 0.49, 0.78901, 2, 12, 26.53, 0.14, 0.4589, 13, 0.05, 0.14, 0.5411, 2, 12, 28.24, 0.11, 0.00121, 13, 1.76, 0.13, 0.99879, 2, 12, 24.7, 0.18, 0.99903, 13, -1.78, 0.15, 9.7E-4, 2, 13, 17.79, -0.06, 0.82964, 14, -0.13, -0.47, 0.17036, 1, 13, 16.57, 0.01, 1 ],
  218. "hull": 20,
  219. "edges": [ 24, 22, 22, 20, 0, 38, 14, 16, 12, 14, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 30, 42, 42, 4, 28, 30, 44, 42, 28, 44, 4, 6, 6, 8, 44, 6, 30, 32, 32, 34, 36, 46, 46, 42, 32, 46, 0, 2, 2, 4, 46, 2, 40, 48, 24, 48, 8, 10, 10, 12, 48, 10, 12, 40, 40, 22, 44, 50, 50, 48, 8, 50, 24, 26, 26, 28, 50, 26 ],
  220. "width": 32,
  221. "height": 55
  222. }
  223. },
  224. "zuoshou": {
  225. "zuoshou": {
  226. "type": "mesh",
  227. "uvs": [ 1, 0.10546, 0.70813, 0.52857, 0.69152, 0.55265, 0.67702, 0.57367, 0.47972, 0.85969, 0.46735, 0.87762, 0.45249, 0.89916, 0.38293, 1, 0, 1, 0, 0.78403, 0.10726, 0.67573, 0.12373, 0.6591, 0.13945, 0.64323, 0.40795, 0.37212, 0.42395, 0.35597, 0.44059, 0.33916, 0.7765, 0, 1, 0, 0.553, 0.447, 0.25514, 0.74486, 0.26853, 0.73147, 0.24043, 0.75957, 0.53124, 0.46876, 0.56582, 0.43418 ],
  228. "triangles": [ 20, 12, 13, 19, 12, 20, 11, 12, 19, 21, 11, 19, 10, 11, 21, 5, 20, 4, 19, 20, 5, 6, 19, 5, 21, 19, 6, 21, 8, 9, 21, 9, 10, 7, 21, 6, 8, 21, 7, 13, 14, 22, 22, 18, 3, 20, 13, 22, 4, 20, 22, 4, 22, 3, 23, 16, 17, 23, 15, 16, 0, 23, 17, 18, 15, 23, 14, 15, 18, 22, 14, 18, 1, 23, 0, 2, 23, 1, 18, 23, 2, 3, 18, 2 ],
  229. "vertices": [ 1, 6, -2.88, 8.43, 1, 2, 6, 21.19, 7.55, 0.60165, 7, -1.12, 7.48, 0.39835, 2, 6, 22.56, 7.5, 0.43994, 7, 0.25, 7.55, 0.56006, 2, 6, 23.76, 7.46, 0.30895, 7, 1.45, 7.61, 0.69105, 2, 7, 17.71, 8.45, 0.45122, 8, -0.91, 8.43, 0.54878, 2, 7, 18.73, 8.5, 0.34999, 8, 0.08, 8.69, 0.65001, 2, 7, 19.95, 8.56, 0.24277, 8, 1.27, 8.99, 0.75723, 2, 7, 25.68, 8.86, 0.0204, 8, 6.83, 10.42, 0.9796, 1, 8, 18.2, -0.95, 1, 2, 7, 25.75, -10.4, 0.0065, 8, 10.72, -8.43, 0.9935, 2, 7, 18.84, -9.57, 0.23476, 8, 3.78, -9, 0.76524, 2, 7, 17.77, -9.45, 0.31854, 8, 2.71, -9.09, 0.68146, 2, 7, 16.76, -9.32, 0.40933, 8, 1.7, -9.17, 0.59067, 2, 6, 20.47, -7.19, 0.44986, 7, -0.54, -7.26, 0.55014, 2, 6, 19.45, -6.98, 0.56754, 7, -1.57, -7.14, 0.43246, 2, 6, 18.4, -6.75, 0.68384, 7, -2.65, -7.01, 0.31616, 1, 6, -2.94, -2.29, 1, 1, 6, -7.42, 5.96, 1, 2, 6, 20.79, -0.08, 0.98388, 7, -0.85, -0.16, 0.01612, 2, 7, 18.23, -2.52, 0.16341, 8, 1.78, -2.21, 0.83659, 2, 7, 17.37, -2.42, 0.2989, 8, 0.92, -2.28, 0.7011, 2, 7, 19.17, -2.64, 0.07924, 8, 2.73, -2.14, 0.92076, 2, 6, 22.16, -0.38, 0.06274, 7, 0.54, -0.33, 0.93726, 1, 6, 19.98, 0.09, 1 ],
  230. "hull": 18,
  231. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 22, 38, 38, 10, 22, 24, 40, 38, 24, 40, 8, 10, 40, 8, 18, 20, 20, 22, 16, 42, 42, 38, 20, 42, 10, 12, 12, 14, 42, 12, 24, 26, 26, 28, 36, 44, 44, 40, 26, 44, 4, 6, 6, 8, 44, 6, 28, 30, 30, 32, 34, 46, 46, 36, 30, 46, 0, 2, 2, 4, 46, 2 ],
  232. "width": 42,
  233. "height": 49
  234. }
  235. },
  236. "zuoshou1": {
  237. "zuoshou1": {
  238. "type": "mesh",
  239. "uvs": [ 0.45576, 0.3396, 0.46748, 0.38334, 0.47787, 0.4221, 0.73826, 0.50252, 0.76446, 0.51061, 0.79578, 0.52028, 1, 0.58335, 1, 0.83835, 1, 1, 0.6934, 1, 0.66884, 0.99571, 0.6375, 0.99024, 0.24024, 0.92085, 0.12971, 0.8271, 0.10798, 0.72683, 0.08827, 0.63585, 0.25406, 0, 0.43642, 0, 0.63261, 0, 0.27063, 0.62085, 0.7459, 0.7146, 0.30309, 0.49932, 0.28734, 0.55828, 0.7154, 0.70859, 0.69223, 0.70402 ],
  240. "triangles": [ 20, 23, 5, 20, 5, 6, 20, 6, 7, 10, 23, 20, 9, 10, 20, 7, 9, 20, 9, 7, 8, 19, 22, 2, 24, 2, 3, 24, 3, 4, 19, 2, 24, 23, 24, 4, 23, 4, 5, 19, 14, 22, 13, 14, 19, 12, 13, 19, 12, 19, 24, 11, 12, 24, 11, 24, 23, 10, 11, 23, 0, 17, 18, 17, 0, 21, 17, 21, 16, 21, 0, 1, 22, 21, 1, 16, 21, 15, 2, 22, 1, 15, 21, 22, 15, 22, 14 ],
  241. "vertices": [ 2, 41, 8.35, 3.35, 0.89076, 42, 6.38, 8.22, 0.10924, 2, 41, 9.24, 4.3, 0.70704, 42, 6.99, 7.07, 0.29296, 2, 41, 10.03, 5.15, 0.48087, 42, 7.53, 6.05, 0.51913, 3, 41, 7.54, 14.99, 3.0E-5, 42, 17.64, 5.2, 0.72643, 43, -2.24, 4.74, 0.27354, 2, 42, 18.66, 5.11, 0.56568, 43, -1.25, 4.97, 0.43432, 2, 42, 19.88, 5.01, 0.3665, 43, -0.06, 5.25, 0.6335, 1, 43, 7.69, 7.08, 1, 1, 43, 10.83, 0.67, 1, 1, 43, 12.82, -3.4, 1, 2, 42, 17.89, -8.83, 0.46328, 43, 2.35, -8.52, 0.53672, 2, 42, 16.95, -8.84, 0.54833, 43, 1.46, -8.83, 0.45167, 2, 42, 15.75, -8.86, 0.65536, 43, 0.33, -9.21, 0.34464, 2, 41, 26.57, 3.45, 0.02317, 42, 0.53, -9.03, 0.97683, 2, 41, 26.14, -1.49, 0.21766, 42, -3.99, -7.02, 0.78234, 2, 41, 24.01, -3.5, 0.44702, 42, -5.2, -4.35, 0.55298, 2, 41, 22.08, -5.32, 0.70436, 42, -6.3, -1.93, 0.29564, 1, 41, 3.36, -7.8, 1, 1, 41, 0.21, -1.62, 1, 1, 41, -3.17, 5.02, 1, 1, 42, 0.51, -0.55, 1, 2, 42, 18.76, -0.64, 0.07785, 43, 0.63, -0.47, 0.92215, 2, 41, 14.97, 0.21, 0.97659, 42, 1.26, 2.99, 0.02341, 2, 41, 16.71, 0.43, 0.80897, 42, 0.89, 1.27, 0.19103, 2, 42, 17.59, -0.64, 0.86184, 43, -0.48, -0.83, 0.13816, 2, 42, 16.7, -0.63, 0.96563, 43, -1.33, -1.1, 0.03437 ],
  242. "hull": 19,
  243. "edges": [ 36, 0, 32, 30, 26, 24, 16, 18, 32, 34, 34, 36, 12, 14, 14, 16, 40, 14, 26, 38, 38, 4, 34, 42, 30, 42, 42, 0, 26, 28, 28, 30, 38, 44, 44, 42, 28, 44, 0, 2, 2, 4, 44, 2, 10, 12, 10, 40, 40, 18, 18, 20, 46, 40, 20, 46, 8, 10, 46, 8, 4, 6, 6, 8, 38, 48, 48, 46, 6, 48, 20, 22, 22, 24, 48, 22 ],
  244. "width": 38,
  245. "height": 28
  246. }
  247. }
  248. }
  249. },
  250. "animations": {
  251. "walk1": {
  252. "slots": {
  253. "miemao2": {
  254. "attachment": [
  255. { "time": 0, "name": "miemao2" },
  256. { "time": 1, "name": "miemao2" }
  257. ]
  258. },
  259. "youjiao fan": {
  260. "attachment": [
  261. { "time": 0, "name": null }
  262. ]
  263. }
  264. },
  265. "bones": {
  266. "root": {
  267. "rotate": [
  268. { "time": 0, "angle": 0 }
  269. ],
  270. "translate": [
  271. { "time": 0, "x": 0, "y": 0 }
  272. ],
  273. "scale": [
  274. { "time": 0, "x": 0.65, "y": 0.65 }
  275. ]
  276. },
  277. "bone": {
  278. "rotate": [
  279. { "time": 0, "angle": 0, "curve": "stepped" },
  280. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  281. { "time": 0.5, "angle": 0, "curve": "stepped" },
  282. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  283. { "time": 1, "angle": 0 }
  284. ],
  285. "translate": [
  286. { "time": 0, "x": 0, "y": 0.13 },
  287. { "time": 0.1333, "x": 0, "y": 0.63 },
  288. { "time": 0.5, "x": 0, "y": 0.13 },
  289. { "time": 0.6333, "x": 0, "y": 0.63 },
  290. { "time": 1, "x": 0, "y": 0.13 }
  291. ],
  292. "scale": [
  293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  294. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  295. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  296. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  297. { "time": 1, "x": 1, "y": 1 }
  298. ]
  299. },
  300. "bone2": {
  301. "rotate": [
  302. { "time": 0, "angle": 0, "curve": "stepped" },
  303. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  304. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  305. { "time": 0.5, "angle": 0, "curve": "stepped" },
  306. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  307. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  308. { "time": 1, "angle": 0 }
  309. ],
  310. "translate": [
  311. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  312. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  313. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  314. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  315. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  316. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  317. { "time": 1, "x": 0, "y": 0 }
  318. ],
  319. "scale": [
  320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  321. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  322. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  323. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  324. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  325. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  326. { "time": 1, "x": 1, "y": 1 }
  327. ]
  328. },
  329. "bone3": {
  330. "rotate": [
  331. { "time": 0, "angle": 0, "curve": "stepped" },
  332. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  333. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  334. { "time": 0.5, "angle": 0, "curve": "stepped" },
  335. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  336. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  337. { "time": 1, "angle": 0 }
  338. ],
  339. "translate": [
  340. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  341. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  342. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  343. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  344. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  345. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  346. { "time": 1, "x": 0, "y": 0 }
  347. ],
  348. "scale": [
  349. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  350. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  351. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  353. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  354. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  355. { "time": 1, "x": 1, "y": 1 }
  356. ]
  357. },
  358. "bone4": {
  359. "rotate": [
  360. { "time": 0, "angle": 0, "curve": "stepped" },
  361. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  362. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  363. { "time": 0.5, "angle": 0, "curve": "stepped" },
  364. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  365. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  366. { "time": 1, "angle": 0 }
  367. ],
  368. "translate": [
  369. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  370. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  371. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  372. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  373. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  374. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  375. { "time": 1, "x": 0, "y": 0 }
  376. ],
  377. "scale": [
  378. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  379. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  380. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  381. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  382. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  383. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  384. { "time": 1, "x": 1, "y": 1 }
  385. ]
  386. },
  387. "bone5": {
  388. "rotate": [
  389. { "time": 0, "angle": 0, "curve": "stepped" },
  390. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  391. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  392. { "time": 0.5, "angle": 0, "curve": "stepped" },
  393. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  394. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  395. { "time": 1, "angle": 0 }
  396. ],
  397. "translate": [
  398. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  399. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  400. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  401. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  402. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  403. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  404. { "time": 1, "x": 0, "y": 0 }
  405. ],
  406. "scale": [
  407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  408. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  409. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  411. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  412. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  413. { "time": 1, "x": 1, "y": 1 }
  414. ]
  415. },
  416. "bone6": {
  417. "rotate": [
  418. {
  419. "time": 0,
  420. "angle": -322.59,
  421. "curve": [ 0.25, 0, 0.75, 1 ]
  422. },
  423. {
  424. "time": 0.5,
  425. "angle": 4.65,
  426. "curve": [ 0.25, 0, 0.75, 1 ]
  427. },
  428. { "time": 1, "angle": -322.59 }
  429. ],
  430. "translate": [
  431. {
  432. "time": 0,
  433. "x": -2.8,
  434. "y": -1.87,
  435. "curve": [ 0.25, 0, 0.75, 1 ]
  436. },
  437. {
  438. "time": 0.5,
  439. "x": -2.25,
  440. "y": -1.55,
  441. "curve": [ 0.25, 0, 0.75, 1 ]
  442. },
  443. { "time": 1, "x": -2.8, "y": -1.87 }
  444. ],
  445. "scale": [
  446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  447. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  448. { "time": 1, "x": 1, "y": 1 }
  449. ]
  450. },
  451. "bone7": {
  452. "rotate": [
  453. {
  454. "time": 0,
  455. "angle": 6.25,
  456. "curve": [ 0.25, 0, 0.75, 1 ]
  457. },
  458. {
  459. "time": 0.5,
  460. "angle": -21.12,
  461. "curve": [ 0.25, 0, 0.75, 1 ]
  462. },
  463. { "time": 1, "angle": 6.25 }
  464. ],
  465. "translate": [
  466. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  467. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  468. { "time": 1, "x": 0, "y": 0 }
  469. ],
  470. "scale": [
  471. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  472. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  473. { "time": 1, "x": 1, "y": 1 }
  474. ]
  475. },
  476. "bone8": {
  477. "rotate": [
  478. { "time": 0, "angle": 0, "curve": "stepped" },
  479. { "time": 0.5, "angle": 0, "curve": "stepped" },
  480. { "time": 1, "angle": 0 }
  481. ],
  482. "translate": [
  483. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  484. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  485. { "time": 1, "x": 0, "y": 0 }
  486. ],
  487. "scale": [
  488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  489. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  490. { "time": 1, "x": 1, "y": 1 }
  491. ]
  492. },
  493. "bone9": {
  494. "rotate": [
  495. {
  496. "time": 0,
  497. "angle": 298.35,
  498. "curve": [ 0.25, 0, 0.75, 1 ]
  499. },
  500. {
  501. "time": 0.5,
  502. "angle": -14.23,
  503. "curve": [ 0.25, 0, 0.75, 1 ]
  504. },
  505. { "time": 1, "angle": 298.35 }
  506. ],
  507. "translate": [
  508. {
  509. "time": 0,
  510. "x": -2.14,
  511. "y": -3.44,
  512. "curve": [ 0.25, 0, 0.75, 1 ]
  513. },
  514. {
  515. "time": 0.5,
  516. "x": 0,
  517. "y": 0,
  518. "curve": [ 0.25, 0, 0.75, 1 ]
  519. },
  520. { "time": 1, "x": -2.14, "y": -3.44 }
  521. ],
  522. "scale": [
  523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  524. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  525. { "time": 1, "x": 1, "y": 1 }
  526. ]
  527. },
  528. "bone10": {
  529. "rotate": [
  530. {
  531. "time": 0,
  532. "angle": -26.23,
  533. "curve": [ 0.25, 0, 0.75, 1 ]
  534. },
  535. {
  536. "time": 0.5,
  537. "angle": -12.41,
  538. "curve": [ 0.25, 0, 0.75, 1 ]
  539. },
  540. { "time": 1, "angle": -26.23 }
  541. ],
  542. "translate": [
  543. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  544. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  545. { "time": 1, "x": 0, "y": 0 }
  546. ],
  547. "scale": [
  548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  549. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  550. { "time": 1, "x": 1, "y": 1 }
  551. ]
  552. },
  553. "bone11": {
  554. "rotate": [
  555. { "time": 0, "angle": 0, "curve": "stepped" },
  556. { "time": 0.5, "angle": 0, "curve": "stepped" },
  557. { "time": 1, "angle": 0 }
  558. ],
  559. "translate": [
  560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 1, "x": 0, "y": 0 }
  563. ],
  564. "scale": [
  565. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 1, "x": 1, "y": 1 }
  568. ]
  569. },
  570. "bone12": {
  571. "rotate": [
  572. { "time": 0, "angle": -13.5 },
  573. { "time": 0.1667, "angle": -1.3 },
  574. { "time": 0.3333, "angle": 26.15 },
  575. { "time": 0.5, "angle": 49.89 },
  576. { "time": 0.6667, "angle": 22.2 },
  577. { "time": 0.8333, "angle": -5.93 },
  578. { "time": 1, "angle": -13.5 }
  579. ],
  580. "translate": [
  581. { "time": 0, "x": 0, "y": 0 },
  582. { "time": 0.1667, "x": -0.31, "y": -0.54 },
  583. { "time": 0.3333, "x": -0.63, "y": -1.09 },
  584. { "time": 0.5, "x": -0.94, "y": -1.63 },
  585. { "time": 0.6667, "x": -0.63, "y": -1.09 },
  586. { "time": 0.8333, "x": -0.31, "y": -0.54 },
  587. { "time": 1, "x": 0, "y": 0 }
  588. ],
  589. "scale": [
  590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 1, "x": 1, "y": 1 }
  597. ]
  598. },
  599. "bone13": {
  600. "rotate": [
  601. { "time": 0, "angle": 0 },
  602. { "time": 0.1667, "angle": 14.92 },
  603. { "time": 0.3333, "angle": 4.63 },
  604. { "time": 0.5, "angle": 6.94 },
  605. { "time": 0.6667, "angle": 42.36 },
  606. { "time": 0.8333, "angle": 54.36 },
  607. { "time": 1, "angle": 0 }
  608. ],
  609. "translate": [
  610. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  611. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  612. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  613. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  614. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  615. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  616. { "time": 1, "x": 0, "y": 0 }
  617. ],
  618. "scale": [
  619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  620. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  621. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  622. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  623. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  625. { "time": 1, "x": 1, "y": 1 }
  626. ]
  627. },
  628. "bone14": {
  629. "rotate": [
  630. { "time": 0, "angle": 0 },
  631. { "time": 0.1667, "angle": -12.73 },
  632. { "time": 0.3333, "angle": -22.61 },
  633. { "time": 0.5, "angle": 0, "curve": "stepped" },
  634. { "time": 0.6667, "angle": 0 },
  635. { "time": 0.8333, "angle": -25.58 },
  636. { "time": 1, "angle": 0 }
  637. ],
  638. "translate": [
  639. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  641. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  642. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  643. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  644. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  645. { "time": 1, "x": 0, "y": 0 }
  646. ],
  647. "scale": [
  648. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  649. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  650. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  651. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  652. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 1, "x": 1, "y": 1 }
  655. ]
  656. },
  657. "bone15": {
  658. "rotate": [
  659. { "time": 0, "angle": 15.31 },
  660. { "time": 0.1667, "angle": -4.94 },
  661. { "time": 0.3333, "angle": -26.52 },
  662. { "time": 0.5, "angle": -31.52 },
  663. { "time": 0.6667, "angle": -16.63 },
  664. { "time": 0.8333, "angle": 9.18 },
  665. { "time": 1, "angle": 15.31 }
  666. ],
  667. "translate": [
  668. { "time": 0, "x": 0, "y": 0 },
  669. { "time": 0.1667, "x": -0.53, "y": -1.16 },
  670. { "time": 0.3333, "x": -1.05, "y": -2.33 },
  671. { "time": 0.5, "x": -1.58, "y": -3.49 },
  672. { "time": 0.6667, "x": -1.05, "y": -2.33 },
  673. { "time": 0.8333, "x": -0.53, "y": -1.16 },
  674. { "time": 1, "x": 0, "y": 0 }
  675. ],
  676. "scale": [
  677. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  681. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  682. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  683. { "time": 1, "x": 1, "y": 1 }
  684. ]
  685. },
  686. "bone16": {
  687. "rotate": [
  688. { "time": 0, "angle": 2.86 },
  689. { "time": 0.1667, "angle": 53.2 },
  690. { "time": 0.3333, "angle": 46.54 },
  691. { "time": 0.5, "angle": -4.75 },
  692. { "time": 0.6667, "angle": 5.89 },
  693. { "time": 0.8333, "angle": 9.19 },
  694. { "time": 1, "angle": 2.86 }
  695. ],
  696. "translate": [
  697. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  698. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  701. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 1, "x": 0, "y": 0 }
  704. ],
  705. "scale": [
  706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  707. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  708. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  710. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  711. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 1, "x": 1, "y": 1 }
  713. ]
  714. },
  715. "bone17": {
  716. "rotate": [
  717. { "time": 0, "angle": 9.94 },
  718. { "time": 0.1667, "angle": 5.85 },
  719. { "time": 0.3333, "angle": 0.34 },
  720. { "time": 0.5, "angle": 26.07 },
  721. { "time": 0.6667, "angle": 14.64 },
  722. { "time": 0.8333, "angle": -2.2 },
  723. { "time": 1, "angle": 9.94 }
  724. ],
  725. "translate": [
  726. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  727. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  729. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  732. { "time": 1, "x": 0, "y": 0 }
  733. ],
  734. "scale": [
  735. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  736. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  738. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  739. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  740. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  741. { "time": 1, "x": 1, "y": 1 }
  742. ]
  743. },
  744. "bone18": {
  745. "rotate": [
  746. { "time": 0, "angle": 0, "curve": "stepped" },
  747. { "time": 0.5, "angle": 0, "curve": "stepped" },
  748. { "time": 1, "angle": 0 }
  749. ],
  750. "translate": [
  751. {
  752. "time": 0,
  753. "x": -0.04,
  754. "y": -0.44,
  755. "curve": [ 0.25, 0, 0.75, 1 ]
  756. },
  757. {
  758. "time": 0.5,
  759. "x": 0,
  760. "y": 0,
  761. "curve": [ 0.25, 0, 0.75, 1 ]
  762. },
  763. { "time": 1, "x": -0.04, "y": -0.44 }
  764. ],
  765. "scale": [
  766. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  767. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 1, "x": 1, "y": 1 }
  769. ]
  770. },
  771. "bone19": {
  772. "rotate": [
  773. {
  774. "time": 0,
  775. "angle": 3.26,
  776. "curve": [ 0.25, 0, 0.75, 1 ]
  777. },
  778. {
  779. "time": 0.5,
  780. "angle": -5.85,
  781. "curve": [ 0.25, 0, 0.75, 1 ]
  782. },
  783. { "time": 1, "angle": 3.26 }
  784. ],
  785. "translate": [
  786. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 1, "x": 0, "y": 0 }
  789. ],
  790. "scale": [
  791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  792. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 1, "x": 1, "y": 1 }
  794. ]
  795. },
  796. "bone20": {
  797. "rotate": [
  798. {
  799. "time": 0,
  800. "angle": -4.07,
  801. "curve": [ 0.25, 0, 0.75, 1 ]
  802. },
  803. {
  804. "time": 0.5,
  805. "angle": -3.17,
  806. "curve": [ 0.25, 0, 0.75, 1 ]
  807. },
  808. { "time": 1, "angle": -4.07 }
  809. ],
  810. "translate": [
  811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 1, "x": 0, "y": 0 }
  814. ],
  815. "scale": [
  816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  817. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  818. { "time": 1, "x": 1, "y": 1 }
  819. ]
  820. },
  821. "bone21": {
  822. "rotate": [
  823. {
  824. "time": 0,
  825. "angle": 0.9,
  826. "curve": [ 0.25, 0, 0.75, 1 ]
  827. },
  828. {
  829. "time": 0.5,
  830. "angle": -12.43,
  831. "curve": [ 0.25, 0, 0.75, 1 ]
  832. },
  833. { "time": 1, "angle": 0.9 }
  834. ],
  835. "translate": [
  836. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  838. { "time": 1, "x": 0, "y": 0 }
  839. ],
  840. "scale": [
  841. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  843. { "time": 1, "x": 1, "y": 1 }
  844. ]
  845. },
  846. "bone22": {
  847. "rotate": [
  848. {
  849. "time": 0,
  850. "angle": -2.85,
  851. "curve": [ 0.25, 0, 0.75, 1 ]
  852. },
  853. {
  854. "time": 0.5,
  855. "angle": -10.59,
  856. "curve": [ 0.25, 0, 0.75, 1 ]
  857. },
  858. { "time": 1, "angle": -2.85 }
  859. ],
  860. "translate": [
  861. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  862. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 1, "x": 0, "y": 0 }
  864. ],
  865. "scale": [
  866. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  868. { "time": 1, "x": 1, "y": 1 }
  869. ]
  870. },
  871. "bone23": {
  872. "rotate": [
  873. {
  874. "time": 0,
  875. "angle": -2.85,
  876. "curve": [ 0.25, 0, 0.75, 1 ]
  877. },
  878. {
  879. "time": 0.5,
  880. "angle": -10.59,
  881. "curve": [ 0.25, 0, 0.75, 1 ]
  882. },
  883. { "time": 1, "angle": -2.85 }
  884. ],
  885. "translate": [
  886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  887. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  888. { "time": 1, "x": 0, "y": 0 }
  889. ],
  890. "scale": [
  891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  892. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 1, "x": 1, "y": 1 }
  894. ]
  895. },
  896. "bone24": {
  897. "rotate": [
  898. {
  899. "time": 0,
  900. "angle": 5.56,
  901. "curve": [ 0.25, 0, 0.75, 1 ]
  902. },
  903. {
  904. "time": 0.5,
  905. "angle": 6.8,
  906. "curve": [ 0.25, 0, 0.75, 1 ]
  907. },
  908. { "time": 1, "angle": 5.56 }
  909. ],
  910. "translate": [
  911. {
  912. "time": 0,
  913. "x": -0.06,
  914. "y": 1.74,
  915. "curve": [ 0.25, 0, 0.75, 1 ]
  916. },
  917. {
  918. "time": 0.5,
  919. "x": 0,
  920. "y": 0,
  921. "curve": [ 0.25, 0, 0.75, 1 ]
  922. },
  923. { "time": 1, "x": -0.06, "y": 1.74 }
  924. ],
  925. "scale": [
  926. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 1, "x": 1, "y": 1 }
  929. ]
  930. },
  931. "bone25": {
  932. "rotate": [
  933. {
  934. "time": 0,
  935. "angle": -3.11,
  936. "curve": [ 0.25, 0, 0.75, 1 ]
  937. },
  938. {
  939. "time": 0.5,
  940. "angle": 8.48,
  941. "curve": [ 0.25, 0, 0.75, 1 ]
  942. },
  943. { "time": 1, "angle": -3.11 }
  944. ],
  945. "translate": [
  946. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 1, "x": 0, "y": 0 }
  949. ],
  950. "scale": [
  951. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 1, "x": 1, "y": 1 }
  954. ]
  955. },
  956. "bone26": {
  957. "rotate": [
  958. {
  959. "time": 0,
  960. "angle": -3.11,
  961. "curve": [ 0.25, 0, 0.75, 1 ]
  962. },
  963. {
  964. "time": 0.5,
  965. "angle": -8.72,
  966. "curve": [ 0.25, 0, 0.75, 1 ]
  967. },
  968. { "time": 1, "angle": -3.11 }
  969. ],
  970. "translate": [
  971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  972. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  973. { "time": 1, "x": 0, "y": 0 }
  974. ],
  975. "scale": [
  976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 1, "x": 1, "y": 1 }
  979. ]
  980. },
  981. "bone27": {
  982. "rotate": [
  983. {
  984. "time": 0,
  985. "angle": -5,
  986. "curve": [ 0.25, 0, 0.75, 1 ]
  987. },
  988. {
  989. "time": 0.5,
  990. "angle": 1.38,
  991. "curve": [ 0.25, 0, 0.75, 1 ]
  992. },
  993. { "time": 1, "angle": -5 }
  994. ],
  995. "translate": [
  996. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  997. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  998. { "time": 1, "x": 0, "y": 0 }
  999. ],
  1000. "scale": [
  1001. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 1, "x": 1, "y": 1 }
  1004. ]
  1005. },
  1006. "bone28": {
  1007. "rotate": [
  1008. {
  1009. "time": 0,
  1010. "angle": -3.11,
  1011. "curve": [ 0.25, 0, 0.75, 1 ]
  1012. },
  1013. {
  1014. "time": 0.5,
  1015. "angle": 4.42,
  1016. "curve": [ 0.25, 0, 0.75, 1 ]
  1017. },
  1018. { "time": 1, "angle": -3.11 }
  1019. ],
  1020. "translate": [
  1021. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 1, "x": 0, "y": 0 }
  1024. ],
  1025. "scale": [
  1026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1027. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1028. { "time": 1, "x": 1, "y": 1 }
  1029. ]
  1030. },
  1031. "bone29": {
  1032. "rotate": [
  1033. {
  1034. "time": 0,
  1035. "angle": -3.11,
  1036. "curve": [ 0.25, 0, 0.75, 1 ]
  1037. },
  1038. {
  1039. "time": 0.5,
  1040. "angle": 4.42,
  1041. "curve": [ 0.25, 0, 0.75, 1 ]
  1042. },
  1043. { "time": 1, "angle": -3.11 }
  1044. ],
  1045. "translate": [
  1046. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 1, "x": 0, "y": 0 }
  1049. ],
  1050. "scale": [
  1051. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 1, "x": 1, "y": 1 }
  1054. ]
  1055. },
  1056. "bone30": {
  1057. "rotate": [
  1058. { "time": 0, "angle": 0, "curve": "stepped" },
  1059. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1060. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1061. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1062. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1063. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1064. { "time": 1, "angle": 0 }
  1065. ],
  1066. "translate": [
  1067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 1, "x": 0, "y": 0 }
  1074. ],
  1075. "scale": [
  1076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 1, "x": 1, "y": 1 }
  1083. ]
  1084. },
  1085. "bone32": {
  1086. "rotate": [
  1087. { "time": 0, "angle": 0, "curve": "stepped" },
  1088. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1089. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1090. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1091. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1092. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1093. { "time": 1, "angle": 0 }
  1094. ],
  1095. "translate": [
  1096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1097. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1098. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1099. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1100. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 1, "x": 0, "y": 0 }
  1103. ],
  1104. "scale": [
  1105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1106. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1107. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1108. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1109. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1110. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 1, "x": 1, "y": 1 }
  1112. ]
  1113. },
  1114. "bone33": {
  1115. "rotate": [
  1116. { "time": 0, "angle": 0 },
  1117. { "time": 0.5, "angle": 6.84 },
  1118. { "time": 1, "angle": 0 }
  1119. ],
  1120. "translate": [
  1121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 1, "x": 0, "y": 0 }
  1124. ],
  1125. "scale": [
  1126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1127. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1128. { "time": 1, "x": 1, "y": 1 }
  1129. ]
  1130. },
  1131. "bone34": {
  1132. "rotate": [
  1133. { "time": 0, "angle": 0 },
  1134. { "time": 0.5, "angle": 8.82 },
  1135. { "time": 1, "angle": 0 }
  1136. ],
  1137. "translate": [
  1138. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1139. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1140. { "time": 1, "x": 0, "y": 0 }
  1141. ],
  1142. "scale": [
  1143. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1144. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1145. { "time": 1, "x": 1, "y": 1 }
  1146. ]
  1147. },
  1148. "bone35": {
  1149. "rotate": [
  1150. { "time": 0, "angle": 0, "curve": "stepped" },
  1151. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1152. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1153. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1154. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1155. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1156. { "time": 1, "angle": 0 }
  1157. ],
  1158. "translate": [
  1159. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1160. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1161. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1162. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 1, "x": 0, "y": 0 }
  1166. ],
  1167. "scale": [
  1168. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1169. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 1, "x": 1, "y": 1 }
  1175. ]
  1176. },
  1177. "bone31": {
  1178. "rotate": [
  1179. { "time": 0, "angle": 0, "curve": "stepped" },
  1180. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1181. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1182. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1183. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1184. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1185. { "time": 1, "angle": 0 }
  1186. ],
  1187. "translate": [
  1188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1190. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 1, "x": 0, "y": 0 }
  1195. ],
  1196. "scale": [
  1197. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1198. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1199. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 1, "x": 1, "y": 1 }
  1204. ]
  1205. },
  1206. "bone36": {
  1207. "rotate": [
  1208. { "time": 0, "angle": 0, "curve": "stepped" },
  1209. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1210. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1211. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1212. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1213. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1214. { "time": 1, "angle": 0 }
  1215. ],
  1216. "translate": [
  1217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1218. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 1, "x": 0, "y": 0 }
  1224. ],
  1225. "scale": [
  1226. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1227. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1228. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 1, "x": 1, "y": 1 }
  1233. ]
  1234. },
  1235. "bone40": {
  1236. "rotate": [
  1237. { "time": 0, "angle": 0, "curve": "stepped" },
  1238. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1239. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1240. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1241. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1242. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1243. { "time": 1, "angle": 0 }
  1244. ],
  1245. "translate": [
  1246. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1249. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1250. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 1, "x": 0, "y": 0 }
  1253. ],
  1254. "scale": [
  1255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1256. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1257. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1258. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1260. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1261. { "time": 1, "x": 1, "y": 1 }
  1262. ]
  1263. }
  1264. },
  1265. "deform": {
  1266. "default": {
  1267. "dangbu": {
  1268. "dangbu": [
  1269. { "time": 0 },
  1270. {
  1271. "time": 0.3333,
  1272. "offset": 2,
  1273. "vertices": [ 1.15986, -3.77306, 0.97174, -4.13301, 1.19808, 4.9793, 1.13425, 2.16836 ]
  1274. },
  1275. {
  1276. "time": 0.5,
  1277. "vertices": [ -0.39528, -1.16621, 1.16626, -3.96582, 1.45761, -6.19951, 1.79712, 7.46895, 1.52884, 3.80249, 0.35607, 0.51942, -2.14299, -3.22424 ]
  1278. },
  1279. {
  1280. "time": 0.6667,
  1281. "offset": 2,
  1282. "vertices": [ 0.93164, -2.44783, 0.97174, -4.13301, 1.19808, 4.9793, 1.83527, 2.28014 ]
  1283. },
  1284. { "time": 1 }
  1285. ]
  1286. },
  1287. "yifu": {
  1288. "yifu": [
  1289. { "time": 0 },
  1290. {
  1291. "time": 0.5,
  1292. "offset": 46,
  1293. "vertices": [ -0.14731, 2.726, 0, 0, -0.14731, 2.726, -0.14731, 2.726, -0.14731, 2.726, -0.08945, 2.72852, -1.25245, 2.49531 ]
  1294. },
  1295. { "time": 1 }
  1296. ]
  1297. },
  1298. "youjiao": {
  1299. "youjiao": [
  1300. {
  1301. "time": 0,
  1302. "offset": 70,
  1303. "vertices": [ -2.59007, -7.40041 ]
  1304. },
  1305. {
  1306. "time": 0.1667,
  1307. "vertices": [ -1.67651, 1.20581, -0.05593, 2.06455, -1.17851, 1.34003, 0.35251, 1.74953, -0.80724, 1.54086, 0.73722, 1.57563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.72671, -4.93361 ]
  1308. },
  1309. { "time": 0.5 },
  1310. {
  1311. "time": 1,
  1312. "offset": 70,
  1313. "vertices": [ -2.59007, -7.40041 ]
  1314. }
  1315. ]
  1316. },
  1317. "youshou": {
  1318. "youshou": [
  1319. {
  1320. "time": 0,
  1321. "offset": 54,
  1322. "vertices": [ 0.27516, -5.66976, -0.44067, -2.10746 ]
  1323. },
  1324. {
  1325. "time": 0.5,
  1326. "offset": 54,
  1327. "vertices": [ 0.27516, -5.66976, -2.00626, -0.58452 ]
  1328. },
  1329. {
  1330. "time": 1,
  1331. "offset": 54,
  1332. "vertices": [ 0.27516, -5.66976, -0.44067, -2.10746 ]
  1333. }
  1334. ]
  1335. },
  1336. "zuojiao": {
  1337. "zuojiao": [
  1338. { "time": 0 },
  1339. {
  1340. "time": 0.5,
  1341. "offset": 70,
  1342. "vertices": [ 6.97094, -3.52109 ]
  1343. },
  1344. { "time": 1 }
  1345. ]
  1346. }
  1347. }
  1348. }
  1349. },
  1350. "walk2": {
  1351. "slots": {
  1352. "miemao2": {
  1353. "attachment": [
  1354. { "time": 0, "name": "miemao2" },
  1355. { "time": 0.7667, "name": "miemao2" },
  1356. { "time": 1.5333, "name": "miemao2" },
  1357. { "time": 2.3, "name": "miemao2" },
  1358. { "time": 3.0667, "name": "miemao2" },
  1359. { "time": 3.8333, "name": "miemao2" },
  1360. { "time": 4.6, "name": "miemao2" },
  1361. { "time": 5.3667, "name": "miemao2" },
  1362. { "time": 6.1333, "name": "miemao2" }
  1363. ]
  1364. },
  1365. "youjiao": {
  1366. "attachment": [
  1367. { "time": 0, "name": null }
  1368. ]
  1369. },
  1370. "youjiao fan": {
  1371. "attachment": [
  1372. { "time": 0, "name": "youjiao fan" },
  1373. { "time": 0.1333, "name": "youjiao fan" },
  1374. { "time": 0.2, "name": "youjiao fan" },
  1375. { "time": 0.3667, "name": "youjiao fan" },
  1376. { "time": 0.5333, "name": "youjiao fan" },
  1377. { "time": 0.6, "name": "youjiao fan" },
  1378. { "time": 0.7667, "name": "youjiao fan" },
  1379. { "time": 0.9, "name": "youjiao fan" },
  1380. { "time": 0.9667, "name": "youjiao fan" },
  1381. { "time": 1.1333, "name": "youjiao fan" },
  1382. { "time": 1.3, "name": "youjiao fan" },
  1383. { "time": 1.3667, "name": "youjiao fan" },
  1384. { "time": 1.5333, "name": "youjiao fan" },
  1385. { "time": 1.6667, "name": "youjiao fan" },
  1386. { "time": 1.7333, "name": "youjiao fan" },
  1387. { "time": 1.9, "name": "youjiao fan" },
  1388. { "time": 2.0667, "name": "youjiao fan" },
  1389. { "time": 2.1333, "name": "youjiao fan" },
  1390. { "time": 2.3, "name": "youjiao fan" },
  1391. { "time": 2.4333, "name": "youjiao fan" },
  1392. { "time": 2.5, "name": "youjiao fan" },
  1393. { "time": 2.6667, "name": "youjiao fan" },
  1394. { "time": 2.8333, "name": "youjiao fan" },
  1395. { "time": 2.9, "name": "youjiao fan" },
  1396. { "time": 3.0667, "name": "youjiao fan" },
  1397. { "time": 3.2, "name": "youjiao fan" },
  1398. { "time": 3.2667, "name": "youjiao fan" },
  1399. { "time": 3.4333, "name": "youjiao fan" },
  1400. { "time": 3.6, "name": "youjiao fan" },
  1401. { "time": 3.6667, "name": "youjiao fan" },
  1402. { "time": 3.8333, "name": "youjiao fan" },
  1403. { "time": 3.9667, "name": "youjiao fan" },
  1404. { "time": 4.0333, "name": "youjiao fan" },
  1405. { "time": 4.2, "name": "youjiao fan" },
  1406. { "time": 4.3667, "name": "youjiao fan" },
  1407. { "time": 4.4333, "name": "youjiao fan" },
  1408. { "time": 4.6, "name": "youjiao fan" },
  1409. { "time": 4.7333, "name": "youjiao fan" },
  1410. { "time": 4.8, "name": "youjiao fan" },
  1411. { "time": 4.9667, "name": "youjiao fan" },
  1412. { "time": 5.1333, "name": "youjiao fan" },
  1413. { "time": 5.2, "name": "youjiao fan" },
  1414. { "time": 5.3667, "name": "youjiao fan" },
  1415. { "time": 5.5, "name": "youjiao fan" },
  1416. { "time": 5.5667, "name": "youjiao fan" },
  1417. { "time": 5.7333, "name": "youjiao fan" },
  1418. { "time": 5.9, "name": "youjiao fan" },
  1419. { "time": 5.9667, "name": "youjiao fan" },
  1420. { "time": 6.1333, "name": "youjiao fan" }
  1421. ]
  1422. },
  1423. "youshou": {
  1424. "attachment": [
  1425. { "time": 0, "name": null }
  1426. ]
  1427. },
  1428. "youshou 1": {
  1429. "attachment": [
  1430. { "time": 0, "name": "youshou 1" },
  1431. { "time": 0.1333, "name": "youshou 1" },
  1432. { "time": 0.2, "name": "youshou 1" },
  1433. { "time": 0.3667, "name": "youshou 1" },
  1434. { "time": 0.5333, "name": "youshou 1" },
  1435. { "time": 0.6, "name": "youshou 1" },
  1436. { "time": 0.7667, "name": "youshou 1" },
  1437. { "time": 0.9, "name": "youshou 1" },
  1438. { "time": 0.9667, "name": "youshou 1" },
  1439. { "time": 1.1333, "name": "youshou 1" },
  1440. { "time": 1.3, "name": "youshou 1" },
  1441. { "time": 1.3667, "name": "youshou 1" },
  1442. { "time": 1.5333, "name": "youshou 1" },
  1443. { "time": 1.6667, "name": "youshou 1" },
  1444. { "time": 1.7333, "name": "youshou 1" },
  1445. { "time": 1.9, "name": "youshou 1" },
  1446. { "time": 2.0667, "name": "youshou 1" },
  1447. { "time": 2.1333, "name": "youshou 1" },
  1448. { "time": 2.3, "name": "youshou 1" },
  1449. { "time": 2.4333, "name": "youshou 1" },
  1450. { "time": 2.5, "name": "youshou 1" },
  1451. { "time": 2.6667, "name": "youshou 1" },
  1452. { "time": 2.8333, "name": "youshou 1" },
  1453. { "time": 2.9, "name": "youshou 1" },
  1454. { "time": 3.0667, "name": "youshou 1" },
  1455. { "time": 3.2, "name": "youshou 1" },
  1456. { "time": 3.2667, "name": "youshou 1" },
  1457. { "time": 3.4333, "name": "youshou 1" },
  1458. { "time": 3.6, "name": "youshou 1" },
  1459. { "time": 3.6667, "name": "youshou 1" },
  1460. { "time": 3.8333, "name": "youshou 1" },
  1461. { "time": 3.9667, "name": "youshou 1" },
  1462. { "time": 4.0333, "name": "youshou 1" },
  1463. { "time": 4.2, "name": "youshou 1" },
  1464. { "time": 4.3667, "name": "youshou 1" },
  1465. { "time": 4.4333, "name": "youshou 1" },
  1466. { "time": 4.6, "name": "youshou 1" },
  1467. { "time": 4.7333, "name": "youshou 1" },
  1468. { "time": 4.8, "name": "youshou 1" },
  1469. { "time": 4.9667, "name": "youshou 1" },
  1470. { "time": 5.1333, "name": "youshou 1" },
  1471. { "time": 5.2, "name": "youshou 1" },
  1472. { "time": 5.3667, "name": "youshou 1" },
  1473. { "time": 5.5, "name": "youshou 1" },
  1474. { "time": 5.5667, "name": "youshou 1" },
  1475. { "time": 5.7333, "name": "youshou 1" },
  1476. { "time": 5.9, "name": "youshou 1" },
  1477. { "time": 5.9667, "name": "youshou 1" },
  1478. { "time": 6.1333, "name": "youshou 1" }
  1479. ]
  1480. },
  1481. "zuoshou": {
  1482. "attachment": [
  1483. { "time": 0, "name": null }
  1484. ]
  1485. },
  1486. "zuoshou1": {
  1487. "attachment": [
  1488. { "time": 0, "name": "zuoshou1" },
  1489. { "time": 0.1333, "name": "zuoshou1" },
  1490. { "time": 0.2, "name": "zuoshou1" },
  1491. { "time": 0.3667, "name": "zuoshou1" },
  1492. { "time": 0.5333, "name": "zuoshou1" },
  1493. { "time": 0.6, "name": "zuoshou1" },
  1494. { "time": 0.7667, "name": "zuoshou1" },
  1495. { "time": 0.9, "name": "zuoshou1" },
  1496. { "time": 0.9667, "name": "zuoshou1" },
  1497. { "time": 1.1333, "name": "zuoshou1" },
  1498. { "time": 1.3, "name": "zuoshou1" },
  1499. { "time": 1.3667, "name": "zuoshou1" },
  1500. { "time": 1.5333, "name": "zuoshou1" },
  1501. { "time": 1.6667, "name": "zuoshou1" },
  1502. { "time": 1.7333, "name": "zuoshou1" },
  1503. { "time": 1.9, "name": "zuoshou1" },
  1504. { "time": 2.0667, "name": "zuoshou1" },
  1505. { "time": 2.1333, "name": "zuoshou1" },
  1506. { "time": 2.3, "name": "zuoshou1" },
  1507. { "time": 2.4333, "name": "zuoshou1" },
  1508. { "time": 2.5, "name": "zuoshou1" },
  1509. { "time": 2.6667, "name": "zuoshou1" },
  1510. { "time": 2.8333, "name": "zuoshou1" },
  1511. { "time": 2.9, "name": "zuoshou1" },
  1512. { "time": 3.0667, "name": "zuoshou1" },
  1513. { "time": 3.2, "name": "zuoshou1" },
  1514. { "time": 3.2667, "name": "zuoshou1" },
  1515. { "time": 3.4333, "name": "zuoshou1" },
  1516. { "time": 3.6, "name": "zuoshou1" },
  1517. { "time": 3.6667, "name": "zuoshou1" },
  1518. { "time": 3.8333, "name": "zuoshou1" },
  1519. { "time": 3.9667, "name": "zuoshou1" },
  1520. { "time": 4.0333, "name": "zuoshou1" },
  1521. { "time": 4.2, "name": "zuoshou1" },
  1522. { "time": 4.3667, "name": "zuoshou1" },
  1523. { "time": 4.4333, "name": "zuoshou1" },
  1524. { "time": 4.6, "name": "zuoshou1" },
  1525. { "time": 4.7333, "name": "zuoshou1" },
  1526. { "time": 4.8, "name": "zuoshou1" },
  1527. { "time": 4.9667, "name": "zuoshou1" },
  1528. { "time": 5.1333, "name": "zuoshou1" },
  1529. { "time": 5.2, "name": "zuoshou1" },
  1530. { "time": 5.3667, "name": "zuoshou1" },
  1531. { "time": 5.5, "name": "zuoshou1" },
  1532. { "time": 5.5667, "name": "zuoshou1" },
  1533. { "time": 5.7333, "name": "zuoshou1" },
  1534. { "time": 5.9, "name": "zuoshou1" },
  1535. { "time": 5.9667, "name": "zuoshou1" },
  1536. { "time": 6.1333, "name": "zuoshou1" }
  1537. ]
  1538. }
  1539. },
  1540. "bones": {
  1541. "bone9": {
  1542. "translate": [
  1543. { "time": 0, "x": 12.62, "y": -139.28 }
  1544. ]
  1545. },
  1546. "bone6": {
  1547. "translate": [
  1548. { "time": 0, "x": -0.22, "y": 126.66 }
  1549. ]
  1550. },
  1551. "bone44": {
  1552. "rotate": [
  1553. { "time": 0, "angle": 4.09 },
  1554. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1555. { "time": 0.2, "angle": 0 },
  1556. { "time": 0.3667, "angle": -16.32 },
  1557. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  1558. { "time": 0.6, "angle": 0 },
  1559. { "time": 0.7667, "angle": 4.09 },
  1560. { "time": 0.9, "angle": 0, "curve": "stepped" },
  1561. { "time": 0.9667, "angle": 0 },
  1562. { "time": 1.1333, "angle": -16.32 },
  1563. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1564. { "time": 1.3667, "angle": 0 },
  1565. { "time": 1.5333, "angle": 4.09 },
  1566. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1567. { "time": 1.7333, "angle": 0 },
  1568. { "time": 1.9, "angle": -16.32 },
  1569. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  1570. { "time": 2.1333, "angle": 0 },
  1571. { "time": 2.3, "angle": 4.09 },
  1572. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  1573. { "time": 2.5, "angle": 0 },
  1574. { "time": 2.6667, "angle": -16.32 },
  1575. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  1576. { "time": 2.9, "angle": 0 },
  1577. { "time": 3.0667, "angle": 4.09 },
  1578. { "time": 3.2, "angle": 0, "curve": "stepped" },
  1579. { "time": 3.2667, "angle": 0 },
  1580. { "time": 3.4333, "angle": -16.32 },
  1581. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1582. { "time": 3.6667, "angle": 0 },
  1583. { "time": 3.8333, "angle": 4.09 },
  1584. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  1585. { "time": 4.0333, "angle": 0 },
  1586. { "time": 4.2, "angle": -16.32 },
  1587. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  1588. { "time": 4.4333, "angle": 0 },
  1589. { "time": 4.6, "angle": 4.09 },
  1590. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  1591. { "time": 4.8, "angle": 0 },
  1592. { "time": 4.9667, "angle": -16.32 },
  1593. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  1594. { "time": 5.2, "angle": 0 },
  1595. { "time": 5.3667, "angle": 4.09 },
  1596. { "time": 5.5, "angle": 0, "curve": "stepped" },
  1597. { "time": 5.5667, "angle": 0 },
  1598. { "time": 5.7333, "angle": -16.32 },
  1599. { "time": 5.9, "angle": 0, "curve": "stepped" },
  1600. { "time": 5.9667, "angle": 0 },
  1601. { "time": 6.1333, "angle": 4.09 }
  1602. ],
  1603. "translate": [
  1604. { "time": 0, "x": 0.38, "y": 117.87 },
  1605. { "time": 0.1333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1606. { "time": 0.2, "x": -2.2, "y": 117.29 },
  1607. { "time": 0.3667, "x": 1.67, "y": 117.86 },
  1608. { "time": 0.5333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1609. { "time": 0.6, "x": -2.2, "y": 117.29 },
  1610. { "time": 0.7667, "x": 0.38, "y": 117.87 },
  1611. { "time": 0.9, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1612. { "time": 0.9667, "x": -2.2, "y": 117.29 },
  1613. { "time": 1.1333, "x": 1.67, "y": 117.86 },
  1614. { "time": 1.3, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1615. { "time": 1.3667, "x": -2.2, "y": 117.29 },
  1616. { "time": 1.5333, "x": 0.38, "y": 117.87 },
  1617. { "time": 1.6667, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1618. { "time": 1.7333, "x": -2.2, "y": 117.29 },
  1619. { "time": 1.9, "x": 1.67, "y": 117.86 },
  1620. { "time": 2.0667, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1621. { "time": 2.1333, "x": -2.2, "y": 117.29 },
  1622. { "time": 2.3, "x": 0.38, "y": 117.87 },
  1623. { "time": 2.4333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1624. { "time": 2.5, "x": -2.2, "y": 117.29 },
  1625. { "time": 2.6667, "x": 1.67, "y": 117.86 },
  1626. { "time": 2.8333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1627. { "time": 2.9, "x": -2.2, "y": 117.29 },
  1628. { "time": 3.0667, "x": 0.38, "y": 117.87 },
  1629. { "time": 3.2, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1630. { "time": 3.2667, "x": -2.2, "y": 117.29 },
  1631. { "time": 3.4333, "x": 1.67, "y": 117.86 },
  1632. { "time": 3.6, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1633. { "time": 3.6667, "x": -2.2, "y": 117.29 },
  1634. { "time": 3.8333, "x": 0.38, "y": 117.87 },
  1635. { "time": 3.9667, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1636. { "time": 4.0333, "x": -2.2, "y": 117.29 },
  1637. { "time": 4.2, "x": 1.67, "y": 117.86 },
  1638. { "time": 4.3667, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1639. { "time": 4.4333, "x": -2.2, "y": 117.29 },
  1640. { "time": 4.6, "x": 0.38, "y": 117.87 },
  1641. { "time": 4.7333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1642. { "time": 4.8, "x": -2.2, "y": 117.29 },
  1643. { "time": 4.9667, "x": 1.67, "y": 117.86 },
  1644. { "time": 5.1333, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1645. { "time": 5.2, "x": -2.2, "y": 117.29 },
  1646. { "time": 5.3667, "x": 0.38, "y": 117.87 },
  1647. { "time": 5.5, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1648. { "time": 5.5667, "x": -2.2, "y": 117.29 },
  1649. { "time": 5.7333, "x": 1.67, "y": 117.86 },
  1650. { "time": 5.9, "x": -2.2, "y": 117.29, "curve": "stepped" },
  1651. { "time": 5.9667, "x": -2.2, "y": 117.29 },
  1652. { "time": 6.1333, "x": 0.38, "y": 117.87 }
  1653. ],
  1654. "scale": [
  1655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1656. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1657. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1658. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1659. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1660. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1661. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1663. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1664. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1665. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1666. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1667. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1668. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1669. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1670. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1671. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1672. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1673. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1674. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1675. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  1693. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  1694. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  1695. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 6.1333, "x": 1, "y": 1 }
  1704. ]
  1705. },
  1706. "bone41": {
  1707. "rotate": [
  1708. { "time": 0, "angle": -3.58 },
  1709. { "time": 0.1333, "angle": 0 },
  1710. { "time": 0.2, "angle": -1.33 },
  1711. { "time": 0.3667, "angle": -13.16 },
  1712. { "time": 0.5333, "angle": 0 },
  1713. { "time": 0.6, "angle": -1.33 },
  1714. { "time": 0.7667, "angle": -3.58 },
  1715. { "time": 0.9, "angle": 0 },
  1716. { "time": 0.9667, "angle": -1.33 },
  1717. { "time": 1.1333, "angle": -13.16 },
  1718. { "time": 1.3, "angle": 0 },
  1719. { "time": 1.3667, "angle": -1.33 },
  1720. { "time": 1.5333, "angle": -3.58 },
  1721. { "time": 1.6667, "angle": 0 },
  1722. { "time": 1.7333, "angle": -1.33 },
  1723. { "time": 1.9, "angle": -13.16 },
  1724. { "time": 2.0667, "angle": 0 },
  1725. { "time": 2.1333, "angle": -1.33 },
  1726. { "time": 2.3, "angle": -3.58 },
  1727. { "time": 2.4333, "angle": 0 },
  1728. { "time": 2.5, "angle": -1.33 },
  1729. { "time": 2.6667, "angle": -13.16 },
  1730. { "time": 2.8333, "angle": 0 },
  1731. { "time": 2.9, "angle": -1.33 },
  1732. { "time": 3.0667, "angle": -3.58 },
  1733. { "time": 3.2, "angle": 0 },
  1734. { "time": 3.2667, "angle": -1.33 },
  1735. { "time": 3.4333, "angle": -13.16 },
  1736. { "time": 3.6, "angle": 0 },
  1737. { "time": 3.6667, "angle": -1.33 },
  1738. { "time": 3.8333, "angle": -3.58 },
  1739. { "time": 3.9667, "angle": 0 },
  1740. { "time": 4.0333, "angle": -1.33 },
  1741. { "time": 4.2, "angle": -13.16 },
  1742. { "time": 4.3667, "angle": 0 },
  1743. { "time": 4.4333, "angle": -1.33 },
  1744. { "time": 4.6, "angle": -3.58 },
  1745. { "time": 4.7333, "angle": 0 },
  1746. { "time": 4.8, "angle": -1.33 },
  1747. { "time": 4.9667, "angle": -13.16 },
  1748. { "time": 5.1333, "angle": 0 },
  1749. { "time": 5.2, "angle": -1.33 },
  1750. { "time": 5.3667, "angle": -3.58 },
  1751. { "time": 5.5, "angle": 0 },
  1752. { "time": 5.5667, "angle": -1.33 },
  1753. { "time": 5.7333, "angle": -13.16 },
  1754. { "time": 5.9, "angle": 0 },
  1755. { "time": 5.9667, "angle": -1.33 },
  1756. { "time": 6.1333, "angle": -3.58 }
  1757. ],
  1758. "translate": [
  1759. { "time": 0, "x": -1.79, "y": 98.44 },
  1760. { "time": 0.1333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1761. { "time": 0.2, "x": -4.31, "y": 97.44 },
  1762. { "time": 0.3667, "x": -1.86, "y": 98.1 },
  1763. { "time": 0.5333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1764. { "time": 0.6, "x": -4.31, "y": 97.44 },
  1765. { "time": 0.7667, "x": -1.79, "y": 98.44 },
  1766. { "time": 0.9, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1767. { "time": 0.9667, "x": -4.31, "y": 97.44 },
  1768. { "time": 1.1333, "x": -1.86, "y": 98.1 },
  1769. { "time": 1.3, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1770. { "time": 1.3667, "x": -4.31, "y": 97.44 },
  1771. { "time": 1.5333, "x": -1.79, "y": 98.44 },
  1772. { "time": 1.6667, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1773. { "time": 1.7333, "x": -4.31, "y": 97.44 },
  1774. { "time": 1.9, "x": -1.86, "y": 98.1 },
  1775. { "time": 2.0667, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1776. { "time": 2.1333, "x": -4.31, "y": 97.44 },
  1777. { "time": 2.3, "x": -1.79, "y": 98.44 },
  1778. { "time": 2.4333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1779. { "time": 2.5, "x": -4.31, "y": 97.44 },
  1780. { "time": 2.6667, "x": -1.86, "y": 98.1 },
  1781. { "time": 2.8333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1782. { "time": 2.9, "x": -4.31, "y": 97.44 },
  1783. { "time": 3.0667, "x": -1.79, "y": 98.44 },
  1784. { "time": 3.2, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1785. { "time": 3.2667, "x": -4.31, "y": 97.44 },
  1786. { "time": 3.4333, "x": -1.86, "y": 98.1 },
  1787. { "time": 3.6, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1788. { "time": 3.6667, "x": -4.31, "y": 97.44 },
  1789. { "time": 3.8333, "x": -1.79, "y": 98.44 },
  1790. { "time": 3.9667, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1791. { "time": 4.0333, "x": -4.31, "y": 97.44 },
  1792. { "time": 4.2, "x": -1.86, "y": 98.1 },
  1793. { "time": 4.3667, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1794. { "time": 4.4333, "x": -4.31, "y": 97.44 },
  1795. { "time": 4.6, "x": -1.79, "y": 98.44 },
  1796. { "time": 4.7333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1797. { "time": 4.8, "x": -4.31, "y": 97.44 },
  1798. { "time": 4.9667, "x": -1.86, "y": 98.1 },
  1799. { "time": 5.1333, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1800. { "time": 5.2, "x": -4.31, "y": 97.44 },
  1801. { "time": 5.3667, "x": -1.79, "y": 98.44 },
  1802. { "time": 5.5, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1803. { "time": 5.5667, "x": -4.31, "y": 97.44 },
  1804. { "time": 5.7333, "x": -1.86, "y": 98.1 },
  1805. { "time": 5.9, "x": -4.31, "y": 97.44, "curve": "stepped" },
  1806. { "time": 5.9667, "x": -4.31, "y": 97.44 },
  1807. { "time": 6.1333, "x": -1.79, "y": 98.44 }
  1808. ],
  1809. "scale": [
  1810. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1811. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1812. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1813. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1814. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1815. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1816. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1830. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1833. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  1841. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  1842. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  1843. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  1844. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1845. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  1850. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  1851. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  1852. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  1853. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  1857. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  1858. { "time": 6.1333, "x": 1, "y": 1 }
  1859. ]
  1860. },
  1861. "bone37": {
  1862. "rotate": [
  1863. { "time": 0, "angle": 65.63 },
  1864. { "time": 0.1333, "angle": 20.97 },
  1865. { "time": 0.2, "angle": 27.21 },
  1866. { "time": 0.3667, "angle": 14.68 },
  1867. { "time": 0.5333, "angle": 20.97 },
  1868. { "time": 0.6, "angle": 27.21 },
  1869. { "time": 0.7667, "angle": 65.63 },
  1870. { "time": 0.9, "angle": 20.97 },
  1871. { "time": 0.9667, "angle": 27.21 },
  1872. { "time": 1.1333, "angle": 14.68 },
  1873. { "time": 1.3, "angle": 20.97 },
  1874. { "time": 1.3667, "angle": 27.21 },
  1875. { "time": 1.5333, "angle": 65.63 },
  1876. { "time": 1.6667, "angle": 20.97 },
  1877. { "time": 1.7333, "angle": 27.21 },
  1878. { "time": 1.9, "angle": 14.68 },
  1879. { "time": 2.0667, "angle": 20.97 },
  1880. { "time": 2.1333, "angle": 27.21 },
  1881. { "time": 2.3, "angle": 65.63 },
  1882. { "time": 2.4333, "angle": 20.97 },
  1883. { "time": 2.5, "angle": 27.21 },
  1884. { "time": 2.6667, "angle": 14.68 },
  1885. { "time": 2.8333, "angle": 20.97 },
  1886. { "time": 2.9, "angle": 27.21 },
  1887. { "time": 3.0667, "angle": 65.63 },
  1888. { "time": 3.2, "angle": 20.97 },
  1889. { "time": 3.2667, "angle": 27.21 },
  1890. { "time": 3.4333, "angle": 14.68 },
  1891. { "time": 3.6, "angle": 20.97 },
  1892. { "time": 3.6667, "angle": 27.21 },
  1893. { "time": 3.8333, "angle": 65.63 },
  1894. { "time": 3.9667, "angle": 20.97 },
  1895. { "time": 4.0333, "angle": 27.21 },
  1896. { "time": 4.2, "angle": 14.68 },
  1897. { "time": 4.3667, "angle": 20.97 },
  1898. { "time": 4.4333, "angle": 27.21 },
  1899. { "time": 4.6, "angle": 65.63 },
  1900. { "time": 4.7333, "angle": 20.97 },
  1901. { "time": 4.8, "angle": 27.21 },
  1902. { "time": 4.9667, "angle": 14.68 },
  1903. { "time": 5.1333, "angle": 20.97 },
  1904. { "time": 5.2, "angle": 27.21 },
  1905. { "time": 5.3667, "angle": 65.63 },
  1906. { "time": 5.5, "angle": 20.97 },
  1907. { "time": 5.5667, "angle": 27.21 },
  1908. { "time": 5.7333, "angle": 14.68 },
  1909. { "time": 5.9, "angle": 20.97 },
  1910. { "time": 5.9667, "angle": 27.21 },
  1911. { "time": 6.1333, "angle": 65.63 }
  1912. ],
  1913. "translate": [
  1914. { "time": 0, "x": -112.9, "y": -9.21 },
  1915. { "time": 0.1333, "x": -110.86, "y": -11.15 },
  1916. { "time": 0.2, "x": -110.59, "y": -12.36 },
  1917. { "time": 0.3667, "x": -111.97, "y": -12.64 },
  1918. { "time": 0.5333, "x": -110.86, "y": -11.15 },
  1919. { "time": 0.6, "x": -110.59, "y": -12.36 },
  1920. { "time": 0.7667, "x": -112.9, "y": -9.21 },
  1921. { "time": 0.9, "x": -110.86, "y": -11.15 },
  1922. { "time": 0.9667, "x": -110.59, "y": -12.36 },
  1923. { "time": 1.1333, "x": -111.97, "y": -12.64 },
  1924. { "time": 1.3, "x": -110.86, "y": -11.15 },
  1925. { "time": 1.3667, "x": -110.59, "y": -12.36 },
  1926. { "time": 1.5333, "x": -112.9, "y": -9.21 },
  1927. { "time": 1.6667, "x": -110.86, "y": -11.15 },
  1928. { "time": 1.7333, "x": -110.59, "y": -12.36 },
  1929. { "time": 1.9, "x": -111.97, "y": -12.64 },
  1930. { "time": 2.0667, "x": -110.86, "y": -11.15 },
  1931. { "time": 2.1333, "x": -110.59, "y": -12.36 },
  1932. { "time": 2.3, "x": -112.9, "y": -9.21 },
  1933. { "time": 2.4333, "x": -110.86, "y": -11.15 },
  1934. { "time": 2.5, "x": -110.59, "y": -12.36 },
  1935. { "time": 2.6667, "x": -111.97, "y": -12.64 },
  1936. { "time": 2.8333, "x": -110.86, "y": -11.15 },
  1937. { "time": 2.9, "x": -110.59, "y": -12.36 },
  1938. { "time": 3.0667, "x": -112.9, "y": -9.21 },
  1939. { "time": 3.2, "x": -110.86, "y": -11.15 },
  1940. { "time": 3.2667, "x": -110.59, "y": -12.36 },
  1941. { "time": 3.4333, "x": -111.97, "y": -12.64 },
  1942. { "time": 3.6, "x": -110.86, "y": -11.15 },
  1943. { "time": 3.6667, "x": -110.59, "y": -12.36 },
  1944. { "time": 3.8333, "x": -112.9, "y": -9.21 },
  1945. { "time": 3.9667, "x": -110.86, "y": -11.15 },
  1946. { "time": 4.0333, "x": -110.59, "y": -12.36 },
  1947. { "time": 4.2, "x": -111.97, "y": -12.64 },
  1948. { "time": 4.3667, "x": -110.86, "y": -11.15 },
  1949. { "time": 4.4333, "x": -110.59, "y": -12.36 },
  1950. { "time": 4.6, "x": -112.9, "y": -9.21 },
  1951. { "time": 4.7333, "x": -110.86, "y": -11.15 },
  1952. { "time": 4.8, "x": -110.59, "y": -12.36 },
  1953. { "time": 4.9667, "x": -111.97, "y": -12.64 },
  1954. { "time": 5.1333, "x": -110.86, "y": -11.15 },
  1955. { "time": 5.2, "x": -110.59, "y": -12.36 },
  1956. { "time": 5.3667, "x": -112.9, "y": -9.21 },
  1957. { "time": 5.5, "x": -110.86, "y": -11.15 },
  1958. { "time": 5.5667, "x": -110.59, "y": -12.36 },
  1959. { "time": 5.7333, "x": -111.97, "y": -12.64 },
  1960. { "time": 5.9, "x": -110.86, "y": -11.15 },
  1961. { "time": 5.9667, "x": -110.59, "y": -12.36 },
  1962. { "time": 6.1333, "x": -112.9, "y": -9.21 }
  1963. ],
  1964. "scale": [
  1965. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1966. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1969. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1970. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1971. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1972. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  1973. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1974. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1975. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1976. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  1977. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1978. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1979. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1980. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1981. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  1993. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1994. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1995. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  1996. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  1997. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  1998. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  1999. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  2009. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2010. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2011. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  2013. { "time": 6.1333, "x": 1, "y": 1 }
  2014. ]
  2015. },
  2016. "bone15": {
  2017. "translate": [
  2018. { "time": 0, "x": 108.48, "y": 12.24 }
  2019. ]
  2020. },
  2021. "bone": {
  2022. "rotate": [
  2023. { "time": 0, "angle": 0, "curve": "stepped" },
  2024. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2025. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2026. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  2027. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2028. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2029. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2030. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2031. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2032. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2033. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2034. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2035. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2036. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2037. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2038. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2039. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2040. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  2041. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2042. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  2043. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2044. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2045. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  2046. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2047. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2048. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2049. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  2050. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  2051. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2052. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  2053. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2054. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  2055. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  2056. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2057. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  2058. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  2059. { "time": 4.6, "angle": 0, "curve": "stepped" },
  2060. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  2061. { "time": 4.8, "angle": 0, "curve": "stepped" },
  2062. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  2063. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  2064. { "time": 5.2, "angle": 0, "curve": "stepped" },
  2065. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  2066. { "time": 5.5, "angle": 0, "curve": "stepped" },
  2067. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  2068. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  2069. { "time": 5.9, "angle": 0, "curve": "stepped" },
  2070. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  2071. { "time": 6.1333, "angle": 0 }
  2072. ],
  2073. "translate": [
  2074. { "time": 0, "x": 0, "y": 7.21 },
  2075. { "time": 0.1333, "x": 0, "y": -2.23 },
  2076. {
  2077. "time": 0.2,
  2078. "x": 0,
  2079. "y": -5.27,
  2080. "curve": [ 0.25, 0, 0.75, 1 ]
  2081. },
  2082. {
  2083. "time": 0.3667,
  2084. "x": 0,
  2085. "y": 7.21,
  2086. "curve": [ 0.25, 0, 0.75, 1 ]
  2087. },
  2088. { "time": 0.5333, "x": 0, "y": -2.23 },
  2089. {
  2090. "time": 0.6,
  2091. "x": 0,
  2092. "y": -5.27,
  2093. "curve": [ 0.25, 0, 0.75, 1 ]
  2094. },
  2095. { "time": 0.7667, "x": 0, "y": 7.21 },
  2096. { "time": 0.9, "x": 0, "y": -2.23 },
  2097. {
  2098. "time": 0.9667,
  2099. "x": 0,
  2100. "y": -5.27,
  2101. "curve": [ 0.25, 0, 0.75, 1 ]
  2102. },
  2103. {
  2104. "time": 1.1333,
  2105. "x": 0,
  2106. "y": 7.21,
  2107. "curve": [ 0.25, 0, 0.75, 1 ]
  2108. },
  2109. { "time": 1.3, "x": 0, "y": -2.23 },
  2110. {
  2111. "time": 1.3667,
  2112. "x": 0,
  2113. "y": -5.27,
  2114. "curve": [ 0.25, 0, 0.75, 1 ]
  2115. },
  2116. { "time": 1.5333, "x": 0, "y": 7.21 },
  2117. { "time": 1.6667, "x": 0, "y": -2.23 },
  2118. {
  2119. "time": 1.7333,
  2120. "x": 0,
  2121. "y": -5.27,
  2122. "curve": [ 0.25, 0, 0.75, 1 ]
  2123. },
  2124. {
  2125. "time": 1.9,
  2126. "x": 0,
  2127. "y": 7.21,
  2128. "curve": [ 0.25, 0, 0.75, 1 ]
  2129. },
  2130. { "time": 2.0667, "x": 0, "y": -2.23 },
  2131. {
  2132. "time": 2.1333,
  2133. "x": 0,
  2134. "y": -5.27,
  2135. "curve": [ 0.25, 0, 0.75, 1 ]
  2136. },
  2137. { "time": 2.3, "x": 0, "y": 7.21 },
  2138. { "time": 2.4333, "x": 0, "y": -2.23 },
  2139. {
  2140. "time": 2.5,
  2141. "x": 0,
  2142. "y": -5.27,
  2143. "curve": [ 0.25, 0, 0.75, 1 ]
  2144. },
  2145. {
  2146. "time": 2.6667,
  2147. "x": 0,
  2148. "y": 7.21,
  2149. "curve": [ 0.25, 0, 0.75, 1 ]
  2150. },
  2151. { "time": 2.8333, "x": 0, "y": -2.23 },
  2152. {
  2153. "time": 2.9,
  2154. "x": 0,
  2155. "y": -5.27,
  2156. "curve": [ 0.25, 0, 0.75, 1 ]
  2157. },
  2158. { "time": 3.0667, "x": 0, "y": 7.21 },
  2159. { "time": 3.2, "x": 0, "y": -2.23 },
  2160. {
  2161. "time": 3.2667,
  2162. "x": 0,
  2163. "y": -5.27,
  2164. "curve": [ 0.25, 0, 0.75, 1 ]
  2165. },
  2166. {
  2167. "time": 3.4333,
  2168. "x": 0,
  2169. "y": 7.21,
  2170. "curve": [ 0.25, 0, 0.75, 1 ]
  2171. },
  2172. { "time": 3.6, "x": 0, "y": -2.23 },
  2173. {
  2174. "time": 3.6667,
  2175. "x": 0,
  2176. "y": -5.27,
  2177. "curve": [ 0.25, 0, 0.75, 1 ]
  2178. },
  2179. { "time": 3.8333, "x": 0, "y": 7.21 },
  2180. { "time": 3.9667, "x": 0, "y": -2.23 },
  2181. {
  2182. "time": 4.0333,
  2183. "x": 0,
  2184. "y": -5.27,
  2185. "curve": [ 0.25, 0, 0.75, 1 ]
  2186. },
  2187. {
  2188. "time": 4.2,
  2189. "x": 0,
  2190. "y": 7.21,
  2191. "curve": [ 0.25, 0, 0.75, 1 ]
  2192. },
  2193. { "time": 4.3667, "x": 0, "y": -2.23 },
  2194. {
  2195. "time": 4.4333,
  2196. "x": 0,
  2197. "y": -5.27,
  2198. "curve": [ 0.25, 0, 0.75, 1 ]
  2199. },
  2200. { "time": 4.6, "x": 0, "y": 7.21 },
  2201. { "time": 4.7333, "x": 0, "y": -2.23 },
  2202. {
  2203. "time": 4.8,
  2204. "x": 0,
  2205. "y": -5.27,
  2206. "curve": [ 0.25, 0, 0.75, 1 ]
  2207. },
  2208. {
  2209. "time": 4.9667,
  2210. "x": 0,
  2211. "y": 7.21,
  2212. "curve": [ 0.25, 0, 0.75, 1 ]
  2213. },
  2214. { "time": 5.1333, "x": 0, "y": -2.23 },
  2215. {
  2216. "time": 5.2,
  2217. "x": 0,
  2218. "y": -5.27,
  2219. "curve": [ 0.25, 0, 0.75, 1 ]
  2220. },
  2221. { "time": 5.3667, "x": 0, "y": 7.21 },
  2222. { "time": 5.5, "x": 0, "y": -2.23 },
  2223. {
  2224. "time": 5.5667,
  2225. "x": 0,
  2226. "y": -5.27,
  2227. "curve": [ 0.25, 0, 0.75, 1 ]
  2228. },
  2229. {
  2230. "time": 5.7333,
  2231. "x": 0,
  2232. "y": 7.21,
  2233. "curve": [ 0.25, 0, 0.75, 1 ]
  2234. },
  2235. { "time": 5.9, "x": 0, "y": -2.23 },
  2236. {
  2237. "time": 5.9667,
  2238. "x": 0,
  2239. "y": -5.27,
  2240. "curve": [ 0.25, 0, 0.75, 1 ]
  2241. },
  2242. { "time": 6.1333, "x": 0, "y": 7.21 }
  2243. ],
  2244. "scale": [
  2245. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2246. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2247. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2248. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2249. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2265. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2266. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2267. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2268. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2269. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2270. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2271. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2272. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2273. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2275. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2276. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  2277. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  2278. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2279. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2288. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  2289. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2290. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2291. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2292. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  2293. { "time": 6.1333, "x": 1, "y": 1 }
  2294. ]
  2295. },
  2296. "bone2": {
  2297. "rotate": [
  2298. { "time": 0, "angle": 0, "curve": "stepped" },
  2299. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2300. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  2301. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2302. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2303. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2304. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2305. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2306. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2307. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2308. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2309. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2310. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2311. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2312. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2313. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  2314. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2315. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  2316. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  2317. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2318. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2319. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  2320. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2321. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  2322. { "time": 4.6, "angle": 0, "curve": "stepped" },
  2323. { "time": 4.8, "angle": 0, "curve": "stepped" },
  2324. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  2325. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  2326. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  2327. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  2328. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  2329. { "time": 5.9, "angle": 0, "curve": "stepped" },
  2330. { "time": 6.1333, "angle": 0 }
  2331. ],
  2332. "translate": [
  2333. { "time": 0, "x": 0, "y": 0 },
  2334. { "time": 0.2, "x": -0.02, "y": -0.73 },
  2335. { "time": 0.3667, "x": 0, "y": 0 },
  2336. { "time": 0.5333, "x": -0.02, "y": -0.73 },
  2337. { "time": 0.7667, "x": 0, "y": 0 },
  2338. { "time": 0.9667, "x": -0.02, "y": -0.73 },
  2339. { "time": 1.1333, "x": 0, "y": 0 },
  2340. { "time": 1.3, "x": -0.02, "y": -0.73 },
  2341. { "time": 1.5333, "x": 0, "y": 0 },
  2342. { "time": 1.7333, "x": -0.02, "y": -0.73 },
  2343. { "time": 1.9, "x": 0, "y": 0 },
  2344. { "time": 2.0667, "x": -0.02, "y": -0.73 },
  2345. { "time": 2.3, "x": 0, "y": 0 },
  2346. { "time": 2.5, "x": -0.02, "y": -0.73 },
  2347. { "time": 2.6667, "x": 0, "y": 0 },
  2348. { "time": 2.8333, "x": -0.02, "y": -0.73 },
  2349. { "time": 3.0667, "x": 0, "y": 0 },
  2350. { "time": 3.2667, "x": -0.02, "y": -0.73 },
  2351. { "time": 3.4333, "x": 0, "y": 0 },
  2352. { "time": 3.6, "x": -0.02, "y": -0.73 },
  2353. { "time": 3.8333, "x": 0, "y": 0 },
  2354. { "time": 4.0333, "x": -0.02, "y": -0.73 },
  2355. { "time": 4.2, "x": 0, "y": 0 },
  2356. { "time": 4.3667, "x": -0.02, "y": -0.73 },
  2357. { "time": 4.6, "x": 0, "y": 0 },
  2358. { "time": 4.8, "x": -0.02, "y": -0.73 },
  2359. { "time": 4.9667, "x": 0, "y": 0 },
  2360. { "time": 5.1333, "x": -0.02, "y": -0.73 },
  2361. { "time": 5.3667, "x": 0, "y": 0 },
  2362. { "time": 5.5667, "x": -0.02, "y": -0.73 },
  2363. { "time": 5.7333, "x": 0, "y": 0 },
  2364. { "time": 5.9, "x": -0.02, "y": -0.73 },
  2365. { "time": 6.1333, "x": 0, "y": 0 }
  2366. ],
  2367. "scale": [
  2368. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2370. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2371. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2372. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2373. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2374. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2375. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2376. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2377. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2378. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2379. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2380. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2381. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 6.1333, "x": 1, "y": 1 }
  2401. ]
  2402. },
  2403. "bone3": {
  2404. "rotate": [
  2405. { "time": 0, "angle": 0, "curve": "stepped" },
  2406. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2407. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2408. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2409. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2410. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2411. { "time": 4.6, "angle": 0, "curve": "stepped" },
  2412. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  2413. { "time": 6.1333, "angle": 0 }
  2414. ],
  2415. "translate": [
  2416. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  2424. { "time": 6.1333, "x": 0, "y": 0 }
  2425. ],
  2426. "scale": [
  2427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2430. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2431. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 6.1333, "x": 1, "y": 1 }
  2436. ]
  2437. },
  2438. "bone4": {
  2439. "rotate": [
  2440. { "time": 0, "angle": 0, "curve": "stepped" },
  2441. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2442. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2443. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  2444. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2445. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2446. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2447. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2448. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2449. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2450. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2451. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2452. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2453. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2454. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2455. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2456. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2457. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  2458. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2459. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  2460. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2461. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2462. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  2463. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2464. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2465. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2466. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  2467. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  2468. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2469. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  2470. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2471. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  2472. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  2473. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2474. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  2475. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  2476. { "time": 4.6, "angle": 0, "curve": "stepped" },
  2477. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  2478. { "time": 4.8, "angle": 0, "curve": "stepped" },
  2479. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  2480. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  2481. { "time": 5.2, "angle": 0, "curve": "stepped" },
  2482. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  2483. { "time": 5.5, "angle": 0, "curve": "stepped" },
  2484. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  2485. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  2486. { "time": 5.9, "angle": 0, "curve": "stepped" },
  2487. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  2488. { "time": 6.1333, "angle": 0 }
  2489. ],
  2490. "translate": [
  2491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2492. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2510. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  2518. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  2519. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  2524. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  2525. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  2526. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  2527. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  2528. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  2529. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  2530. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  2531. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  2533. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  2539. { "time": 6.1333, "x": 0, "y": 0 }
  2540. ],
  2541. "scale": [
  2542. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2543. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2544. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2551. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2555. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2556. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2557. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  2560. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2561. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2562. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2565. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2567. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2568. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2569. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2570. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  2571. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2572. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2573. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  2574. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  2575. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  2584. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2587. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 6.1333, "x": 1, "y": 1 }
  2591. ]
  2592. },
  2593. "bone5": {
  2594. "rotate": [
  2595. { "time": 0, "angle": 0, "curve": "stepped" },
  2596. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2597. { "time": 0.2, "angle": 0, "curve": "stepped" },
  2598. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  2599. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  2600. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2601. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2602. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2603. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2604. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2605. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2606. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2607. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  2608. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2609. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2610. { "time": 1.9, "angle": 0, "curve": "stepped" },
  2611. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2612. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  2613. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2614. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  2615. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2616. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2617. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  2618. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2619. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  2620. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2621. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  2622. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  2623. { "time": 3.6, "angle": 0, "curve": "stepped" },
  2624. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  2625. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  2626. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  2627. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  2628. { "time": 4.2, "angle": 0, "curve": "stepped" },
  2629. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  2630. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  2631. { "time": 4.6, "angle": 0, "curve": "stepped" },
  2632. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  2633. { "time": 4.8, "angle": 0, "curve": "stepped" },
  2634. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  2635. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  2636. { "time": 5.2, "angle": 0, "curve": "stepped" },
  2637. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  2638. { "time": 5.5, "angle": 0, "curve": "stepped" },
  2639. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  2640. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  2641. { "time": 5.9, "angle": 0, "curve": "stepped" },
  2642. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  2643. { "time": 6.1333, "angle": 0 }
  2644. ],
  2645. "translate": [
  2646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2647. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2648. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  2649. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2650. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2651. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2657. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2660. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2671. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2672. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  2673. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  2685. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  2688. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  2689. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  2690. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  2692. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  2694. { "time": 6.1333, "x": 0, "y": 0 }
  2695. ],
  2696. "scale": [
  2697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2701. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2716. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2717. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2718. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2719. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2720. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2721. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2722. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2725. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  2726. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2731. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2732. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  2733. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2734. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  2735. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2736. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2737. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2738. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  2739. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2740. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  2741. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 6.1333, "x": 1, "y": 1 }
  2746. ]
  2747. },
  2748. "bone12": {
  2749. "rotate": [
  2750. { "time": 0, "angle": -14.96 },
  2751. { "time": 0.1333, "angle": -17.35 },
  2752. { "time": 0.2, "angle": -23.25 },
  2753. { "time": 0.3667, "angle": -74.99 },
  2754. { "time": 0.5333, "angle": -17.35 },
  2755. { "time": 0.6, "angle": -23.25 },
  2756. { "time": 0.7667, "angle": -14.96 },
  2757. { "time": 0.9, "angle": -17.35 },
  2758. { "time": 0.9667, "angle": -23.25 },
  2759. { "time": 1.1333, "angle": -74.99 },
  2760. { "time": 1.3, "angle": -17.35 },
  2761. { "time": 1.3667, "angle": -23.25 },
  2762. { "time": 1.5333, "angle": -14.96 },
  2763. { "time": 1.6667, "angle": -17.35 },
  2764. { "time": 1.7333, "angle": -23.25 },
  2765. { "time": 1.9, "angle": -74.99 },
  2766. { "time": 2.0667, "angle": -17.35 },
  2767. { "time": 2.1333, "angle": -23.25 },
  2768. { "time": 2.3, "angle": -14.96 },
  2769. { "time": 2.4333, "angle": -17.35 },
  2770. { "time": 2.5, "angle": -23.25 },
  2771. { "time": 2.6667, "angle": -74.99 },
  2772. { "time": 2.8333, "angle": -17.35 },
  2773. { "time": 2.9, "angle": -23.25 },
  2774. { "time": 3.0667, "angle": -14.96 },
  2775. { "time": 3.2, "angle": -17.35 },
  2776. { "time": 3.2667, "angle": -23.25 },
  2777. { "time": 3.4333, "angle": -74.99 },
  2778. { "time": 3.6, "angle": -17.35 },
  2779. { "time": 3.6667, "angle": -23.25 },
  2780. { "time": 3.8333, "angle": -14.96 },
  2781. { "time": 3.9667, "angle": -17.35 },
  2782. { "time": 4.0333, "angle": -23.25 },
  2783. { "time": 4.2, "angle": -74.99 },
  2784. { "time": 4.3667, "angle": -17.35 },
  2785. { "time": 4.4333, "angle": -23.25 },
  2786. { "time": 4.6, "angle": -14.96 },
  2787. { "time": 4.7333, "angle": -17.35 },
  2788. { "time": 4.8, "angle": -23.25 },
  2789. { "time": 4.9667, "angle": -74.99 },
  2790. { "time": 5.1333, "angle": -17.35 },
  2791. { "time": 5.2, "angle": -23.25 },
  2792. { "time": 5.3667, "angle": -14.96 },
  2793. { "time": 5.5, "angle": -17.35 },
  2794. { "time": 5.5667, "angle": -23.25 },
  2795. { "time": 5.7333, "angle": -74.99 },
  2796. { "time": 5.9, "angle": -17.35 },
  2797. { "time": 5.9667, "angle": -23.25 },
  2798. { "time": 6.1333, "angle": -14.96 }
  2799. ],
  2800. "translate": [
  2801. { "time": 0, "x": 0, "y": 0 },
  2802. { "time": 0.0667, "x": -0.29, "y": -0.69 },
  2803. { "time": 0.1333, "x": -0.57, "y": -1.38 },
  2804. { "time": 0.2, "x": -1.91, "y": -1.55 },
  2805. { "time": 0.3667, "x": -0.56, "y": -2.16 },
  2806. { "time": 0.5333, "x": -0.57, "y": -1.38 },
  2807. { "time": 0.6, "x": -1.91, "y": -1.55 },
  2808. { "time": 0.7667, "x": 0, "y": 0 },
  2809. { "time": 0.8333, "x": -0.29, "y": -0.69 },
  2810. { "time": 0.9, "x": -0.57, "y": -1.38 },
  2811. { "time": 0.9667, "x": -1.91, "y": -1.55 },
  2812. { "time": 1.1333, "x": -0.56, "y": -2.16 },
  2813. { "time": 1.3, "x": -0.57, "y": -1.38 },
  2814. { "time": 1.3667, "x": -1.91, "y": -1.55 },
  2815. { "time": 1.5333, "x": 0, "y": 0 },
  2816. { "time": 1.6, "x": -0.29, "y": -0.69 },
  2817. { "time": 1.6667, "x": -0.57, "y": -1.38 },
  2818. { "time": 1.7333, "x": -1.91, "y": -1.55 },
  2819. { "time": 1.9, "x": -0.56, "y": -2.16 },
  2820. { "time": 2.0667, "x": -0.57, "y": -1.38 },
  2821. { "time": 2.1333, "x": -1.91, "y": -1.55 },
  2822. { "time": 2.3, "x": 0, "y": 0 },
  2823. { "time": 2.3667, "x": -0.29, "y": -0.69 },
  2824. { "time": 2.4333, "x": -0.57, "y": -1.38 },
  2825. { "time": 2.5, "x": -1.91, "y": -1.55 },
  2826. { "time": 2.6667, "x": -0.56, "y": -2.16 },
  2827. { "time": 2.8333, "x": -0.57, "y": -1.38 },
  2828. { "time": 2.9, "x": -1.91, "y": -1.55 },
  2829. { "time": 3.0667, "x": 0, "y": 0 },
  2830. { "time": 3.1333, "x": -0.29, "y": -0.69 },
  2831. { "time": 3.2, "x": -0.57, "y": -1.38 },
  2832. { "time": 3.2667, "x": -1.91, "y": -1.55 },
  2833. { "time": 3.4333, "x": -0.56, "y": -2.16 },
  2834. { "time": 3.6, "x": -0.57, "y": -1.38 },
  2835. { "time": 3.6667, "x": -1.91, "y": -1.55 },
  2836. { "time": 3.8333, "x": 0, "y": 0 },
  2837. { "time": 3.9, "x": -0.29, "y": -0.69 },
  2838. { "time": 3.9667, "x": -0.57, "y": -1.38 },
  2839. { "time": 4.0333, "x": -1.91, "y": -1.55 },
  2840. { "time": 4.2, "x": -0.56, "y": -2.16 },
  2841. { "time": 4.3667, "x": -0.57, "y": -1.38 },
  2842. { "time": 4.4333, "x": -1.91, "y": -1.55 },
  2843. { "time": 4.6, "x": 0, "y": 0 },
  2844. { "time": 4.6667, "x": -0.29, "y": -0.69 },
  2845. { "time": 4.7333, "x": -0.57, "y": -1.38 },
  2846. { "time": 4.8, "x": -1.91, "y": -1.55 },
  2847. { "time": 4.9667, "x": -0.56, "y": -2.16 },
  2848. { "time": 5.1333, "x": -0.57, "y": -1.38 },
  2849. { "time": 5.2, "x": -1.91, "y": -1.55 },
  2850. { "time": 5.3667, "x": 0, "y": 0 },
  2851. { "time": 5.4333, "x": -0.29, "y": -0.69 },
  2852. { "time": 5.5, "x": -0.57, "y": -1.38 },
  2853. { "time": 5.5667, "x": -1.91, "y": -1.55 },
  2854. { "time": 5.7333, "x": -0.56, "y": -2.16 },
  2855. { "time": 5.9, "x": -0.57, "y": -1.38 },
  2856. { "time": 5.9667, "x": -1.91, "y": -1.55 },
  2857. { "time": 6.1333, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2877. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  2878. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2879. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2880. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2881. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2882. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  2883. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2884. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2885. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2886. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2887. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  2888. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  2889. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2890. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  2891. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  2898. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 6.1333, "x": 1, "y": 1 }
  2909. ]
  2910. },
  2911. "bone13": {
  2912. "rotate": [
  2913. { "time": 0, "angle": 23.16 },
  2914. { "time": 0.1333, "angle": 26.96 },
  2915. { "time": 0.2, "angle": 34.31 },
  2916. { "time": 0.3667, "angle": 101.56 },
  2917. { "time": 0.5333, "angle": 26.96 },
  2918. { "time": 0.6, "angle": 34.31 },
  2919. { "time": 0.7667, "angle": 23.16 },
  2920. { "time": 0.9, "angle": 26.96 },
  2921. { "time": 0.9667, "angle": 34.31 },
  2922. { "time": 1.1333, "angle": 101.56 },
  2923. { "time": 1.3, "angle": 26.96 },
  2924. { "time": 1.3667, "angle": 34.31 },
  2925. { "time": 1.5333, "angle": 23.16 },
  2926. { "time": 1.6667, "angle": 26.96 },
  2927. { "time": 1.7333, "angle": 34.31 },
  2928. { "time": 1.9, "angle": 101.56 },
  2929. { "time": 2.0667, "angle": 26.96 },
  2930. { "time": 2.1333, "angle": 34.31 },
  2931. { "time": 2.3, "angle": 23.16 },
  2932. { "time": 2.4333, "angle": 26.96 },
  2933. { "time": 2.5, "angle": 34.31 },
  2934. { "time": 2.6667, "angle": 101.56 },
  2935. { "time": 2.8333, "angle": 26.96 },
  2936. { "time": 2.9, "angle": 34.31 },
  2937. { "time": 3.0667, "angle": 23.16 },
  2938. { "time": 3.2, "angle": 26.96 },
  2939. { "time": 3.2667, "angle": 34.31 },
  2940. { "time": 3.4333, "angle": 101.56 },
  2941. { "time": 3.6, "angle": 26.96 },
  2942. { "time": 3.6667, "angle": 34.31 },
  2943. { "time": 3.8333, "angle": 23.16 },
  2944. { "time": 3.9667, "angle": 26.96 },
  2945. { "time": 4.0333, "angle": 34.31 },
  2946. { "time": 4.2, "angle": 101.56 },
  2947. { "time": 4.3667, "angle": 26.96 },
  2948. { "time": 4.4333, "angle": 34.31 },
  2949. { "time": 4.6, "angle": 23.16 },
  2950. { "time": 4.7333, "angle": 26.96 },
  2951. { "time": 4.8, "angle": 34.31 },
  2952. { "time": 4.9667, "angle": 101.56 },
  2953. { "time": 5.1333, "angle": 26.96 },
  2954. { "time": 5.2, "angle": 34.31 },
  2955. { "time": 5.3667, "angle": 23.16 },
  2956. { "time": 5.5, "angle": 26.96 },
  2957. { "time": 5.5667, "angle": 34.31 },
  2958. { "time": 5.7333, "angle": 101.56 },
  2959. { "time": 5.9, "angle": 26.96 },
  2960. { "time": 5.9667, "angle": 34.31 },
  2961. { "time": 6.1333, "angle": 23.16 }
  2962. ],
  2963. "translate": [
  2964. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2965. { "time": 0.1333, "x": 0, "y": 0 },
  2966. { "time": 0.2, "x": -1.72, "y": 0.04 },
  2967. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2968. { "time": 0.5333, "x": 0, "y": 0 },
  2969. { "time": 0.6, "x": -1.72, "y": 0.04 },
  2970. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 0.9, "x": 0, "y": 0 },
  2972. { "time": 0.9667, "x": -1.72, "y": 0.04 },
  2973. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 1.3, "x": 0, "y": 0 },
  2975. { "time": 1.3667, "x": -1.72, "y": 0.04 },
  2976. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 1.6667, "x": 0, "y": 0 },
  2978. { "time": 1.7333, "x": -1.72, "y": 0.04 },
  2979. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 2.0667, "x": 0, "y": 0 },
  2981. { "time": 2.1333, "x": -1.72, "y": 0.04 },
  2982. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2983. { "time": 2.4333, "x": 0, "y": 0 },
  2984. { "time": 2.5, "x": -1.72, "y": 0.04 },
  2985. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2986. { "time": 2.8333, "x": 0, "y": 0 },
  2987. { "time": 2.9, "x": -1.72, "y": 0.04 },
  2988. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2989. { "time": 3.2, "x": 0, "y": 0 },
  2990. { "time": 3.2667, "x": -1.72, "y": 0.04 },
  2991. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  2992. { "time": 3.6, "x": 0, "y": 0 },
  2993. { "time": 3.6667, "x": -1.72, "y": 0.04 },
  2994. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  2995. { "time": 3.9667, "x": 0, "y": 0 },
  2996. { "time": 4.0333, "x": -1.72, "y": 0.04 },
  2997. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 4.3667, "x": 0, "y": 0 },
  2999. { "time": 4.4333, "x": -1.72, "y": 0.04 },
  3000. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3001. { "time": 4.7333, "x": 0, "y": 0 },
  3002. { "time": 4.8, "x": -1.72, "y": 0.04 },
  3003. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 5.1333, "x": 0, "y": 0 },
  3005. { "time": 5.2, "x": -1.72, "y": 0.04 },
  3006. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 5.5, "x": 0, "y": 0 },
  3008. { "time": 5.5667, "x": -1.72, "y": 0.04 },
  3009. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3010. { "time": 5.9, "x": 0, "y": 0 },
  3011. { "time": 5.9667, "x": -1.72, "y": 0.04 },
  3012. { "time": 6.1333, "x": 0, "y": 0 }
  3013. ],
  3014. "scale": [
  3015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3017. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3018. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3019. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  3020. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3021. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3022. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3023. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3024. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3028. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3029. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3030. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3035. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3041. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  3042. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3043. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  3044. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  3045. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3046. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  3047. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  3048. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3049. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  3050. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  3051. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3052. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  3053. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  3054. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3055. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  3056. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  3057. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3058. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  3059. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  3060. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3061. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  3062. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  3063. { "time": 6.1333, "x": 1, "y": 1 }
  3064. ]
  3065. },
  3066. "bone18": {
  3067. "rotate": [
  3068. { "time": 0, "angle": 0, "curve": "stepped" },
  3069. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3070. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3071. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  3072. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  3073. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3074. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3075. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3076. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  3077. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3078. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3079. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  3080. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3081. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3082. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3083. { "time": 1.9, "angle": 0, "curve": "stepped" },
  3084. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  3085. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  3086. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3087. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3088. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3089. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3090. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  3091. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3092. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  3093. { "time": 3.2, "angle": 0, "curve": "stepped" },
  3094. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  3095. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  3096. { "time": 3.6, "angle": 0, "curve": "stepped" },
  3097. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  3098. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  3099. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  3100. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  3101. { "time": 4.2, "angle": 0, "curve": "stepped" },
  3102. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  3103. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  3104. { "time": 4.6, "angle": 0, "curve": "stepped" },
  3105. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  3106. { "time": 4.8, "angle": 0, "curve": "stepped" },
  3107. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  3108. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  3109. { "time": 5.2, "angle": 0, "curve": "stepped" },
  3110. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  3111. { "time": 5.5, "angle": 0, "curve": "stepped" },
  3112. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  3113. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  3114. { "time": 5.9, "angle": 0, "curve": "stepped" },
  3115. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  3116. { "time": 6.1333, "angle": 0 }
  3117. ],
  3118. "translate": [
  3119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3120. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3121. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3122. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3123. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  3124. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3125. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3126. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3127. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  3128. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3129. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3130. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  3131. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3132. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3133. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3134. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3135. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3136. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3139. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3140. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3144. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3145. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  3146. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3147. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  3148. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  3149. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3150. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  3151. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  3152. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3153. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  3154. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  3155. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3156. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  3157. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  3158. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3159. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  3160. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  3161. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3162. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  3163. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  3164. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3165. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  3166. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 6.1333, "x": 0, "y": 0 }
  3168. ],
  3169. "scale": [
  3170. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3172. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3185. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3186. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3187. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  3188. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3189. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3190. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3191. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3192. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3193. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3194. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3195. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3196. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  3197. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3198. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  3199. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  3200. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3201. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  3202. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  3203. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3204. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  3205. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  3206. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3207. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  3208. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  3209. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3210. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  3211. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 6.1333, "x": 1, "y": 1 }
  3219. ]
  3220. },
  3221. "bone19": {
  3222. "rotate": [
  3223. { "time": 0, "angle": 0 },
  3224. { "time": 0.3667, "angle": -16.28 },
  3225. { "time": 0.7667, "angle": 0 },
  3226. { "time": 1.1333, "angle": -16.28 },
  3227. { "time": 1.5333, "angle": 0 },
  3228. { "time": 1.9, "angle": -16.28 },
  3229. { "time": 2.3, "angle": 0 },
  3230. { "time": 2.6667, "angle": -16.28 },
  3231. { "time": 3.0667, "angle": 0 },
  3232. { "time": 3.4333, "angle": -16.28 },
  3233. { "time": 3.8333, "angle": 0 },
  3234. { "time": 4.2, "angle": -16.28 },
  3235. { "time": 4.6, "angle": 0 },
  3236. { "time": 4.9667, "angle": -16.28 },
  3237. { "time": 5.3667, "angle": 0 },
  3238. { "time": 5.7333, "angle": -16.28 },
  3239. { "time": 6.1333, "angle": 0 }
  3240. ],
  3241. "translate": [
  3242. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3246. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3247. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3248. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3249. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3250. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3251. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3252. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3253. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3254. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3255. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3256. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3257. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3258. { "time": 6.1333, "x": 0, "y": 0 }
  3259. ],
  3260. "scale": [
  3261. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3274. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3275. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3276. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3277. { "time": 6.1333, "x": 1, "y": 1 }
  3278. ]
  3279. },
  3280. "bone20": {
  3281. "rotate": [
  3282. { "time": 0, "angle": 0 },
  3283. { "time": 0.3667, "angle": 0.55 },
  3284. { "time": 0.7667, "angle": 0 },
  3285. { "time": 1.1333, "angle": 0.55 },
  3286. { "time": 1.5333, "angle": 0 },
  3287. { "time": 1.9, "angle": 0.55 },
  3288. { "time": 2.3, "angle": 0 },
  3289. { "time": 2.6667, "angle": 0.55 },
  3290. { "time": 3.0667, "angle": 0 },
  3291. { "time": 3.4333, "angle": 0.55 },
  3292. { "time": 3.8333, "angle": 0 },
  3293. { "time": 4.2, "angle": 0.55 },
  3294. { "time": 4.6, "angle": 0 },
  3295. { "time": 4.9667, "angle": 0.55 },
  3296. { "time": 5.3667, "angle": 0 },
  3297. { "time": 5.7333, "angle": 0.55 },
  3298. { "time": 6.1333, "angle": 0 }
  3299. ],
  3300. "translate": [
  3301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3307. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3308. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3309. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3310. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3311. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3312. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3313. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3314. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3315. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3316. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3317. { "time": 6.1333, "x": 0, "y": 0 }
  3318. ],
  3319. "scale": [
  3320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3322. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3324. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3325. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3326. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3327. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3328. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3329. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3331. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3333. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3335. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3336. { "time": 6.1333, "x": 1, "y": 1 }
  3337. ]
  3338. },
  3339. "bone21": {
  3340. "rotate": [
  3341. { "time": 0, "angle": 0 },
  3342. { "time": 0.1667, "angle": 2.9 },
  3343. { "time": 0.3667, "angle": -6.54 },
  3344. { "time": 0.7667, "angle": 0 },
  3345. { "time": 0.9333, "angle": 2.9 },
  3346. { "time": 1.1333, "angle": -6.54 },
  3347. { "time": 1.5333, "angle": 0 },
  3348. { "time": 1.7, "angle": 2.9 },
  3349. { "time": 1.9, "angle": -6.54 },
  3350. { "time": 2.3, "angle": 0 },
  3351. { "time": 2.4667, "angle": 2.9 },
  3352. { "time": 2.6667, "angle": -6.54 },
  3353. { "time": 3.0667, "angle": 0 },
  3354. { "time": 3.2333, "angle": 2.9 },
  3355. { "time": 3.4333, "angle": -6.54 },
  3356. { "time": 3.8333, "angle": 0 },
  3357. { "time": 4, "angle": 2.9 },
  3358. { "time": 4.2, "angle": -6.54 },
  3359. { "time": 4.6, "angle": 0 },
  3360. { "time": 4.7667, "angle": 2.9 },
  3361. { "time": 4.9667, "angle": -6.54 },
  3362. { "time": 5.3667, "angle": 0 },
  3363. { "time": 5.5333, "angle": 2.9 },
  3364. { "time": 5.7333, "angle": -6.54 },
  3365. { "time": 6.1333, "angle": 0 }
  3366. ],
  3367. "translate": [
  3368. { "time": 0, "x": 0, "y": 0 },
  3369. { "time": 0.1667, "x": 1.08, "y": 0 },
  3370. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3371. { "time": 0.7667, "x": 0, "y": 0 },
  3372. { "time": 0.9333, "x": 1.08, "y": 0 },
  3373. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3374. { "time": 1.5333, "x": 0, "y": 0 },
  3375. { "time": 1.7, "x": 1.08, "y": 0 },
  3376. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3377. { "time": 2.3, "x": 0, "y": 0 },
  3378. { "time": 2.4667, "x": 1.08, "y": 0 },
  3379. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3380. { "time": 3.0667, "x": 0, "y": 0 },
  3381. { "time": 3.2333, "x": 1.08, "y": 0 },
  3382. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 3.8333, "x": 0, "y": 0 },
  3384. { "time": 4, "x": 1.08, "y": 0 },
  3385. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 4.6, "x": 0, "y": 0 },
  3387. { "time": 4.7667, "x": 1.08, "y": 0 },
  3388. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 5.3667, "x": 0, "y": 0 },
  3390. { "time": 5.5333, "x": 1.08, "y": 0 },
  3391. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3392. { "time": 6.1333, "x": 0, "y": 0 }
  3393. ],
  3394. "scale": [
  3395. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3396. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3397. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 6.1333, "x": 1, "y": 1 }
  3412. ]
  3413. },
  3414. "bone22": {
  3415. "rotate": [
  3416. { "time": 0, "angle": 0 },
  3417. { "time": 0.1667, "angle": 7.5 },
  3418. { "time": 0.3667, "angle": 3.59 },
  3419. { "time": 0.7667, "angle": 0 },
  3420. { "time": 0.9333, "angle": 7.5 },
  3421. { "time": 1.1333, "angle": 3.59 },
  3422. { "time": 1.5333, "angle": 0 },
  3423. { "time": 1.7, "angle": 7.5 },
  3424. { "time": 1.9, "angle": 3.59 },
  3425. { "time": 2.3, "angle": 0 },
  3426. { "time": 2.4667, "angle": 7.5 },
  3427. { "time": 2.6667, "angle": 3.59 },
  3428. { "time": 3.0667, "angle": 0 },
  3429. { "time": 3.2333, "angle": 7.5 },
  3430. { "time": 3.4333, "angle": 3.59 },
  3431. { "time": 3.8333, "angle": 0 },
  3432. { "time": 4, "angle": 7.5 },
  3433. { "time": 4.2, "angle": 3.59 },
  3434. { "time": 4.6, "angle": 0 },
  3435. { "time": 4.7667, "angle": 7.5 },
  3436. { "time": 4.9667, "angle": 3.59 },
  3437. { "time": 5.3667, "angle": 0 },
  3438. { "time": 5.5333, "angle": 7.5 },
  3439. { "time": 5.7333, "angle": 3.59 },
  3440. { "time": 6.1333, "angle": 0 }
  3441. ],
  3442. "translate": [
  3443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3444. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3451. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3452. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3453. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3454. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3455. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3456. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3457. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3458. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3459. { "time": 6.1333, "x": 0, "y": 0 }
  3460. ],
  3461. "scale": [
  3462. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3463. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3464. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3465. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3466. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3467. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3468. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3469. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3470. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3471. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3472. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3473. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3474. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3475. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3476. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3477. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 6.1333, "x": 1, "y": 1 }
  3479. ]
  3480. },
  3481. "bone23": {
  3482. "rotate": [
  3483. { "time": 0, "angle": 0 },
  3484. { "time": 0.1667, "angle": 7.5 },
  3485. { "time": 0.3667, "angle": 3.59 },
  3486. { "time": 0.7667, "angle": 0 },
  3487. { "time": 0.9333, "angle": 7.5 },
  3488. { "time": 1.1333, "angle": 3.59 },
  3489. { "time": 1.5333, "angle": 0 },
  3490. { "time": 1.7, "angle": 7.5 },
  3491. { "time": 1.9, "angle": 3.59 },
  3492. { "time": 2.3, "angle": 0 },
  3493. { "time": 2.4667, "angle": 7.5 },
  3494. { "time": 2.6667, "angle": 3.59 },
  3495. { "time": 3.0667, "angle": 0 },
  3496. { "time": 3.2333, "angle": 7.5 },
  3497. { "time": 3.4333, "angle": 3.59 },
  3498. { "time": 3.8333, "angle": 0 },
  3499. { "time": 4, "angle": 7.5 },
  3500. { "time": 4.2, "angle": 3.59 },
  3501. { "time": 4.6, "angle": 0 },
  3502. { "time": 4.7667, "angle": 7.5 },
  3503. { "time": 4.9667, "angle": 3.59 },
  3504. { "time": 5.3667, "angle": 0 },
  3505. { "time": 5.5333, "angle": 7.5 },
  3506. { "time": 5.7333, "angle": 3.59 },
  3507. { "time": 6.1333, "angle": 0 }
  3508. ],
  3509. "translate": [
  3510. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3513. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3514. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3515. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3516. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3517. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3518. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3519. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3525. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3526. { "time": 6.1333, "x": 0, "y": 0 }
  3527. ],
  3528. "scale": [
  3529. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3530. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3531. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3532. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3533. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3534. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3535. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3536. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3542. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3543. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3544. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 6.1333, "x": 1, "y": 1 }
  3546. ]
  3547. },
  3548. "bone24": {
  3549. "rotate": [
  3550. { "time": 0, "angle": 0, "curve": "stepped" },
  3551. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3552. { "time": 0.2, "angle": 0, "curve": "stepped" },
  3553. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  3554. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  3555. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3556. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  3557. { "time": 0.9, "angle": 0, "curve": "stepped" },
  3558. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  3559. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3560. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3561. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  3562. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  3563. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3564. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3565. { "time": 1.9, "angle": 0, "curve": "stepped" },
  3566. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  3567. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  3568. { "time": 2.3, "angle": 0, "curve": "stepped" },
  3569. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  3570. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3571. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3572. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  3573. { "time": 2.9, "angle": 0, "curve": "stepped" },
  3574. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  3575. { "time": 3.2, "angle": 0, "curve": "stepped" },
  3576. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  3577. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  3578. { "time": 3.6, "angle": 0, "curve": "stepped" },
  3579. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  3580. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  3581. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  3582. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  3583. { "time": 4.2, "angle": 0, "curve": "stepped" },
  3584. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  3585. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  3586. { "time": 4.6, "angle": 0, "curve": "stepped" },
  3587. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  3588. { "time": 4.8, "angle": 0, "curve": "stepped" },
  3589. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  3590. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  3591. { "time": 5.2, "angle": 0, "curve": "stepped" },
  3592. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  3593. { "time": 5.5, "angle": 0, "curve": "stepped" },
  3594. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  3595. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  3596. { "time": 5.9, "angle": 0, "curve": "stepped" },
  3597. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  3598. { "time": 6.1333, "angle": 0 }
  3599. ],
  3600. "translate": [
  3601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3602. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3603. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  3604. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3605. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  3606. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3607. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3608. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  3609. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  3610. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3611. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3612. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  3613. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3614. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3615. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3616. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3623. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3624. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3625. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3626. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3627. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  3628. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3629. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  3630. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  3631. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3632. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  3633. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  3634. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3635. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  3636. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  3637. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3638. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  3639. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  3640. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  3648. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  3649. { "time": 6.1333, "x": 0, "y": 0 }
  3650. ],
  3651. "scale": [
  3652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3653. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3654. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  3655. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3656. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  3657. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3658. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3659. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  3660. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3677. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  3690. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  3691. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3692. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  3693. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  3694. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 6.1333, "x": 1, "y": 1 }
  3701. ]
  3702. },
  3703. "bone25": {
  3704. "rotate": [
  3705. { "time": 0, "angle": 11.17 },
  3706. { "time": 0.3667, "angle": 14.43 },
  3707. { "time": 0.7667, "angle": 11.17 },
  3708. { "time": 1.1333, "angle": 14.43 },
  3709. { "time": 1.5333, "angle": 11.17 },
  3710. { "time": 1.9, "angle": 14.43 },
  3711. { "time": 2.3, "angle": 11.17 },
  3712. { "time": 2.6667, "angle": 14.43 },
  3713. { "time": 3.0667, "angle": 11.17 },
  3714. { "time": 3.4333, "angle": 14.43 },
  3715. { "time": 3.8333, "angle": 11.17 },
  3716. { "time": 4.2, "angle": 14.43 },
  3717. { "time": 4.6, "angle": 11.17 },
  3718. { "time": 4.9667, "angle": 14.43 },
  3719. { "time": 5.3667, "angle": 11.17 },
  3720. { "time": 5.7333, "angle": 14.43 },
  3721. { "time": 6.1333, "angle": 11.17 }
  3722. ],
  3723. "translate": [
  3724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3725. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3726. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3727. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3728. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3729. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3730. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3731. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3732. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3733. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3734. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3735. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3736. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3737. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3738. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3739. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3740. { "time": 6.1333, "x": 0, "y": 0 }
  3741. ],
  3742. "scale": [
  3743. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3744. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3745. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3746. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3747. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3748. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3749. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3750. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3751. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3752. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3753. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3755. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3756. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3757. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3758. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 6.1333, "x": 1, "y": 1 }
  3760. ]
  3761. },
  3762. "bone26": {
  3763. "rotate": [
  3764. { "time": 0, "angle": -4.35 },
  3765. { "time": 0.3667, "angle": 10.3 },
  3766. { "time": 0.7667, "angle": -4.35 },
  3767. { "time": 1.1333, "angle": 10.3 },
  3768. { "time": 1.5333, "angle": -4.35 },
  3769. { "time": 1.9, "angle": 10.3 },
  3770. { "time": 2.3, "angle": -4.35 },
  3771. { "time": 2.6667, "angle": 10.3 },
  3772. { "time": 3.0667, "angle": -4.35 },
  3773. { "time": 3.4333, "angle": 10.3 },
  3774. { "time": 3.8333, "angle": -4.35 },
  3775. { "time": 4.2, "angle": 10.3 },
  3776. { "time": 4.6, "angle": -4.35 },
  3777. { "time": 4.9667, "angle": 10.3 },
  3778. { "time": 5.3667, "angle": -4.35 },
  3779. { "time": 5.7333, "angle": 10.3 },
  3780. { "time": 6.1333, "angle": -4.35 }
  3781. ],
  3782. "translate": [
  3783. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3784. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3785. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3786. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3787. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3788. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3789. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3790. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3791. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3792. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3793. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3794. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3795. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3797. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3798. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3799. { "time": 6.1333, "x": 0, "y": 0 }
  3800. ],
  3801. "scale": [
  3802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3803. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3806. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3807. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3808. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3809. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3810. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3811. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3812. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3814. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 6.1333, "x": 1, "y": 1 }
  3819. ]
  3820. },
  3821. "bone27": {
  3822. "rotate": [
  3823. { "time": 0, "angle": -4.35 },
  3824. { "time": 0.1667, "angle": -6.66 },
  3825. { "time": 0.3667, "angle": -3.11 },
  3826. { "time": 0.7667, "angle": -4.35 },
  3827. { "time": 0.9333, "angle": -6.66 },
  3828. { "time": 1.1333, "angle": -3.11 },
  3829. { "time": 1.5333, "angle": -4.35 },
  3830. { "time": 1.7, "angle": -6.66 },
  3831. { "time": 1.9, "angle": -3.11 },
  3832. { "time": 2.3, "angle": -4.35 },
  3833. { "time": 2.4667, "angle": -6.66 },
  3834. { "time": 2.6667, "angle": -3.11 },
  3835. { "time": 3.0667, "angle": -4.35 },
  3836. { "time": 3.2333, "angle": -6.66 },
  3837. { "time": 3.4333, "angle": -3.11 },
  3838. { "time": 3.8333, "angle": -4.35 },
  3839. { "time": 4, "angle": -6.66 },
  3840. { "time": 4.2, "angle": -3.11 },
  3841. { "time": 4.6, "angle": -4.35 },
  3842. { "time": 4.7667, "angle": -6.66 },
  3843. { "time": 4.9667, "angle": -3.11 },
  3844. { "time": 5.3667, "angle": -4.35 },
  3845. { "time": 5.5333, "angle": -6.66 },
  3846. { "time": 5.7333, "angle": -3.11 },
  3847. { "time": 6.1333, "angle": -4.35 }
  3848. ],
  3849. "translate": [
  3850. { "time": 0, "x": 0, "y": 0 },
  3851. { "time": 0.1667, "x": 1.1, "y": -0.06 },
  3852. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3853. { "time": 0.7667, "x": 0, "y": 0 },
  3854. { "time": 0.9333, "x": 1.1, "y": -0.06 },
  3855. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3856. { "time": 1.5333, "x": 0, "y": 0 },
  3857. { "time": 1.7, "x": 1.1, "y": -0.06 },
  3858. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3859. { "time": 2.3, "x": 0, "y": 0 },
  3860. { "time": 2.4667, "x": 1.1, "y": -0.06 },
  3861. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3862. { "time": 3.0667, "x": 0, "y": 0 },
  3863. { "time": 3.2333, "x": 1.1, "y": -0.06 },
  3864. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3865. { "time": 3.8333, "x": 0, "y": 0 },
  3866. { "time": 4, "x": 1.1, "y": -0.06 },
  3867. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3868. { "time": 4.6, "x": 0, "y": 0 },
  3869. { "time": 4.7667, "x": 1.1, "y": -0.06 },
  3870. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3871. { "time": 5.3667, "x": 0, "y": 0 },
  3872. { "time": 5.5333, "x": 1.1, "y": -0.06 },
  3873. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3874. { "time": 6.1333, "x": 0, "y": 0 }
  3875. ],
  3876. "scale": [
  3877. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3878. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3879. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3880. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3881. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3882. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3883. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3884. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3888. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3890. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3891. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3892. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3893. { "time": 6.1333, "x": 1, "y": 1 }
  3894. ]
  3895. },
  3896. "bone28": {
  3897. "rotate": [
  3898. { "time": 0, "angle": -4.35 },
  3899. { "time": 0.1667, "angle": -8.83 },
  3900. { "time": 0.3667, "angle": -7.87 },
  3901. { "time": 0.7667, "angle": -4.35 },
  3902. { "time": 0.9333, "angle": -8.83 },
  3903. { "time": 1.1333, "angle": -7.87 },
  3904. { "time": 1.5333, "angle": -4.35 },
  3905. { "time": 1.7, "angle": -8.83 },
  3906. { "time": 1.9, "angle": -7.87 },
  3907. { "time": 2.3, "angle": -4.35 },
  3908. { "time": 2.4667, "angle": -8.83 },
  3909. { "time": 2.6667, "angle": -7.87 },
  3910. { "time": 3.0667, "angle": -4.35 },
  3911. { "time": 3.2333, "angle": -8.83 },
  3912. { "time": 3.4333, "angle": -7.87 },
  3913. { "time": 3.8333, "angle": -4.35 },
  3914. { "time": 4, "angle": -8.83 },
  3915. { "time": 4.2, "angle": -7.87 },
  3916. { "time": 4.6, "angle": -4.35 },
  3917. { "time": 4.7667, "angle": -8.83 },
  3918. { "time": 4.9667, "angle": -7.87 },
  3919. { "time": 5.3667, "angle": -4.35 },
  3920. { "time": 5.5333, "angle": -8.83 },
  3921. { "time": 5.7333, "angle": -7.87 },
  3922. { "time": 6.1333, "angle": -4.35 }
  3923. ],
  3924. "translate": [
  3925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3927. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3928. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3929. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3930. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3931. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3932. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3933. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3934. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  3935. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3936. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  3937. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  3938. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  3939. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  3940. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  3941. { "time": 6.1333, "x": 0, "y": 0 }
  3942. ],
  3943. "scale": [
  3944. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3945. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3946. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  3947. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3952. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3955. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  3956. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  3957. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  3958. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  3959. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  3960. { "time": 6.1333, "x": 1, "y": 1 }
  3961. ]
  3962. },
  3963. "bone29": {
  3964. "rotate": [
  3965. { "time": 0, "angle": -4.35 },
  3966. { "time": 0.1667, "angle": -4.34 },
  3967. { "time": 0.3667, "angle": 2.01 },
  3968. { "time": 0.7667, "angle": -4.35 },
  3969. { "time": 0.9333, "angle": -4.34 },
  3970. { "time": 1.1333, "angle": 2.01 },
  3971. { "time": 1.5333, "angle": -4.35 },
  3972. { "time": 1.7, "angle": -4.34 },
  3973. { "time": 1.9, "angle": 2.01 },
  3974. { "time": 2.3, "angle": -4.35 },
  3975. { "time": 2.4667, "angle": -4.34 },
  3976. { "time": 2.6667, "angle": 2.01 },
  3977. { "time": 3.0667, "angle": -4.35 },
  3978. { "time": 3.2333, "angle": -4.34 },
  3979. { "time": 3.4333, "angle": 2.01 },
  3980. { "time": 3.8333, "angle": -4.35 },
  3981. { "time": 4, "angle": -4.34 },
  3982. { "time": 4.2, "angle": 2.01 },
  3983. { "time": 4.6, "angle": -4.35 },
  3984. { "time": 4.7667, "angle": -4.34 },
  3985. { "time": 4.9667, "angle": 2.01 },
  3986. { "time": 5.3667, "angle": -4.35 },
  3987. { "time": 5.5333, "angle": -4.34 },
  3988. { "time": 5.7333, "angle": 2.01 },
  3989. { "time": 6.1333, "angle": -4.35 }
  3990. ],
  3991. "translate": [
  3992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  3995. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3996. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3997. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3998. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3999. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4000. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4002. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4003. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4004. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4005. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4006. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4007. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4008. { "time": 6.1333, "x": 0, "y": 0 }
  4009. ],
  4010. "scale": [
  4011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4021. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 6.1333, "x": 1, "y": 1 }
  4028. ]
  4029. },
  4030. "bone30": {
  4031. "rotate": [
  4032. { "time": 0, "angle": 0, "curve": "stepped" },
  4033. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4034. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4035. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4036. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4037. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4038. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4039. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4040. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4041. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  4042. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4043. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4044. { "time": 4.6, "angle": 0, "curve": "stepped" },
  4045. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  4046. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  4047. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  4048. { "time": 6.1333, "angle": 0 }
  4049. ],
  4050. "translate": [
  4051. { "time": 0, "x": 3.87, "y": -0.5 },
  4052. { "time": 0.3667, "x": 0, "y": 0 },
  4053. { "time": 0.7667, "x": 3.87, "y": -0.5 },
  4054. { "time": 1.1333, "x": 0, "y": 0 },
  4055. { "time": 1.5333, "x": 3.87, "y": -0.5 },
  4056. { "time": 1.9, "x": 0, "y": 0 },
  4057. { "time": 2.3, "x": 3.87, "y": -0.5 },
  4058. { "time": 2.6667, "x": 0, "y": 0 },
  4059. { "time": 3.0667, "x": 3.87, "y": -0.5 },
  4060. { "time": 3.4333, "x": 0, "y": 0 },
  4061. { "time": 3.8333, "x": 3.87, "y": -0.5 },
  4062. { "time": 4.2, "x": 0, "y": 0 },
  4063. { "time": 4.6, "x": 3.87, "y": -0.5 },
  4064. { "time": 4.9667, "x": 0, "y": 0 },
  4065. { "time": 5.3667, "x": 3.87, "y": -0.5 },
  4066. { "time": 5.7333, "x": 0, "y": 0 },
  4067. { "time": 6.1333, "x": 3.87, "y": -0.5 }
  4068. ],
  4069. "scale": [
  4070. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4071. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4072. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4073. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4074. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4075. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4076. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4077. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4078. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4079. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4080. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4082. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4086. { "time": 6.1333, "x": 1, "y": 1 }
  4087. ]
  4088. },
  4089. "bone32": {
  4090. "rotate": [
  4091. { "time": 0, "angle": 0, "curve": "stepped" },
  4092. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4093. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4094. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4095. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4096. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4097. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4098. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4099. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4100. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4101. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4102. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4103. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4104. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4105. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4106. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4107. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  4108. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4109. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4110. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4111. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4112. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4113. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4114. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4115. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4116. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4117. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  4118. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  4119. { "time": 3.6, "angle": 0, "curve": "stepped" },
  4120. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  4121. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4122. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  4123. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  4124. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4125. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  4126. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  4127. { "time": 4.6, "angle": 0, "curve": "stepped" },
  4128. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  4129. { "time": 4.8, "angle": 0, "curve": "stepped" },
  4130. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  4131. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  4132. { "time": 5.2, "angle": 0, "curve": "stepped" },
  4133. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  4134. { "time": 5.5, "angle": 0, "curve": "stepped" },
  4135. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  4136. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  4137. { "time": 5.9, "angle": 0, "curve": "stepped" },
  4138. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  4139. { "time": 6.1333, "angle": 0 }
  4140. ],
  4141. "translate": [
  4142. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4143. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4144. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4145. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4146. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4147. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4148. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4149. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4150. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4151. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4152. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4153. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  4154. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4155. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4156. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4157. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4158. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4159. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4160. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4161. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4162. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4163. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4164. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4165. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4166. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4167. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4168. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  4169. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4170. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  4171. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  4172. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4173. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  4174. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  4175. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4176. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  4177. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  4181. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4182. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  4183. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  4184. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4185. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4188. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  4190. { "time": 6.1333, "x": 0, "y": 0 }
  4191. ],
  4192. "scale": [
  4193. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4203. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  4211. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4212. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4213. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4214. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4215. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4216. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4217. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4218. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4219. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4224. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  4225. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  4226. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4227. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  4228. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  4229. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4230. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  4231. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  4232. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4233. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  4234. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  4235. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4236. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  4237. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  4238. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4239. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  4240. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  4241. { "time": 6.1333, "x": 1, "y": 1 }
  4242. ]
  4243. },
  4244. "bone33": {
  4245. "rotate": [
  4246. {
  4247. "time": 0,
  4248. "angle": 0,
  4249. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4250. },
  4251. {
  4252. "time": 0.2,
  4253. "angle": 11.04,
  4254. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4255. },
  4256. {
  4257. "time": 0.3667,
  4258. "angle": 7.66,
  4259. "curve": [ 0.25, 0, 0.75, 1 ]
  4260. },
  4261. {
  4262. "time": 0.5667,
  4263. "angle": 11.04,
  4264. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4265. },
  4266. {
  4267. "time": 0.7667,
  4268. "angle": 0,
  4269. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4270. },
  4271. {
  4272. "time": 0.9667,
  4273. "angle": 11.04,
  4274. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4275. },
  4276. {
  4277. "time": 1.1333,
  4278. "angle": 7.66,
  4279. "curve": [ 0.25, 0, 0.75, 1 ]
  4280. },
  4281. {
  4282. "time": 1.3333,
  4283. "angle": 11.04,
  4284. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4285. },
  4286. {
  4287. "time": 1.5333,
  4288. "angle": 0,
  4289. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4290. },
  4291. {
  4292. "time": 1.7333,
  4293. "angle": 11.04,
  4294. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4295. },
  4296. {
  4297. "time": 1.9,
  4298. "angle": 7.66,
  4299. "curve": [ 0.25, 0, 0.75, 1 ]
  4300. },
  4301. {
  4302. "time": 2.1,
  4303. "angle": 11.04,
  4304. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4305. },
  4306. {
  4307. "time": 2.3,
  4308. "angle": 0,
  4309. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4310. },
  4311. {
  4312. "time": 2.5,
  4313. "angle": 11.04,
  4314. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4315. },
  4316. {
  4317. "time": 2.6667,
  4318. "angle": 7.66,
  4319. "curve": [ 0.25, 0, 0.75, 1 ]
  4320. },
  4321. {
  4322. "time": 2.8667,
  4323. "angle": 11.04,
  4324. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4325. },
  4326. {
  4327. "time": 3.0667,
  4328. "angle": 0,
  4329. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4330. },
  4331. {
  4332. "time": 3.2667,
  4333. "angle": 11.04,
  4334. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4335. },
  4336. {
  4337. "time": 3.4333,
  4338. "angle": 7.66,
  4339. "curve": [ 0.25, 0, 0.75, 1 ]
  4340. },
  4341. {
  4342. "time": 3.6333,
  4343. "angle": 11.04,
  4344. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4345. },
  4346. {
  4347. "time": 3.8333,
  4348. "angle": 0,
  4349. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4350. },
  4351. {
  4352. "time": 4.0333,
  4353. "angle": 11.04,
  4354. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4355. },
  4356. {
  4357. "time": 4.2,
  4358. "angle": 7.66,
  4359. "curve": [ 0.25, 0, 0.75, 1 ]
  4360. },
  4361. {
  4362. "time": 4.4,
  4363. "angle": 11.04,
  4364. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4365. },
  4366. {
  4367. "time": 4.6,
  4368. "angle": 0,
  4369. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4370. },
  4371. {
  4372. "time": 4.8,
  4373. "angle": 11.04,
  4374. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4375. },
  4376. {
  4377. "time": 4.9667,
  4378. "angle": 7.66,
  4379. "curve": [ 0.25, 0, 0.75, 1 ]
  4380. },
  4381. {
  4382. "time": 5.1667,
  4383. "angle": 11.04,
  4384. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4385. },
  4386. {
  4387. "time": 5.3667,
  4388. "angle": 0,
  4389. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4390. },
  4391. {
  4392. "time": 5.5667,
  4393. "angle": 11.04,
  4394. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4395. },
  4396. {
  4397. "time": 5.7333,
  4398. "angle": 7.66,
  4399. "curve": [ 0.25, 0, 0.75, 1 ]
  4400. },
  4401. {
  4402. "time": 5.9333,
  4403. "angle": 11.04,
  4404. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4405. },
  4406. { "time": 6.1333, "angle": 0 }
  4407. ],
  4408. "translate": [
  4409. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4410. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4411. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4412. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4413. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4414. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4415. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4416. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4417. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4420. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4421. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4422. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 6.1333, "x": 0, "y": 0 }
  4426. ],
  4427. "scale": [
  4428. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4429. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4444. { "time": 6.1333, "x": 1, "y": 1 }
  4445. ]
  4446. },
  4447. "bone34": {
  4448. "rotate": [
  4449. {
  4450. "time": 0,
  4451. "angle": 0,
  4452. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4453. },
  4454. {
  4455. "time": 0.2,
  4456. "angle": 22.76,
  4457. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4458. },
  4459. {
  4460. "time": 0.3667,
  4461. "angle": 7.66,
  4462. "curve": [ 0.25, 0, 0.75, 1 ]
  4463. },
  4464. {
  4465. "time": 0.7667,
  4466. "angle": 0,
  4467. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4468. },
  4469. {
  4470. "time": 0.9667,
  4471. "angle": 22.76,
  4472. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4473. },
  4474. {
  4475. "time": 1.1333,
  4476. "angle": 7.66,
  4477. "curve": [ 0.25, 0, 0.75, 1 ]
  4478. },
  4479. {
  4480. "time": 1.5333,
  4481. "angle": 0,
  4482. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4483. },
  4484. {
  4485. "time": 1.7333,
  4486. "angle": 22.76,
  4487. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4488. },
  4489. {
  4490. "time": 1.9,
  4491. "angle": 7.66,
  4492. "curve": [ 0.25, 0, 0.75, 1 ]
  4493. },
  4494. {
  4495. "time": 2.3,
  4496. "angle": 0,
  4497. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4498. },
  4499. {
  4500. "time": 2.5,
  4501. "angle": 22.76,
  4502. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4503. },
  4504. {
  4505. "time": 2.6667,
  4506. "angle": 7.66,
  4507. "curve": [ 0.25, 0, 0.75, 1 ]
  4508. },
  4509. {
  4510. "time": 3.0667,
  4511. "angle": 0,
  4512. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4513. },
  4514. {
  4515. "time": 3.2667,
  4516. "angle": 22.76,
  4517. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4518. },
  4519. {
  4520. "time": 3.4333,
  4521. "angle": 7.66,
  4522. "curve": [ 0.25, 0, 0.75, 1 ]
  4523. },
  4524. {
  4525. "time": 3.8333,
  4526. "angle": 0,
  4527. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4528. },
  4529. {
  4530. "time": 4.0333,
  4531. "angle": 22.76,
  4532. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4533. },
  4534. {
  4535. "time": 4.2,
  4536. "angle": 7.66,
  4537. "curve": [ 0.25, 0, 0.75, 1 ]
  4538. },
  4539. {
  4540. "time": 4.6,
  4541. "angle": 0,
  4542. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4543. },
  4544. {
  4545. "time": 4.8,
  4546. "angle": 22.76,
  4547. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4548. },
  4549. {
  4550. "time": 4.9667,
  4551. "angle": 7.66,
  4552. "curve": [ 0.25, 0, 0.75, 1 ]
  4553. },
  4554. {
  4555. "time": 5.3667,
  4556. "angle": 0,
  4557. "curve": [ 0.247, 0, 0.63, 0.52 ]
  4558. },
  4559. {
  4560. "time": 5.5667,
  4561. "angle": 22.76,
  4562. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4563. },
  4564. {
  4565. "time": 5.7333,
  4566. "angle": 7.66,
  4567. "curve": [ 0.25, 0, 0.75, 1 ]
  4568. },
  4569. { "time": 6.1333, "angle": 0 }
  4570. ],
  4571. "translate": [
  4572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4574. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4575. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4576. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4577. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4578. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4579. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4580. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4581. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4582. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4583. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4584. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4585. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4587. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4588. { "time": 6.1333, "x": 0, "y": 0 }
  4589. ],
  4590. "scale": [
  4591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4598. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4599. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4601. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4604. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4605. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4606. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4607. { "time": 6.1333, "x": 1, "y": 1 }
  4608. ]
  4609. },
  4610. "bone35": {
  4611. "rotate": [
  4612. { "time": 0, "angle": 0, "curve": "stepped" },
  4613. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4614. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4615. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4616. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4617. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4618. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4619. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4620. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4621. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4622. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4623. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4624. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4625. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4626. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4627. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4628. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  4629. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4630. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4631. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4632. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4633. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4634. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4635. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4636. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4637. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4638. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  4639. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  4640. { "time": 3.6, "angle": 0, "curve": "stepped" },
  4641. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  4642. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4643. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  4644. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  4645. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4646. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  4647. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  4648. { "time": 4.6, "angle": 0, "curve": "stepped" },
  4649. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  4650. { "time": 4.8, "angle": 0, "curve": "stepped" },
  4651. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  4652. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  4653. { "time": 5.2, "angle": 0, "curve": "stepped" },
  4654. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  4655. { "time": 5.5, "angle": 0, "curve": "stepped" },
  4656. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  4657. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  4658. { "time": 5.9, "angle": 0, "curve": "stepped" },
  4659. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  4660. { "time": 6.1333, "angle": 0 }
  4661. ],
  4662. "translate": [
  4663. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4664. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4667. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4668. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4669. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4670. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4671. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4672. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4673. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4674. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  4675. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4676. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4677. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4678. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4683. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4686. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4687. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4688. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4689. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  4690. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4691. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  4692. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  4693. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4694. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  4695. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  4696. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4697. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  4698. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  4699. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4700. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4706. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  4707. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  4708. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4709. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  4710. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  4711. { "time": 6.1333, "x": 0, "y": 0 }
  4712. ],
  4713. "scale": [
  4714. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4721. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4722. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4723. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4724. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4725. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  4726. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4727. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4728. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4729. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4730. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4731. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  4732. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4733. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4734. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4737. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4738. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4739. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4740. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  4741. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4742. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  4743. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  4744. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4745. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  4746. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  4747. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4754. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  4755. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  4762. { "time": 6.1333, "x": 1, "y": 1 }
  4763. ]
  4764. },
  4765. "bone31": {
  4766. "rotate": [
  4767. { "time": 0, "angle": 0, "curve": "stepped" },
  4768. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4769. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4770. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4771. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4772. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4773. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4774. { "time": 0.9, "angle": 0, "curve": "stepped" },
  4775. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4776. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4777. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4778. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  4779. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4780. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4781. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  4782. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4783. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  4784. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4785. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4786. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4787. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4788. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4789. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4790. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4791. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4792. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4793. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  4794. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  4795. { "time": 3.6, "angle": 0, "curve": "stepped" },
  4796. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  4797. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4798. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  4799. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  4800. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4801. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  4802. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  4803. { "time": 4.6, "angle": 0, "curve": "stepped" },
  4804. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  4805. { "time": 4.8, "angle": 0, "curve": "stepped" },
  4806. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  4807. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  4808. { "time": 5.2, "angle": 0, "curve": "stepped" },
  4809. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  4810. { "time": 5.5, "angle": 0, "curve": "stepped" },
  4811. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  4812. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  4813. { "time": 5.9, "angle": 0, "curve": "stepped" },
  4814. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  4815. { "time": 6.1333, "angle": 0 }
  4816. ],
  4817. "translate": [
  4818. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4819. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4820. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4821. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4822. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4823. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4824. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  4825. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  4826. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4827. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4828. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4829. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  4830. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4831. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4832. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4833. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  4834. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4835. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4836. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4837. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4838. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4839. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  4840. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4841. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4842. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4843. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4844. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  4845. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  4846. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  4847. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  4848. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4849. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  4850. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  4851. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4852. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  4853. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  4854. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  4855. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  4856. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  4857. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  4858. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  4859. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  4862. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  4863. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  4864. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  4865. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  4866. { "time": 6.1333, "x": 0, "y": 0 }
  4867. ],
  4868. "scale": [
  4869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4871. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4872. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4873. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4874. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4875. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4876. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  4877. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4879. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4880. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  4881. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4882. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4883. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4884. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4885. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4886. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  4887. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4888. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4889. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  4902. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4903. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  4904. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  4905. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4906. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  4910. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  4911. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4912. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  4913. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  4914. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4915. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  4916. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  4917. { "time": 6.1333, "x": 1, "y": 1 }
  4918. ]
  4919. },
  4920. "bone36": {
  4921. "rotate": [
  4922. { "time": 0, "angle": 0, "curve": "stepped" },
  4923. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4924. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  4925. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4926. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4927. { "time": 1.9, "angle": 0, "curve": "stepped" },
  4928. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4929. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  4930. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  4931. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  4932. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4933. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4934. { "time": 4.6, "angle": 0, "curve": "stepped" },
  4935. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  4936. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  4937. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  4938. { "time": 6.1333, "angle": 0 }
  4939. ],
  4940. "translate": [
  4941. { "time": 0, "x": -4.03, "y": 0 },
  4942. { "time": 0.3667, "x": 0, "y": 0 },
  4943. { "time": 0.7667, "x": -4.03, "y": 0 },
  4944. { "time": 1.1333, "x": 0, "y": 0 },
  4945. { "time": 1.5333, "x": -4.03, "y": 0 },
  4946. { "time": 1.9, "x": 0, "y": 0 },
  4947. { "time": 2.3, "x": -4.03, "y": 0 },
  4948. { "time": 2.6667, "x": 0, "y": 0 },
  4949. { "time": 3.0667, "x": -4.03, "y": 0 },
  4950. { "time": 3.4333, "x": 0, "y": 0 },
  4951. { "time": 3.8333, "x": -4.03, "y": 0 },
  4952. { "time": 4.2, "x": 0, "y": 0 },
  4953. { "time": 4.6, "x": -4.03, "y": 0 },
  4954. { "time": 4.9667, "x": 0, "y": 0 },
  4955. { "time": 5.3667, "x": -4.03, "y": 0 },
  4956. { "time": 5.7333, "x": 0, "y": 0 },
  4957. { "time": 6.1333, "x": -4.03, "y": 0 }
  4958. ],
  4959. "scale": [
  4960. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  4963. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  4964. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4965. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  4966. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  4967. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  4968. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4969. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  4970. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4971. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4972. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  4973. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  4974. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  4975. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  4976. { "time": 6.1333, "x": 1, "y": 1 }
  4977. ]
  4978. },
  4979. "bone38": {
  4980. "rotate": [
  4981. { "time": 0, "angle": -94.23 },
  4982. { "time": 0.1333, "angle": -22.56 },
  4983. { "time": 0.2, "angle": -30.54 },
  4984. { "time": 0.3667, "angle": -14.58 },
  4985. { "time": 0.5333, "angle": -22.56 },
  4986. { "time": 0.6, "angle": -30.54 },
  4987. { "time": 0.7667, "angle": -94.23 },
  4988. { "time": 0.9, "angle": -22.56 },
  4989. { "time": 0.9667, "angle": -30.54 },
  4990. { "time": 1.1333, "angle": -14.58 },
  4991. { "time": 1.3, "angle": -22.56 },
  4992. { "time": 1.3667, "angle": -30.54 },
  4993. { "time": 1.5333, "angle": -94.23 },
  4994. { "time": 1.6667, "angle": -22.56 },
  4995. { "time": 1.7333, "angle": -30.54 },
  4996. { "time": 1.9, "angle": -14.58 },
  4997. { "time": 2.0667, "angle": -22.56 },
  4998. { "time": 2.1333, "angle": -30.54 },
  4999. { "time": 2.3, "angle": -94.23 },
  5000. { "time": 2.4333, "angle": -22.56 },
  5001. { "time": 2.5, "angle": -30.54 },
  5002. { "time": 2.6667, "angle": -14.58 },
  5003. { "time": 2.8333, "angle": -22.56 },
  5004. { "time": 2.9, "angle": -30.54 },
  5005. { "time": 3.0667, "angle": -94.23 },
  5006. { "time": 3.2, "angle": -22.56 },
  5007. { "time": 3.2667, "angle": -30.54 },
  5008. { "time": 3.4333, "angle": -14.58 },
  5009. { "time": 3.6, "angle": -22.56 },
  5010. { "time": 3.6667, "angle": -30.54 },
  5011. { "time": 3.8333, "angle": -94.23 },
  5012. { "time": 3.9667, "angle": -22.56 },
  5013. { "time": 4.0333, "angle": -30.54 },
  5014. { "time": 4.2, "angle": -14.58 },
  5015. { "time": 4.3667, "angle": -22.56 },
  5016. { "time": 4.4333, "angle": -30.54 },
  5017. { "time": 4.6, "angle": -94.23 },
  5018. { "time": 4.7333, "angle": -22.56 },
  5019. { "time": 4.8, "angle": -30.54 },
  5020. { "time": 4.9667, "angle": -14.58 },
  5021. { "time": 5.1333, "angle": -22.56 },
  5022. { "time": 5.2, "angle": -30.54 },
  5023. { "time": 5.3667, "angle": -94.23 },
  5024. { "time": 5.5, "angle": -22.56 },
  5025. { "time": 5.5667, "angle": -30.54 },
  5026. { "time": 5.7333, "angle": -14.58 },
  5027. { "time": 5.9, "angle": -22.56 },
  5028. { "time": 5.9667, "angle": -30.54 },
  5029. { "time": 6.1333, "angle": -94.23 }
  5030. ],
  5031. "translate": [
  5032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5033. { "time": 0.1333, "x": 0, "y": 0 },
  5034. { "time": 0.2, "x": -2.03, "y": 0.39 },
  5035. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5036. { "time": 0.5333, "x": 0, "y": 0 },
  5037. { "time": 0.6, "x": -2.03, "y": 0.39 },
  5038. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  5039. { "time": 0.9, "x": 0, "y": 0 },
  5040. { "time": 0.9667, "x": -2.03, "y": 0.39 },
  5041. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5042. { "time": 1.3, "x": 0, "y": 0 },
  5043. { "time": 1.3667, "x": -2.03, "y": 0.39 },
  5044. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5045. { "time": 1.6667, "x": 0, "y": 0 },
  5046. { "time": 1.7333, "x": -2.03, "y": 0.39 },
  5047. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5048. { "time": 2.0667, "x": 0, "y": 0 },
  5049. { "time": 2.1333, "x": -2.03, "y": 0.39 },
  5050. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5051. { "time": 2.4333, "x": 0, "y": 0 },
  5052. { "time": 2.5, "x": -2.03, "y": 0.39 },
  5053. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5054. { "time": 2.8333, "x": 0, "y": 0 },
  5055. { "time": 2.9, "x": -2.03, "y": 0.39 },
  5056. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5057. { "time": 3.2, "x": 0, "y": 0 },
  5058. { "time": 3.2667, "x": -2.03, "y": 0.39 },
  5059. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5060. { "time": 3.6, "x": 0, "y": 0 },
  5061. { "time": 3.6667, "x": -2.03, "y": 0.39 },
  5062. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 3.9667, "x": 0, "y": 0 },
  5064. { "time": 4.0333, "x": -2.03, "y": 0.39 },
  5065. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  5066. { "time": 4.3667, "x": 0, "y": 0 },
  5067. { "time": 4.4333, "x": -2.03, "y": 0.39 },
  5068. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  5069. { "time": 4.7333, "x": 0, "y": 0 },
  5070. { "time": 4.8, "x": -2.03, "y": 0.39 },
  5071. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  5072. { "time": 5.1333, "x": 0, "y": 0 },
  5073. { "time": 5.2, "x": -2.03, "y": 0.39 },
  5074. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  5075. { "time": 5.5, "x": 0, "y": 0 },
  5076. { "time": 5.5667, "x": -2.03, "y": 0.39 },
  5077. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  5078. { "time": 5.9, "x": 0, "y": 0 },
  5079. { "time": 5.9667, "x": -2.03, "y": 0.39 },
  5080. { "time": 6.1333, "x": 0, "y": 0 }
  5081. ],
  5082. "scale": [
  5083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5084. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  5085. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  5086. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5087. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5088. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5089. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5090. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5091. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5092. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5093. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5094. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5095. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5096. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5097. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5098. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5099. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5100. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  5101. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5102. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5103. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  5104. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5105. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5106. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5107. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5108. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5109. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5110. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5111. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  5112. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5113. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5114. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  5115. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  5116. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5117. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5118. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  5119. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5120. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  5121. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  5122. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5123. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  5124. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  5125. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5126. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  5127. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 6.1333, "x": 1, "y": 1 }
  5132. ]
  5133. },
  5134. "bone40": {
  5135. "rotate": [
  5136. { "time": 0, "angle": 0, "curve": "stepped" },
  5137. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5138. { "time": 0.2, "angle": 0, "curve": "stepped" },
  5139. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  5140. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  5141. { "time": 0.6, "angle": 0, "curve": "stepped" },
  5142. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  5143. { "time": 0.9, "angle": 0, "curve": "stepped" },
  5144. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5145. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5146. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5147. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  5148. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  5149. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5150. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5151. { "time": 1.9, "angle": 0, "curve": "stepped" },
  5152. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  5153. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5154. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5155. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  5156. { "time": 2.5, "angle": 0, "curve": "stepped" },
  5157. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  5158. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5159. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5160. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  5161. { "time": 3.2, "angle": 0, "curve": "stepped" },
  5162. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  5163. { "time": 3.4333, "angle": 0, "curve": "stepped" },
  5164. { "time": 3.6, "angle": 0, "curve": "stepped" },
  5165. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  5166. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5167. { "time": 3.9667, "angle": 0, "curve": "stepped" },
  5168. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  5169. { "time": 4.2, "angle": 0, "curve": "stepped" },
  5170. { "time": 4.3667, "angle": 0, "curve": "stepped" },
  5171. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  5172. { "time": 4.6, "angle": 0, "curve": "stepped" },
  5173. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  5174. { "time": 4.8, "angle": 0, "curve": "stepped" },
  5175. { "time": 4.9667, "angle": 0, "curve": "stepped" },
  5176. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  5177. { "time": 5.2, "angle": 0, "curve": "stepped" },
  5178. { "time": 5.3667, "angle": 0, "curve": "stepped" },
  5179. { "time": 5.5, "angle": 0, "curve": "stepped" },
  5180. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  5181. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  5182. { "time": 5.9, "angle": 0, "curve": "stepped" },
  5183. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  5184. { "time": 6.1333, "angle": 0 }
  5185. ],
  5186. "translate": [
  5187. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5188. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5189. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  5190. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5191. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5192. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5193. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  5194. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5195. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5196. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5197. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5198. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5199. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5200. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5201. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5202. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5203. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5204. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5205. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5206. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5207. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  5208. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5209. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5210. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5211. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5212. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5213. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5214. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5215. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  5216. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5217. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5218. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  5219. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  5220. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  5221. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5222. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  5223. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  5224. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  5225. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  5226. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  5227. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  5228. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  5229. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  5230. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  5231. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  5232. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  5233. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  5234. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  5235. { "time": 6.1333, "x": 0, "y": 0 }
  5236. ],
  5237. "scale": [
  5238. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5239. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  5240. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  5241. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5242. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5243. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5244. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5245. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5246. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5247. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5248. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5249. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5250. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5251. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5252. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5253. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5254. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5255. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5257. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5258. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  5259. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5260. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5261. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5262. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5263. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5264. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5265. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5266. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  5267. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5268. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5269. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  5270. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  5271. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5272. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5273. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  5274. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5275. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  5276. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  5277. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5278. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  5279. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  5280. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5281. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  5282. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  5283. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5284. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  5285. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  5286. { "time": 6.1333, "x": 1, "y": 1 }
  5287. ]
  5288. },
  5289. "bone42": {
  5290. "rotate": [
  5291. { "time": 0, "angle": 22.09 },
  5292. { "time": 0.1333, "angle": 1.39 },
  5293. { "time": 0.2, "angle": -11.28 },
  5294. { "time": 0.3667, "angle": 30.9 },
  5295. { "time": 0.5333, "angle": 1.39 },
  5296. { "time": 0.6, "angle": -11.28 },
  5297. { "time": 0.7667, "angle": 22.09 },
  5298. { "time": 0.9, "angle": 1.39 },
  5299. { "time": 0.9667, "angle": -11.28 },
  5300. { "time": 1.1333, "angle": 30.9 },
  5301. { "time": 1.3, "angle": 1.39 },
  5302. { "time": 1.3667, "angle": -11.28 },
  5303. { "time": 1.5333, "angle": 22.09 },
  5304. { "time": 1.6667, "angle": 1.39 },
  5305. { "time": 1.7333, "angle": -11.28 },
  5306. { "time": 1.9, "angle": 30.9 },
  5307. { "time": 2.0667, "angle": 1.39 },
  5308. { "time": 2.1333, "angle": -11.28 },
  5309. { "time": 2.3, "angle": 22.09 },
  5310. { "time": 2.4333, "angle": 1.39 },
  5311. { "time": 2.5, "angle": -11.28 },
  5312. { "time": 2.6667, "angle": 30.9 },
  5313. { "time": 2.8333, "angle": 1.39 },
  5314. { "time": 2.9, "angle": -11.28 },
  5315. { "time": 3.0667, "angle": 22.09 },
  5316. { "time": 3.2, "angle": 1.39 },
  5317. { "time": 3.2667, "angle": -11.28 },
  5318. { "time": 3.4333, "angle": 30.9 },
  5319. { "time": 3.6, "angle": 1.39 },
  5320. { "time": 3.6667, "angle": -11.28 },
  5321. { "time": 3.8333, "angle": 22.09 },
  5322. { "time": 3.9667, "angle": 1.39 },
  5323. { "time": 4.0333, "angle": -11.28 },
  5324. { "time": 4.2, "angle": 30.9 },
  5325. { "time": 4.3667, "angle": 1.39 },
  5326. { "time": 4.4333, "angle": -11.28 },
  5327. { "time": 4.6, "angle": 22.09 },
  5328. { "time": 4.7333, "angle": 1.39 },
  5329. { "time": 4.8, "angle": -11.28 },
  5330. { "time": 4.9667, "angle": 30.9 },
  5331. { "time": 5.1333, "angle": 1.39 },
  5332. { "time": 5.2, "angle": -11.28 },
  5333. { "time": 5.3667, "angle": 22.09 },
  5334. { "time": 5.5, "angle": 1.39 },
  5335. { "time": 5.5667, "angle": -11.28 },
  5336. { "time": 5.7333, "angle": 30.9 },
  5337. { "time": 5.9, "angle": 1.39 },
  5338. { "time": 5.9667, "angle": -11.28 },
  5339. { "time": 6.1333, "angle": 22.09 }
  5340. ],
  5341. "translate": [
  5342. { "time": 0, "x": -2.72, "y": 6.2 },
  5343. { "time": 0.1333, "x": 0, "y": 0 },
  5344. { "time": 0.2, "x": 0, "y": 0.02 },
  5345. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5346. { "time": 0.5333, "x": 0, "y": 0 },
  5347. { "time": 0.6, "x": 0, "y": 0.02 },
  5348. { "time": 0.7667, "x": -2.72, "y": 6.2 },
  5349. { "time": 0.9, "x": 0, "y": 0 },
  5350. { "time": 0.9667, "x": 0, "y": 0.02 },
  5351. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5352. { "time": 1.3, "x": 0, "y": 0 },
  5353. { "time": 1.3667, "x": 0, "y": 0.02 },
  5354. { "time": 1.5333, "x": -2.72, "y": 6.2 },
  5355. { "time": 1.6667, "x": 0, "y": 0 },
  5356. { "time": 1.7333, "x": 0, "y": 0.02 },
  5357. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5358. { "time": 2.0667, "x": 0, "y": 0 },
  5359. { "time": 2.1333, "x": 0, "y": 0.02 },
  5360. { "time": 2.3, "x": -2.72, "y": 6.2 },
  5361. { "time": 2.4333, "x": 0, "y": 0 },
  5362. { "time": 2.5, "x": 0, "y": 0.02 },
  5363. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5364. { "time": 2.8333, "x": 0, "y": 0 },
  5365. { "time": 2.9, "x": 0, "y": 0.02 },
  5366. { "time": 3.0667, "x": -2.72, "y": 6.2 },
  5367. { "time": 3.2, "x": 0, "y": 0 },
  5368. { "time": 3.2667, "x": 0, "y": 0.02 },
  5369. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 3.6, "x": 0, "y": 0 },
  5371. { "time": 3.6667, "x": 0, "y": 0.02 },
  5372. { "time": 3.8333, "x": -2.72, "y": 6.2 },
  5373. { "time": 3.9667, "x": 0, "y": 0 },
  5374. { "time": 4.0333, "x": 0, "y": 0.02 },
  5375. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 4.3667, "x": 0, "y": 0 },
  5377. { "time": 4.4333, "x": 0, "y": 0.02 },
  5378. { "time": 4.6, "x": -2.72, "y": 6.2 },
  5379. { "time": 4.7333, "x": 0, "y": 0 },
  5380. { "time": 4.8, "x": 0, "y": 0.02 },
  5381. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 5.1333, "x": 0, "y": 0 },
  5383. { "time": 5.2, "x": 0, "y": 0.02 },
  5384. { "time": 5.3667, "x": -2.72, "y": 6.2 },
  5385. { "time": 5.5, "x": 0, "y": 0 },
  5386. { "time": 5.5667, "x": 0, "y": 0.02 },
  5387. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  5388. { "time": 5.9, "x": 0, "y": 0 },
  5389. { "time": 5.9667, "x": 0, "y": 0.02 },
  5390. { "time": 6.1333, "x": -2.72, "y": 6.2 }
  5391. ],
  5392. "scale": [
  5393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 0.1333, "x": 1, "y": 1 },
  5395. { "time": 0.2, "x": 1.107, "y": 1 },
  5396. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 0.5333, "x": 1, "y": 1 },
  5398. { "time": 0.6, "x": 1.107, "y": 1 },
  5399. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 0.9, "x": 1, "y": 1 },
  5401. { "time": 0.9667, "x": 1.107, "y": 1 },
  5402. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 1.3, "x": 1, "y": 1 },
  5404. { "time": 1.3667, "x": 1.107, "y": 1 },
  5405. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5406. { "time": 1.6667, "x": 1, "y": 1 },
  5407. { "time": 1.7333, "x": 1.107, "y": 1 },
  5408. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5409. { "time": 2.0667, "x": 1, "y": 1 },
  5410. { "time": 2.1333, "x": 1.107, "y": 1 },
  5411. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5412. { "time": 2.4333, "x": 1, "y": 1 },
  5413. { "time": 2.5, "x": 1.107, "y": 1 },
  5414. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5415. { "time": 2.8333, "x": 1, "y": 1 },
  5416. { "time": 2.9, "x": 1.107, "y": 1 },
  5417. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5418. { "time": 3.2, "x": 1, "y": 1 },
  5419. { "time": 3.2667, "x": 1.107, "y": 1 },
  5420. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5421. { "time": 3.6, "x": 1, "y": 1 },
  5422. { "time": 3.6667, "x": 1.107, "y": 1 },
  5423. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5424. { "time": 3.9667, "x": 1, "y": 1 },
  5425. { "time": 4.0333, "x": 1.107, "y": 1 },
  5426. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5427. { "time": 4.3667, "x": 1, "y": 1 },
  5428. { "time": 4.4333, "x": 1.107, "y": 1 },
  5429. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5430. { "time": 4.7333, "x": 1, "y": 1 },
  5431. { "time": 4.8, "x": 1.107, "y": 1 },
  5432. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5433. { "time": 5.1333, "x": 1, "y": 1 },
  5434. { "time": 5.2, "x": 1.107, "y": 1 },
  5435. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5436. { "time": 5.5, "x": 1, "y": 1 },
  5437. { "time": 5.5667, "x": 1.107, "y": 1 },
  5438. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5439. { "time": 5.9, "x": 1, "y": 1 },
  5440. { "time": 5.9667, "x": 1.107, "y": 1 },
  5441. { "time": 6.1333, "x": 1, "y": 1 }
  5442. ]
  5443. },
  5444. "bone43": {
  5445. "rotate": [
  5446. { "time": 0, "angle": 0 },
  5447. { "time": 0.1333, "angle": 41 },
  5448. { "time": 0.2, "angle": 0, "curve": "stepped" },
  5449. { "time": 0.3667, "angle": 0 },
  5450. { "time": 0.5333, "angle": 41 },
  5451. { "time": 0.6, "angle": 0, "curve": "stepped" },
  5452. { "time": 0.7667, "angle": 0 },
  5453. { "time": 0.9, "angle": 41 },
  5454. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5455. { "time": 1.1333, "angle": 0 },
  5456. { "time": 1.3, "angle": 41 },
  5457. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  5458. { "time": 1.5333, "angle": 0 },
  5459. { "time": 1.6667, "angle": 41 },
  5460. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5461. { "time": 1.9, "angle": 0 },
  5462. { "time": 2.0667, "angle": 41 },
  5463. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5464. { "time": 2.3, "angle": 0 },
  5465. { "time": 2.4333, "angle": 41 },
  5466. { "time": 2.5, "angle": 0, "curve": "stepped" },
  5467. { "time": 2.6667, "angle": 0 },
  5468. { "time": 2.8333, "angle": 41 },
  5469. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5470. { "time": 3.0667, "angle": 0 },
  5471. { "time": 3.2, "angle": 41 },
  5472. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  5473. { "time": 3.4333, "angle": 0 },
  5474. { "time": 3.6, "angle": 41 },
  5475. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  5476. { "time": 3.8333, "angle": 0 },
  5477. { "time": 3.9667, "angle": 41 },
  5478. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  5479. { "time": 4.2, "angle": 0 },
  5480. { "time": 4.3667, "angle": 41 },
  5481. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  5482. { "time": 4.6, "angle": 0 },
  5483. { "time": 4.7333, "angle": 41 },
  5484. { "time": 4.8, "angle": 0, "curve": "stepped" },
  5485. { "time": 4.9667, "angle": 0 },
  5486. { "time": 5.1333, "angle": 41 },
  5487. { "time": 5.2, "angle": 0, "curve": "stepped" },
  5488. { "time": 5.3667, "angle": 0 },
  5489. { "time": 5.5, "angle": 41 },
  5490. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  5491. { "time": 5.7333, "angle": 0 },
  5492. { "time": 5.9, "angle": 41 },
  5493. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  5494. { "time": 6.1333, "angle": 0 }
  5495. ],
  5496. "translate": [
  5497. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5498. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5499. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  5500. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5502. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5509. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5515. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5516. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5520. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5521. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5522. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5523. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5524. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5525. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  5526. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5527. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5528. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  5529. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  5530. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  5531. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5532. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  5533. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  5534. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  5535. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  5536. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  5537. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  5538. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  5539. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  5540. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  5541. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  5542. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  5543. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  5544. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  5545. { "time": 6.1333, "x": 0, "y": 0 }
  5546. ],
  5547. "scale": [
  5548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5549. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  5550. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  5551. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5552. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5553. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5554. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5555. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5556. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5557. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5558. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5559. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5560. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5561. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5562. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5563. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5564. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5565. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  5566. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5567. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5568. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  5569. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5570. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5571. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5573. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5574. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5575. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5576. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  5577. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5578. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5579. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  5580. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  5581. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5582. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5585. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  5586. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  5587. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5588. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  5589. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  5590. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5591. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 6.1333, "x": 1, "y": 1 }
  5597. ]
  5598. },
  5599. "bone45": {
  5600. "rotate": [
  5601. { "time": 0, "angle": -12.46 },
  5602. { "time": 0.1333, "angle": 9.6 },
  5603. { "time": 0.2, "angle": 15.85 },
  5604. { "time": 0.3667, "angle": -6.05 },
  5605. { "time": 0.5333, "angle": 9.6 },
  5606. { "time": 0.6, "angle": 15.85 },
  5607. { "time": 0.7667, "angle": -12.46 },
  5608. { "time": 0.9, "angle": 9.6 },
  5609. { "time": 0.9667, "angle": 15.85 },
  5610. { "time": 1.1333, "angle": -6.05 },
  5611. { "time": 1.3, "angle": 9.6 },
  5612. { "time": 1.3667, "angle": 15.85 },
  5613. { "time": 1.5333, "angle": -12.46 },
  5614. { "time": 1.6667, "angle": 9.6 },
  5615. { "time": 1.7333, "angle": 15.85 },
  5616. { "time": 1.9, "angle": -6.05 },
  5617. { "time": 2.0667, "angle": 9.6 },
  5618. { "time": 2.1333, "angle": 15.85 },
  5619. { "time": 2.3, "angle": -12.46 },
  5620. { "time": 2.4333, "angle": 9.6 },
  5621. { "time": 2.5, "angle": 15.85 },
  5622. { "time": 2.6667, "angle": -6.05 },
  5623. { "time": 2.8333, "angle": 9.6 },
  5624. { "time": 2.9, "angle": 15.85 },
  5625. { "time": 3.0667, "angle": -12.46 },
  5626. { "time": 3.2, "angle": 9.6 },
  5627. { "time": 3.2667, "angle": 15.85 },
  5628. { "time": 3.4333, "angle": -6.05 },
  5629. { "time": 3.6, "angle": 9.6 },
  5630. { "time": 3.6667, "angle": 15.85 },
  5631. { "time": 3.8333, "angle": -12.46 },
  5632. { "time": 3.9667, "angle": 9.6 },
  5633. { "time": 4.0333, "angle": 15.85 },
  5634. { "time": 4.2, "angle": -6.05 },
  5635. { "time": 4.3667, "angle": 9.6 },
  5636. { "time": 4.4333, "angle": 15.85 },
  5637. { "time": 4.6, "angle": -12.46 },
  5638. { "time": 4.7333, "angle": 9.6 },
  5639. { "time": 4.8, "angle": 15.85 },
  5640. { "time": 4.9667, "angle": -6.05 },
  5641. { "time": 5.1333, "angle": 9.6 },
  5642. { "time": 5.2, "angle": 15.85 },
  5643. { "time": 5.3667, "angle": -12.46 },
  5644. { "time": 5.5, "angle": 9.6 },
  5645. { "time": 5.5667, "angle": 15.85 },
  5646. { "time": 5.7333, "angle": -6.05 },
  5647. { "time": 5.9, "angle": 9.6 },
  5648. { "time": 5.9667, "angle": 15.85 },
  5649. { "time": 6.1333, "angle": -12.46 }
  5650. ],
  5651. "translate": [
  5652. { "time": 0, "x": 3.44, "y": 3.56 },
  5653. { "time": 0.1333, "x": 3.06, "y": 1.62 },
  5654. { "time": 0.2, "x": 6.24, "y": -3.05 },
  5655. { "time": 0.3667, "x": -2.09, "y": -3.39 },
  5656. { "time": 0.5333, "x": 3.06, "y": 1.62 },
  5657. { "time": 0.6, "x": 6.24, "y": -3.05 },
  5658. { "time": 0.7667, "x": 3.44, "y": 3.56 },
  5659. { "time": 0.9, "x": 3.06, "y": 1.62 },
  5660. { "time": 0.9667, "x": 6.24, "y": -3.05 },
  5661. { "time": 1.1333, "x": -2.09, "y": -3.39 },
  5662. { "time": 1.3, "x": 3.06, "y": 1.62 },
  5663. { "time": 1.3667, "x": 6.24, "y": -3.05 },
  5664. { "time": 1.5333, "x": 3.44, "y": 3.56 },
  5665. { "time": 1.6667, "x": 3.06, "y": 1.62 },
  5666. { "time": 1.7333, "x": 6.24, "y": -3.05 },
  5667. { "time": 1.9, "x": -2.09, "y": -3.39 },
  5668. { "time": 2.0667, "x": 3.06, "y": 1.62 },
  5669. { "time": 2.1333, "x": 6.24, "y": -3.05 },
  5670. { "time": 2.3, "x": 3.44, "y": 3.56 },
  5671. { "time": 2.4333, "x": 3.06, "y": 1.62 },
  5672. { "time": 2.5, "x": 6.24, "y": -3.05 },
  5673. { "time": 2.6667, "x": -2.09, "y": -3.39 },
  5674. { "time": 2.8333, "x": 3.06, "y": 1.62 },
  5675. { "time": 2.9, "x": 6.24, "y": -3.05 },
  5676. { "time": 3.0667, "x": 3.44, "y": 3.56 },
  5677. { "time": 3.2, "x": 3.06, "y": 1.62 },
  5678. { "time": 3.2667, "x": 6.24, "y": -3.05 },
  5679. { "time": 3.4333, "x": -2.09, "y": -3.39 },
  5680. { "time": 3.6, "x": 3.06, "y": 1.62 },
  5681. { "time": 3.6667, "x": 6.24, "y": -3.05 },
  5682. { "time": 3.8333, "x": 3.44, "y": 3.56 },
  5683. { "time": 3.9667, "x": 3.06, "y": 1.62 },
  5684. { "time": 4.0333, "x": 6.24, "y": -3.05 },
  5685. { "time": 4.2, "x": -2.09, "y": -3.39 },
  5686. { "time": 4.3667, "x": 3.06, "y": 1.62 },
  5687. { "time": 4.4333, "x": 6.24, "y": -3.05 },
  5688. { "time": 4.6, "x": 3.44, "y": 3.56 },
  5689. { "time": 4.7333, "x": 3.06, "y": 1.62 },
  5690. { "time": 4.8, "x": 6.24, "y": -3.05 },
  5691. { "time": 4.9667, "x": -2.09, "y": -3.39 },
  5692. { "time": 5.1333, "x": 3.06, "y": 1.62 },
  5693. { "time": 5.2, "x": 6.24, "y": -3.05 },
  5694. { "time": 5.3667, "x": 3.44, "y": 3.56 },
  5695. { "time": 5.5, "x": 3.06, "y": 1.62 },
  5696. { "time": 5.5667, "x": 6.24, "y": -3.05 },
  5697. { "time": 5.7333, "x": -2.09, "y": -3.39 },
  5698. { "time": 5.9, "x": 3.06, "y": 1.62 },
  5699. { "time": 5.9667, "x": 6.24, "y": -3.05 },
  5700. { "time": 6.1333, "x": 3.44, "y": 3.56 }
  5701. ],
  5702. "scale": [
  5703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5704. { "time": 0.1333, "x": 1, "y": 1 },
  5705. { "time": 0.2, "x": 0.825, "y": 1 },
  5706. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5707. { "time": 0.5333, "x": 1, "y": 1 },
  5708. { "time": 0.6, "x": 0.825, "y": 1 },
  5709. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5710. { "time": 0.9, "x": 1, "y": 1 },
  5711. { "time": 0.9667, "x": 0.825, "y": 1 },
  5712. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 1.3, "x": 1, "y": 1 },
  5714. { "time": 1.3667, "x": 0.825, "y": 1 },
  5715. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 1.6667, "x": 1, "y": 1 },
  5717. { "time": 1.7333, "x": 0.825, "y": 1 },
  5718. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5719. { "time": 2.0667, "x": 1, "y": 1 },
  5720. { "time": 2.1333, "x": 0.825, "y": 1 },
  5721. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 2.4333, "x": 1, "y": 1 },
  5723. { "time": 2.5, "x": 0.825, "y": 1 },
  5724. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5725. { "time": 2.8333, "x": 1, "y": 1 },
  5726. { "time": 2.9, "x": 0.825, "y": 1 },
  5727. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5728. { "time": 3.2, "x": 1, "y": 1 },
  5729. { "time": 3.2667, "x": 0.825, "y": 1 },
  5730. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5731. { "time": 3.6, "x": 1, "y": 1 },
  5732. { "time": 3.6667, "x": 0.825, "y": 1 },
  5733. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5734. { "time": 3.9667, "x": 1, "y": 1 },
  5735. { "time": 4.0333, "x": 0.825, "y": 1 },
  5736. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5737. { "time": 4.3667, "x": 1, "y": 1 },
  5738. { "time": 4.4333, "x": 0.825, "y": 1 },
  5739. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5740. { "time": 4.7333, "x": 1, "y": 1 },
  5741. { "time": 4.8, "x": 0.825, "y": 1 },
  5742. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5743. { "time": 5.1333, "x": 1, "y": 1 },
  5744. { "time": 5.2, "x": 0.825, "y": 1 },
  5745. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5746. { "time": 5.5, "x": 1, "y": 1 },
  5747. { "time": 5.5667, "x": 0.825, "y": 1 },
  5748. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5749. { "time": 5.9, "x": 1, "y": 1 },
  5750. { "time": 5.9667, "x": 0.825, "y": 1 },
  5751. { "time": 6.1333, "x": 1, "y": 1 }
  5752. ]
  5753. },
  5754. "bone46": {
  5755. "rotate": [
  5756. { "time": 0, "angle": 0 },
  5757. { "time": 0.1333, "angle": -29.3 },
  5758. { "time": 0.2, "angle": 0, "curve": "stepped" },
  5759. { "time": 0.3667, "angle": 0 },
  5760. { "time": 0.5333, "angle": -29.3 },
  5761. { "time": 0.6, "angle": 0, "curve": "stepped" },
  5762. { "time": 0.7667, "angle": 0 },
  5763. { "time": 0.9, "angle": -29.3 },
  5764. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5765. { "time": 1.1333, "angle": 0 },
  5766. { "time": 1.3, "angle": -29.3 },
  5767. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  5768. { "time": 1.5333, "angle": 0 },
  5769. { "time": 1.6667, "angle": -29.3 },
  5770. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5771. { "time": 1.9, "angle": 0 },
  5772. { "time": 2.0667, "angle": -29.3 },
  5773. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5774. { "time": 2.3, "angle": 0 },
  5775. { "time": 2.4333, "angle": -29.3 },
  5776. { "time": 2.5, "angle": 0, "curve": "stepped" },
  5777. { "time": 2.6667, "angle": 0 },
  5778. { "time": 2.8333, "angle": -29.3 },
  5779. { "time": 2.9, "angle": 0, "curve": "stepped" },
  5780. { "time": 3.0667, "angle": 0 },
  5781. { "time": 3.2, "angle": -29.3 },
  5782. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  5783. { "time": 3.4333, "angle": 0 },
  5784. { "time": 3.6, "angle": -29.3 },
  5785. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  5786. { "time": 3.8333, "angle": 0 },
  5787. { "time": 3.9667, "angle": -29.3 },
  5788. { "time": 4.0333, "angle": 0, "curve": "stepped" },
  5789. { "time": 4.2, "angle": 0 },
  5790. { "time": 4.3667, "angle": -29.3 },
  5791. { "time": 4.4333, "angle": 0, "curve": "stepped" },
  5792. { "time": 4.6, "angle": 0 },
  5793. { "time": 4.7333, "angle": -29.3 },
  5794. { "time": 4.8, "angle": 0, "curve": "stepped" },
  5795. { "time": 4.9667, "angle": 0 },
  5796. { "time": 5.1333, "angle": -29.3 },
  5797. { "time": 5.2, "angle": 0, "curve": "stepped" },
  5798. { "time": 5.3667, "angle": 0 },
  5799. { "time": 5.5, "angle": -29.3 },
  5800. { "time": 5.5667, "angle": 0, "curve": "stepped" },
  5801. { "time": 5.7333, "angle": 0 },
  5802. { "time": 5.9, "angle": -29.3 },
  5803. { "time": 5.9667, "angle": 0, "curve": "stepped" },
  5804. { "time": 6.1333, "angle": 0 }
  5805. ],
  5806. "translate": [
  5807. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5808. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5809. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  5810. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5811. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5812. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5813. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  5814. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5815. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5816. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5817. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5818. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5819. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5820. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5821. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5822. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5823. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5824. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5825. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5826. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5827. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  5828. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5829. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5830. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5831. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5832. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5833. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5834. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5835. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  5836. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5837. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5838. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  5839. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  5840. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  5841. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5842. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  5843. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  5844. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  5845. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  5846. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  5847. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  5849. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  5850. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  5851. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 6.1333, "x": 0, "y": 0 }
  5856. ],
  5857. "scale": [
  5858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5863. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5864. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  5865. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  5866. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5867. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  5868. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5869. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5870. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5871. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5872. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5873. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5874. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5875. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  5876. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  5877. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5878. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  5879. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  5880. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5881. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  5882. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5883. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5884. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5885. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  5886. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  5887. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5888. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5889. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  5890. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  5891. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  5892. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5893. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  5894. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  5895. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  5896. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  5897. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  5898. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  5899. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  5900. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  5901. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  5902. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  5903. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  5904. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  5905. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 6.1333, "x": 1, "y": 1 }
  5907. ]
  5908. },
  5909. "bone14": {
  5910. "rotate": [
  5911. { "time": 0, "angle": 14.13 },
  5912. { "time": 0.0667, "angle": 9.92 },
  5913. { "time": 0.1333, "angle": -13.26, "curve": "stepped" },
  5914. { "time": 0.2, "angle": -13.26 },
  5915. { "time": 0.3667, "angle": 8.73 },
  5916. { "time": 0.5333, "angle": -13.26, "curve": "stepped" },
  5917. { "time": 0.6, "angle": -13.26 },
  5918. { "time": 0.7667, "angle": 14.13 },
  5919. { "time": 0.8333, "angle": 9.92 },
  5920. { "time": 0.9, "angle": -13.26, "curve": "stepped" },
  5921. { "time": 0.9667, "angle": -13.26 },
  5922. { "time": 1.1333, "angle": 8.73 },
  5923. { "time": 1.3, "angle": -13.26, "curve": "stepped" },
  5924. { "time": 1.3667, "angle": -13.26 },
  5925. { "time": 1.5333, "angle": 14.13 },
  5926. { "time": 1.6, "angle": 9.92 },
  5927. { "time": 1.6667, "angle": -13.26, "curve": "stepped" },
  5928. { "time": 1.7333, "angle": -13.26 },
  5929. { "time": 1.9, "angle": 8.73 },
  5930. { "time": 2.0667, "angle": -13.26, "curve": "stepped" },
  5931. { "time": 2.1333, "angle": -13.26 },
  5932. { "time": 2.3, "angle": 14.13 },
  5933. { "time": 2.3667, "angle": 9.92 },
  5934. { "time": 2.4333, "angle": -13.26, "curve": "stepped" },
  5935. { "time": 2.5, "angle": -13.26 },
  5936. { "time": 2.6667, "angle": 8.73 },
  5937. { "time": 2.8333, "angle": -13.26, "curve": "stepped" },
  5938. { "time": 2.9, "angle": -13.26 },
  5939. { "time": 3.0667, "angle": 14.13 },
  5940. { "time": 3.1333, "angle": 9.92 },
  5941. { "time": 3.2, "angle": -13.26, "curve": "stepped" },
  5942. { "time": 3.2667, "angle": -13.26 },
  5943. { "time": 3.4333, "angle": 8.73 },
  5944. { "time": 3.6, "angle": -13.26, "curve": "stepped" },
  5945. { "time": 3.6667, "angle": -13.26 },
  5946. { "time": 3.8333, "angle": 14.13 },
  5947. { "time": 3.9, "angle": 9.92 },
  5948. { "time": 3.9667, "angle": -13.26, "curve": "stepped" },
  5949. { "time": 4.0333, "angle": -13.26 },
  5950. { "time": 4.2, "angle": 8.73 },
  5951. { "time": 4.3667, "angle": -13.26, "curve": "stepped" },
  5952. { "time": 4.4333, "angle": -13.26 },
  5953. { "time": 4.6, "angle": 14.13 },
  5954. { "time": 4.6667, "angle": 9.92 },
  5955. { "time": 4.7333, "angle": -13.26, "curve": "stepped" },
  5956. { "time": 4.8, "angle": -13.26 },
  5957. { "time": 4.9667, "angle": 8.73 },
  5958. { "time": 5.1333, "angle": -13.26, "curve": "stepped" },
  5959. { "time": 5.2, "angle": -13.26 },
  5960. { "time": 5.3667, "angle": 14.13 },
  5961. { "time": 5.4333, "angle": 9.92 },
  5962. { "time": 5.5, "angle": -13.26, "curve": "stepped" },
  5963. { "time": 5.5667, "angle": -13.26 },
  5964. { "time": 5.7333, "angle": 8.73 },
  5965. { "time": 5.9, "angle": -13.26, "curve": "stepped" },
  5966. { "time": 5.9667, "angle": -13.26 },
  5967. { "time": 6.1333, "angle": 14.13 }
  5968. ],
  5969. "translate": [
  5970. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5971. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5972. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  5973. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5974. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5975. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5976. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  5977. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  5978. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5979. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5980. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5981. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5982. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5983. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5984. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5985. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5986. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5987. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5988. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5989. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5990. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  5991. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  5992. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5993. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  5994. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5995. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5996. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5997. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  5998. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  5999. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6000. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6001. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  6002. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  6003. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  6004. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  6005. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  6006. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  6007. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  6008. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  6009. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  6010. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  6011. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  6012. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  6013. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  6014. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  6015. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  6016. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  6017. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  6018. { "time": 6.1333, "x": 0, "y": 0 }
  6019. ],
  6020. "scale": [
  6021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6022. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  6024. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  6025. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6026. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6027. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  6028. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6029. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6030. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  6031. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6032. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  6033. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6034. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6035. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  6036. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  6037. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  6038. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  6039. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6041. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  6042. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6044. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6045. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  6046. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  6047. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  6048. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  6049. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  6050. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  6051. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6052. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  6053. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  6054. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  6055. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  6056. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  6057. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  6058. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  6059. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  6060. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  6061. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  6062. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  6063. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  6064. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  6065. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  6066. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  6067. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  6068. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  6069. { "time": 6.1333, "x": 1, "y": 1 }
  6070. ]
  6071. },
  6072. "bone39": {
  6073. "rotate": [
  6074. { "time": 0, "angle": -14.75 },
  6075. { "time": 0.1333, "angle": 1.88, "curve": "stepped" },
  6076. { "time": 0.2, "angle": 1.88 },
  6077. { "time": 0.3667, "angle": -25.79 },
  6078. { "time": 0.5333, "angle": 1.88, "curve": "stepped" },
  6079. { "time": 0.6, "angle": 1.88 },
  6080. { "time": 0.7667, "angle": -14.75 },
  6081. { "time": 0.9, "angle": 1.88, "curve": "stepped" },
  6082. { "time": 0.9667, "angle": 1.88 },
  6083. { "time": 1.1333, "angle": -25.79 },
  6084. { "time": 1.3, "angle": 1.88, "curve": "stepped" },
  6085. { "time": 1.3667, "angle": 1.88 },
  6086. { "time": 1.5333, "angle": -14.75 },
  6087. { "time": 1.6667, "angle": 1.88, "curve": "stepped" },
  6088. { "time": 1.7333, "angle": 1.88 },
  6089. { "time": 1.9, "angle": -25.79 },
  6090. { "time": 2.0667, "angle": 1.88, "curve": "stepped" },
  6091. { "time": 2.1333, "angle": 1.88 },
  6092. { "time": 2.3, "angle": -14.75 },
  6093. { "time": 2.4333, "angle": 1.88, "curve": "stepped" },
  6094. { "time": 2.5, "angle": 1.88 },
  6095. { "time": 2.6667, "angle": -25.79 },
  6096. { "time": 2.8333, "angle": 1.88, "curve": "stepped" },
  6097. { "time": 2.9, "angle": 1.88 },
  6098. { "time": 3.0667, "angle": -14.75 },
  6099. { "time": 3.2, "angle": 1.88, "curve": "stepped" },
  6100. { "time": 3.2667, "angle": 1.88 },
  6101. { "time": 3.4333, "angle": -25.79 },
  6102. { "time": 3.6, "angle": 1.88, "curve": "stepped" },
  6103. { "time": 3.6667, "angle": 1.88 },
  6104. { "time": 3.8333, "angle": -14.75 },
  6105. { "time": 3.9667, "angle": 1.88, "curve": "stepped" },
  6106. { "time": 4.0333, "angle": 1.88 },
  6107. { "time": 4.2, "angle": -25.79 },
  6108. { "time": 4.3667, "angle": 1.88, "curve": "stepped" },
  6109. { "time": 4.4333, "angle": 1.88 },
  6110. { "time": 4.6, "angle": -14.75 },
  6111. { "time": 4.7333, "angle": 1.88, "curve": "stepped" },
  6112. { "time": 4.8, "angle": 1.88 },
  6113. { "time": 4.9667, "angle": -25.79 },
  6114. { "time": 5.1333, "angle": 1.88, "curve": "stepped" },
  6115. { "time": 5.2, "angle": 1.88 },
  6116. { "time": 5.3667, "angle": -14.75 },
  6117. { "time": 5.5, "angle": 1.88, "curve": "stepped" },
  6118. { "time": 5.5667, "angle": 1.88 },
  6119. { "time": 5.7333, "angle": -25.79 },
  6120. { "time": 5.9, "angle": 1.88, "curve": "stepped" },
  6121. { "time": 5.9667, "angle": 1.88 },
  6122. { "time": 6.1333, "angle": -14.75 }
  6123. ],
  6124. "translate": [
  6125. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6126. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6127. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  6128. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  6129. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6130. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6131. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  6132. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  6133. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6134. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6135. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6136. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6137. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6138. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6139. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  6140. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  6141. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  6142. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6143. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6144. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  6145. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  6146. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6147. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6148. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  6150. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 3.4333, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 3.9667, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  6158. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  6159. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  6160. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  6161. { "time": 4.6, "x": 0, "y": 0, "curve": "stepped" },
  6162. { "time": 4.7333, "x": 0, "y": 0, "curve": "stepped" },
  6163. { "time": 4.8, "x": 0, "y": 0, "curve": "stepped" },
  6164. { "time": 4.9667, "x": 0, "y": 0, "curve": "stepped" },
  6165. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  6166. { "time": 5.2, "x": 0, "y": 0, "curve": "stepped" },
  6167. { "time": 5.3667, "x": 0, "y": 0, "curve": "stepped" },
  6168. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  6169. { "time": 5.5667, "x": 0, "y": 0, "curve": "stepped" },
  6170. { "time": 5.7333, "x": 0, "y": 0, "curve": "stepped" },
  6171. { "time": 5.9, "x": 0, "y": 0, "curve": "stepped" },
  6172. { "time": 5.9667, "x": 0, "y": 0, "curve": "stepped" },
  6173. { "time": 6.1333, "x": 0, "y": 0 }
  6174. ],
  6175. "scale": [
  6176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6177. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  6178. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  6179. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  6180. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6181. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6182. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  6183. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  6184. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6185. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  6186. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6187. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  6188. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6189. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6190. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  6191. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  6192. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  6193. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  6194. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  6195. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6196. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  6197. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6198. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6199. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  6200. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  6201. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  6202. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  6203. { "time": 3.4333, "x": 1, "y": 1, "curve": "stepped" },
  6204. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  6205. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  6206. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 3.9667, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 4.0333, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  6210. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  6211. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  6212. { "time": 4.6, "x": 1, "y": 1, "curve": "stepped" },
  6213. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  6214. { "time": 4.8, "x": 1, "y": 1, "curve": "stepped" },
  6215. { "time": 4.9667, "x": 1, "y": 1, "curve": "stepped" },
  6216. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  6217. { "time": 5.2, "x": 1, "y": 1, "curve": "stepped" },
  6218. { "time": 5.3667, "x": 1, "y": 1, "curve": "stepped" },
  6219. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  6220. { "time": 5.5667, "x": 1, "y": 1, "curve": "stepped" },
  6221. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  6222. { "time": 5.9, "x": 1, "y": 1, "curve": "stepped" },
  6223. { "time": 5.9667, "x": 1, "y": 1, "curve": "stepped" },
  6224. { "time": 6.1333, "x": 1, "y": 1 }
  6225. ]
  6226. },
  6227. "root": {
  6228. "rotate": [
  6229. { "time": 0, "angle": 0 }
  6230. ],
  6231. "translate": [
  6232. { "time": 0, "x": 0, "y": 0 }
  6233. ],
  6234. "scale": [
  6235. { "time": 0, "x": 0.65, "y": 0.65 }
  6236. ]
  6237. }
  6238. },
  6239. "deform": {
  6240. "default": {
  6241. "youjiao fan": {
  6242. "youjiao fan": [
  6243. {
  6244. "time": 0,
  6245. "offset": 54,
  6246. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6247. },
  6248. { "time": 0.3667 },
  6249. {
  6250. "time": 0.7667,
  6251. "offset": 54,
  6252. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6253. },
  6254. { "time": 1.1333 },
  6255. {
  6256. "time": 1.5333,
  6257. "offset": 54,
  6258. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6259. },
  6260. { "time": 1.9 },
  6261. {
  6262. "time": 2.3,
  6263. "offset": 54,
  6264. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6265. },
  6266. { "time": 2.6667 },
  6267. {
  6268. "time": 3.0667,
  6269. "offset": 54,
  6270. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6271. },
  6272. { "time": 3.4333 },
  6273. {
  6274. "time": 3.8333,
  6275. "offset": 54,
  6276. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6277. },
  6278. { "time": 4.2 },
  6279. {
  6280. "time": 4.6,
  6281. "offset": 54,
  6282. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6283. },
  6284. { "time": 4.9667 },
  6285. {
  6286. "time": 5.3667,
  6287. "offset": 54,
  6288. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6289. },
  6290. { "time": 5.7333 },
  6291. {
  6292. "time": 6.1333,
  6293. "offset": 54,
  6294. "vertices": [ -2.74106, -6.50092, 6.80379, -1.86517, -4.48947, -6.30236, 6.83603, -3.62447, -5.57119, -5.79103, 6.471, -4.76394 ]
  6295. }
  6296. ]
  6297. },
  6298. "zuojiao": {
  6299. "zuojiao": [
  6300. { "time": 0 },
  6301. {
  6302. "time": 0.2,
  6303. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6304. },
  6305. {
  6306. "time": 0.3667,
  6307. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6308. },
  6309. {
  6310. "time": 0.6,
  6311. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6312. },
  6313. { "time": 0.7667 },
  6314. {
  6315. "time": 0.9667,
  6316. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6317. },
  6318. {
  6319. "time": 1.1333,
  6320. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6321. },
  6322. {
  6323. "time": 1.3667,
  6324. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6325. },
  6326. { "time": 1.5333 },
  6327. {
  6328. "time": 1.7333,
  6329. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6330. },
  6331. {
  6332. "time": 1.9,
  6333. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6334. },
  6335. {
  6336. "time": 2.1333,
  6337. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6338. },
  6339. { "time": 2.3 },
  6340. {
  6341. "time": 2.5,
  6342. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6343. },
  6344. {
  6345. "time": 2.6667,
  6346. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6347. },
  6348. {
  6349. "time": 2.9,
  6350. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6351. },
  6352. { "time": 3.0667 },
  6353. {
  6354. "time": 3.2667,
  6355. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6356. },
  6357. {
  6358. "time": 3.4333,
  6359. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6360. },
  6361. {
  6362. "time": 3.6667,
  6363. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6364. },
  6365. { "time": 3.8333 },
  6366. {
  6367. "time": 4.0333,
  6368. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6369. },
  6370. {
  6371. "time": 4.2,
  6372. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6373. },
  6374. {
  6375. "time": 4.4333,
  6376. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6377. },
  6378. { "time": 4.6 },
  6379. {
  6380. "time": 4.8,
  6381. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6382. },
  6383. {
  6384. "time": 4.9667,
  6385. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6386. },
  6387. {
  6388. "time": 5.2,
  6389. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6390. },
  6391. { "time": 5.3667 },
  6392. {
  6393. "time": 5.5667,
  6394. "vertices": [ -4.1438, 1.94327, -4.19406, 1.83967, 2.0804, 4.08008, -3.1425, 2.26749, 2.44635, 3.00542, -2.66798, 3.02305, 3.17308, 2.48781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.37544, 0.90555, -1.04901, 1.88803, -1.99876, 2.11545 ]
  6395. },
  6396. {
  6397. "time": 5.7333,
  6398. "vertices": [ -7.00159, 1.07809, -7.6891, 3.37273, 3.81407, 7.48014, -5.76126, 4.15707, 4.48498, 5.50994, -4.89129, 5.54225, 5.81732, 4.56098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.02165, 1.66018, -1.92318, 3.46138, -3.66439, 3.87832 ]
  6399. },
  6400. {
  6401. "time": 5.9667,
  6402. "vertices": [ -2.41454, 2.04486, -3.20379, 1.4053, 1.58919, 3.11672, -2.40052, 1.73211, 1.86874, 2.29581, -2.03804, 2.30927, 2.42388, 1.90041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.34235, 0.69174, -0.80133, 1.44224, -1.52683, 1.61597 ]
  6403. },
  6404. { "time": 6.1333 }
  6405. ]
  6406. },
  6407. "zuoshou1": {
  6408. "zuoshou1": [
  6409. {
  6410. "time": 0,
  6411. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6412. },
  6413. {
  6414. "time": 0.3667,
  6415. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6416. },
  6417. {
  6418. "time": 0.7667,
  6419. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6420. },
  6421. {
  6422. "time": 1.1333,
  6423. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6424. },
  6425. {
  6426. "time": 1.5333,
  6427. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6428. },
  6429. {
  6430. "time": 1.9,
  6431. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6432. },
  6433. {
  6434. "time": 2.3,
  6435. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6436. },
  6437. {
  6438. "time": 2.6667,
  6439. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6440. },
  6441. {
  6442. "time": 3.0667,
  6443. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6444. },
  6445. {
  6446. "time": 3.4333,
  6447. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6448. },
  6449. {
  6450. "time": 3.8333,
  6451. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6452. },
  6453. {
  6454. "time": 4.2,
  6455. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6456. },
  6457. {
  6458. "time": 4.6,
  6459. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6460. },
  6461. {
  6462. "time": 4.9667,
  6463. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6464. },
  6465. {
  6466. "time": 5.3667,
  6467. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6468. },
  6469. {
  6470. "time": 5.7333,
  6471. "vertices": [ -3.84348, 3.64565, 5.28797, -0.31503, -1.97855, 2.24273, 2.95778, -0.44227, -2.28104, 1.39193, 2.64144, 0.40352 ]
  6472. },
  6473. {
  6474. "time": 6.1333,
  6475. "vertices": [ -1.9949, 3.50209, 3.9503, -0.80012, -0.90077, 2.03469, 2.12532, -0.65942 ]
  6476. }
  6477. ]
  6478. }
  6479. }
  6480. }
  6481. }
  6482. }
  6483. }