123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016 |
- {
- "skeleton": { "hash": "oVaC38VwsjbCTQx18YKFrUyn1SA", "spine": "3.6.53", "width": 101, "height": 210, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -0.7, "y": 62.98 },
- { "name": "bone2", "parent": "bone", "length": 15.29, "rotation": 93.96, "x": 0.51, "y": -0.08 },
- { "name": "bone3", "parent": "bone2", "length": 28.54, "rotation": -4.57, "x": 15.15, "y": 0.16 },
- { "name": "bone4", "parent": "bone3", "length": 9.37, "rotation": -1.24, "x": 28.69, "y": -0.15 },
- { "name": "bone5", "parent": "bone3", "length": 22.29, "rotation": 154.91, "x": 27.23, "y": 9.35, "color": "f1f662ff" },
- { "name": "bone6", "parent": "bone5", "length": 18.78, "rotation": -0.04, "x": 22.29, "color": "f1f662ff" },
- { "name": "bone7", "parent": "bone6", "length": 10, "rotation": 2.54, "x": 18.78, "color": "f1f662ff" },
- { "name": "bone8", "parent": "bone3", "length": 20.87, "rotation": -153.2, "x": 27.63, "y": -13.45, "color": "1d21d9ff" },
- { "name": "bone9", "parent": "bone8", "length": 18.28, "rotation": 4.61, "x": 20.87, "color": "1d21d9ff" },
- { "name": "bone10", "parent": "bone9", "length": 15.94, "rotation": -3.75, "x": 18.28, "color": "1d21d9ff" },
- { "name": "bone11", "parent": "bone", "length": 10.74, "rotation": -86.78, "x": 0.21, "y": -0.47 },
- { "name": "bone12", "parent": "bone", "length": 27.1, "rotation": -94.15, "x": -8.34, "y": -1.41, "color": "3ca844ff" },
- { "name": "bone13", "parent": "bone12", "length": 23.21, "rotation": -1.45, "x": 27.1, "color": "3ca844ff" },
- { "name": "bone14", "parent": "bone13", "length": 15.34, "rotation": -78.19, "x": 27.23, "y": -0.21, "color": "3ca844ff" },
- { "name": "bone15", "parent": "bone", "length": 27.09, "rotation": -86.16, "x": 12.84, "y": -1.18, "color": "9704c1ff" },
- { "name": "bone16", "parent": "bone15", "length": 26.78, "rotation": -0.28, "x": 27.09, "color": "9704c1ff" },
- { "name": "bone17", "parent": "bone16", "length": 15.31, "rotation": -81.03, "x": 26.78, "color": "9704c1ff" },
- { "name": "bone18", "parent": "bone3", "length": 11.17, "rotation": 167.32, "x": 27.79, "y": 8.8, "color": "1998c9ff" },
- { "name": "bone19", "parent": "bone18", "length": 11.35, "rotation": 3.32, "x": 11.17, "color": "1998c9ff" },
- { "name": "bone20", "parent": "bone19", "length": 12.39, "rotation": 0.85, "x": 11.35, "color": "1998c9ff" },
- { "name": "bone21", "parent": "bone20", "length": 8.97, "rotation": 2.35, "x": 12.39, "color": "1998c9ff" },
- { "name": "bone22", "parent": "bone21", "length": 5.98, "rotation": -3.41, "x": 8.97, "color": "1998c9ff" },
- { "name": "bone23", "parent": "bone3", "length": 14.26, "rotation": -173.92, "x": 26.04, "y": -10.85, "color": "f9b068ff" },
- { "name": "bone24", "parent": "bone23", "length": 12.47, "rotation": 1.48, "x": 14.26, "color": "f9b068ff" },
- { "name": "bone25", "parent": "bone24", "length": 9.39, "rotation": 4.18, "x": 12.47, "color": "f9b068ff" },
- { "name": "bone26", "parent": "bone25", "length": 8.53, "rotation": 11.8, "x": 9.39, "color": "f9b068ff" },
- { "name": "bone27", "parent": "bone4", "length": 54.57, "rotation": 6.93, "x": 4.1, "y": 0.03 },
- { "name": "bone28", "parent": "bone27", "length": 9.53, "rotation": 178.55, "x": 35.92, "y": 25.31, "color": "9b6eeaff" },
- { "name": "bone29", "parent": "bone28", "length": 7.44, "rotation": 2.19, "x": 9.83, "y": -0.02, "color": "9b6eeaff" },
- { "name": "bone30", "parent": "bone29", "length": 6.06, "rotation": -1.54, "x": 7.44, "color": "9b6eeaff" },
- { "name": "bone31", "parent": "bone30", "length": 5.44, "rotation": -1.11, "x": 6.06, "color": "9b6eeaff" },
- { "name": "bone32", "parent": "bone31", "length": 6.67, "rotation": 2.01, "x": 5.44, "color": "9b6eeaff" },
- { "name": "bone33", "parent": "bone27", "length": 12.31, "rotation": -170.87, "x": 56.2, "y": -24.55, "color": "f66363ff" },
- { "name": "bone34", "parent": "bone33", "length": 11.51, "rotation": -9.69, "x": 12.31, "color": "f66363ff" },
- { "name": "bone35", "parent": "bone34", "length": 14.4, "rotation": 0.3, "x": 11.51, "color": "f66363ff" },
- { "name": "bone36", "parent": "bone35", "length": 9.52, "rotation": -3, "x": 14.4, "color": "f66363ff" },
- { "name": "bone37", "parent": "bone36", "length": 8.05, "rotation": -8.28, "x": 9.52, "color": "f66363ff" },
- { "name": "bone38", "parent": "bone37", "length": 6.39, "rotation": -0.33, "x": 8.05, "color": "f66363ff" },
- { "name": "bone39", "parent": "bone27", "length": 11.94, "rotation": -60.38, "x": 79.57, "y": -30.12 },
- { "name": "bone40", "parent": "bone27", "length": 6.28, "rotation": 139.7, "x": 65.19, "y": 11.03, "color": "75dc93ff" },
- { "name": "bone41", "parent": "bone40", "length": 7.01, "rotation": -1.9, "x": 6.28, "color": "75dc93ff" },
- { "name": "bone42", "parent": "bone41", "length": 8.51, "rotation": 9.64, "x": 7.01, "color": "75dc93ff" },
- { "name": "bone43", "parent": "bone42", "length": 8.19, "rotation": 4.69, "x": 8.51, "color": "75dc93ff" },
- { "name": "bone44", "parent": "bone43", "length": 8.9, "rotation": 8.04, "x": 8.19, "color": "75dc93ff" },
- { "name": "bone45", "parent": "bone27", "length": 5.78, "rotation": -114.94, "x": 62.25, "y": -3.26, "color": "938bf9ff" },
- { "name": "bone46", "parent": "bone45", "length": 8.44, "rotation": -24.42, "x": 5.78, "color": "938bf9ff" },
- { "name": "bone47", "parent": "bone46", "length": 8.08, "rotation": -12.93, "x": 8.44, "color": "938bf9ff" },
- { "name": "bone48", "parent": "bone47", "length": 8.07, "rotation": -15.38, "x": 8.08, "color": "938bf9ff" },
- { "name": "bone49", "parent": "bone27", "length": 12.31, "rotation": -5.08, "x": 19.54, "y": -10.96 },
- { "name": "bone50", "parent": "bone27", "length": 13, "rotation": -5.08, "x": 21.97, "y": 20.24 },
- { "name": "bone51", "parent": "bone27", "x": 36.56, "y": 4.69 },
- { "name": "bone52", "parent": "bone27", "x": 25.93, "y": 5.67 },
- { "name": "bone53", "parent": "bone27", "x": 8.34, "y": 3.75 },
- { "name": "bone54", "parent": "bone7", "length": 12.91, "rotation": -98.07, "x": 6.96, "y": -0.72, "color": "f1f662ff" },
- { "name": "bone55", "parent": "bone3", "length": 7.91, "rotation": 175.17, "x": 31.89, "y": 2.85, "color": "ea057eff" },
- { "name": "bone56", "parent": "bone55", "length": 5.67, "rotation": -2.15, "x": 7.91, "color": "ea057eff" },
- { "name": "bone57", "parent": "bone56", "length": 6.15, "rotation": 2.93, "x": 5.67, "color": "ea057eff" },
- { "name": "bone58", "parent": "bone57", "length": 14.08, "rotation": -1.45, "x": 6.15, "color": "ea057eff" },
- { "name": "bone59", "parent": "bone49", "x": 7.35, "y": 4.16 },
- { "name": "bone60", "parent": "bone50", "x": 5.97, "y": 1.61 },
- { "name": "bone61", "parent": "bone3", "length": 22.47, "rotation": -139.35, "x": 27.44, "y": -13.49, "color": "edf5b5ff" },
- { "name": "bone62", "parent": "bone61", "length": 19.45, "rotation": -118.1, "x": 22.61, "y": -0.12, "color": "edf5b5ff" },
- { "name": "bone63", "parent": "bone62", "length": 14.13, "rotation": -7.49, "x": 22.71, "y": -0.43, "color": "edf5b5ff" },
- { "name": "bone64", "parent": "bone3", "length": 23.32, "rotation": 128.92, "x": 27.66, "y": 8.59, "color": "d53636ff" },
- { "name": "bone65", "parent": "bone64", "length": 10.2, "rotation": 132.4, "x": 23.21, "y": -0.14, "color": "d53636ff" },
- { "name": "bone66", "parent": "bone65", "length": 7.34, "rotation": 5, "x": 10.02, "y": -0.03, "color": "d53636ff" },
- { "name": "bone67", "parent": "bone66", "length": 19.58, "rotation": 4.29, "x": 5.66, "y": 0.42 },
- { "name": "bone68", "parent": "bone59", "x": 0.97, "y": 1.98 },
- { "name": "bone69", "parent": "bone60", "x": 0.9, "y": 2.74 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone5", "attachment": "zuoshou" },
- { "name": "yueguangbaohe", "bone": "bone54", "attachment": "yueguangbaohe" },
- { "name": "zuotui", "bone": "bone12", "attachment": "zuotui" },
- { "name": "kudang", "bone": "bone11", "attachment": "kudang" },
- { "name": "youtui", "bone": "bone15", "attachment": "youtui" },
- { "name": "teshuzuoshou2", "bone": "bone64", "attachment": "teshuzuoshou2" },
- { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
- { "name": "guashi", "bone": "bone55", "attachment": "guashi" },
- { "name": "youwaitao", "bone": "bone23", "attachment": "youwaitao" },
- { "name": "zuowaitao", "bone": "bone18", "attachment": "zuowaitao" },
- { "name": "youshou", "bone": "bone8", "attachment": "youshou" },
- { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
- { "name": "toufa7", "bone": "bone27", "attachment": "toufa7" },
- { "name": "toufa6", "bone": "bone28", "attachment": "toufa6" },
- { "name": "lian", "bone": "bone27", "attachment": "lian" },
- { "name": "zuiba", "bone": "bone53", "attachment": "zuiba" },
- { "name": "zuoyan", "bone": "bone50", "attachment": "zuoyan" },
- { "name": "youyan", "bone": "bone49", "attachment": "youyan" },
- { "name": "meimao", "bone": "bone51", "attachment": "meimao" },
- { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
- { "name": "toufa4", "bone": "bone27", "attachment": "toufa4" },
- { "name": "erduo", "bone": "bone27", "attachment": "erduo" },
- { "name": "toufa3", "bone": "bone33", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone40", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone45", "attachment": "toufa1" },
- { "name": "biyan", "bone": "bone52" },
- { "name": "youyantongkong", "bone": "bone60", "attachment": "youyantongkong" },
- { "name": "youyangaoguang", "bone": "bone69", "attachment": "youyangaoguang" },
- { "name": "zuoyantongkong", "bone": "bone59", "attachment": "zuoyantongkong" },
- { "name": "zuoyangaoguang", "bone": "bone68", "attachment": "zuoyangaoguang" },
- { "name": "teshuyoushou3", "bone": "bone61", "attachment": "teshuyoushou3" },
- { "name": "teshuzuoshou1", "bone": "bone65", "attachment": "teshuzuoshou1" },
- { "name": "teshuzuoshou3", "bone": "bone66", "attachment": "teshuzuoshou3" },
- { "name": "teshudongzuoyueguangbaohe", "bone": "bone67", "attachment": "teshudongzuoyueguangbaohe" },
- { "name": "teshuyoushou2", "bone": "bone62", "attachment": "teshuyoushou2" },
- { "name": "teshuyoushou1", "bone": "bone63", "attachment": "teshuyoushou1" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": -2.39, "y": -3.23, "rotation": -95.08, "width": 49, "height": 7 }
- },
- "bozi": {
- "bozi": {
- "type": "mesh",
- "uvs": [ 1, 0.58892, 0.55908, 1, 0.13309, 1, 0.17509, 0, 1, 0 ],
- "triangles": [ 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
- "vertices": [ 0.09, -10.28, -9.64, -1.77, -9.92, 6.75, 13.1, 6.65, 13.63, -9.84 ],
- "hull": 5,
- "edges": [ 6, 8, 4, 6, 2, 4, 0, 8, 2, 0 ],
- "width": 20,
- "height": 23
- }
- },
- "erduo": {
- "erduo": { "x": 21.37, "y": -38.72, "rotation": -95.08, "width": 17, "height": 21 }
- },
- "guashi": {
- "guashi": {
- "type": "mesh",
- "uvs": [ 1, 0.16474, 0.99999, 0.23815, 0.99999, 0.29843, 0.99999, 0.36617, 0.99999, 0.42664, 1, 0.4814, 1, 0.54247, 1, 1, 0.33764, 1, 0, 1, 0, 0.54474, 0, 0.48819, 1.0E-5, 0.42724, 0.00437, 0.37129, 1.0E-5, 0.30057, 1.0E-5, 0.23565, 0, 0.167, 0, 0, 0.39306, 0, 1, 0, 0.3751, 0.29559, 0.3723, 0.42329, 0.36285, 0.54512, 0.36612, 0.48616, 0.37415, 0.36959, 0.38348, 0.1729, 0.382, 0.2366 ],
- "triangles": [ 8, 22, 7, 22, 8, 10, 8, 9, 10, 22, 6, 7, 22, 23, 6, 23, 22, 11, 22, 10, 11, 23, 5, 6, 11, 12, 23, 5, 21, 4, 5, 23, 21, 23, 12, 21, 12, 13, 21, 21, 24, 4, 4, 24, 3, 21, 13, 24, 24, 13, 20, 24, 20, 3, 20, 13, 14, 3, 20, 2, 14, 15, 20, 20, 26, 2, 26, 1, 2, 20, 15, 26, 26, 25, 1, 1, 25, 0, 25, 26, 16, 26, 15, 16, 25, 18, 0, 18, 25, 17, 25, 16, 17, 18, 19, 0 ],
- "vertices": [ 4, 55, 1.93, 14.99, 0.82085, 56, -6.54, 14.76, 0.08444, 57, -11.45, 15.36, 0.09308, 58, -17.98, 14.91, 0.00163, 4, 55, 5, 15.29, 0.67906, 56, -3.49, 15.17, 0.14171, 57, -8.38, 15.61, 0.16759, 58, -14.91, 15.24, 0.01164, 4, 55, 7.52, 15.53, 0.53873, 56, -0.98, 15.5, 0.1818, 57, -5.85, 15.82, 0.24676, 58, -12.39, 15.51, 0.03272, 4, 55, 10.35, 15.8, 0.38053, 56, 1.84, 15.88, 0.19946, 57, -3.02, 16.05, 0.34084, 58, -9.56, 15.81, 0.07917, 4, 55, 12.88, 16.04, 0.25705, 56, 4.36, 16.21, 0.18616, 57, -0.49, 16.26, 0.4103, 58, -7.04, 16.08, 0.14649, 4, 55, 15.17, 16.25, 0.16753, 56, 6.64, 16.52, 0.15665, 57, 1.81, 16.44, 0.4465, 58, -4.75, 16.33, 0.22933, 4, 55, 17.72, 16.5, 0.0962, 56, 9.18, 16.85, 0.11474, 57, 4.36, 16.65, 0.44486, 58, -2.2, 16.6, 0.3442, 2, 57, 23.52, 18.22, 0.09277, 58, 16.9, 18.65, 0.90723, 2, 57, 24.81, 2.37, 0.00342, 58, 18.6, 2.84, 0.99658, 1, 58, 19.46, -5.21, 1, 4, 55, 20.09, -7.39, 1.2E-4, 56, 12.45, -6.92, 0.01366, 57, 6.41, -7.26, 0.54366, 58, 0.45, -7.25, 0.44255, 4, 55, 17.73, -7.61, 0.00726, 56, 10.09, -7.24, 0.07206, 57, 4.04, -7.45, 0.72139, 58, -1.91, -7.5, 0.19928, 4, 55, 15.18, -7.85, 0.04468, 56, 7.56, -7.57, 0.20971, 57, 1.49, -7.66, 0.68958, 58, -4.46, -7.78, 0.05604, 4, 55, 12.83, -7.97, 0.13377, 56, 5.21, -7.78, 0.35286, 57, -0.86, -7.75, 0.50593, 58, -6.81, -7.92, 0.00743, 3, 55, 9.88, -8.36, 0.35176, 56, 2.28, -8.28, 0.39983, 57, -3.81, -8.09, 0.24842, 3, 55, 7.17, -8.62, 0.60409, 56, -0.42, -8.64, 0.29477, 57, -6.53, -8.32, 0.10114, 3, 55, 4.3, -8.89, 0.82318, 56, -3.28, -9.02, 0.14819, 57, -9.4, -8.55, 0.02863, 2, 55, -2.69, -9.55, 0.99361, 56, -10.23, -9.95, 0.00639, 1, 55, -3.58, -0.16, 1, 3, 55, -4.96, 14.34, 0.95512, 56, -13.4, 13.84, 0.01813, 57, -18.34, 14.8, 0.02675, 3, 55, 8.82, 0.58, 0.00574, 56, 0.89, 0.62, 0.99151, 57, -4.75, 0.86, 0.00276, 3, 56, 6.21, 1.26, 0.16876, 57, 0.6, 1.23, 0.83098, 58, -5.57, 1.09, 2.6E-4, 2, 57, 5.72, 1.42, 0.74842, 58, -0.46, 1.41, 0.25158, 4, 55, 16.81, 1.13, 2.1E-4, 56, 8.85, 1.46, 0.00293, 57, 3.24, 1.3, 0.97995, 58, -2.93, 1.22, 0.01692, 2, 56, 3.97, 1.01, 0.93783, 57, -1.65, 1.09, 0.06217, 2, 55, 3.67, 0.3, 0.99973, 57, -9.9, 0.64, 2.7E-4, 3, 55, 6.34, 0.51, 0.99822, 56, -1.59, 0.46, 6.1E-4, 57, -7.23, 0.83, 0.00117 ],
- "hull": 20,
- "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 28, 40, 40, 4, 24, 42, 42, 8, 18, 20, 16, 44, 20, 44, 12, 14, 44, 12, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 8, 10, 10, 12, 46, 10, 24, 26, 26, 28, 40, 48, 48, 42, 26, 48, 4, 6, 6, 8, 48, 6, 32, 34, 36, 50, 32, 50, 0, 38, 50, 0, 28, 30, 30, 32, 40, 52, 52, 50, 30, 52, 0, 2, 2, 4, 52, 2 ],
- "width": 24,
- "height": 42
- }
- },
- "kudang": {
- "kudang": {
- "type": "mesh",
- "uvs": [ 1, 0.41067, 0.83133, 1, 0.33723, 1, 0, 0.68161, 0, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
- "vertices": [ 5.65, 20.54, 15.28, 13.41, 14.2, -5.83, 8.06, -18.66, -3.51, -18.01, -1.32, 20.93 ],
- "hull": 6,
- "edges": [ 8, 10, 6, 8, 4, 6, 2, 4, 0, 10, 2, 0 ],
- "width": 39,
- "height": 17
- }
- },
- "lian": {
- "lian": { "x": 42.48, "y": -4.46, "rotation": -95.08, "width": 75, "height": 91 }
- },
- "meimao": {
- "meimao": { "x": 1.07, "y": -1.69, "rotation": -95.08, "width": 57, "height": 8 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 0.86872, 0.0411, 0.95943, 0.57176, 0.97483, 0.66184, 0.98526, 0.72286, 1, 0.80906, 1, 1, 0.47123, 1, 0, 1, 0, 0.82328, 1.0E-5, 0.74228, 0, 0.6567, 0, 0.57723, 0.17548, 0.04538, 0.313, 0, 0.45616, 0, 0.8617, 0, 0.45695, 0.05289, 0.46492, 0.58167, 0.46607, 0.65811, 0.46847, 0.81729, 0.46725, 0.73621 ],
- "triangles": [ 5, 19, 4, 7, 19, 6, 5, 6, 19, 7, 8, 19, 19, 9, 20, 19, 8, 9, 19, 3, 4, 19, 20, 3, 9, 18, 20, 9, 10, 18, 20, 2, 3, 20, 18, 2, 18, 1, 2, 10, 17, 18, 18, 17, 1, 10, 11, 17, 17, 12, 16, 17, 0, 1, 17, 16, 0, 17, 11, 12, 16, 15, 0, 12, 13, 16, 13, 14, 16, 16, 14, 15 ],
- "vertices": [ 2, 3, 30.01, -17.77, 0.95949, 2, 43.65, -19.94, 0.04051, 2, 3, 1.93, -21.97, 0.15339, 2, 15.32, -21.89, 0.84661, 2, 3, -2.84, -22.68, 0.05151, 2, 10.51, -22.22, 0.94849, 2, 3, -6.07, -23.16, 0.01711, 2, 7.25, -22.44, 0.98289, 2, 3, -10.63, -23.84, 0.00123, 2, 2.65, -22.76, 0.99877, 1, 2, -7.45, -22.06, 1, 2, 3, -20.99, -1.21, 0.00686, 2, -5.87, 0.62, 0.99314, 2, 3, -21.21, 19.05, 0.31731, 2, -4.47, 20.84, 0.68269, 2, 3, -11.84, 19.15, 0.48125, 2, 4.87, 20.19, 0.51875, 2, 3, -7.55, 19.19, 0.63731, 2, 9.15, 19.89, 0.36269, 2, 3, -3.01, 19.24, 0.80422, 2, 13.68, 19.58, 0.19578, 2, 3, 1.2, 19.28, 0.91467, 2, 17.88, 19.29, 0.08533, 1, 3, 29.47, 12.04, 1, 1, 3, 31.93, 6.15, 1, 2, 3, 32, -0.01, 0.99999, 2, 47.04, -2.39, 1.0E-5, 2, 3, 32.18, -17.44, 0.96495, 2, 45.84, -19.79, 0.03505, 2, 3, 29.2, -0.07, 0.99997, 2, 44.25, -2.23, 4.0E-5, 2, 3, 1.18, -0.71, 0.51941, 2, 16.26, -0.64, 0.48059, 1, 2, 12.22, -0.41, 1, 2, 3, -11.31, -0.99, 7.2E-4, 2, 3.8, 0.07, 0.99928, 1, 2, 8.09, -0.17, 1 ],
- "hull": 16,
- "edges": [ 10, 8, 22, 24, 24, 26, 10, 12, 12, 14, 26, 28, 28, 30, 32, 28, 24, 32, 0, 30, 32, 0, 34, 32, 22, 34, 0, 2, 34, 2, 20, 22, 36, 34, 20, 36, 2, 4, 36, 4, 12, 38, 8, 38, 14, 16, 38, 16, 4, 6, 6, 8, 36, 40, 40, 38, 6, 40, 16, 18, 18, 20, 40, 18 ],
- "width": 43,
- "height": 53
- }
- },
- "teshudongzuoyueguangbaohe": {
- "teshudongzuoyueguangbaohe": { "x": 12.55, "y": -1.39, "width": 35, "height": 12 }
- },
- "teshuyoushou1": {
- "teshuyoushou1": { "x": 6.83, "y": -1.4, "rotation": 175.54, "width": 15, "height": 10 }
- },
- "teshuyoushou2": {
- "teshuyoushou2": { "x": 12.98, "y": 2.23, "rotation": 168.06, "width": 30, "height": 23 }
- },
- "teshuyoushou3": {
- "teshuyoushou3": { "x": 14.86, "y": -2.17, "rotation": 49.96, "width": 24, "height": 31 }
- },
- "teshuzuoshou1": {
- "teshuzuoshou1": { "x": 8.21, "y": -1.12, "rotation": 9.29, "width": 23, "height": 24 }
- },
- "teshuzuoshou2": {
- "teshuzuoshou2": { "x": 13.92, "y": 2.13, "rotation": 141.69, "width": 27, "height": 26 }
- },
- "teshuzuoshou3": {
- "teshuzuoshou3": { "x": 6.34, "y": -0.92, "rotation": 4.29, "width": 18, "height": 14 }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.51058, 0.06492, 0.67159, 0.13493, 0.74017, 0.19505, 0.87231, 0.33789, 0.9682, 0.55926, 0.99999, 0.73519, 1, 1, 0.8042, 1, 0.4882, 1, 0.46913, 0.94536, 0.44097, 0.86473, 0.39792, 0.75974, 0.35162, 0.6533, 0.29353, 0.58259, 0.21078, 0.51589, 0.12424, 0.44614, 0, 0.37192, 0, 0.1038, 0, 0, 0.14681, 0, 0.36124, 0, 0.28224, 0.18999, 0.50231, 0.36235, 0.65727, 0.55001, 0.09983, 0.13429, 0.58271, 0.43677, 0.38533, 0.27073, 0.71682, 0.69903, 0.76158, 0.85318 ],
- "triangles": [ 6, 28, 5, 8, 28, 7, 6, 7, 28, 8, 9, 28, 9, 10, 28, 10, 27, 28, 10, 11, 27, 28, 27, 5, 11, 23, 27, 27, 4, 5, 27, 23, 4, 11, 12, 23, 12, 25, 23, 25, 13, 22, 25, 12, 13, 23, 3, 4, 23, 25, 3, 25, 2, 3, 25, 22, 2, 22, 13, 26, 13, 14, 26, 14, 15, 26, 15, 21, 26, 22, 1, 2, 22, 0, 1, 22, 26, 0, 26, 21, 0, 21, 20, 0, 16, 24, 15, 15, 24, 21, 16, 17, 24, 24, 19, 21, 21, 19, 20, 19, 24, 18, 24, 17, 18 ],
- "vertices": [ 3, 45, 10.44, 5.66, 0.1014, 46, 1.9, 7.08, 0.8745, 47, -7.95, 5.43, 0.0241, 3, 45, 15.46, 5.01, 2.3E-4, 46, 6.74, 8.57, 0.73175, 47, -3.57, 7.97, 0.26802, 3, 46, 9.5, 8.49, 0.50764, 47, -0.86, 8.51, 0.48904, 48, -10.88, 5.84, 0.00332, 3, 46, 15.44, 7.7, 0.08403, 47, 5.11, 9.07, 0.76105, 48, -5.28, 7.95, 0.15492, 2, 47, 12.7, 7.37, 0.18288, 48, 2.5, 8.33, 0.81712, 2, 47, 18.06, 4.97, 0.00276, 48, 8.3, 7.44, 0.99724, 1, 48, 16.64, 4.83, 1, 1, 48, 15, -0.41, 1, 2, 47, 17.65, -11.81, 0.00188, 48, 12.35, -8.85, 0.99812, 2, 47, 15.84, -11.28, 0.00922, 48, 10.47, -8.82, 0.99078, 3, 46, 18.93, -13.18, 7.2E-4, 47, 13.18, -10.5, 0.05142, 48, 7.7, -8.77, 0.94785, 3, 46, 15.65, -11.54, 0.0178, 47, 9.61, -9.64, 0.20624, 48, 4.03, -8.89, 0.77597, 4, 45, 12.85, -14.12, 9.1E-4, 46, 12.27, -9.93, 0.11216, 47, 5.96, -8.82, 0.46382, 48, 0.29, -9.07, 0.42311, 4, 45, 10.52, -12.48, 0.01595, 46, 9.48, -9.4, 0.29721, 47, 3.12, -8.93, 0.51591, 48, -2.42, -9.93, 0.17092, 4, 45, 7.6, -11.19, 0.08653, 46, 6.28, -9.44, 0.52374, 47, 0.01, -9.68, 0.34627, 48, -5.22, -11.48, 0.04346, 4, 45, 4.54, -9.85, 0.27121, 46, 2.94, -9.48, 0.57454, 47, -3.24, -10.47, 0.14898, 48, -8.14, -13.1, 0.00527, 3, 45, 0.43, -8.73, 0.54122, 46, -1.26, -10.16, 0.41672, 47, -7.18, -12.07, 0.04205, 2, 45, -2.57, -0.41, 0.99605, 46, -7.44, -3.82, 0.00395, 1, 45, -3.74, 2.82, 1, 2, 45, 0.13, 4.21, 0.99823, 46, -6.89, 1.5, 0.00177, 2, 45, 5.78, 6.25, 0.58517, 46, -2.59, 5.69, 0.41483, 3, 45, 5.83, -0.4, 0.25974, 46, 0.21, -0.34, 0.73995, 47, -7.95, -2.17, 3.1E-4, 3, 46, 8.59, -0.11, 0.29921, 47, 0.17, -0.08, 0.70075, 48, -7.61, -2.17, 5.0E-5, 2, 47, 7.73, 0.22, 0.89393, 48, -0.4, 0.11, 0.10607, 3, 45, 0.4, -0.4, 0.99308, 46, -4.73, -2.59, 0.00686, 47, -12.26, -5.47, 6.0E-5, 1, 47, 3.46, 0.49, 1, 3, 45, 9.44, -1.92, 5.1E-4, 46, 4.13, -0.24, 0.99782, 47, -4.14, -1.19, 0.00167, 1, 48, 4.79, 0.23, 1, 1, 48, 10.02, -0.09, 1 ],
- "hull": 21,
- "edges": [ 6, 8, 12, 10, 8, 10, 32, 30, 32, 34, 34, 36, 12, 14, 14, 16, 30, 42, 42, 40, 34, 48, 48, 42, 32, 48, 36, 38, 38, 40, 48, 38, 26, 44, 44, 2, 22, 46, 46, 6, 22, 24, 24, 26, 44, 50, 50, 46, 24, 50, 2, 4, 4, 6, 50, 4, 26, 28, 28, 30, 42, 52, 52, 44, 28, 52, 2, 0, 0, 40, 52, 0, 20, 22, 54, 46, 20, 54, 54, 8, 16, 18, 18, 20, 14, 56, 56, 54, 18, 56, 56, 10 ],
- "width": 28,
- "height": 33
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 1, 0.29947, 0.91403, 0.38269, 0.84544, 0.44907, 0.78141, 0.5295, 0.73159, 0.59207, 0.69142, 0.67466, 0.65239, 0.75487, 0.62861, 0.83898, 0.61215, 0.89723, 0.58309, 1, 0.22174, 1, 0, 0.87079, 0, 0.76194, 0, 0.68294, 0, 0.58639, 0, 0.47403, 0, 0.31047, 0.07876, 0.23682, 0.16234, 0.15867, 0.38262, 0.06627, 0.61032, 0, 1, 0, 0.65487, 0.17187, 0.55834, 0.30387, 0.44697, 0.49087, 0.36777, 0.64487, 0.78177, 0.10868, 0.29708, 0.81679, 0.50332, 0.39626, 0.40442, 0.57361, 0.32379, 0.75184 ],
- "triangles": [ 25, 14, 15, 30, 13, 14, 25, 30, 14, 12, 13, 30, 27, 12, 30, 7, 25, 6, 30, 25, 7, 11, 12, 27, 8, 30, 7, 27, 30, 8, 10, 11, 27, 9, 27, 8, 10, 27, 9, 24, 15, 16, 17, 24, 16, 29, 15, 24, 29, 25, 15, 5, 24, 4, 29, 24, 5, 6, 29, 5, 25, 29, 6, 28, 18, 23, 17, 18, 28, 28, 24, 17, 3, 23, 2, 28, 23, 3, 4, 28, 3, 24, 28, 4, 23, 19, 22, 18, 19, 23, 2, 23, 22, 26, 20, 21, 22, 20, 26, 19, 20, 22, 26, 21, 0, 1, 26, 0, 22, 26, 1, 1, 2, 22 ],
- "vertices": [ 4, 40, 2.62, 14.01, 0.68871, 41, -4.13, 13.88, 0.16293, 42, -8.65, 15.55, 0.14834, 43, -15.83, 16.9, 2.0E-5, 4, 40, 7.66, 13.36, 0.44209, 41, 0.93, 13.4, 0.2562, 42, -3.74, 14.23, 0.29339, 43, -11.05, 15.18, 0.00832, 5, 40, 11.68, 12.84, 0.20552, 41, 4.97, 13.02, 0.25985, 42, 0.17, 13.17, 0.48514, 43, -7.23, 13.81, 0.04948, 44, -13.34, 15.83, 1.0E-5, 5, 40, 16.12, 12.84, 0.05579, 41, 9.4, 13.16, 0.14675, 42, 4.57, 12.57, 0.60749, 43, -2.9, 12.85, 0.18144, 44, -9.19, 14.28, 0.00854, 5, 40, 19.57, 12.83, 0.0121, 41, 12.85, 13.27, 0.06031, 42, 7.98, 12.1, 0.51787, 43, 0.46, 12.1, 0.35578, 44, -5.96, 13.06, 0.05393, 5, 40, 23.53, 13.66, 3.2E-4, 41, 16.78, 14.23, 0.01193, 42, 12.02, 12.39, 0.28837, 43, 4.51, 12.06, 0.48568, 44, -1.95, 12.46, 0.21371, 4, 41, 20.6, 15.16, 7.4E-4, 42, 15.94, 12.67, 0.11505, 43, 8.45, 12.02, 0.39537, 44, 1.94, 11.87, 0.48884, 3, 42, 19.74, 13.57, 0.03266, 43, 12.3, 12.61, 0.21155, 44, 5.84, 11.91, 0.75579, 3, 42, 22.37, 14.2, 0.01057, 43, 14.98, 13.02, 0.11763, 44, 8.54, 11.94, 0.8718, 3, 42, 27.01, 15.3, 1.2E-4, 43, 19.69, 13.74, 0.04698, 44, 13.31, 11.99, 0.9529, 1, 44, 16.99, -1.99, 1, 3, 42, 32.61, -8.08, 6.6E-4, 43, 23.36, -10.02, 0.03146, 44, 13.62, -12.04, 0.96788, 3, 42, 28.27, -10.34, 0.01349, 43, 18.84, -11.92, 0.10874, 44, 8.88, -13.29, 0.87777, 3, 42, 25.11, -11.98, 0.04517, 43, 15.57, -13.29, 0.22465, 44, 5.45, -14.2, 0.73018, 4, 41, 30.3, -10.22, 5.5E-4, 42, 21.26, -13.98, 0.12593, 43, 11.56, -14.98, 0.38417, 44, 1.24, -15.3, 0.48935, 4, 41, 26.27, -13.27, 0.00985, 42, 16.77, -16.31, 0.27363, 43, 6.9, -16.93, 0.47764, 44, -3.65, -16.59, 0.23887, 4, 41, 20.4, -17.71, 0.04856, 42, 10.24, -19.71, 0.45895, 43, 0.11, -19.78, 0.42522, 44, -10.76, -18.46, 0.06727, 5, 40, 21.57, -17.72, 8.6E-4, 41, 15.86, -17.2, 0.09575, 42, 5.85, -18.44, 0.52881, 43, -4.16, -18.16, 0.34663, 44, -14.77, -16.26, 0.02796, 5, 40, 16.76, -17.02, 0.01267, 41, 11.04, -16.66, 0.18777, 42, 1.18, -17.1, 0.56398, 43, -8.7, -16.44, 0.23126, 44, -19.02, -13.92, 0.00432, 4, 40, 8.29, -12.22, 0.20814, 41, 2.41, -12.14, 0.45489, 42, -6.57, -11.2, 0.29819, 43, -15.94, -9.93, 0.03878, 3, 40, 0.6, -6.49, 0.87957, 41, -5.47, -6.68, 0.11196, 42, -13.42, -4.5, 0.00847, 2, 40, -8.39, 6.24, 0.99994, 42, -20.61, 9.33, 6.0E-5, 2, 40, 5.89, -0.58, 0.84712, 41, -0.38, -0.59, 0.15288, 4, 40, 12.97, -0.31, 1.0E-4, 41, 6.69, -0.09, 0.75385, 42, -0.33, -0.03, 0.24599, 43, -8.81, 0.69, 6.0E-5, 2, 43, 0.67, -0.16, 1, 44, -7.46, 0.9, 0, 2, 43, 8.29, -0.39, 0.39078, 44, 0.05, -0.4, 0.60922, 2, 40, 0.64, 1.93, 0.99503, 42, -12.24, 3.85, 0.00497, 1, 44, 8.25, -1.17, 1, 2, 42, 4.38, -0.07, 0.99948, 43, -4.12, 0.27, 5.2E-4, 1, 43, 4.77, -0.28, 1, 1, 44, 5.15, -0.88, 1 ],
- "hull": 22,
- "edges": [ 0, 42, 40, 42, 40, 38, 38, 36, 44, 46, 18, 20, 42, 52, 52, 44, 40, 52, 52, 0, 38, 44, 0, 2, 2, 4, 44, 2, 36, 46, 46, 4, 32, 48, 48, 8, 28, 50, 50, 12, 20, 54, 24, 54, 16, 18, 54, 16, 32, 34, 34, 36, 46, 56, 56, 48, 34, 56, 4, 6, 6, 8, 56, 6, 28, 30, 30, 32, 48, 58, 58, 50, 30, 58, 8, 10, 10, 12, 58, 10, 24, 26, 26, 28, 50, 60, 60, 54, 26, 60, 12, 14, 14, 16, 60, 14, 22, 24, 22, 20 ],
- "width": 40,
- "height": 45
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 0.78492, 0.09813, 0.8898, 0.19907, 0.94592, 0.28561, 0.99031, 0.37956, 0.99999, 0.46488, 1, 0.55968, 1, 0.64675, 0.99999, 0.73472, 0.99999, 0.80884, 0.99999, 0.87904, 1, 0.93915, 1, 1, 0.6612, 1, 0.44936, 1, 0.47567, 0.94351, 0.49436, 0.87275, 0.50084, 0.79945, 0.50084, 0.72547, 0.50084, 0.65614, 0.50084, 0.5804, 0.49512, 0.50962, 0.4894, 0.43421, 0.46603, 0.35269, 0.42648, 0.27368, 0.37459, 0.19403, 0.31858, 0.12579, 0.26576, 0.10159, 0, 0.09959, 0, 0.03963, 0, 0, 0.307, 0, 0.661, 0, 0.51908, 0.06805, 0.63216, 0.2364, 0.67336, 0.40705, 0.7016, 0.57474, 0.7016, 0.7311, 0.6814, 0.87544, 0.29718, 0.05133, 0.56818, 0.15192, 0.66163, 0.3262, 0.68005, 0.499, 0.7016, 0.65379, 0.69449, 0.8079, 0.67108, 0.9391 ],
- "triangles": [ 12, 44, 11, 44, 10, 11, 13, 14, 12, 12, 14, 44, 14, 15, 44, 44, 37, 10, 37, 9, 10, 44, 15, 37, 37, 43, 9, 15, 16, 37, 9, 43, 8, 37, 16, 43, 43, 36, 8, 43, 16, 17, 36, 7, 8, 36, 43, 17, 6, 7, 42, 17, 42, 36, 7, 36, 42, 17, 18, 42, 18, 19, 42, 42, 35, 6, 19, 35, 42, 35, 5, 6, 19, 41, 35, 19, 20, 41, 5, 35, 4, 35, 41, 4, 20, 21, 41, 21, 34, 41, 4, 34, 3, 4, 41, 34, 21, 40, 34, 34, 2, 3, 21, 22, 40, 34, 40, 2, 22, 33, 40, 22, 23, 33, 40, 1, 2, 40, 33, 1, 23, 39, 33, 23, 24, 39, 33, 0, 1, 33, 39, 0, 24, 32, 39, 24, 25, 32, 39, 31, 0, 39, 32, 31, 26, 38, 25, 25, 38, 32, 38, 26, 28, 26, 27, 28, 38, 30, 32, 32, 30, 31, 30, 38, 29, 38, 28, 29 ],
- "vertices": [ 2, 33, 4.42, 6.43, 0.9982, 34, -8.85, 5.01, 0.0018, 2, 33, 11.82, 7.26, 0.59629, 34, -1.7, 7.08, 0.40371, 3, 33, 17.95, 7.16, 0.06791, 34, 4.36, 8.01, 0.86931, 35, -7.11, 8.04, 0.06278, 2, 34, 10.91, 8.6, 0.48728, 35, -0.56, 8.61, 0.51272, 3, 34, 16.8, 8.38, 0.06459, 35, 5.33, 8.35, 0.93376, 36, -9.49, 7.87, 0.00164, 2, 35, 11.85, 7.8, 0.79025, 36, -2.95, 7.66, 0.20975, 3, 35, 17.84, 7.3, 0.1863, 36, 3.05, 7.47, 0.79181, 37, -7.47, 6.46, 0.02189, 4, 35, 23.88, 6.79, 0.00103, 36, 9.12, 7.28, 0.58391, 37, -1.44, 7.14, 0.41146, 38, -9.54, 7.09, 0.0036, 3, 36, 14.23, 7.12, 0.10189, 37, 3.64, 7.72, 0.75763, 38, -4.46, 7.69, 0.14047, 3, 36, 19.07, 6.96, 0.00139, 37, 8.45, 8.26, 0.42013, 38, 0.35, 8.27, 0.57848, 2, 37, 12.58, 8.73, 0.10374, 38, 4.47, 8.76, 0.89626, 2, 37, 16.75, 9.2, 0.01088, 38, 8.64, 9.25, 0.98912, 1, 38, 9.64, 0.84, 1, 1, 38, 10.27, -4.42, 1, 1, 38, 6.32, -4.22, 1, 2, 37, 9.44, -4.34, 0.29474, 38, 1.42, -4.34, 0.70526, 3, 36, 13.19, -5.34, 0.04737, 37, 4.4, -4.75, 0.91538, 38, -3.63, -4.77, 0.03725, 2, 36, 8.09, -5.17, 0.66349, 37, -0.67, -5.33, 0.33651, 3, 35, 17.43, -5.19, 0.07354, 36, 3.31, -5.02, 0.91785, 37, -5.42, -5.87, 0.00862, 2, 35, 12.23, -4.75, 0.79492, 36, -1.92, -4.86, 0.20508, 1, 35, 7.35, -4.48, 1, 2, 34, 13.68, -4.18, 0.13099, 35, 2.15, -4.19, 0.86901, 2, 34, 8.03, -4.32, 0.97428, 35, -3.5, -4.3, 0.02572, 2, 33, 13.97, -5.23, 0.1994, 34, 2.52, -4.87, 0.8006, 2, 33, 8.32, -5.14, 0.93774, 34, -3.06, -5.73, 0.06226, 1, 33, 3.41, -5.34, 1, 1, 33, 1.47, -6.21, 1, 1, 33, -0.29, -12.62, 1, 1, 33, -4.3, -11.6, 1, 1, 33, -6.96, -10.93, 1, 1, 33, -5.07, -3.49, 1, 1, 33, -2.9, 5.09, 1, 1, 33, 0.78, 0.5, 1, 2, 33, 12.74, 0.39, 0.28499, 34, 0.36, 0.45, 0.71501, 2, 34, 12.18, 0.55, 0.09845, 35, 0.67, 0.55, 0.90155, 1, 35, 12.26, 0.28, 1, 2, 36, 8.63, -0.17, 0.98976, 37, -0.85, -0.3, 0.01024, 2, 37, 9.1, 0.32, 0.00134, 38, 1.05, 0.33, 0.99866, 1, 33, -1.7, -4.6, 1, 1, 33, 6.69, 0.27, 1, 2, 34, 6.59, 0.7, 0.99557, 35, -4.91, 0.73, 0.00443, 1, 35, 7.01, 0.19, 1, 1, 36, 3.3, 0, 1, 2, 37, 4.44, 0.12, 0.99965, 38, -3.62, 0.1, 3.5E-4, 1, 38, 5.44, 0.59, 1 ],
- "hull": 32,
- "edges": [ 54, 52, 62, 0, 0, 2, 54, 56, 56, 58, 22, 24, 24, 26, 56, 76, 76, 64, 52, 76, 58, 60, 60, 62, 76, 60, 50, 52, 50, 64, 64, 62, 46, 48, 48, 50, 64, 78, 78, 66, 48, 78, 78, 0, 46, 66, 66, 2, 42, 68, 68, 6, 42, 44, 44, 46, 66, 80, 80, 68, 44, 80, 2, 4, 4, 6, 80, 4, 38, 40, 40, 42, 68, 82, 82, 70, 40, 82, 6, 8, 8, 10, 82, 8, 38, 70, 70, 10, 34, 72, 72, 14, 34, 36, 36, 38, 70, 84, 84, 72, 36, 84, 10, 12, 12, 14, 84, 12, 30, 74, 74, 18, 30, 32, 32, 34, 72, 86, 86, 74, 32, 86, 14, 16, 16, 18, 86, 16, 26, 28, 28, 30, 24, 88, 88, 74, 28, 88, 18, 20, 20, 22, 88, 20 ],
- "width": 25,
- "height": 69
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 0.8546, 0.15213, 1, 0.39264, 1, 0.77448, 0.90631, 1, 0.73526, 1, 0.72332, 0.73728, 0.68156, 0.6753, 0.60796, 0.51165, 0.30563, 0.54885, 0.09679, 0.56868, 0.06894, 0.73728, 0, 0.67034, 0, 0.30586, 0.12662, 0.10502, 0.30961, 0, 0.67559, 0 ],
- "triangles": [ 7, 14, 15, 7, 15, 0, 7, 0, 1, 8, 13, 14, 8, 14, 7, 12, 13, 8, 9, 12, 8, 11, 12, 9, 6, 7, 1, 5, 6, 1, 10, 11, 9, 5, 1, 2, 3, 4, 5, 2, 3, 5 ],
- "vertices": [ 74.53, -43.72, 55.87, -55.34, 28.1, -52.87, 12.46, -42.92, 13.84, -27.42, 33.04, -28.03, 37.88, -24.65, 50.37, -19.04, 50.11, 8.61, 50.35, 27.67, 38.31, 31.28, 43.73, 37.1, 70.24, 34.74, 83.82, 21.97, 89.98, 4.7, 87.03, -28.47 ],
- "hull": 16,
- "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 30, 28, 30, 28, 26, 22, 24, 26, 24 ],
- "width": 91,
- "height": 73
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 0.38749, 0.14892, 0.68631, 0.20692, 0.87544, 0.30508, 1, 0.46569, 1, 0.80923, 0.84518, 1, 0.50853, 1, 0.18701, 0.87169, 0, 0.76462, 0, 0, 0.25131, 0 ],
- "triangles": [ 0, 8, 9, 0, 9, 10, 6, 2, 3, 7, 8, 0, 1, 7, 0, 6, 1, 2, 4, 6, 3, 6, 7, 1, 5, 6, 4 ],
- "vertices": [ 3.86, 12.51, 13.87, 2.83, 18.84, -5.27, 19.99, -13.69, 12.36, -24.7, 2.27, -26.76, -10.46, -17.95, -19.77, -5.42, -24.47, 2.91, -7.49, 27.43, 2.01, 20.85 ],
- "hull": 11,
- "edges": [ 18, 20, 20, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 8, 10, 12, 12, 14, 16, 18, 14, 16 ],
- "width": 46,
- "height": 39
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 1, 0.27862, 1, 0.34964, 1, 0.42486, 1, 0.50901, 1, 0.59139, 1, 0.64983, 1, 0.71228, 1, 0.75881, 1, 0.81513, 1, 0.91187, 1, 1, 0.63687, 1, 0, 1, 0, 0.92044, 0, 0.82248, 0, 0.76493, 0, 0.71105, 0, 0.6535, 0, 0.59752, 0, 0.50779, 0, 0.42609, 0, 0.35087, 0, 0.27862, 0, 0, 0.39142, 0, 1, 0, 0.4959, 0.42567, 0.5368, 0.5923, 0.56617, 0.71194, 0.59174, 0.8161, 0.61521, 0.91173, 0.5787, 0.763, 0.55098, 0.65008, 0.51619, 0.50835, 0.45927, 0.27641, 0.47735, 0.35007 ],
- "triangles": [ 30, 29, 8, 30, 8, 9, 13, 14, 29, 13, 29, 30, 12, 13, 30, 11, 30, 9, 12, 30, 11, 11, 9, 10, 31, 28, 6, 7, 31, 6, 15, 16, 28, 15, 28, 31, 29, 31, 7, 8, 29, 7, 14, 15, 31, 14, 31, 29, 32, 27, 4, 5, 32, 4, 17, 18, 27, 17, 27, 32, 16, 17, 32, 28, 32, 5, 16, 32, 28, 28, 5, 6, 19, 26, 33, 33, 2, 3, 27, 33, 3, 4, 27, 3, 18, 19, 33, 18, 33, 27, 34, 24, 25, 34, 25, 0, 22, 23, 24, 22, 24, 34, 35, 34, 0, 1, 35, 0, 21, 22, 34, 21, 34, 35, 26, 35, 1, 2, 26, 1, 20, 21, 35, 20, 35, 26, 19, 20, 26, 33, 26, 2 ],
- "vertices": [ 2, 28, 2.39, 6.43, 0.99843, 29, -7.19, 6.72, 0.00157, 2, 28, 5.86, 6.21, 0.93411, 29, -3.73, 6.37, 0.06589, 3, 28, 9.54, 5.97, 0.5603, 29, -0.06, 6, 0.43969, 30, -7.66, 5.79, 1.0E-5, 3, 28, 13.66, 5.71, 0.08645, 29, 4.04, 5.58, 0.83506, 30, -3.55, 5.49, 0.07849, 4, 28, 17.69, 5.45, 2.7E-4, 29, 8.06, 5.17, 0.4312, 30, 0.48, 5.18, 0.56754, 31, -5.68, 5.07, 9.9E-4, 3, 29, 10.9, 4.88, 0.08921, 30, 3.34, 4.97, 0.83391, 31, -2.82, 4.92, 0.07688, 4, 29, 13.95, 4.57, 0.0013, 30, 6.39, 4.74, 0.51714, 31, 0.24, 4.75, 0.4784, 32, -5.04, 4.93, 0.00316, 3, 30, 8.66, 4.57, 0.16053, 31, 2.51, 4.62, 0.76497, 32, -2.77, 4.72, 0.0745, 3, 30, 11.41, 4.36, 0.0094, 31, 5.27, 4.47, 0.5431, 32, -0.02, 4.47, 0.4475, 2, 31, 10, 4.2, 0.0134, 32, 4.7, 4.04, 0.9866, 1, 32, 9, 3.65, 1, 1, 32, 8.64, -0.33, 1, 2, 31, 13.7, -7.02, 5.0E-4, 32, 8.01, -7.3, 0.9995, 2, 31, 9.81, -6.8, 0.07291, 32, 4.13, -6.95, 0.92709, 3, 30, 10.95, -6.63, 0.04363, 31, 5.02, -6.54, 0.50832, 32, -0.65, -6.52, 0.44805, 4, 29, 15.4, -6.64, 2.6E-4, 30, 8.14, -6.42, 0.21799, 31, 2.2, -6.38, 0.64588, 32, -3.46, -6.26, 0.13587, 4, 29, 12.77, -6.37, 0.022, 30, 5.5, -6.22, 0.52316, 31, -0.43, -6.23, 0.43558, 32, -6.09, -6.02, 0.01926, 3, 29, 9.97, -6.08, 0.16186, 30, 2.69, -6.01, 0.69965, 31, -3.25, -6.08, 0.13849, 3, 29, 7.24, -5.8, 0.49577, 30, -0.04, -5.81, 0.48523, 31, -5.99, -5.92, 0.019, 3, 28, 12.9, -5.26, 0.03037, 29, 2.86, -5.36, 0.91161, 30, -4.43, -5.48, 0.05802, 2, 28, 8.91, -5.01, 0.49703, 29, -1.12, -4.95, 0.50297, 2, 28, 5.23, -4.78, 0.94145, 29, -4.79, -4.58, 0.05855, 1, 28, 1.69, -4.55, 1, 1, 28, -11.93, -3.69, 1, 1, 28, -11.66, 0.61, 1, 1, 28, -11.23, 7.29, 1, 2, 28, 9.23, 0.44, 0.9608, 29, -0.59, 0.48, 0.0392, 2, 29, 7.58, 0.1, 0.36654, 30, 0.14, 0.1, 0.63346, 2, 30, 6.01, -0.02, 0.53933, 31, -0.04, -0.02, 0.46067, 2, 31, 5.07, -0.02, 0.87231, 32, -0.38, -0.01, 0.12769, 1, 32, 4.31, -0.17, 1, 1, 31, 2.46, -0.02, 1, 1, 30, 2.98, 0.04, 1, 2, 28, 13.29, 0.4, 8.9E-4, 29, 3.47, 0.29, 0.99911, 1, 28, 1.91, 0.5, 1, 1, 28, 5.52, 0.47, 1 ],
- "hull": 26,
- "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 40, 52, 52, 4, 36, 54, 54, 8, 32, 56, 56, 12, 28, 58, 58, 16, 24, 26, 26, 28, 22, 60, 60, 58, 26, 60, 16, 18, 18, 20, 60, 18, 28, 30, 30, 32, 56, 62, 62, 58, 30, 62, 12, 14, 14, 16, 62, 14, 32, 34, 34, 36, 54, 64, 64, 56, 34, 64, 8, 10, 10, 12, 64, 10, 36, 38, 38, 40, 52, 66, 66, 54, 38, 66, 4, 6, 6, 8, 66, 6, 44, 46, 48, 68, 44, 68, 0, 50, 68, 0, 40, 42, 42, 44, 52, 70, 70, 68, 42, 70, 0, 2, 2, 4, 70, 2 ],
- "width": 11,
- "height": 49
- }
- },
- "toufa7": {
- "toufa7": {
- "type": "mesh",
- "uvs": [ 1, 0.57693, 0.24677, 1, 0, 1, 0, 0.43926, 0.79744, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
- "vertices": [ 5.31, -34.78, -3.21, -15.88, -2.68, -9.98, 10.72, -11.17, 19.53, -31.17, 19.1, -36.01 ],
- "hull": 6,
- "edges": [ 4, 6, 8, 10, 6, 8, 2, 4, 0, 10, 2, 0 ],
- "width": 24,
- "height": 24
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.62479, 0.2642, 0.65091, 0.28615, 0.68297, 0.31311, 0.96229, 0.54795, 1, 0.57966, 1, 0.65832, 1, 1, 0.49606, 1, 0.43132, 0.89746, 0.41229, 0.86732, 0.38626, 0.82608, 0.20165, 0.53369, 0.18234, 0.50311, 0.15859, 0.46549, 0, 0.21431, 0, 0, 0.31056, 0, 0.40113, 0.40113, 0.72016, 0.72016, 0.68908, 0.68908, 0.75415, 0.75415, 0.4317, 0.4317, 0.37728, 0.37728 ],
- "triangles": [ 18, 3, 4, 19, 2, 3, 18, 19, 3, 4, 5, 18, 20, 18, 5, 10, 21, 19, 9, 10, 19, 9, 19, 18, 8, 9, 18, 8, 18, 20, 7, 8, 20, 20, 5, 6, 7, 20, 6, 17, 0, 1, 21, 17, 1, 21, 1, 2, 12, 22, 17, 11, 12, 17, 11, 17, 21, 21, 2, 19, 10, 11, 21, 22, 14, 15, 22, 16, 0, 22, 15, 16, 17, 22, 0, 13, 14, 22, 12, 13, 22 ],
- "vertices": [ 2, 8, 17.52, 9.47, 0.68538, 9, -2.57, 9.71, 0.31462, 2, 8, 19.04, 9.71, 0.55821, 9, -1.04, 9.83, 0.44179, 2, 8, 20.9, 10.01, 0.39562, 9, 0.84, 9.98, 0.60438, 2, 9, 17.2, 11.28, 0.60411, 10, -1.82, 11.19, 0.39589, 2, 9, 19.4, 11.46, 0.49363, 10, 0.37, 11.51, 0.50637, 2, 9, 23.26, 9.16, 0.24091, 10, 4.36, 9.47, 0.75909, 1, 10, 21.71, 0.61, 1, 2, 9, 31.21, -15.53, 0.01819, 10, 13.92, -14.65, 0.98181, 2, 9, 25.06, -14.43, 0.11641, 10, 7.71, -13.95, 0.88359, 2, 9, 23.26, -14.1, 0.18731, 10, 5.89, -13.75, 0.81269, 2, 9, 20.78, -13.66, 0.31924, 10, 3.39, -13.47, 0.68076, 3, 8, 24.96, -10.22, 0.13877, 9, 3.25, -10.52, 0.86081, 10, -14.31, -11.48, 4.2E-4, 2, 8, 23.1, -10.04, 0.25006, 9, 1.42, -10.19, 0.74994, 2, 8, 20.82, -9.82, 0.43566, 9, -0.83, -9.78, 0.56434, 1, 8, 5.59, -8.34, 1, 1, 8, -5.37, -2.95, 1, 1, 8, -0.71, 6.53, 1, 2, 8, 21.17, -0.8, 0.24839, 9, 0.24, -0.82, 0.75161, 1, 10, 3.18, -0.61, 1, 1, 10, 1.12, -0.75, 1, 1, 10, 5.43, -0.46, 1, 2, 8, 23.19, -0.64, 0.0081, 9, 2.27, -0.82, 0.9919, 2, 8, 19.59, -0.93, 0.94747, 9, -1.35, -0.82, 0.05253 ],
- "hull": 17,
- "edges": [ 30, 32, 28, 30, 12, 14, 24, 34, 34, 2, 18, 36, 36, 8, 18, 20, 38, 36, 20, 38, 6, 8, 38, 6, 14, 16, 16, 18, 12, 40, 40, 36, 16, 40, 8, 10, 10, 12, 40, 10, 20, 22, 22, 24, 34, 42, 42, 38, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 34, 26, 44, 2, 0, 0, 32, 44, 0 ],
- "width": 34,
- "height": 57
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 0.91367, 0.42067, 0.92684, 0.4504, 0.94698, 0.49587, 1, 0.61557, 0.99999, 0.81146, 1, 0.84397, 1, 0.8763, 1, 1, 0, 1, 0, 0.96438, 0, 0.90142, 0.13895, 0.86739, 0.13694, 0.84108, 0.13405, 0.80321, 0.1143, 0.54433, 0.11156, 0.50847, 0.1082, 0.46446, 0.07276, 0, 0.45888, 0, 0.72734, 0, 0.59972, 0.87235, 0.53364, 0.4878, 0.53902, 0.52287, 0.52772, 0.44911, 0.58828, 0.84431, 0.58319, 0.81106 ],
- "triangles": [ 11, 12, 24, 9, 10, 11, 9, 11, 20, 8, 9, 20, 22, 21, 1, 22, 1, 2, 14, 21, 22, 13, 14, 22, 25, 22, 2, 25, 2, 3, 13, 22, 25, 4, 25, 3, 12, 13, 25, 24, 25, 4, 24, 4, 5, 12, 25, 24, 20, 24, 5, 11, 24, 20, 20, 5, 6, 20, 6, 7, 8, 20, 7, 23, 18, 19, 23, 19, 0, 16, 17, 18, 16, 18, 23, 21, 23, 0, 21, 0, 1, 15, 16, 23, 15, 23, 21, 14, 15, 21 ],
- "vertices": [ 2, 15, 22.84, 12.01, 0.7516, 16, -4.31, 11.99, 0.2484, 2, 15, 24.85, 12.29, 0.62479, 16, -2.3, 12.28, 0.37521, 2, 15, 27.94, 12.71, 0.41154, 16, 0.78, 12.71, 0.58846, 1, 16, 8.89, 13.85, 1, 2, 16, 21.99, 13.04, 0.99882, 17, -13.63, -2.7, 0.00118, 2, 16, 24.16, 12.9, 0.9898, 17, -13.15, -0.57, 0.0102, 2, 16, 26.33, 12.77, 0.96682, 17, -12.68, 1.54, 0.03318, 2, 16, 34.6, 12.26, 0.85647, 17, -10.89, 9.63, 0.14353, 1, 17, 19.38, 2.91, 1, 1, 17, 18.86, 0.58, 1, 2, 16, 26.08, -18.27, 0.00563, 17, 17.94, -3.54, 0.99437, 2, 16, 24.07, -13.83, 0.1282, 17, 13.24, -4.83, 0.8718, 2, 16, 22.31, -13.79, 0.27078, 17, 12.92, -6.56, 0.72922, 2, 16, 19.77, -13.72, 0.45759, 17, 12.46, -9.06, 0.54241, 3, 15, 29.45, -13.27, 0.35391, 16, 2.42, -13.25, 0.6347, 17, 9.29, -26.12, 0.01139, 3, 15, 27.05, -13.19, 0.51292, 16, 0.02, -13.19, 0.48309, 17, 8.86, -28.49, 0.00398, 3, 15, 24.1, -13.1, 0.70244, 16, -2.93, -13.11, 0.29698, 17, 8.32, -31.39, 5.8E-4, 1, 15, -7.03, -12.11, 1, 1, 15, -6.23, -0.17, 1, 1, 15, -5.67, 8.14, 1, 1, 16, 25.29, 0.4, 1, 2, 15, 26.54, -0.04, 0.83969, 16, -0.55, -0.04, 0.16031, 2, 16, 1.8, -0.02, 1, 17, -3.87, -24.67, 0, 1, 15, 23.94, -0.05, 1, 1, 16, 23.39, 0.16, 1, 1, 16, 21.16, 0.14, 1 ],
- "hull": 20,
- "edges": [ 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 30, 42, 42, 2, 28, 30, 44, 42, 28, 44, 2, 4, 4, 6, 44, 4, 30, 32, 32, 34, 36, 46, 46, 42, 32, 46, 2, 0, 0, 38, 46, 0, 22, 40, 12, 14, 40, 12, 22, 24, 40, 48, 24, 48, 10, 12, 48, 10, 24, 26, 26, 28, 44, 50, 50, 48, 26, 50, 6, 8, 8, 10, 50, 8 ],
- "width": 31,
- "height": 67
- }
- },
- "youwaitao": {
- "youwaitao": {
- "type": "mesh",
- "uvs": [ 0.74764, 0.24463, 0.823, 0.37414, 0.88212, 0.47574, 0.94427, 0.58255, 0.97585, 0.67458, 0.99999, 0.74489, 0.99999, 0.82687, 0.99999, 0.87797, 1, 1, 0.55272, 1, 0, 1, 0, 0.94218, 0, 0.87797, 0, 0.81812, 0, 0.73514, 0, 0.62648, 0, 0.51239, 0, 0.41265, 0, 0.28047, 0, 0, 0.20443, 0, 0.60529, 0, 0.34392, 0.4005, 0.41732, 0.61125, 0.4755, 0.78623, 0.44828, 0.70438, 0.37863, 0.50015, 0.52011, 0.90973, 0.49929, 0.8521, 0.29731, 0.26668 ],
- "triangles": [ 9, 7, 8, 10, 27, 9, 9, 27, 7, 10, 11, 27, 11, 28, 27, 11, 12, 28, 7, 27, 6, 27, 28, 6, 12, 24, 28, 12, 13, 24, 6, 28, 5, 28, 24, 5, 24, 4, 5, 13, 25, 24, 13, 14, 25, 24, 25, 4, 14, 23, 25, 14, 15, 23, 25, 3, 4, 25, 23, 3, 15, 26, 23, 15, 16, 26, 23, 2, 3, 23, 26, 2, 16, 22, 26, 16, 17, 22, 26, 1, 2, 26, 22, 1, 17, 29, 22, 17, 18, 29, 22, 0, 1, 22, 29, 0, 18, 20, 29, 18, 19, 20, 29, 21, 0, 29, 20, 21 ],
- "vertices": [ 2, 23, 6.17, 10.77, 0.92318, 24, -7.81, 10.97, 0.07682, 3, 23, 13.8, 11.63, 0.49134, 24, -0.16, 11.64, 0.49534, 25, -11.76, 12.52, 0.01332, 4, 23, 19.78, 12.3, 0.13327, 24, 5.84, 12.15, 0.73659, 25, -5.73, 12.61, 0.12629, 26, -12.22, 15.43, 0.00385, 4, 23, 26.07, 13.01, 0.01089, 24, 12.14, 12.7, 0.50746, 25, 0.6, 12.69, 0.41064, 26, -6.01, 14.22, 0.07102, 3, 24, 17.52, 12.71, 0.20044, 25, 5.96, 12.31, 0.52001, 26, -0.84, 12.75, 0.27955, 3, 24, 21.63, 12.72, 0.06587, 25, 10.06, 12.02, 0.39006, 26, 3.12, 11.63, 0.54407, 3, 24, 26.35, 12.15, 0.00872, 25, 14.73, 11.1, 0.15751, 26, 7.5, 9.78, 0.83377, 3, 24, 29.29, 11.79, 6.8E-4, 25, 17.63, 10.53, 0.05941, 26, 10.23, 8.62, 0.93991, 1, 26, 16.75, 5.86, 1, 1, 26, 13.09, -2.79, 1, 2, 25, 20.53, -11.44, 0.0246, 26, 8.56, -13.48, 0.9754, 2, 25, 17.23, -10.79, 0.06452, 26, 5.47, -12.17, 0.93548, 2, 25, 13.58, -10.07, 0.21672, 26, 2.04, -10.72, 0.78328, 2, 25, 10.17, -9.4, 0.48383, 26, -1.15, -9.37, 0.51617, 3, 24, 18.53, -8.05, 0.03124, 25, 5.45, -8.47, 0.84537, 26, -5.58, -7.49, 0.12339, 2, 24, 12.27, -7.29, 0.49314, 25, -0.73, -7.26, 0.50686, 3, 23, 20.13, -6.34, 0.01613, 24, 5.7, -6.49, 0.96849, 25, -7.22, -5.98, 0.01538, 2, 23, 14.37, -5.79, 0.46469, 24, -0.04, -5.79, 0.53531, 2, 23, 6.74, -5.06, 0.99977, 24, -7.65, -4.86, 2.3E-4, 1, 23, -9.45, -3.51, 1, 1, 23, -9.04, 0.76, 1, 1, 23, -8.24, 9.14, 1, 2, 23, 14.36, 1.47, 0.45226, 24, 0.14, 1.46, 0.54774, 3, 24, 12.46, 1.51, 0.51865, 25, 0.09, 1.51, 0.48028, 26, -8.79, 3.38, 0.00107, 3, 24, 22.68, 1.5, 1.4E-4, 25, 10.29, 0.75, 0.03991, 26, 1.03, 0.55, 0.95996, 3, 24, 17.9, 1.51, 0.00461, 25, 5.52, 1.11, 0.97793, 26, -3.56, 1.87, 0.01746, 3, 23, 20.18, 1.64, 0.00344, 24, 5.96, 1.49, 0.99569, 25, -6.39, 1.96, 8.7E-4, 1, 26, 8, -1.38, 1, 1, 26, 4.75, -0.48, 1, 2, 23, 6.54, 1.23, 0.99951, 24, -7.69, 1.43, 4.9E-4 ],
- "hull": 22,
- "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 34, 44, 44, 2, 30, 46, 46, 6, 26, 48, 48, 10, 26, 28, 28, 30, 46, 50, 50, 48, 28, 50, 6, 8, 8, 10, 50, 8, 30, 32, 32, 34, 44, 52, 52, 46, 32, 52, 2, 4, 4, 6, 52, 4, 20, 22, 18, 54, 22, 54, 14, 16, 54, 14, 22, 24, 24, 26, 48, 56, 56, 54, 24, 56, 10, 12, 12, 14, 56, 12, 34, 36, 36, 38, 40, 58, 58, 44, 36, 58, 2, 0, 0, 42, 58, 0 ],
- "width": 21,
- "height": 58
- }
- },
- "youyan": {
- "youyan": { "x": 6.28, "y": 0.01, "rotation": -90, "width": 22, "height": 19 }
- },
- "youyangaoguang": {
- "youyangaoguang": { "x": 0.1, "y": 0.69, "rotation": -90, "width": 4, "height": 5 }
- },
- "youyantongkong": {
- "youyantongkong": { "x": -0.29, "y": 0.57, "rotation": -90, "width": 12, "height": 12 }
- },
- "yueguangbaohe": {
- "yueguangbaohe": {
- "type": "mesh",
- "uvs": [ 1, 0.53989, 1, 1, 0.78429, 1, 0, 0.47605, 0, 0, 0.22099, 0 ],
- "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
- "vertices": [ -12.87, -5.8, -18.84, 4.03, -12.57, 7.84, 17.02, 10.48, 23.2, 0.31, 16.77, -3.59 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 2, 4, 6, 8, 4, 6 ],
- "width": 34,
- "height": 25
- }
- },
- "zuiba": {
- "zuiba": { "x": 0.77, "y": 0.28, "rotation": -95.08, "width": 14, "height": 5 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.15105, 0.84687, 0.46876, 0.83542, 0.4925, 0.82663, 0.51075, 0.68566, 0.80323, 0.67418, 0.82705, 0.66724, 0.84145, 0.59082, 1, 0, 1, 0, 0.57433, 0.01687, 0.55936, 0.03423, 0.54395, 0.28402, 0.32232, 0.31041, 0.29891, 0.32926, 0.28218, 0.64729, 0, 1, 0, 0.58575, 0.41425, 0.28466, 0.71534, 0.61201, 0.38799, 0.56585, 0.43415, 0.30054, 0.69946, 0.32044, 0.67956 ],
- "triangles": [ 8, 9, 18, 7, 18, 6, 8, 18, 7, 20, 13, 17, 12, 13, 20, 20, 17, 3, 22, 12, 20, 11, 12, 22, 21, 11, 22, 10, 11, 21, 18, 10, 21, 9, 10, 18, 4, 20, 3, 22, 20, 4, 5, 22, 4, 21, 22, 5, 6, 21, 5, 18, 21, 6, 19, 15, 16, 19, 14, 15, 0, 19, 16, 17, 14, 19, 13, 14, 17, 1, 19, 0, 2, 19, 1, 17, 19, 2, 3, 17, 2 ],
- "vertices": [ 1, 5, 2.57, 7.66, 1, 2, 5, 20.58, 10.55, 0.5519, 6, -1.72, 10.55, 0.4481, 3, 5, 21.92, 10.76, 0.43954, 6, -0.37, 10.76, 0.56045, 7, -18.65, 11.6, 1.0E-5, 3, 5, 22.96, 10.93, 0.35703, 6, 0.66, 10.93, 0.6427, 7, -17.61, 11.72, 2.6E-4, 2, 6, 17.23, 13.6, 0.52363, 7, -0.94, 13.65, 0.47637, 2, 6, 18.58, 13.82, 0.43556, 7, 0.42, 13.81, 0.56444, 2, 6, 19.4, 13.95, 0.38366, 7, 1.24, 13.91, 0.61634, 2, 6, 28.38, 15.39, 0.07044, 7, 10.28, 14.95, 0.92956, 1, 7, 18.19, -3.51, 1, 2, 6, 16.02, -12.87, 0.76433, 7, -3.33, -12.73, 0.23567, 2, 6, 15.03, -12.71, 0.79416, 7, -4.31, -12.53, 0.20584, 2, 6, 14.01, -12.55, 0.83179, 7, -5.32, -12.32, 0.16821, 2, 5, 21.62, -10.19, 0.41522, 6, -0.66, -10.19, 0.58478, 2, 5, 20.07, -9.94, 0.54643, 6, -2.21, -9.94, 0.45357, 2, 5, 18.96, -9.76, 0.63872, 6, -3.32, -9.76, 0.36128, 1, 5, 0.29, -6.75, 1, 1, 5, -4.91, 4.06, 1, 2, 5, 21.72, 1.25, 0.7292, 6, -0.56, 1.25, 0.2708, 2, 6, 18.8, -0.78, 0.49354, 7, -0.01, -0.78, 0.50646, 2, 5, 20.04, 1.43, 0.94336, 6, -2.25, 1.42, 0.05664, 2, 5, 23, 1.11, 0.16125, 6, 0.72, 1.11, 0.83875, 2, 6, 17.78, -0.67, 0.94073, 7, -1.03, -0.63, 0.05927, 1, 6, 16.5, -0.54, 1 ],
- "hull": 17,
- "edges": [ 30, 32, 16, 18, 0, 32, 14, 16, 26, 34, 34, 4, 16, 36, 18, 36, 12, 14, 36, 12, 26, 28, 28, 30, 32, 38, 38, 34, 28, 38, 0, 2, 2, 4, 38, 2, 24, 26, 34, 40, 24, 40, 4, 6, 40, 6, 18, 20, 36, 42, 20, 42, 10, 12, 42, 10, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8 ],
- "width": 34,
- "height": 55
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 1, 0.42759, 1, 0.45099, 1, 0.46809, 1, 0.82508, 1, 0.84586, 1, 0.87573, 1, 1, 0, 1, 0, 0.95363, 0, 0.88143, 0.18449, 0.82253, 0.19311, 0.79738, 0.19946, 0.77882, 0.31841, 0.43144, 0.32607, 0.40906, 0.33265, 0.38983, 0.46614, 0, 0.73102, 0, 1, 0, 0.5902, 0.89283, 0.59579, 0.85736, 0.60018, 0.82954, 0.60338, 0.80922, 0.66243, 0.43486, 0.65956, 0.45304, 0.66619, 0.41101 ],
- "triangles": [ 10, 11, 20, 19, 10, 20, 8, 9, 10, 8, 10, 19, 7, 8, 19, 19, 20, 5, 6, 19, 5, 7, 19, 6, 24, 14, 23, 13, 14, 24, 24, 23, 2, 22, 13, 24, 12, 13, 22, 24, 2, 3, 22, 24, 3, 21, 12, 22, 11, 12, 21, 22, 3, 4, 21, 22, 4, 20, 11, 21, 21, 4, 5, 20, 21, 5, 25, 16, 17, 15, 16, 25, 17, 18, 0, 25, 17, 0, 23, 15, 25, 14, 15, 23, 25, 0, 1, 23, 25, 1, 23, 1, 2 ],
- "vertices": [ 2, 12, 25.48, 11.24, 0.72646, 13, -1.9, 11.2, 0.27354, 2, 12, 26.88, 11.35, 0.6289, 13, -0.51, 11.34, 0.3711, 2, 12, 27.9, 11.42, 0.55322, 13, 0.52, 11.44, 0.44678, 2, 13, 21.83, 13.53, 0.71315, 14, -14.55, -2.47, 0.28685, 2, 13, 23.07, 13.65, 0.64722, 14, -14.42, -1.23, 0.35278, 2, 13, 24.86, 13.82, 0.54906, 14, -14.22, 0.55, 0.45094, 2, 13, 32.28, 14.55, 0.30438, 14, -13.42, 7.96, 0.69562, 1, 14, 20.38, 4.28, 1, 1, 14, 20.08, 1.52, 1, 2, 13, 28.51, -19.98, 3.2E-4, 14, 19.61, -2.79, 0.99968, 2, 13, 24.39, -14.08, 0.16558, 14, 12.99, -5.62, 0.83442, 2, 13, 22.85, -13.94, 0.29652, 14, 12.54, -7.09, 0.70348, 2, 13, 21.73, -13.83, 0.38745, 14, 12.2, -8.18, 0.61255, 3, 12, 27.39, -11.85, 0.48093, 13, 0.59, -11.84, 0.51847, 14, 5.93, -28.46, 6.0E-4, 3, 12, 26.03, -11.69, 0.58028, 13, -0.77, -11.71, 0.41964, 14, 5.52, -29.77, 8.0E-5, 2, 12, 24.86, -11.55, 0.66402, 13, -1.94, -11.6, 0.33598, 1, 12, 1.21, -8.72, 1, 1, 12, 0.55, 0.26, 1, 1, 12, -0.11, 9.39, 1, 1, 14, -0.26, 0.06, 1, 2, 13, 25.1, 0.04, 0.55982, 14, -0.68, -2.03, 0.44018, 2, 13, 23.43, 0.02, 0.98935, 14, -1.01, -3.68, 0.01065, 2, 13, 22.2, 0.01, 0.99989, 14, -1.25, -4.88, 1.1E-4, 2, 12, 26.75, -0.17, 0.70585, 13, -0.35, -0.18, 0.29415, 2, 12, 27.84, -0.19, 0.02377, 13, 0.75, -0.17, 0.97623, 1, 12, 25.31, -0.15, 1 ],
- "hull": 19,
- "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 40, 38, 20, 40, 12, 10, 40, 10, 20, 22, 42, 40, 22, 42, 10, 8, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 46, 46, 2, 24, 26, 26, 28, 44, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 34, 50, 50, 46, 30, 50, 2, 0, 0, 36, 50, 0 ],
- "width": 34,
- "height": 60
- }
- },
- "zuowaitao": {
- "zuowaitao": {
- "type": "mesh",
- "uvs": [ 0.80196, 0.17414, 0.74694, 0.29748, 0.69892, 0.40515, 0.64949, 0.51597, 0.61911, 0.58409, 0.58313, 0.66475, 0.53807, 0.76576, 0.4979, 0.85583, 0.43359, 1, 0.20031, 1, 0, 1, 0, 0.82273, 0, 0.71891, 0, 0.60576, 0.04831, 0.5251, 0.09588, 0.44566, 0.15726, 0.34318, 0.2163, 0.24461, 0.29277, 0.11692, 0.36279, 0, 0.58371, 0, 0.87963, 0, 0.47758, 0.27681, 0.39978, 0.47972, 0.3373, 0.64268, 0.2584, 0.84847, 0.29826, 0.74451, 0.36982, 0.55787, 0.4414, 0.37118, 0.52511, 0.15284 ],
- "triangles": [ 9, 10, 11, 9, 25, 8, 26, 12, 13, 26, 24, 6, 25, 11, 12, 26, 25, 12, 7, 26, 6, 25, 26, 7, 25, 9, 11, 8, 25, 7, 27, 15, 23, 14, 15, 27, 4, 23, 3, 27, 23, 4, 24, 14, 27, 13, 14, 24, 5, 27, 4, 24, 27, 5, 24, 26, 13, 6, 24, 5, 16, 17, 28, 28, 22, 2, 23, 16, 28, 15, 16, 23, 3, 28, 2, 23, 28, 3, 29, 19, 20, 18, 19, 29, 0, 20, 21, 29, 20, 0, 22, 18, 29, 17, 18, 22, 1, 29, 0, 22, 29, 1, 28, 17, 22, 2, 22, 1 ],
- "vertices": [ 2, 18, 3.07, 7.18, 0.99465, 19, -7.67, 7.64, 0.00535, 2, 18, 10.11, 7.43, 0.60359, 19, -0.63, 7.48, 0.39641, 3, 18, 16.25, 7.65, 0.0614, 19, 5.52, 7.34, 0.89433, 20, -5.72, 7.43, 0.04427, 2, 19, 11.84, 7.2, 0.43026, 20, 0.6, 7.19, 0.56974, 3, 19, 15.73, 7.11, 0.09025, 20, 4.49, 7.04, 0.90198, 21, -7.6, 7.36, 0.00777, 3, 19, 20.34, 7.01, 7.5E-4, 20, 9.09, 6.87, 0.83236, 21, -3.01, 7, 0.16689, 3, 20, 14.86, 6.66, 0.2018, 21, 2.74, 6.55, 0.74294, 22, -6.61, 6.17, 0.05525, 3, 20, 20, 6.46, 0.00242, 21, 7.87, 6.15, 0.5191, 22, -1.47, 6.07, 0.47848, 1, 22, 6.76, 5.91, 1, 1, 22, 7.79, 0.17, 1, 1, 22, 8.68, -4.76, 1, 3, 20, 20.14, -6.12, 0.00573, 21, 7.49, -6.43, 0.78645, 22, -1.09, -6.51, 0.20782, 3, 20, 14.4, -7.04, 0.30557, 21, 1.72, -7.12, 0.6943, 22, -6.82, -7.54, 1.3E-4, 3, 19, 19.6, -7.92, 0.00403, 20, 8.14, -8.05, 0.88928, 21, -4.57, -7.86, 0.10669, 3, 19, 14.95, -7.52, 0.12822, 20, 3.49, -7.57, 0.86791, 21, -9.2, -7.2, 0.00387, 2, 19, 10.36, -7.11, 0.58247, 20, -1.09, -7.1, 0.41753, 3, 18, 15.99, -6.33, 0.04462, 19, 4.44, -6.6, 0.93475, 20, -7, -6.49, 0.02063, 2, 18, 10.28, -6.16, 0.63128, 19, -1.25, -6.1, 0.36872, 1, 18, 2.88, -5.94, 1, 1, 18, -3.9, -5.74, 1, 1, 18, -5.17, -0.37, 1, 1, 18, -6.87, 6.83, 1, 2, 18, 10.53, 0.61, 0.89391, 19, -0.6, 0.65, 0.10609, 2, 19, 10.92, 0.7, 0.73694, 20, -0.41, 0.7, 0.26306, 2, 20, 8.85, 0.61, 0.99701, 21, -3.51, 0.75, 0.00299, 1, 21, 8.16, 0.15, 1, 3, 20, 14.63, 0.55, 0.00426, 21, 2.26, 0.46, 0.99497, 22, -6.72, 0.06, 7.7E-4, 1, 20, 4.03, 0.66, 1, 2, 18, 15.88, 0.95, 9.2E-4, 19, 4.76, 0.67, 0.99908, 1, 18, 3.5, 0.17, 1 ],
- "hull": 22,
- "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 34, 44, 44, 2, 30, 46, 46, 6, 26, 48, 48, 10, 20, 22, 18, 50, 22, 50, 14, 16, 50, 14, 22, 24, 24, 26, 48, 52, 52, 50, 24, 52, 10, 12, 12, 14, 52, 12, 26, 28, 28, 30, 46, 54, 54, 48, 28, 54, 6, 8, 8, 10, 54, 8, 30, 32, 32, 34, 44, 56, 56, 46, 32, 56, 2, 4, 4, 6, 56, 4, 34, 36, 36, 38, 40, 58, 58, 44, 36, 58, 2, 0, 0, 42, 58, 0 ],
- "width": 25,
- "height": 56
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 5.12, "y": -0.78, "rotation": -90, "width": 21, "height": 19 }
- },
- "zuoyangaoguang": {
- "zuoyangaoguang": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -1.68, -1.97, -1.68, 2.03, 2.32, 2.03, 2.32, -1.97 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 4,
- "height": 4
- }
- },
- "zuoyantongkong": {
- "zuoyantongkong": { "x": -0.43, "y": -1.14, "rotation": -90, "width": 11, "height": 11 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2, "name": null },
- { "time": 1.8, "name": "biyan" },
- { "time": 1.9333, "name": null }
- ]
- },
- "teshudongzuoyueguangbaohe": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshudongzuoyueguangbaohe" }
- ]
- },
- "teshuyoushou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuyoushou1" },
- { "time": 0.4667, "name": "teshuyoushou1" }
- ]
- },
- "teshuyoushou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuyoushou2" },
- { "time": 0.4667, "name": "teshuyoushou2" }
- ]
- },
- "teshuyoushou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuyoushou3" },
- { "time": 0.4667, "name": "teshuyoushou3" }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou1" }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou2" }
- ]
- },
- "teshuzuoshou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou3" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0, "name": "youshou" },
- { "time": 0.1667, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "youyan" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "youyan" }
- ]
- },
- "youyangaoguang": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "youyangaoguang" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "youyangaoguang" }
- ]
- },
- "youyantongkong": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "youyantongkong" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "youyantongkong" }
- ]
- },
- "yueguangbaohe": {
- "attachment": [
- { "time": 0, "name": "yueguangbaohe" },
- { "time": 0.1667, "name": null }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0, "name": "zuoshou" },
- { "time": 0.1667, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "zuoyan" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "zuoyan" }
- ]
- },
- "zuoyangaoguang": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "zuoyangaoguang" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "zuoyangaoguang" }
- ]
- },
- "zuoyantongkong": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "zuoyantongkong" },
- { "time": 1.8, "name": null },
- { "time": 1.9333, "name": "zuoyantongkong" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": -2.24, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": -2.24 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": 0.04, "y": -0.65 },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -1.08, "y": 0.09 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 10.1 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4667, "angle": -13.7, "curve": "stepped" },
- { "time": 0.7, "angle": -13.7, "curve": "stepped" },
- { "time": 1.1333, "angle": -13.7, "curve": "stepped" },
- { "time": 1.7, "angle": -13.7, "curve": "stepped" },
- { "time": 2.1667, "angle": -13.7, "curve": "stepped" },
- { "time": 2.6667, "angle": -13.7, "curve": "stepped" },
- { "time": 3.1, "angle": -13.7, "curve": "stepped" },
- { "time": 3.6667, "angle": -13.7 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -4.86 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4667, "angle": 62.81, "curve": "stepped" },
- { "time": 0.7, "angle": 62.81, "curve": "stepped" },
- { "time": 1.1333, "angle": 62.81, "curve": "stepped" },
- { "time": 1.7, "angle": 62.81, "curve": "stepped" },
- { "time": 2.1667, "angle": 62.81, "curve": "stepped" },
- { "time": 2.6667, "angle": 62.81, "curve": "stepped" },
- { "time": 3.1, "angle": 62.81, "curve": "stepped" },
- { "time": 3.6667, "angle": 62.81 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -5.96 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4667, "angle": 28.52, "curve": "stepped" },
- { "time": 0.7, "angle": 28.52, "curve": "stepped" },
- { "time": 1.1333, "angle": 28.52, "curve": "stepped" },
- { "time": 1.7, "angle": 28.52, "curve": "stepped" },
- { "time": 2.1667, "angle": 28.52, "curve": "stepped" },
- { "time": 2.6667, "angle": 28.52, "curve": "stepped" },
- { "time": 3.1, "angle": 28.52, "curve": "stepped" },
- { "time": 3.6667, "angle": 28.52 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -4.37 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4667, "angle": -102.54, "curve": "stepped" },
- { "time": 0.7, "angle": -102.54, "curve": "stepped" },
- { "time": 1.1333, "angle": -102.54, "curve": "stepped" },
- { "time": 1.7, "angle": -102.54, "curve": "stepped" },
- { "time": 2.1667, "angle": -102.54, "curve": "stepped" },
- { "time": 2.6667, "angle": -102.54, "curve": "stepped" },
- { "time": 3.1, "angle": -102.54, "curve": "stepped" },
- { "time": 3.6667, "angle": -102.54 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -5.33 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 10.7 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -5.19 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 3.6 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -4.68 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": -2.29 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": -2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1333,
- "angle": -1.91,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": -2.29 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": -2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1333,
- "angle": -1.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": -2.29 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": -2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1333,
- "angle": -8.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": -2.29 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": -2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -8.38 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 },
- { "time": 1.7, "angle": -2.29 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": -2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": 2.67 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": 2.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1333,
- "angle": 3.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": 2.67 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": 2.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1333,
- "angle": 6.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": 2.67 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": 2.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- {
- "time": 0.7,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.7, "angle": 2.67 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.6667, "angle": 2.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": -4.63 },
- { "time": 0.1333, "angle": -3.76 },
- { "time": 0.4667, "angle": -2.36, "curve": "stepped" },
- { "time": 0.7, "angle": -2.36, "curve": "stepped" },
- { "time": 1.1333, "angle": -2.36, "curve": "stepped" },
- { "time": 1.7, "angle": -2.36, "curve": "stepped" },
- { "time": 2.1667, "angle": -2.36, "curve": "stepped" },
- { "time": 2.6667, "angle": -2.36, "curve": "stepped" },
- { "time": 3.1, "angle": -2.36, "curve": "stepped" },
- { "time": 3.6667, "angle": -2.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -1.75, "y": -0.1 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": -2.26 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.26 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.26 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -5.34 },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -1.29 },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": -2.81 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.81 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.81 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -1.29 },
- { "time": 0.3667, "angle": -7.05 },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": -2.81 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.81 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.81 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -1.29 },
- { "time": 0.3667, "angle": -7.05 },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": -2.81 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.81 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.81 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 1.51 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 0 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 0 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 0 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 6.3 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 1.32 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 1.32 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 1.32 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -5.38 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 1.32 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 1.32 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 1.32 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -1.51 },
- { "time": 0.3667, "angle": 6.42 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 1.32 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 1.32 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 1.32 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 5.61 },
- { "time": 0.3667, "angle": 10.61 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 1.32 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 1.32 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 1.32 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 5.61 },
- { "time": 0.3667, "angle": 10.61 },
- { "time": 0.7, "angle": -1.18 },
- { "time": 1.2333, "angle": 1.32 },
- { "time": 1.7, "angle": -1.18 },
- { "time": 2.1667, "angle": 1.32 },
- { "time": 2.6667, "angle": -1.18 },
- { "time": 3.1, "angle": 1.32 },
- { "time": 3.6667, "angle": -1.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.6, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.25 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": 3.25 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": 3.25 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": 3.25 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.25 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": 3.25 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": 3.25 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": 3.25 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.25 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": 3.25 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": 3.25 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": 3.25 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.25 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": 3.25 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": 3.25 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": 3.25 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.6, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.78 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": -2.78 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.78 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.78 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.78 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": -2.78 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.78 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.78 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.78 },
- { "time": 0.6, "angle": 0 },
- { "time": 1.1333, "angle": -2.78 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -2.78 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -2.78 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.401, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 0.401, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1 },
- { "time": 1.8, "x": 0.417, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 0.417, "y": 1 },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.433, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 0.433, "y": 1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1 },
- { "time": 1.8, "x": 0.554, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 0.554, "y": 1 },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.42, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": -1.42, "y": 0 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0 },
- { "time": 1.8, "x": -1.01, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": -1.01, "y": 0 },
- { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.4667, "angle": -351.15 },
- { "time": 0.7, "angle": 8.85, "curve": "stepped" },
- { "time": 1.1333, "angle": 8.85, "curve": "stepped" },
- { "time": 1.7, "angle": 8.85, "curve": "stepped" },
- { "time": 2.1667, "angle": 8.85, "curve": "stepped" },
- { "time": 2.6667, "angle": 8.85, "curve": "stepped" },
- { "time": 3.1, "angle": 8.85, "curve": "stepped" },
- { "time": 3.6667, "angle": 8.85 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": 0.92, "y": 0.12 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": 1.38, "y": -0.04 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.4667, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 0.7, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 1.7, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 1.8, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 1.9333, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 2.0667, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 3.1, "x": -1.89, "y": -2.05, "curve": "stepped" },
- { "time": 3.6667, "x": -1.89, "y": -2.05 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.4667, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 0.7, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 1.7, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 1.8, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 1.9333, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 2.0667, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 3.1, "x": -1.22, "y": -2.18, "curve": "stepped" },
- { "time": 3.6667, "x": -1.22, "y": -2.18 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 39.31, "curve": "stepped" },
- { "time": 0.1333, "angle": 39.31, "curve": "stepped" },
- { "time": 0.1667, "angle": 39.31 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1 },
- { "time": 1.1333, "x": 1.158, "y": 1 },
- { "time": 1.7, "x": 1, "y": 1 },
- { "time": 2.1667, "x": 1.158, "y": 1 },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 3.1, "x": 1.158, "y": 1 },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 4.6, "curve": "stepped" },
- { "time": 0.1333, "angle": 4.6, "curve": "stepped" },
- { "time": 0.1667, "angle": 4.6 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": -5.83 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": -5.83 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": -5.83 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone65": {
- "rotate": [
- { "time": 0, "angle": -55.1, "curve": "stepped" },
- { "time": 0.1333, "angle": -55.1 },
- { "time": 0.1667, "angle": -76.17 },
- { "time": 0.4667, "angle": -23.1, "curve": "stepped" },
- { "time": 0.7, "angle": -23.1, "curve": "stepped" },
- { "time": 1.1333, "angle": -23.1, "curve": "stepped" },
- { "time": 1.7, "angle": -23.1, "curve": "stepped" },
- { "time": 2.1667, "angle": -23.1, "curve": "stepped" },
- { "time": 2.6667, "angle": -23.1, "curve": "stepped" },
- { "time": 3.1, "angle": -23.1, "curve": "stepped" },
- { "time": 3.6667, "angle": -23.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.6, "y": -0.32 },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone67": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4667, "angle": 25.49, "curve": "stepped" },
- { "time": 0.7, "angle": 25.49, "curve": "stepped" },
- { "time": 1.1333, "angle": 25.49, "curve": "stepped" },
- { "time": 1.7, "angle": 25.49, "curve": "stepped" },
- { "time": 2.1667, "angle": 25.49, "curve": "stepped" },
- { "time": 2.6667, "angle": 25.49, "curve": "stepped" },
- { "time": 3.1, "angle": 25.49, "curve": "stepped" },
- { "time": 3.6667, "angle": 25.49 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone64": {
- "rotate": [
- { "time": 0, "angle": -3.53, "curve": "stepped" },
- { "time": 0.1333, "angle": -3.53 },
- { "time": 0.1667, "angle": 8.83 },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 },
- { "time": 1.1333, "angle": 1.66 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.1667, "angle": 1.66 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3.1, "angle": 1.66 },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone63": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone66": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 2.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6667, "x": 1, "y": 1 }
- ]
- },
- "bone68": {
- "translate": [
- { "time": 0.7, "x": 0, "y": 0 },
- { "time": 0.8333, "x": 0, "y": 0.32 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1333, "x": 0, "y": 0.32 },
- { "time": 1.3, "x": 0, "y": 0 },
- { "time": 1.4333, "x": 0, "y": 0.32 },
- { "time": 1.6, "x": 0, "y": 0 },
- { "time": 1.7333, "x": 0, "y": 0.32 },
- { "time": 1.9, "x": 0, "y": 0 },
- { "time": 2.0333, "x": 0, "y": 0.32 },
- { "time": 2.2, "x": 0, "y": 0 },
- { "time": 2.3333, "x": 0, "y": 0.32 },
- { "time": 2.5, "x": 0, "y": 0 },
- { "time": 2.6333, "x": 0, "y": 0.32 },
- { "time": 2.8, "x": 0, "y": 0 },
- { "time": 2.9333, "x": 0, "y": 0.32 },
- { "time": 3.1, "x": 0, "y": 0 },
- { "time": 3.2333, "x": 0, "y": 0.32 },
- { "time": 3.4, "x": 0, "y": 0 },
- { "time": 3.5333, "x": 0, "y": 0.32 },
- { "time": 3.6667, "x": 0, "y": 0 }
- ]
- },
- "bone69": {
- "translate": [
- { "time": 0.7, "x": 0, "y": 0 },
- { "time": 0.8333, "x": 0, "y": 0.32 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1333, "x": 0, "y": 0.32 },
- { "time": 1.3, "x": 0, "y": 0 },
- { "time": 1.4333, "x": 0, "y": 0.32 },
- { "time": 1.6, "x": 0, "y": 0 },
- { "time": 1.7333, "x": 0, "y": 0.32 },
- { "time": 1.9, "x": 0, "y": 0 },
- { "time": 2.0333, "x": 0, "y": 0.32 },
- { "time": 2.2, "x": 0, "y": 0 },
- { "time": 2.3333, "x": 0, "y": 0.32 },
- { "time": 2.5, "x": 0, "y": 0 },
- { "time": 2.6333, "x": 0, "y": 0.32 },
- { "time": 2.8, "x": 0, "y": 0 },
- { "time": 2.9333, "x": 0, "y": 0.32 },
- { "time": 3.1, "x": 0, "y": 0 },
- { "time": 3.2333, "x": 0, "y": 0.32 },
- { "time": 3.4, "x": 0, "y": 0 },
- { "time": 3.5333, "x": 0, "y": 0.32 },
- { "time": 3.6667, "x": 0, "y": 0 }
- ]
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "teshudongzuoyueguangbaohe": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuyoushou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuyoushou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuyoushou3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "youyangaoguang": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyangaoguang" }
- ]
- },
- "youyantongkong": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyantongkong" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- },
- "zuoyangaoguang": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyangaoguang" }
- ]
- },
- "zuoyantongkong": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyantongkong" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -0.98 },
- { "time": 0.1667, "x": 0, "y": 0.02 },
- { "time": 0.5, "x": 0, "y": -0.98 },
- { "time": 0.6667, "x": 0, "y": 0.02 },
- { "time": 1, "x": 0, "y": -0.98 },
- { "time": 1.1667, "x": 0, "y": 0.02 },
- { "time": 1.5, "x": 0, "y": -0.98 },
- { "time": 1.6667, "x": 0, "y": 0.02 },
- { "time": 2, "x": 0, "y": -0.98 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- {
- "time": 0,
- "angle": -315.35,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -315.35,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 44.65 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": -20.98, "curve": "stepped" },
- { "time": 0.5, "angle": -20.98, "curve": "stepped" },
- { "time": 1, "angle": -20.98, "curve": "stepped" },
- { "time": 1.5, "angle": -20.98, "curve": "stepped" },
- { "time": 2, "angle": -20.98 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- {
- "time": 0,
- "angle": 321.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -4.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 321.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -4.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -38.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- {
- "time": 0,
- "angle": -18.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -18.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -18.25 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": -11.35 },
- { "time": 0.1667, "angle": 2.22 },
- { "time": 0.3333, "angle": 22.84 },
- { "time": 0.5, "angle": 37.2 },
- { "time": 0.6667, "angle": 10.88 },
- { "time": 0.8333, "angle": -17.16 },
- { "time": 1, "angle": -11.35 },
- { "time": 1.1667, "angle": 2.22 },
- { "time": 1.3333, "angle": 22.84 },
- { "time": 1.5, "angle": 37.2 },
- { "time": 1.6667, "angle": 10.88 },
- { "time": 1.8333, "angle": -17.16 },
- { "time": 2, "angle": -11.35 }
- ],
- "translate": [
- { "time": 0.5, "x": -1.4, "y": 0.63 },
- { "time": 0.6667, "x": -0.5, "y": -0.71 },
- { "time": 0.8333, "x": -0.25, "y": -0.36 },
- { "time": 1, "x": 0.57, "y": 2.06 },
- { "time": 1.5, "x": -1.4, "y": 0.63 },
- { "time": 1.6667, "x": -0.5, "y": -0.71 },
- { "time": 1.8333, "x": -0.25, "y": -0.36 },
- { "time": 2, "x": 0.57, "y": 2.06 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 15.08 },
- { "time": 0.3333, "angle": 7.27 },
- { "time": 0.5, "angle": 6.74 },
- { "time": 0.6667, "angle": 54.82 },
- { "time": 0.8333, "angle": 46.87 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 15.08 },
- { "time": 1.3333, "angle": 7.27 },
- { "time": 1.5, "angle": 6.74 },
- { "time": 1.6667, "angle": 54.82 },
- { "time": 1.8333, "angle": 46.87 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.02, "y": -1.04 },
- { "time": 0.8333, "x": -1.51, "y": -1.53 },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": -1.02, "y": -1.04 },
- { "time": 1.8333, "x": -1.51, "y": -1.53 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -13.55 },
- { "time": 0.3333, "angle": -22.99 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -14.77 },
- { "time": 0.8333, "angle": -16.29 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": -13.55 },
- { "time": 1.3333, "angle": -22.99 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -14.77 },
- { "time": 1.8333, "angle": -16.29 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 20.72 },
- { "time": 0.1667, "angle": -6.41 },
- { "time": 0.3333, "angle": -25.26 },
- { "time": 0.5, "angle": -28.3 },
- { "time": 0.6667, "angle": -13.97 },
- { "time": 0.8333, "angle": 6.17 },
- { "time": 1, "angle": 20.72 },
- { "time": 1.1667, "angle": -6.41 },
- { "time": 1.3333, "angle": -25.26 },
- { "time": 1.5, "angle": -28.3 },
- { "time": 1.6667, "angle": -13.97 },
- { "time": 1.8333, "angle": 6.17 },
- { "time": 2, "angle": 20.72 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.91, "y": -0.78 },
- { "time": 0.3333, "x": -1.83, "y": -1.56 },
- { "time": 0.5, "x": -2.74, "y": -2.34 },
- { "time": 0.6667, "x": -1.83, "y": -1.56 },
- { "time": 0.8333, "x": -0.91, "y": -0.78 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -0.91, "y": -0.78 },
- { "time": 1.3333, "x": -1.83, "y": -1.56 },
- { "time": 1.5, "x": -2.74, "y": -2.34 },
- { "time": 1.6667, "x": -1.83, "y": -1.56 },
- { "time": 1.8333, "x": -0.91, "y": -0.78 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 53.01 },
- { "time": 0.3333, "angle": 47.24 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 15.96 },
- { "time": 0.8333, "angle": 6.58 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 53.01 },
- { "time": 1.3333, "angle": 47.24 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 15.96 },
- { "time": 1.8333, "angle": 6.58 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -3.29, "y": -0.07 },
- { "time": 0.3333, "x": -1.36, "y": -1.45 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -3.29, "y": -0.07 },
- { "time": 1.3333, "x": -1.36, "y": -1.45 },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 7.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 7.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": -3, "curve": "stepped" },
- { "time": 0.5, "angle": -3, "curve": "stepped" },
- { "time": 1, "angle": -3, "curve": "stepped" },
- { "time": 1.5, "angle": -3, "curve": "stepped" },
- { "time": 2, "angle": -3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": -3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": -3, "curve": "stepped" },
- { "time": 0.5, "angle": -3, "curve": "stepped" },
- { "time": 1, "angle": -3, "curve": "stepped" },
- { "time": 1.5, "angle": -3, "curve": "stepped" },
- { "time": 2, "angle": -3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": -3, "curve": "stepped" },
- { "time": 0.5, "angle": -3, "curve": "stepped" },
- { "time": 1, "angle": -3, "curve": "stepped" },
- { "time": 1.5, "angle": -3, "curve": "stepped" },
- { "time": 2, "angle": -3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": -5.5 },
- { "time": 0.5, "angle": -0.91 },
- { "time": 1, "angle": -5.5 },
- { "time": 1.5, "angle": -0.91 },
- { "time": 2, "angle": -5.5 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 13.98 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 13.98 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": -2.15 },
- { "time": 0.5, "angle": 2.43 },
- { "time": 1, "angle": -2.15 },
- { "time": 1.5, "angle": 2.43 },
- { "time": 2, "angle": -2.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": -2.15 },
- { "time": 0.5, "angle": 2.43 },
- { "time": 1, "angle": -2.15 },
- { "time": 1.5, "angle": 2.43 },
- { "time": 2, "angle": -2.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": -5.95 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": -3.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -3.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -3.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": -3.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -3.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -3.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": -3.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -3.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -3.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": -3.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -3.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -3.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": -3.13 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -3.13 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -3.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": -6.36 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -6.36 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -6.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": -6.36 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -6.36 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -6.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": -6.36 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -6.36 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -6.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.25 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.25 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.25 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.25 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.78 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.78 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.78 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.78 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.78 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.78 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2333, "angle": -0.27 },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.464, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.464, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -3.75, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -3.75, "y": 0 },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -350.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -350.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "shenti": {
- "shenti": [
- {
- "time": 0,
- "offset": 22,
- "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
- },
- {
- "time": 0.5,
- "offset": 20,
- "vertices": [ -0.33125, -2.92809, -0.17871, -7.29823, -0.75983, -7.26077, -2.78868, -2.58969, -2.98625, -2.35921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.13483, -0.63859, 0.08345, -0.6473, -0.37042, -1.64232, -0.46994, -3.97319, -0.78513, -3.9231, -0.85087, -3.02039 ]
- },
- {
- "time": 1,
- "offset": 22,
- "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
- },
- {
- "time": 1.5,
- "offset": 20,
- "vertices": [ -0.33125, -2.92809, -0.17871, -7.29823, -0.75983, -7.26077, -2.78868, -2.58969, -2.98625, -2.35921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.13483, -0.63859, 0.08345, -0.6473, -0.37042, -1.64232, -0.46994, -3.97319, -0.78513, -3.9231, -0.85087, -3.02039 ]
- },
- {
- "time": 2,
- "offset": 22,
- "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
- }
- ]
- },
- "toufa7": {
- "toufa7": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ 1.73582, -2.55186, 2.57886, -1.15296, 2.56683, 0.13107 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ 1.73582, -2.55186, 2.57886, -1.15296, 2.56683, 0.13107 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|