123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257 |
- {
- "skeleton": { "hash": "2FKx1YXQ2demK7w/bpxIsFKiUs8", "spine": "3.6.53", "width": 214.74, "height": 223.45, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -1.12, "y": 64.18 },
- { "name": "bone2", "parent": "bone", "length": 16.23, "rotation": 88.9, "x": 0.31, "y": 2.18 },
- { "name": "bone3", "parent": "bone2", "length": 20.32, "rotation": -2.42, "x": 16.23 },
- { "name": "bone4", "parent": "bone3", "length": 19.71, "rotation": 157.72, "x": 16.05, "y": 7.87, "color": "3b98ffff" },
- { "name": "bone5", "parent": "bone4", "length": 14.65, "rotation": -1.1, "x": 19.71, "color": "3b98ffff" },
- { "name": "bone6", "parent": "bone5", "length": 13.26, "rotation": -1.17, "x": 14.65, "color": "3b98ffff" },
- { "name": "bone7", "parent": "bone3", "length": 20.39, "rotation": -154.58, "x": 17.97, "y": -13.69 },
- { "name": "bone8", "parent": "bone7", "length": 15.22, "rotation": 8.93, "x": 20.21, "y": 0.07 },
- { "name": "bone9", "parent": "bone8", "length": 9.63, "rotation": -9.47, "x": 15.22 },
- { "name": "bone10", "parent": "bone", "length": 10.34, "rotation": -88.92, "x": -0.01, "y": -2.66 },
- { "name": "bone11", "parent": "bone", "length": 16.06, "rotation": -100.49, "x": -6.64, "y": -13.38 },
- { "name": "bone12", "parent": "bone11", "length": 16.99, "rotation": 7.2, "x": 18.47, "y": -0.15 },
- { "name": "bone13", "parent": "bone12", "length": 12.82, "rotation": -73.52, "x": 20.92, "y": -0.36 },
- { "name": "bone14", "parent": "bone", "length": 16.26, "rotation": -84.49, "x": 14.81, "y": -12.99, "color": "4069f6ff" },
- { "name": "bone15", "parent": "bone14", "length": 17.75, "rotation": -3.62, "x": 20.53, "y": -0.41, "color": "4069f6ff" },
- { "name": "bone16", "parent": "bone15", "length": 13.66, "rotation": -82.02, "x": 20.85, "y": -0.88, "color": "4069f6ff" },
- { "name": "bone17", "parent": "bone2", "length": 11.64, "rotation": 18.11, "x": -7.26, "y": -17.02 },
- { "name": "bone18", "parent": "bone3", "length": 12.54, "rotation": 176.32, "x": 16.09, "y": 7.07 },
- { "name": "bone19", "parent": "bone18", "length": 11.07, "rotation": 1.08, "x": 12.54 },
- { "name": "bone20", "parent": "bone19", "length": 10.43, "rotation": -1.1, "x": 11.07 },
- { "name": "bone21", "parent": "bone3", "length": 11.93, "rotation": -174.59, "x": 17.29, "y": -8.21 },
- { "name": "bone22", "parent": "bone21", "length": 8.23, "rotation": 7.27, "x": 14.94, "y": -0.1 },
- { "name": "bone23", "parent": "bone22", "length": 9.47, "rotation": 5.26, "x": 10.36, "y": 0.05 },
- { "name": "bone24", "parent": "bone3", "length": 44.84, "rotation": 6.76, "x": 27.82, "y": 0.32 },
- { "name": "bone25", "parent": "bone24", "length": 9.8, "rotation": -0.66, "x": 13.8, "y": 14.09 },
- { "name": "bone26", "parent": "bone24", "length": 12.55, "rotation": -0.72, "x": 12.04, "y": -13.02 },
- { "name": "bone27", "parent": "bone24", "length": 4.07, "rotation": -1.69, "x": 15.64, "y": 3.74 },
- { "name": "bone28", "parent": "bone24", "length": 4.73, "rotation": -1.9, "x": 28.21, "y": 3.91 },
- { "name": "bone29", "parent": "bone24", "length": 11.88, "rotation": 49.77, "x": 61.98, "y": -11.52 },
- { "name": "bone30", "parent": "bone29", "length": 12.93, "rotation": 52.15, "x": 12.22, "y": 0.42 },
- { "name": "bone31", "parent": "bone30", "length": 12.77, "rotation": 23.23, "x": 12.93 },
- { "name": "bone32", "parent": "bone31", "length": 13.44, "rotation": 14.08, "x": 12.77 },
- { "name": "bone33", "parent": "bone32", "length": 13.58, "rotation": 7.04, "x": 13.44 },
- { "name": "bone34", "parent": "bone33", "length": 8.57, "rotation": 8.21, "x": 13.58 },
- { "name": "bone35", "parent": "bone24", "length": 12.49, "rotation": -171.22, "x": 61.34, "y": -22.66 },
- { "name": "bone36", "parent": "bone35", "length": 9.82, "rotation": -23.47, "x": 12.87, "y": -0.08 },
- { "name": "bone37", "parent": "bone36", "length": 11.15, "rotation": -20.19, "x": 10.45, "y": 0.13 },
- { "name": "bone38", "parent": "bone24", "length": 17.97, "rotation": -10.1, "x": 7.55, "y": -33.67 },
- { "name": "bone39", "parent": "bone24", "length": 15.93, "rotation": -96.33, "x": 61.21, "y": -44.45 },
- { "name": "bone40", "parent": "bone39", "length": 12.92, "rotation": -41.23, "x": 15.94, "y": -0.21 },
- { "name": "bone41", "parent": "bone40", "length": 15.02, "rotation": -32.43, "x": 13.23 },
- { "name": "bone42", "parent": "bone41", "length": 18.05, "rotation": -34.92, "x": 15.02 },
- { "name": "bone43", "parent": "bone42", "length": 18.59, "rotation": -27.08, "x": 18.05 },
- { "name": "bone44", "parent": "bone43", "length": 14.61, "rotation": 15.76, "x": 18.89, "y": 0.02 },
- { "name": "bone45", "parent": "bone44", "length": 11.64, "rotation": 37.22, "x": 14.79, "y": 0.12 },
- { "name": "bone46", "parent": "bone45", "length": 9.2, "rotation": 48.36, "x": 11.64 },
- { "name": "bone47", "parent": "bone46", "length": 12.24, "rotation": 55.84, "x": 9.37, "y": 0.13 },
- { "name": "bone48", "parent": "bone24", "length": 20.87, "rotation": -138.23, "x": 31.47, "y": -28.87 },
- { "name": "bone49", "parent": "bone24", "length": 12.48, "rotation": -2.45, "x": 31.55, "y": -39.98 },
- { "name": "bone50", "parent": "bone24", "length": 13.52, "rotation": -37.93, "x": 66.16, "y": -23.73 },
- { "name": "bone51", "parent": "bone24", "length": 14.4, "rotation": 12.62, "x": 71.42, "y": 17.4 },
- { "name": "bone52", "parent": "bone", "length": 13.77, "rotation": 85.68, "x": 81.94, "y": -8.22 },
- { "name": "bone53", "parent": "bone", "x": -62.84, "y": 9.39 },
- { "name": "bone54", "parent": "bone53", "length": 32.66, "rotation": 87.73, "x": -10.88, "y": -0.26 },
- { "name": "bone55", "parent": "bone53", "x": -17.35, "y": 17.35 },
- { "name": "bone56", "parent": "bone24", "length": 9.46, "rotation": 168.23, "x": 19.19, "y": 23.53 },
- { "name": "bone57", "parent": "bone56", "length": 9.82, "rotation": 20.91, "x": 10.39, "y": 0.14 },
- { "name": "bone58", "parent": "bone24", "length": 12, "rotation": 162.66, "x": 21.78, "y": -31.67 },
- { "name": "bone59", "parent": "bone58", "length": 10, "rotation": -7.97, "x": 14.55, "y": 0.26 },
- { "name": "bone60", "parent": "bone2", "length": 9.46, "rotation": -1.44, "x": -5.55, "y": 1.51 },
- { "name": "bone61", "parent": "bone", "length": 35.24, "rotation": 131.19, "x": -68.01, "y": 89.12 }
- ],
- "slots": [
- { "name": "erduo", "bone": "bone24", "attachment": "erduo" },
- { "name": "biaoqing_1", "bone": "bone61", "attachment": "biaoqing_1" },
- { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
- { "name": "kuzi", "bone": "bone10", "attachment": "kuzi" },
- { "name": "youjiao", "bone": "bone14", "attachment": "youjiao" },
- { "name": "zuojiao", "bone": "bone11", "attachment": "zuojiao" },
- { "name": "chenyi", "bone": "bone2", "attachment": "chenyi" },
- { "name": "xingxing", "bone": "bone60", "attachment": "xingxing" },
- { "name": "youxiji", "bone": "bone17", "attachment": "youxiji" },
- { "name": "waitaoy", "bone": "bone21", "attachment": "waitaoy" },
- { "name": "waitaoz", "bone": "bone18", "attachment": "waitaoz" },
- { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
- { "name": "toufa6", "bone": "bone56", "attachment": "toufa6" },
- { "name": "tou", "bone": "bone24", "attachment": "tou" },
- { "name": "youyan", "bone": "bone26", "attachment": "youyan" },
- { "name": "zuoyan", "bone": "bone25", "attachment": "zuoyan" },
- { "name": "biyan", "bone": "bone27", "attachment": "biyan" },
- { "name": "meimao", "bone": "bone28", "attachment": "meimao" },
- { "name": "yanjing", "bone": "bone24", "attachment": "yanjing" },
- { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
- { "name": "touga4", "bone": "bone24", "attachment": "touga4" },
- { "name": "toufa3", "bone": "bone24", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone48", "attachment": "toufa2" },
- { "name": "toufa8", "bone": "bone58", "attachment": "toufa8" },
- { "name": "erji 3", "bone": "bone38", "attachment": "erji 3" },
- { "name": "erji2", "bone": "bone50", "attachment": "erji2" },
- { "name": "erji", "bone": "bone51", "attachment": "erji" },
- { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
- { "name": "xin3", "bone": "bone52" },
- { "name": "toufa7", "bone": "bone35", "attachment": "toufa7" },
- { "name": "diannao1", "bone": "bone53", "attachment": "diannao1" },
- { "name": "dou", "bone": "bone55", "attachment": "dou" },
- { "name": "dou2", "bone": "bone55", "attachment": "dou2" },
- { "name": "dou3", "bone": "bone55", "attachment": "dou3" },
- { "name": "pinmu", "bone": "bone54", "attachment": "pinmu" },
- { "name": "diannao_x", "bone": "bone53", "attachment": "diannao_x", "blend": "additive" }
- ],
- "skins": {
- "default": {
- "biaoqing_1": {
- "biaoqing_1": { "x": 35.11, "y": -5.19, "rotation": -131.19, "width": 87, "height": 83 }
- },
- "biyan": {
- "biyan": { "x": 2.33, "y": -3.26, "rotation": -91.55, "width": 48, "height": 8 }
- },
- "chenyi": {
- "chenyi": {
- "type": "mesh",
- "uvs": [ 0.46701, 1, 0.1716, 1, 0, 1, 0, 0.67901, 0, 0.61814, 0, 0.54207, 0, 0.4774, 0, 0, 0.20026, 0, 0.35568, 0, 0.18483, 0.54016, 0.39316, 0.43746, 0.40574, 0.53334, 0.18274, 0.6129, 0.41551, 0.60776, 0.18663, 0.47697, 0.18081, 0.67977 ],
- "triangles": [ 9, 12, 11, 15, 7, 8, 8, 9, 11, 15, 8, 11, 6, 7, 15, 9, 0, 12, 15, 11, 12, 10, 15, 12, 10, 6, 15, 5, 6, 10, 0, 14, 12, 13, 5, 10, 13, 10, 12, 13, 12, 14, 4, 5, 13, 16, 3, 4, 13, 16, 4, 1, 2, 3, 16, 1, 3, 16, 13, 14, 0, 16, 14, 1, 16, 0 ],
- "vertices": [ 2, 2, -7.68, -25.53, 0.9779, 3, -22.81, -26.51, 0.0221, 1, 2, -8.18, 0.46, 1, 1, 2, -8.47, 15.56, 1, 2, 2, 7.89, 15.88, 0.95914, 3, -9, 15.51, 0.04086, 2, 2, 11, 15.94, 0.88587, 3, -5.9, 15.7, 0.11413, 2, 2, 14.88, 16.01, 0.72471, 3, -2.03, 15.94, 0.27529, 2, 2, 18.17, 16.07, 0.54562, 3, 1.27, 16.14, 0.45438, 2, 2, 42.52, 16.54, 4.0E-5, 3, 25.57, 17.64, 0.99996, 1, 3, 26.65, 0.05, 1, 1, 3, 27.49, -13.6, 1, 2, 2, 15.29, -0.25, 0.99907, 3, -0.93, -0.29, 9.3E-4, 2, 2, 20.88, -18.48, 0.25104, 3, 5.42, -18.26, 0.74896, 2, 2, 16.01, -19.68, 0.45844, 3, 0.61, -19.67, 0.54156, 2, 2, 11.57, -0.14, 0.99888, 3, -4.64, -0.33, 0.00112, 2, 2, 12.23, -20.61, 0.61916, 3, -3.12, -20.76, 0.38084, 2, 2, 18.51, -0.35, 0.00403, 3, 2.3, -0.25, 0.99597, 2, 2, 8.16, -0.03, 0.9999, 3, -8.06, -0.37, 1.0E-4 ],
- "hull": 10,
- "edges": [ 2, 4, 14, 16, 0, 2, 16, 18, 22, 18, 18, 0, 10, 20, 24, 22, 20, 24, 8, 10, 26, 20, 8, 26, 0, 28, 28, 24, 26, 28, 10, 12, 12, 14, 16, 30, 30, 20, 12, 30, 30, 22, 4, 6, 6, 8, 2, 32, 32, 26, 6, 32 ],
- "width": 88,
- "height": 51
- }
- },
- "diannao1": {
- "diannao1": { "x": 3.93, "y": -2.88, "width": 57, "height": 27 }
- },
- "diannao_x": {
- "diannao_x": { "x": 4.43, "y": -2.11, "width": 57, "height": 27 }
- },
- "dou": {
- "dou": { "x": 4.78, "y": 0.27, "width": 18, "height": 16 }
- },
- "dou2": {
- "dou2": { "x": 15.28, "y": -4.23, "width": 9, "height": 9 }
- },
- "dou3": {
- "dou3": { "x": 23.78, "y": -7.23, "width": 10, "height": 11 }
- },
- "erduo": {
- "erduo": { "x": 18.19, "y": 23.94, "rotation": -93.23, "width": 19, "height": 20 }
- },
- "erji": {
- "erji": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.4713, 1, 0, 1, 0, 0, 0.3319, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
- "vertices": [ 1, 51, -18.72, -12, 1, 1, 51, -14.39, 3.26, 1, 1, 51, -10.52, 16.86, 1, 1, 51, 22.18, 7.57, 1, 1, 51, 19.46, -2.01, 1, 1, 51, 13.99, -21.29, 1 ],
- "hull": 6,
- "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
- "width": 30,
- "height": 34
- }
- },
- "erji 3": {
- "erji 3": { "x": 14.26, "y": 1.84, "rotation": -83.13, "width": 27, "height": 44 }
- },
- "erji2": {
- "erji2": { "x": -3.24, "y": 0.3, "rotation": -55.3, "width": 52, "height": 45 }
- },
- "kuzi": {
- "kuzi": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 15.3, 25.32, 14.5, -16.68, -11.49, -16.19, -10.7, 25.81 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 42,
- "height": 26
- }
- },
- "meimao": {
- "meimao": { "x": 2.31, "y": -2.63, "rotation": -91.33, "width": 37, "height": 7 }
- },
- "pinmu": {
- "pinmu": {
- "type": "mesh",
- "uvs": [ 1, 0.21023, 0.86947, 1, 0, 0.65903, 0, 0 ],
- "triangles": [ 2, 3, 0, 1, 2, 0 ],
- "vertices": [ 30.48, -30.12, -17.11, -25.74, 1.67, 16.77, 41.18, 18.34 ],
- "hull": 4,
- "edges": [ 4, 6, 2, 4, 6, 0, 0, 2 ],
- "width": 48,
- "height": 60
- }
- },
- "tou": {
- "tou": {
- "type": "mesh",
- "uvs": [ 1, 0.72889, 0.76375, 1, 0.18576, 1, 0.10445, 0, 1, 0 ],
- "triangles": [ 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
- "vertices": [ 12.73, -41.36, -8.32, -19.82, -5.51, 29.81, 76.75, 32.17, 72.41, -44.73 ],
- "hull": 5,
- "edges": [ 6, 8, 6, 4, 0, 8, 2, 4, 0, 2 ],
- "width": 86,
- "height": 82
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.99999, 0.31789, 1, 0.42804, 0.79298, 0.38945, 0.66887, 0.44932, 0.58243, 0.55604, 0.50722, 0.68811, 0.42336, 0.83536, 0.32961, 1, 0, 1, 0, 0.73684, 0, 0.53245, 1.0E-5, 0.33512, 0.18767, 0.13228, 0.39201, 0, 0.61069, 1.0E-5, 1, 0, 0.67867, 0.11584, 0.50973, 0.14089, 0.34982, 0.26167, 0.20479, 0.42939, 0.10601, 0.59704, 0.06041, 0.77037 ],
- "triangles": [ 21, 9, 20, 21, 20, 6, 8, 9, 21, 7, 21, 6, 8, 21, 7, 10, 11, 19, 20, 10, 19, 20, 19, 5, 9, 10, 20, 6, 20, 5, 11, 12, 19, 5, 19, 4, 18, 12, 13, 18, 13, 17, 19, 12, 18, 18, 17, 3, 4, 18, 3, 19, 18, 4, 17, 13, 14, 17, 14, 16, 3, 17, 16, 16, 14, 15, 0, 16, 15, 2, 16, 0, 2, 0, 1, 3, 16, 2 ],
- "vertices": [ 4, 29, -14.09, -0.52, 0.99984, 30, -16.89, 20.2, 7.0E-5, 31, -19.43, 30.32, 8.0E-5, 32, -23.86, 37.24, 1.0E-5, 1, 29, -18.33, 5.11, 1, 6, 29, -6.1, 11.23, 0.76457, 30, -2.7, 21.1, 0.10996, 31, -6.04, 25.55, 0.09117, 32, -12.03, 29.36, 0.02848, 33, -21.68, 32.26, 0.00446, 34, -30.29, 36.97, 0.00135, 6, 29, -1.96, 19.15, 0.31062, 30, 6.09, 22.69, 0.18864, 31, 2.66, 23.55, 0.28813, 32, -4.08, 25.3, 0.14864, 33, -14.28, 27.26, 0.04199, 34, -23.69, 30.95, 0.02199, 6, 29, -1.58, 27.98, 0.08591, 30, 13.3, 27.81, 0.08281, 31, 11.31, 25.41, 0.2768, 32, 4.76, 25, 0.29294, 33, -5.55, 25.88, 0.15277, 34, -15.24, 28.35, 0.10877, 6, 29, -2.76, 37.67, 0.0151, 30, 20.23, 34.69, 0.01786, 31, 20.39, 29, 0.12824, 32, 14.44, 26.28, 0.2421, 33, 4.22, 25.96, 0.26601, 34, -5.56, 27.03, 0.33068, 6, 29, -4.08, 48.48, 5.3E-4, 30, 27.95, 42.36, 0.00105, 31, 30.51, 33, 0.03466, 32, 25.24, 27.7, 0.09156, 33, 15.1, 26.04, 0.18882, 34, 5.23, 25.56, 0.68339, 4, 31, 41.83, 37.48, 0.00491, 32, 37.31, 29.28, 0.0195, 33, 27.27, 26.14, 0.05953, 34, 17.29, 23.91, 0.91605, 1, 34, 25.41, 4.09, 1, 1, 34, 9.83, -2.3, 1, 3, 32, 26.63, -5.94, 0.00271, 33, 12.36, -7.51, 0.81066, 34, -2.28, -7.26, 0.18663, 3, 31, 32.2, -9.18, 2.0E-5, 32, 16.62, -13.63, 0.28198, 33, 1.48, -13.92, 0.718, 3, 31, 14.58, -11.78, 0.51595, 32, -1.11, -11.87, 0.44326, 33, -15.9, -9.99, 0.04079, 2, 30, 15.94, -9.77, 0.25149, 31, -1.09, -10.17, 0.74851, 3, 29, 18.36, -1.55, 0.17478, 30, 2.22, -6.06, 0.82486, 31, -12.23, -1.34, 3.6E-4, 1, 29, -1.85, -16.77, 1, 4, 29, 10.37, 1.72, 0.46008, 30, -0.11, 2.25, 0.53474, 31, -11.09, 7.21, 0.00483, 32, -21.39, 12.8, 3.5E-4, 4, 29, 18.18, 9.6, 0.00236, 30, 10.91, 0.93, 0.98337, 31, -1.49, 1.65, 0.01378, 32, -13.43, 5.07, 4.9E-4, 5, 29, 21.83, 22.03, 7.3E-4, 30, 22.97, 5.68, 7.9E-4, 31, 11.46, 1.26, 0.91814, 32, -0.96, 1.54, 0.08008, 34, -26.93, 7.21, 2.6E-4, 6, 29, 22.9, 36.28, 2.0E-5, 30, 34.87, 13.57, 0, 31, 25.52, 3.82, 7.5E-4, 32, 13.29, 0.6, 0.54131, 33, -0.08, 0.62, 0.45693, 34, -13.43, 2.56, 9.8E-4, 4, 31, 37.21, 8.24, 1.4E-4, 32, 25.71, 2.05, 3.9E-4, 33, 12.43, 0.53, 0.92341, 34, -1.06, 0.69, 0.07606, 3, 31, 46.42, 15.09, 7.0E-5, 32, 36.31, 6.45, 2.3E-4, 34, 10.32, 2.15, 0.9997 ],
- "hull": 16,
- "edges": [ 14, 16, 2, 0, 0, 30, 0, 32, 32, 34, 34, 36, 36, 38, 38, 40, 26, 28, 28, 30, 28, 32, 2, 4, 4, 6, 32, 4, 26, 34, 34, 6, 22, 24, 24, 26, 24, 36, 6, 8, 36, 8, 22, 38, 8, 10, 38, 10, 20, 22, 20, 40, 10, 12, 12, 14, 40, 12, 16, 18, 18, 20, 16, 42, 42, 40, 18, 42, 42, 14 ],
- "width": 65,
- "height": 64
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.51805, 0.39199, 1, 0.65903, 1, 1, 0.42472, 1, 0.13036, 0.62532 ],
- "triangles": [ 3, 4, 0, 3, 0, 1, 3, 1, 2 ],
- "vertices": [ -7.69, 8.71, 15.8, 11.81, 28.82, -1.21, 12.96, -17.08, -9.47, -10.89 ],
- "hull": 5,
- "edges": [ 4, 2, 2, 0, 0, 8, 4, 6, 8, 6 ],
- "width": 39,
- "height": 54
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 45.97, -16.19, 47.5, 10.76, 62.47, 9.92, 60.95, -17.04 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 27,
- "height": 15
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 0.82231, 0.05777, 0.99999, 0.19042, 1, 0.36824, 0.99999, 0.49486, 0.85363, 0.63095, 0.71139, 0.67577, 0.56341, 0.7273, 0.49056, 0.76382, 0.42211, 0.79812, 0.40601, 0.82024, 0.38069, 0.85313, 0.42115, 0.86343, 0.46686, 0.82854, 0.55357, 0.79269, 0.73531, 0.85612, 0.74575, 0.94142, 0.59577, 0.99999, 0.38778, 1, 0.25159, 1, 0.07063, 0.93289, 0, 0.86295, 0, 0.77595, 0.06715, 0.66677, 0.25273, 0.61286, 0.36368, 0.55895, 0.42615, 0.52657, 0.48475, 0.49618, 0.46721, 0.45698, 0.45134, 0.42151, 0.41791, 0.38524, 0.33859, 0.33924, 0, 0.33242, 0, 0.13795, 0, 0, 0.69703, 0, 0.55087, 0.1533, 0.76855, 0.2863, 0.80491, 0.38359, 0.71485, 0.49718, 0.40123, 0.66506, 0.23071, 0.78789, 0.23071, 0.909, 0.45881, 0.956, 0.63737, 0.92391, 0.61699, 0.81689, 0.65349, 0.19732, 0.6228, 0.54646, 0.5213, 0.60079, 0.31284, 0.72873, 0.23071, 0.8493, 0.35642, 0.94456 ],
- "triangles": [ 44, 13, 14, 43, 44, 14, 13, 44, 43, 43, 14, 15, 42, 11, 12, 50, 11, 42, 43, 42, 12, 43, 12, 13, 16, 42, 43, 16, 43, 15, 17, 50, 42, 17, 42, 16, 50, 41, 10, 50, 10, 11, 18, 41, 50, 19, 41, 18, 18, 50, 17, 49, 21, 40, 49, 40, 9, 10, 49, 9, 20, 21, 49, 41, 49, 10, 19, 20, 49, 41, 19, 49, 48, 23, 39, 22, 23, 48, 7, 39, 6, 48, 39, 7, 40, 22, 48, 21, 22, 40, 8, 48, 7, 40, 48, 8, 9, 40, 8, 25, 26, 46, 47, 25, 46, 24, 25, 47, 39, 24, 47, 23, 24, 39, 5, 46, 4, 47, 46, 5, 6, 47, 5, 39, 47, 6, 3, 37, 2, 38, 26, 27, 37, 38, 27, 38, 37, 3, 46, 26, 38, 4, 38, 3, 46, 38, 4, 36, 1, 2, 37, 36, 2, 28, 45, 36, 27, 28, 36, 27, 36, 37, 45, 35, 34, 45, 34, 0, 36, 45, 0, 36, 0, 1, 29, 35, 45, 28, 29, 45, 35, 32, 33, 34, 35, 33, 30, 31, 32, 35, 30, 32, 29, 30, 35 ],
- "vertices": [ 3, 39, 29.27, 9.9, 0.09559, 40, 3.35, 16.39, 0.90387, 41, -17.12, 8.54, 5.4E-4, 2, 40, 19.16, 12.91, 0.55599, 41, -1.92, 14.09, 0.44401, 2, 41, 16.42, 12.25, 0.68146, 42, -5.87, 10.85, 0.31854, 3, 41, 28.31, 6.97, 0.01224, 42, 6.91, 13.33, 0.98349, 43, -15.98, 6.79, 0.00427, 3, 42, 22.51, 11.65, 0.40901, 43, -1.33, 12.41, 0.57972, 44, -16.1, 17.41, 0.01127, 3, 42, 29.38, 6.73, 0.04252, 43, 7.03, 11.15, 0.82894, 44, -8.39, 13.94, 0.12854, 3, 43, 16.06, 10.23, 0.31177, 44, 0.05, 10.59, 0.68391, 45, -5.4, 17.26, 0.00432, 4, 43, 21.25, 10.63, 0.02369, 44, 5.16, 9.57, 0.91997, 45, -1.96, 13.35, 0.0561, 47, 10.91, 17.59, 2.3E-4, 4, 44, 9.95, 8.6, 0.71108, 45, 1.28, 9.68, 0.27151, 46, 0.35, 14.18, 0.00477, 47, 6.55, 15.35, 0.01264, 4, 44, 12.29, 9.15, 0.46873, 45, 3.47, 8.71, 0.46189, 46, 1.08, 11.89, 0.02528, 47, 5.08, 13.47, 0.04409, 4, 44, 15.79, 9.92, 0.1198, 45, 6.72, 7.2, 0.54687, 46, 2.11, 8.46, 0.13259, 47, 2.82, 10.68, 0.20073, 4, 44, 15.57, 12.19, 0.02429, 45, 7.92, 9.14, 0.25666, 46, 4.36, 8.85, 0.1608, 47, 4.4, 9.05, 0.55825, 4, 44, 11.34, 12.17, 9.1E-4, 45, 4.54, 11.68, 0.08484, 46, 4.01, 13.07, 0.04494, 47, 7.7, 11.7, 0.86931, 3, 45, 1.21, 16.28, 0.03658, 46, 5.23, 18.61, 0.0062, 47, 12.97, 13.8, 0.95722, 2, 45, 8.34, 24.86, 0.00127, 47, 19.54, 4.79, 0.99873, 1, 47, 17.28, -3.63, 1, 1, 47, 8.28, -6.93, 1, 2, 46, 11.49, -3.22, 0.43188, 47, -1.59, -3.64, 0.56812, 3, 45, 21.19, -0.34, 0.01634, 46, 6.09, -7.36, 0.97687, 47, -8.05, -1.49, 0.00679, 2, 45, 13.69, -8.86, 0.77404, 46, -5.26, -7.42, 0.22596, 3, 44, 26.99, -5.5, 0.03009, 45, 6.32, -11.86, 0.96536, 46, -12.4, -3.9, 0.00455, 2, 44, 19.55, -10.33, 0.40237, 45, -2.53, -11.2, 0.59763, 2, 44, 8.38, -13.58, 0.96159, 45, -13.39, -7.03, 0.03841, 2, 43, 20.04, -8.79, 0.21782, 44, -1.28, -8.79, 0.78218, 6, 39, 9.13, -42.39, 8.0E-5, 40, 22.67, -36.21, 1.0E-4, 41, 27.39, -25.49, 1.4E-4, 42, 24.73, -13.83, 0.02359, 43, 12.25, -9.27, 0.89499, 44, -8.92, -7.13, 0.0811, 6, 39, 12.07, -38.92, 0.00188, 40, 22.59, -31.66, 0.00193, 41, 24.89, -21.7, 0.00485, 42, 20.51, -12.14, 0.13797, 43, 7.72, -9.69, 0.8496, 44, -13.39, -6.31, 0.00377, 5, 39, 14.83, -35.67, 0.01217, 40, 22.53, -27.4, 0.01181, 41, 22.54, -18.13, 0.03283, 42, 16.55, -10.57, 0.43274, 43, 3.47, -10.09, 0.51046, 5, 39, 13.74, -31.72, 0.0451, 40, 19.1, -25.15, 0.04158, 41, 18.45, -18.07, 0.11059, 42, 13.15, -12.86, 0.60124, 43, 1.5, -13.67, 0.20149, 5, 39, 12.75, -28.15, 0.10106, 40, 16.01, -23.12, 0.08566, 41, 14.74, -18.02, 0.19346, 42, 10.08, -14.93, 0.53797, 43, -0.29, -16.92, 0.08185, 5, 39, 10.88, -24.55, 0.21705, 40, 12.23, -21.64, 0.14936, 41, 10.76, -18.8, 0.24177, 42, 7.26, -17.85, 0.36909, 43, -1.47, -20.8, 0.02273, 5, 39, 6.67, -20.08, 0.52896, 40, 6.11, -21.05, 0.17345, 41, 5.28, -21.58, 0.15309, 42, 4.37, -23.27, 0.14333, 43, -1.59, -26.94, 0.00116, 4, 39, -10.28, -20.29, 0.94976, 40, -6.49, -32.38, 0.02325, 41, 0.73, -37.9, 0.01352, 42, 9.98, -39.26, 0.01347, 2, 39, -11.35, -0.49, 0.99996, 42, -8.46, -46.58, 4.0E-5, 1, 39, -12.11, 13.56, 1, 2, 39, 22.69, 15.44, 0.33618, 40, -5.24, 16.22, 0.66382, 4, 39, 16.24, -0.56, 0.34796, 40, 0.45, -0.07, 0.65198, 41, -10.75, -6.91, 4.0E-5, 42, -17.18, -20.41, 2.0E-5, 1, 41, 4.95, 0.58, 1, 2, 41, 15.03, 0.08, 0.50489, 42, -0.04, 0.07, 0.49511, 1, 42, 12.39, 0.16, 1, 2, 43, 17.97, 0.11, 1, 45, -12.33, 9.64, 0, 2, 44, 14.29, 0, 0.68651, 45, -0.47, 0.21, 0.31349, 2, 45, 11.85, -0.7, 0.53287, 46, -0.38, -0.62, 0.46713, 1, 47, 3.2, -0.51, 1, 1, 47, 12.71, -0.22, 1, 3, 45, 3.91, 19.26, 0.02326, 46, 9.25, 18.57, 0.00175, 47, 15.19, 10.46, 0.975, 1, 40, 7.26, 0.3, 1, 5, 39, 22, -40.41, 3.9E-4, 40, 31.05, -26.24, 4.0E-4, 41, 29.11, -12.59, 9.0E-4, 42, 18.76, -2.26, 0.1765, 43, 1.67, -1.68, 0.82183, 4, 39, 17.23, -46.22, 0, 40, 31.29, -33.75, 1.0E-5, 42, 25.79, -4.93, 0.00256, 43, 9.14, -0.86, 0.99743, 1, 44, 6.99, 0.16, 1, 1, 45, 5.78, -0.25, 1, 3, 45, 15.93, 5.3, 0.00104, 46, 6.81, 0.31, 0.99418, 47, -1.28, 2.22, 0.00478 ],
- "hull": 35,
- "edges": [ 64, 66, 64, 70, 72, 74, 74, 76, 84, 86, 86, 88, 66, 68, 68, 0, 0, 2, 62, 64, 62, 60, 60, 58, 46, 44, 44, 42, 40, 42, 40, 38, 38, 36, 2, 4, 4, 6, 6, 8, 26, 28, 28, 30, 30, 32, 60, 70, 70, 68, 70, 90, 90, 72, 58, 90, 90, 0, 56, 58, 56, 72, 72, 2, 52, 54, 54, 56, 54, 74, 74, 4, 52, 76, 76, 6, 50, 52, 76, 92, 50, 92, 92, 8, 46, 48, 48, 50, 78, 94, 94, 92, 48, 94, 8, 10, 10, 12, 94, 10, 46, 78, 78, 12, 78, 96, 96, 80, 44, 96, 12, 14, 14, 16, 96, 14, 42, 80, 80, 16, 80, 98, 98, 82, 40, 98, 16, 18, 18, 20, 98, 18, 38, 82, 82, 20, 82, 100, 100, 84, 36, 100, 20, 22, 100, 22, 32, 34, 34, 36, 34, 84, 22, 24, 24, 26, 84, 24, 32, 86, 86, 26 ],
- "width": 50,
- "height": 102
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 0.85933, 0.36077, 0.81845, 0.4656, 0.77231, 0.58392, 0.74316, 0.65868, 0.71099, 0.74119, 0.61007, 1, 0.31553, 1, 0, 1, 0, 0.73645, 0, 0.67258, 0, 0.58839, 0, 0.46646, 1.0E-5, 0.35614, 0, 0, 0.36871, 0, 1, 0, 0.25008, 0.58259, 0.27425, 0.4639, 0.27316, 0.72979, 0.26347, 0.66799, 0.29579, 0.34627 ],
- "triangles": [ 9, 16, 19, 4, 18, 19, 8, 9, 19, 8, 19, 18, 3, 4, 19, 7, 8, 18, 5, 6, 18, 7, 18, 6, 4, 5, 18, 20, 13, 14, 12, 13, 20, 0, 14, 15, 20, 14, 0, 17, 12, 20, 1, 20, 0, 17, 20, 1, 11, 12, 17, 16, 11, 17, 2, 17, 1, 16, 17, 2, 10, 11, 16, 3, 16, 2, 19, 16, 3, 9, 10, 16 ],
- "vertices": [ 2, 56, 0.39, 12.24, 0.9728, 57, -5.03, 14.88, 0.0272, 2, 56, 3.73, 11.84, 0.89752, 57, -2.04, 13.3, 0.10248, 2, 56, 7.51, 11.38, 0.70552, 57, 1.32, 11.53, 0.29448, 2, 56, 9.9, 11.09, 0.52387, 57, 3.45, 10.4, 0.47613, 2, 56, 12.53, 10.77, 0.31147, 57, 5.79, 9.16, 0.68853, 2, 56, 20.8, 9.76, 0.0072, 57, 13.15, 5.27, 0.9928, 1, 57, 11.76, -1.06, 1, 1, 57, 10.28, -7.84, 1, 2, 56, 14.71, -4.72, 0.06201, 57, 2.3, -6.08, 0.93799, 2, 56, 12.75, -5.02, 0.22279, 57, 0.36, -5.66, 0.77721, 2, 56, 10.17, -5.41, 0.61705, 57, -2.19, -5.1, 0.38295, 2, 56, 6.43, -5.97, 0.97215, 57, -5.88, -4.29, 0.02785, 1, 56, 3.05, -6.47, 1, 1, 56, -7.87, -8.11, 1, 1, 56, -9.07, -0.09, 1, 1, 56, -11.13, 13.64, 1, 1, 56, 9.17, 0.01, 1, 1, 56, 5.46, -0.01, 1, 1, 57, 3.38, -0.17, 1, 1, 57, 1.47, 0.03, 1, 1, 56, 1.78, -0.08, 1 ],
- "hull": 16,
- "edges": [ 26, 28, 28, 30, 12, 14, 10, 12, 20, 32, 32, 4, 20, 22, 34, 32, 22, 34, 4, 2, 34, 2, 14, 16, 12, 36, 16, 36, 8, 10, 36, 8, 16, 18, 18, 20, 32, 38, 38, 36, 18, 38, 4, 6, 6, 8, 38, 6, 22, 24, 24, 26, 28, 40, 40, 34, 24, 40, 2, 0, 0, 30, 40, 0 ],
- "width": 22,
- "height": 31
- }
- },
- "toufa7": {
- "toufa7": {
- "type": "mesh",
- "uvs": [ 0.59685, 0.23625, 0.596, 0.33144, 0.59531, 0.40874, 0.59484, 0.46057, 0.59435, 0.51569, 0.59344, 0.61683, 0.5922, 0.75609, 0.11606, 0.76843, 0, 0.77144, 0, 0.60692, 0, 0.51577, 0, 0.46796, 0, 0.42265, 0, 0.32754, 0, 0.25026, 0, 0, 0.28376, 0, 0.59896, 0, 0.35784, 0.33744, 0.30845, 0.52568, 0.33619, 0.41995, 0.33624, 0.23905, 0.24575, 0.6048, 0.32398, 0.46651 ],
- "triangles": [ 8, 9, 7, 7, 22, 6, 7, 9, 22, 6, 22, 5, 22, 19, 5, 5, 19, 4, 9, 10, 22, 22, 10, 19, 19, 23, 4, 23, 19, 11, 19, 10, 11, 4, 23, 3, 11, 12, 23, 23, 20, 3, 23, 12, 20, 3, 20, 2, 12, 13, 20, 20, 18, 2, 2, 18, 1, 20, 13, 18, 13, 21, 18, 1, 18, 0, 0, 18, 21, 13, 14, 21, 14, 16, 21, 14, 15, 16, 0, 21, 17, 17, 21, 16 ],
- "vertices": [ 2, 35, 9.23, 10.17, 0.79789, 36, -7.43, 7.95, 0.20211, 3, 35, 14.25, 9.06, 0.36954, 36, -2.38, 8.93, 0.6198, 37, -15.09, 3.83, 0.01066, 3, 35, 18.33, 8.17, 0.07855, 36, 1.71, 9.74, 0.84083, 37, -11.52, 6, 0.08062, 3, 35, 21.06, 7.57, 0.01195, 36, 4.46, 10.28, 0.79744, 37, -9.13, 7.45, 0.19061, 2, 36, 7.38, 10.85, 0.62942, 37, -6.58, 9, 0.37058, 2, 36, 12.74, 11.9, 0.25611, 37, -1.91, 11.84, 0.74389, 2, 36, 20.12, 13.35, 0.04377, 37, 4.51, 15.74, 0.95623, 1, 37, 14.82, 0.28, 1, 2, 36, 25.52, -9.13, 1.1E-4, 37, 17.34, -3.48, 0.99989, 3, 35, 23.96, -16.77, 0.05012, 36, 16.82, -10.89, 0.16389, 37, 9.78, -8.15, 0.78598, 3, 35, 19.15, -15.74, 0.19331, 36, 11.99, -11.87, 0.38378, 37, 5.59, -10.73, 0.42291, 3, 35, 16.62, -15.21, 0.32013, 36, 9.46, -12.38, 0.43626, 37, 3.39, -12.08, 0.24361, 3, 35, 14.23, -14.7, 0.46798, 36, 7.06, -12.87, 0.40989, 37, 1.3, -13.37, 0.12213, 3, 35, 9.2, -13.63, 0.78144, 36, 2.03, -13.89, 0.20556, 37, -3.07, -16.06, 0.013, 3, 35, 5.12, -12.76, 0.93584, 36, -2.06, -14.72, 0.06413, 37, -6.62, -18.25, 4.0E-5, 1, 35, -8.09, -9.95, 1, 1, 35, -5.79, 0.88, 1, 1, 35, -3.23, 12.9, 1, 2, 35, 12.63, -0.09, 0.80722, 36, -0.22, -0.1, 0.19278, 2, 36, 10.13, 0.03, 0.54513, 37, -0.27, -0.21, 0.45487, 2, 35, 16.81, -1.84, 0.0016, 36, 4.32, -0.05, 0.9984, 2, 35, 7.26, 0.19, 0.99973, 36, -5.26, -1.98, 2.7E-4, 3, 35, 25.84, -7.37, 2.0E-4, 36, 14.8, -1.52, 0.00159, 37, 4.65, -0.05, 0.99821, 2, 35, 19.18, -2.83, 3.5E-4, 36, 6.87, -0.01, 0.99965 ],
- "hull": 18,
- "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 20, 38, 38, 8, 16, 18, 18, 20, 14, 44, 44, 38, 18, 44, 8, 10, 10, 12, 44, 10, 20, 22, 22, 24, 38, 46, 46, 40, 22, 46, 4, 6, 6, 8, 46, 6 ],
- "width": 39,
- "height": 54
- }
- },
- "toufa8": {
- "toufa8": {
- "type": "mesh",
- "uvs": [ 0.63224, 0.90107, 0.64572, 0.84977, 0.65555, 0.81238, 0.67141, 0.75209, 0.70565, 0.62186, 0.82082, 0.62186, 1, 0.62186, 0.93014, 0.77748, 0.90948, 0.8235, 0.88794, 0.87148, 0.8633, 0.92637, 0.83025, 1, 0.70956, 1, 0.60623, 1, 0.77268, 0.8191, 0.75777, 0.86183, 0.7402, 0.9122, 0.78514, 0.76807 ],
- "triangles": [ 15, 2, 14, 1, 2, 15, 15, 14, 9, 16, 1, 15, 0, 1, 16, 10, 15, 9, 16, 15, 10, 12, 0, 16, 13, 0, 12, 11, 16, 10, 12, 16, 11, 17, 4, 5, 3, 4, 17, 7, 5, 6, 17, 5, 7, 14, 3, 17, 2, 3, 14, 8, 17, 7, 14, 17, 8, 9, 14, 8 ],
- "vertices": [ 2, 58, 22.43, -10.21, 0.04233, 59, 9.25, -9.28, 0.95767, 2, 58, 17.96, -10.13, 0.20308, 59, 4.82, -9.82, 0.79692, 2, 58, 14.71, -10.08, 0.43256, 59, 1.59, -10.22, 0.56744, 2, 58, 9.47, -9.99, 0.82614, 59, -3.61, -10.86, 0.17386, 1, 58, -1.86, -9.8, 1, 1, 58, -4.27, -0.19, 1, 1, 58, -8.03, 14.75, 1, 2, 58, 6.11, 12.11, 0.89359, 59, -10, 10.56, 0.10641, 2, 58, 10.3, 11.33, 0.68969, 59, -5.75, 10.37, 0.31031, 2, 58, 14.66, 10.51, 0.35319, 59, -1.32, 10.17, 0.64681, 2, 58, 19.64, 9.58, 0.06465, 59, 3.75, 9.94, 0.93535, 1, 59, 10.55, 9.62, 1, 1, 59, 14.45, 0.01, 1, 1, 59, 17.79, -8.23, 1, 2, 58, 12.8, -0.17, 0.73619, 59, -1.67, -0.67, 0.26381, 2, 58, 16.6, -0.54, 0.01033, 59, 2.14, -0.51, 0.98967, 2, 58, 21.07, -0.98, 8.2E-4, 59, 6.63, -0.32, 0.99918, 1, 58, 8.39, -0.18, 1 ],
- "hull": 14,
- "edges": [ 8, 10, 10, 12, 22, 24, 24, 26, 4, 28, 28, 16, 4, 2, 30, 28, 2, 30, 16, 18, 30, 18, 2, 0, 0, 26, 24, 32, 32, 30, 0, 32, 18, 20, 20, 22, 32, 20, 4, 6, 6, 8, 10, 34, 34, 28, 6, 34, 12, 14, 14, 16, 34, 14 ],
- "width": 86,
- "height": 84
- }
- },
- "touga4": {
- "touga4": {
- "type": "mesh",
- "uvs": [ 1, 0.24745, 1, 0.66111, 0.71379, 0.66807, 0.65267, 0.40388, 0, 0.38128, 0, 0.1953, 0.29956, 0, 0.77321, 0 ],
- "triangles": [ 4, 5, 6, 3, 6, 7, 3, 7, 0, 4, 6, 3, 3, 0, 1, 2, 3, 1 ],
- "vertices": [ 56.31, -49.83, 21.61, -47.87, 22.42, -23.26, 44.87, -19.26, 49.94, 36.67, 65.53, 35.79, 80.46, 9.14, 78.16, -31.53 ],
- "hull": 8,
- "edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 14, 0, 12, 14, 8, 10, 12, 10 ],
- "width": 86,
- "height": 84
- }
- },
- "waitaoy": {
- "waitaoy": {
- "type": "mesh",
- "uvs": [ 0.79442, 0.37775, 0.8228, 0.4445, 0.85076, 0.51029, 0.88037, 0.57996, 0.90907, 0.64748, 0.94564, 0.73351, 0.97594, 0.80479, 1, 0.86141, 1, 1, 0.58066, 1, 0, 1, 0, 0.95122, 0, 0.85277, 0, 0.7785, 0, 0.7025, 0, 0.63341, 0, 0.56259, 0, 0.48314, 0, 0.42268, 0, 0, 0.28046, 0, 0.63386, 0, 0.28046, 0.46586, 0.36406, 0.68177, 0.28046, 0.40886, 0.3127, 0.54912, 0.33819, 0.61496, 0.45975, 0.82236, 0.41053, 0.75004, 0.52293, 0.91518 ],
- "triangles": [ 9, 7, 8, 10, 29, 9, 9, 29, 7, 10, 11, 29, 11, 27, 29, 11, 12, 27, 29, 6, 7, 29, 27, 6, 12, 28, 27, 12, 13, 28, 27, 5, 6, 27, 28, 5, 13, 23, 28, 13, 14, 23, 28, 4, 5, 28, 23, 4, 14, 26, 23, 14, 15, 26, 23, 3, 4, 23, 26, 3, 15, 25, 26, 15, 16, 25, 26, 2, 3, 26, 25, 2, 16, 22, 25, 16, 17, 22, 25, 1, 2, 25, 22, 1, 17, 18, 22, 22, 0, 1, 18, 24, 22, 22, 24, 0, 24, 19, 20, 24, 18, 19, 24, 21, 0, 24, 20, 21 ],
- "vertices": [ 3, 21, 11.12, 10.23, 0.65952, 22, -2.48, 10.73, 0.33358, 23, -11.81, 11.81, 0.0069, 3, 21, 14.07, 10.7, 0.42652, 22, 0.51, 10.82, 0.53321, 23, -8.82, 11.63, 0.04027, 3, 21, 16.98, 11.17, 0.22742, 22, 3.45, 10.92, 0.64769, 23, -5.88, 11.45, 0.12489, 3, 21, 20.07, 11.66, 0.09301, 22, 6.57, 11.01, 0.61197, 23, -2.76, 11.26, 0.29502, 3, 21, 23.05, 12.13, 0.02909, 22, 9.6, 11.11, 0.45119, 23, 0.26, 11.08, 0.51973, 3, 21, 26.86, 12.74, 0.00269, 22, 13.45, 11.23, 0.21467, 23, 4.1, 10.84, 0.78264, 3, 21, 30.02, 13.24, 0, 22, 16.64, 11.32, 0.08579, 23, 7.29, 10.65, 0.9142, 2, 22, 19.18, 11.4, 0.03431, 23, 9.82, 10.49, 0.96569, 1, 23, 15.73, 8.97, 1, 1, 23, 13.64, 0.85, 1, 1, 23, 10.75, -10.4, 1, 2, 22, 19.9, -8.97, 1.6E-4, 23, 8.67, -9.86, 0.99984, 2, 22, 15.62, -8.28, 0.03607, 23, 4.48, -8.78, 0.96393, 2, 22, 12.39, -7.76, 0.18143, 23, 1.31, -7.97, 0.81857, 2, 22, 9.09, -7.23, 0.51595, 23, -1.93, -7.14, 0.48405, 2, 22, 6.09, -6.74, 0.83293, 23, -4.87, -6.38, 0.16707, 3, 21, 18.72, -5.92, 0.01354, 22, 3.02, -6.25, 0.96536, 23, -7.89, -5.6, 0.0211, 2, 21, 15.23, -5.8, 0.21682, 22, -0.44, -5.69, 0.78318, 2, 21, 12.57, -5.71, 0.57721, 22, -3.06, -5.27, 0.42279, 1, 21, -6.02, -5.1, 1, 1, 21, -5.83, 0.51, 1, 1, 21, -5.6, 7.57, 1, 2, 21, 14.65, -0.17, 0.04446, 22, -0.29, -0.03, 0.95554, 2, 22, 9.35, 0.1, 0.45628, 23, -1, 0.14, 0.54372, 2, 21, 12.15, -0.09, 0.95861, 22, -2.77, 0.37, 0.04139, 2, 22, 3.43, 0.02, 0.99999, 23, -6.91, 0.6, 1.0E-5, 3, 21, 21.25, 0.77, 6.0E-5, 22, 6.37, 0.06, 0.99972, 23, -3.97, 0.37, 2.3E-4, 2, 22, 15.76, 1.01, 0.00114, 23, 5.47, 0.46, 0.99886, 2, 22, 12.47, 0.54, 0.00385, 23, 2.14, 0.29, 0.99615, 2, 22, 20, 1.61, 4.0E-5, 23, 9.74, 0.66, 0.99996 ],
- "hull": 22,
- "edges": [ 38, 40, 16, 18, 18, 20, 40, 42, 16, 14, 34, 44, 44, 2, 34, 36, 36, 38, 40, 48, 48, 44, 36, 48, 2, 0, 0, 42, 48, 0, 32, 34, 44, 50, 32, 50, 2, 4, 50, 4, 28, 46, 46, 8, 28, 30, 30, 32, 46, 52, 52, 50, 30, 52, 4, 6, 6, 8, 52, 6, 24, 54, 12, 14, 54, 12, 24, 26, 26, 28, 46, 56, 56, 54, 26, 56, 8, 10, 10, 12, 56, 10, 20, 22, 22, 24, 18, 58, 58, 54, 22, 58, 58, 14 ],
- "width": 20,
- "height": 44
- }
- },
- "waitaoz": {
- "waitaoz": {
- "type": "mesh",
- "uvs": [ 0.8654, 0.36364, 0.85586, 0.41702, 0.84586, 0.47292, 0.82969, 0.56336, 0.80568, 0.69766, 0.79355, 0.76548, 0.77594, 0.86394, 0.75161, 1, 0.38055, 1, 0, 1, 0, 0.83902, 0, 0.74004, 0.04202, 0.67388, 0.11832, 0.55374, 0.17747, 0.46059, 0.21179, 0.40655, 0.24479, 0.35458, 0.46996, 0, 0.64432, 0, 0.93043, 0, 0.56385, 0.41307, 0.49232, 0.69232, 0.57354, 0.36333, 0.55144, 0.46152, 0.52512, 0.56426, 0.47102, 0.75096, 0.43246, 0.85711 ],
- "triangles": [ 8, 26, 7, 7, 26, 6, 26, 8, 10, 8, 9, 10, 26, 25, 6, 6, 25, 5, 25, 26, 11, 26, 10, 11, 25, 21, 5, 5, 21, 4, 11, 12, 25, 25, 12, 21, 21, 24, 4, 4, 24, 3, 12, 13, 21, 21, 13, 24, 13, 14, 24, 24, 23, 3, 24, 14, 23, 3, 23, 2, 23, 20, 2, 14, 15, 23, 2, 20, 1, 23, 15, 20, 20, 22, 1, 1, 22, 0, 15, 16, 20, 20, 16, 22, 22, 18, 0, 0, 18, 19, 16, 17, 22, 22, 17, 18 ],
- "vertices": [ 2, 18, 8.98, 4.91, 0.90445, 19, -3.47, 4.97, 0.09555, 2, 18, 11.28, 5.03, 0.63979, 19, -1.17, 5.06, 0.36021, 2, 18, 13.69, 5.17, 0.26317, 19, 1.24, 5.14, 0.73683, 3, 18, 17.58, 5.38, 0.00891, 19, 5.14, 5.29, 0.9785, 20, -6.03, 5.17, 0.01259, 2, 19, 10.92, 5.49, 0.50923, 20, -0.25, 5.49, 0.49077, 2, 19, 13.84, 5.6, 0.14674, 20, 2.67, 5.65, 0.85326, 2, 19, 18.08, 5.75, 0.00181, 20, 6.91, 5.89, 0.99819, 1, 20, 12.76, 6.21, 1, 1, 20, 13.55, -0.05, 1, 1, 20, 14.37, -6.46, 1, 2, 19, 18.42, -7.48, 0.01227, 20, 7.5, -7.33, 0.98773, 2, 19, 14.19, -7.93, 0.16466, 20, 3.28, -7.87, 0.83534, 2, 19, 11.29, -7.52, 0.43469, 20, 0.36, -7.52, 0.56531, 3, 18, 18.68, -6.67, 0.01183, 19, 6.01, -6.78, 0.92052, 20, -4.92, -6.88, 0.06765, 3, 18, 14.58, -6.17, 0.20622, 19, 1.92, -6.21, 0.79352, 20, -9.02, -6.38, 2.6E-4, 2, 18, 12.21, -5.89, 0.51089, 19, -0.45, -5.88, 0.48911, 2, 18, 9.92, -5.61, 0.81438, 19, -2.73, -5.56, 0.18562, 1, 18, -5.69, -3.72, 1, 1, 18, -6.06, -0.78, 1, 1, 18, -6.67, 4.04, 1, 1, 18, 11.73, 0.09, 1, 2, 19, 11.26, 0.17, 0.27589, 20, 0.19, 0.18, 0.72411, 1, 18, 9.59, -0.02, 1, 2, 18, 13.83, 0.14, 0.00274, 19, 1.29, 0.12, 0.99726, 2, 19, 5.73, 0.14, 0.99997, 20, -5.34, 0.04, 3.0E-5, 2, 19, 13.81, 0.08, 2.1E-4, 20, 2.74, 0.13, 0.99979, 1, 20, 7.35, 0.06, 1 ],
- "hull": 20,
- "edges": [ 16, 18, 34, 36, 36, 38, 14, 16, 30, 40, 40, 2, 30, 32, 32, 34, 36, 44, 44, 40, 32, 44, 2, 0, 0, 38, 44, 0, 28, 30, 40, 46, 28, 46, 2, 4, 46, 4, 26, 28, 42, 48, 48, 46, 26, 48, 4, 6, 48, 6, 22, 24, 24, 26, 24, 42, 6, 8, 42, 8, 50, 42, 22, 50, 8, 10, 50, 10, 18, 20, 20, 22, 16, 52, 52, 50, 20, 52, 10, 12, 12, 14, 52, 12 ],
- "width": 17,
- "height": 43
- }
- },
- "xin3": {
- "xin3": { "x": 4.23, "y": 0.17, "rotation": -85.68, "width": 23, "height": 20 }
- },
- "xingxing": {
- "xingxing": { "x": 2.91, "y": -1.26, "rotation": -87.46, "width": 23, "height": 21 }
- },
- "yanjing": {
- "yanjing": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.67625, 1, 0.32863, 1, 0, 1, 0, 0, 0.32168, 0, 0.65308, 0, 1, 0 ],
- "triangles": [ 3, 4, 5, 2, 5, 6, 3, 5, 2, 1, 6, 7, 2, 6, 1, 1, 7, 0 ],
- "vertices": [ 4.97, -32.9, 6.12, -12.54, 7.35, 9.32, 8.52, 29.99, 36.48, 28.41, 35.33, 8.18, 34.15, -12.66, 32.92, -34.48 ],
- "hull": 8,
- "edges": [ 6, 8, 0, 14, 8, 10, 4, 6, 10, 4, 10, 12, 12, 14, 0, 2, 2, 4, 12, 2 ],
- "width": 63,
- "height": 28
- }
- },
- "youjiao": {
- "youjiao": {
- "type": "mesh",
- "uvs": [ 1, 0.34582, 1, 0.39428, 1, 0.43005, 1, 0.64216, 1, 0.67151, 1, 0.71082, 1, 1, 0, 1, 0, 0.93835, 0, 0.8187, 0.28045, 0.7167, 0.2761, 0.68357, 0.27219, 0.65387, 0.2441, 0.44021, 0.24104, 0.41701, 0.23583, 0.37736, 0.15614, 0, 0.56414, 0, 1, 0, 0.61514, 0.36166, 0.69483, 0.71278, 0.68072, 0.65063, 0.68775, 0.6816, 0.6247, 0.4038, 0.63342, 0.44221 ],
- "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 7, 20, 6, 1, 23, 0, 24, 23, 1, 13, 14, 23, 2, 24, 1, 13, 23, 24, 21, 24, 2, 3, 21, 2, 12, 13, 24, 12, 24, 21, 22, 21, 3, 4, 22, 3, 11, 12, 21, 11, 21, 22, 20, 22, 4, 5, 20, 4, 10, 11, 22, 10, 22, 20, 20, 5, 6, 19, 17, 18, 0, 19, 18, 15, 16, 17, 15, 17, 19, 23, 19, 0, 14, 15, 19, 14, 19, 23 ],
- "vertices": [ 2, 14, 17.23, 12.18, 0.66174, 15, -4.09, 12.36, 0.33826, 2, 14, 19.73, 11.94, 0.489, 15, -1.57, 12.28, 0.511, 2, 14, 21.59, 11.76, 0.3607, 15, 0.29, 12.22, 0.6393, 3, 14, 32.56, 10.7, 0.00753, 15, 11.31, 11.85, 0.98521, 16, -13.94, -7.68, 0.00726, 3, 14, 34.08, 10.56, 0.00222, 15, 12.83, 11.8, 0.97651, 16, -13.67, -6.17, 0.02127, 3, 14, 36.12, 10.36, 9.0E-5, 15, 14.88, 11.74, 0.94064, 16, -13.32, -4.16, 0.05927, 2, 15, 29.91, 11.24, 0.26194, 16, -10.75, 10.65, 0.73806, 1, 16, 20.78, 5.17, 1, 1, 16, 20.23, 2.01, 1, 2, 15, 19.43, -20.43, 7.0E-4, 16, 19.16, -4.12, 0.9993, 2, 15, 14.42, -11.29, 0.39703, 16, 9.41, -7.8, 0.60297, 3, 14, 32.49, -12.56, 5.4E-4, 15, 12.7, -11.37, 0.59388, 16, 9.26, -9.53, 0.40557, 3, 14, 30.94, -12.54, 0.00317, 15, 11.15, -11.44, 0.70991, 16, 9.11, -11.07, 0.28692, 3, 14, 19.79, -12.37, 0.32575, 15, 0.02, -11.98, 0.66592, 16, 8.1, -22.17, 0.00833, 3, 14, 18.58, -12.35, 0.40749, 15, -1.19, -12.03, 0.58821, 16, 7.99, -23.37, 0.0043, 3, 14, 16.51, -12.31, 0.55505, 15, -3.26, -12.13, 0.44408, 16, 7.8, -25.43, 8.7E-4, 1, 14, -3.26, -12.97, 1, 1, 14, -2.01, 0.03, 1, 1, 14, -0.67, 13.91, 1, 2, 14, 16.86, -0.15, 0.93312, 15, -3.67, 0.03, 0.06688, 1, 15, 14.66, 1.97, 1, 1, 15, 11.41, 1.63, 1, 1, 15, 13.03, 1.8, 1, 2, 14, 19.07, -0.06, 0.32081, 15, -1.47, 0.26, 0.67919, 1, 15, 0.53, 0.47, 1 ],
- "hull": 19,
- "edges": [ 12, 14, 34, 36, 34, 38, 14, 16, 40, 16, 32, 34, 32, 30, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 24, 42, 42, 6, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 30, 38, 0, 36, 38, 0, 28, 30, 38, 46, 28, 46, 0, 2, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4 ],
- "width": 32,
- "height": 52
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.62044, 0.3016, 0.68336, 0.36845, 0.73549, 0.42383, 0.87429, 0.5713, 0.9198, 0.62323, 0.97213, 0.67332, 1, 1, 0.5823, 1, 0.43644, 0.82715, 0.38664, 0.76737, 0.34123, 0.71337, 0.22358, 0.57349, 0.17569, 0.51655, 0.11337, 0.44246, 0, 0.30766, 0, 0, 0.10604, 0, 0.33657, 0, 0.42017, 0.45106, 0.68363, 0.69626, 0.37035, 0.37952, 0.47669, 0.50366, 0.73529, 0.74586, 0.63124, 0.6475 ],
- "triangles": [ 7, 22, 6, 22, 5, 6, 7, 8, 22, 8, 19, 22, 8, 9, 19, 9, 23, 19, 22, 4, 5, 22, 19, 4, 19, 3, 4, 9, 10, 23, 10, 21, 23, 10, 11, 21, 19, 23, 3, 23, 2, 3, 23, 21, 2, 11, 18, 21, 21, 1, 2, 21, 18, 1, 18, 0, 1, 11, 12, 18, 12, 20, 18, 12, 13, 20, 18, 20, 0, 13, 14, 20, 20, 14, 16, 16, 17, 20, 20, 17, 0, 14, 15, 16 ],
- "vertices": [ 2, 7, 15.8, 8.53, 0.55522, 8, -3.04, 9.04, 0.44478, 2, 7, 19.79, 8.96, 0.17418, 8, 0.97, 8.84, 0.82582, 2, 7, 23.1, 9.32, 0.02198, 8, 4.29, 8.68, 0.97802, 2, 8, 13.14, 8.25, 0.87049, 9, -3.41, 7.8, 0.12951, 2, 8, 16.2, 8.01, 0.61277, 9, -0.35, 8.07, 0.38723, 2, 8, 19.28, 8, 0.35027, 9, 2.7, 8.56, 0.64973, 1, 9, 19.12, 3.03, 1, 1, 9, 14.56, -8.64, 1, 3, 7, 39.58, -6.98, 0.00162, 8, 18.04, -9.98, 0.14105, 9, 4.43, -9.38, 0.85734, 3, 7, 36.08, -7.19, 0.01709, 8, 14.56, -9.64, 0.38703, 9, 0.94, -9.61, 0.59588, 3, 7, 32.92, -7.38, 0.06261, 8, 11.4, -9.34, 0.61839, 9, -2.22, -9.84, 0.319, 3, 7, 24.73, -7.89, 0.57092, 8, 3.23, -8.57, 0.418, 9, -10.42, -10.42, 0.01108, 3, 7, 21.39, -8.1, 0.88039, 8, -0.1, -8.26, 0.11938, 9, -13.75, -10.66, 2.3E-4, 2, 7, 17.05, -8.37, 0.99988, 8, -4.43, -7.85, 1.2E-4, 1, 7, 9.15, -8.86, 1, 1, 7, -5.98, -2.78, 1, 1, 7, -4.79, 0.18, 1, 1, 7, -2.21, 6.59, 1, 2, 7, 20.91, 0, 0.3144, 8, 0.68, -0.18, 0.6856, 1, 9, 0.67, 0.06, 1, 2, 7, 16.83, 0.03, 0.99948, 8, -3.34, 0.48, 5.2E-4, 2, 7, 24.12, 0.53, 0.00631, 8, 3.94, -0.15, 0.99369, 2, 8, 18.94, -0.07, 0.00991, 9, 3.69, 0.54, 0.99009, 3, 7, 32.93, 1.99, 6.0E-5, 8, 12.87, -0.08, 0.99691, 9, -2.31, -0.47, 0.00303 ],
- "hull": 18,
- "edges": [ 30, 32, 32, 34, 12, 10, 28, 30, 12, 14, 24, 36, 36, 2, 24, 26, 26, 28, 32, 40, 40, 36, 26, 40, 2, 0, 0, 34, 40, 0, 22, 24, 36, 42, 22, 42, 2, 4, 42, 4, 18, 38, 8, 10, 38, 8, 14, 16, 16, 18, 12, 44, 44, 38, 16, 44, 44, 10, 18, 20, 20, 22, 38, 46, 46, 42, 20, 46, 4, 6, 6, 8, 46, 6 ],
- "width": 30,
- "height": 53
- }
- },
- "youxiji": {
- "youxiji": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.46116, 1, 0, 1, 0, 0, 0.14264, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
- "vertices": [ -8.46, -5.15, -5.78, 3.61, -3.49, 11.11, 14.68, 5.55, 13.97, 3.23, 9.71, -10.71 ],
- "hull": 6,
- "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
- "width": 17,
- "height": 19
- }
- },
- "youyan": {
- "youyan": { "x": 5.02, "y": -0.97, "rotation": -92.51, "width": 25, "height": 18 }
- },
- "zuojiao": {
- "zuojiao": {
- "type": "mesh",
- "uvs": [ 0.99999, 0.36472, 0.99999, 0.39938, 0.99999, 0.42972, 0.99999, 0.6445, 0.99999, 0.66964, 0.99999, 0.71731, 1, 1, 0, 1, 0, 0.88964, 0, 0.80531, 0.32508, 0.68798, 0.32861, 0.64962, 0.33073, 0.62656, 0.35037, 0.41295, 0.35394, 0.37406, 0.35683, 0.34271, 0.38833, 0, 0.73758, 0, 1, 0, 0.63308, 0.39098, 0.61933, 0.70264, 0.62137, 0.65642, 0.62225, 0.63657, 0.64232, 0.35642, 0.63186, 0.41866 ],
- "triangles": [ 7, 20, 6, 7, 8, 20, 8, 10, 20, 8, 9, 10, 20, 5, 6, 5, 20, 4, 4, 20, 21, 10, 11, 20, 20, 11, 21, 4, 21, 3, 3, 21, 22, 11, 12, 21, 21, 12, 22, 3, 22, 2, 2, 22, 24, 12, 13, 22, 22, 13, 24, 2, 24, 1, 1, 24, 19, 13, 14, 24, 24, 14, 19, 19, 23, 1, 1, 23, 0, 14, 15, 19, 19, 15, 23, 23, 17, 0, 0, 17, 18, 15, 16, 23, 23, 16, 17 ],
- "vertices": [ 2, 11, 13.18, 12.84, 0.74638, 12, -3.62, 13.55, 0.25362, 2, 11, 15.02, 13.18, 0.63631, 12, -1.75, 13.66, 0.36369, 2, 11, 16.63, 13.48, 0.53288, 12, -0.11, 13.76, 0.46712, 3, 11, 28.04, 15.6, 0.05461, 12, 11.46, 14.42, 0.85528, 13, -16.86, -4.87, 0.09011, 3, 11, 29.37, 15.84, 0.03626, 12, 12.82, 14.5, 0.83313, 13, -16.55, -3.55, 0.1306, 3, 11, 31.9, 16.31, 0.01455, 12, 15.39, 14.65, 0.75159, 13, -15.96, -1.05, 0.23386, 2, 12, 30.63, 15.52, 0.17961, 13, -12.48, 13.82, 0.82039, 1, 13, 22.57, 5.6, 1, 1, 13, 21.21, -0.2, 1, 1, 13, 20.18, -4.63, 1, 2, 12, 15.2, -9.7, 0.47279, 13, 7.34, -8.13, 0.52721, 2, 12, 13.13, -9.69, 0.70658, 13, 6.74, -10.12, 0.29342, 2, 12, 11.88, -9.69, 0.79839, 13, 6.38, -11.32, 0.20161, 2, 11, 20, -9.68, 0.19957, 12, 0.32, -9.64, 0.80043, 2, 11, 17.91, -9.93, 0.36056, 12, -1.78, -9.64, 0.63944, 2, 11, 16.23, -10.14, 0.50356, 12, -3.48, -9.63, 0.49644, 1, 11, -2.17, -12.39, 1, 1, 11, -4.46, -0.03, 1, 1, 11, -6.18, 9.26, 1, 2, 11, 16.98, 0.11, 0.65981, 12, -1.45, 0.45, 0.34019, 1, 12, 15.39, 0.92, 1, 2, 11, 31.15, 2.31, 1.8E-4, 12, 12.89, 0.85, 0.99982, 2, 11, 30.09, 2.15, 4.2E-4, 12, 11.82, 0.82, 0.99958, 1, 11, 15.09, 0.1, 1, 2, 11, 18.46, 0.34, 0.05238, 12, 0.05, 0.49, 0.94762 ],
- "hull": 19,
- "edges": [ 12, 14, 34, 36, 14, 16, 40, 16, 32, 34, 16, 18, 20, 18, 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, 38, 38, 2, 28, 30, 30, 32, 34, 46, 46, 38, 30, 46, 2, 0, 0, 36, 46, 0, 24, 26, 26, 28, 38, 48, 48, 44, 26, 48, 2, 4, 4, 6, 48, 4 ],
- "width": 36,
- "height": 54
- }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.21144, 0.75776, 0.53446, 0.72784, 0.57435, 0.70564, 0.60395, 0.59164, 0.75596, 0.55215, 0.80863, 0.52147, 0.84952, 0.40863, 1, 0.14562, 1, 0, 1, 0, 0.73924, 0.11035, 0.61911, 0.14343, 0.58309, 0.17643, 0.54716, 0.31141, 0.40022, 0.34198, 0.36693, 0.37996, 0.32559, 0.67903, 0, 1, 0, 0.56119, 0.43077, 0.38692, 0.70357, 0.51629, 0.50106, 0.53624, 0.46984, 0.35122, 0.74743, 0.40963, 0.66802 ],
- "triangles": [ 8, 23, 7, 7, 23, 6, 23, 8, 10, 23, 10, 11, 10, 8, 9, 23, 20, 6, 6, 20, 5, 11, 12, 23, 23, 12, 20, 20, 24, 5, 5, 24, 4, 24, 21, 4, 4, 21, 3, 12, 13, 20, 20, 13, 24, 13, 14, 24, 24, 14, 21, 21, 22, 3, 3, 22, 2, 22, 19, 2, 2, 19, 1, 14, 15, 21, 21, 15, 22, 15, 16, 22, 22, 16, 19, 1, 19, 0, 0, 19, 18, 19, 16, 17, 19, 17, 18 ],
- "vertices": [ 1, 4, 2.42, 9.88, 1, 2, 4, 20.86, 8.84, 0.42305, 5, 0.98, 8.86, 0.57695, 3, 4, 23.14, 8.71, 0.21883, 5, 3.26, 8.77, 0.78108, 6, -11.57, 8.54, 9.0E-5, 3, 4, 24.83, 8.61, 0.11429, 5, 4.95, 8.71, 0.88259, 6, -9.88, 8.51, 0.00312, 2, 5, 13.64, 8.39, 0.62694, 6, -1.18, 8.37, 0.37306, 2, 5, 16.65, 8.28, 0.32129, 6, 1.83, 8.32, 0.67871, 2, 5, 18.98, 8.19, 0.14033, 6, 4.17, 8.28, 0.85967, 1, 6, 12.77, 8.13, 1, 1, 6, 17.35, -0.45, 1, 1, 6, 19.88, -5.21, 1, 2, 5, 22.8, -11.51, 0.03237, 6, 8.38, -11.34, 0.96763, 2, 5, 15.59, -10.59, 0.35743, 6, 1.16, -10.57, 0.64257, 2, 5, 13.43, -10.31, 0.54325, 6, -1.01, -10.33, 0.45675, 3, 4, 30.8, -10.25, 4.1E-4, 5, 11.28, -10.03, 0.71882, 6, -3.17, -10.1, 0.28076, 3, 4, 22.01, -8.95, 0.2458, 5, 2.47, -8.91, 0.752, 6, -12, -9.15, 0.0022, 2, 4, 20.02, -8.66, 0.43471, 5, 0.47, -8.65, 0.56529, 2, 4, 17.54, -8.29, 0.69429, 5, -2.01, -8.33, 0.30571, 1, 4, -1.93, -5.42, 1, 1, 4, -7.1, 5.28, 1, 2, 4, 19.36, 0.03, 0.79498, 5, -0.35, 0.03, 0.20502, 2, 5, 14.73, 0.45, 0.46878, 6, 0.07, 0.45, 0.53122, 2, 4, 23.25, 0.07, 2.3E-4, 5, 3.53, 0.14, 0.99977, 2, 4, 21.52, 0.05, 2.5E-4, 5, 1.81, 0.09, 0.99975, 2, 5, 17.28, 0.26, 0.00109, 6, 2.63, 0.32, 0.99891, 2, 5, 12.76, 0.39, 0.98632, 6, -1.89, 0.36, 0.01368 ],
- "hull": 19,
- "edges": [ 0, 36, 34, 36, 18, 20, 36, 38, 14, 16, 16, 18, 32, 34, 32, 38, 0, 2, 38, 2, 28, 42, 42, 6, 28, 30, 30, 32, 38, 44, 44, 42, 30, 44, 2, 4, 4, 6, 44, 4, 24, 40, 40, 10, 20, 22, 22, 24, 16, 46, 46, 40, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 40, 48, 48, 42, 26, 48, 6, 8, 8, 10, 48, 8 ],
- "width": 37,
- "height": 50
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 4.92, "y": 1.86, "rotation": -92.57, "width": 23, "height": 20 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biaoqing_1": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.7667, "color": "ffffff00" },
- { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.9, "color": "ffffffff" },
- { "time": 3, "color": "ffffff00" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.3333, "name": null },
- { "time": 1.4333, "name": "biyan" },
- { "time": 1.5333, "name": null },
- { "time": 2.3333, "name": null },
- { "time": 2.5, "name": null },
- { "time": 2.6, "name": "biyan" },
- { "time": 2.7, "name": null },
- { "time": 3.5, "name": null }
- ]
- },
- "diannao1": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.1333, "color": "ffffff00" },
- { "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2, "color": "ffffffff" },
- { "time": 2.1667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": "diannao1" },
- { "time": 1.1667, "name": "diannao1" },
- { "time": 2.3333, "name": "diannao1" },
- { "time": 3.5, "name": null }
- ]
- },
- "diannao_x": {
- "color": [
- { "time": 0, "color": "ffffff00" },
- { "time": 0.0667, "color": "ffffffff" },
- { "time": 0.2333, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.1, "color": "ffffff00" }
- ]
- },
- "dou": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.5667, "color": "ffffff00" },
- { "time": 0.6333, "color": "ffffffff" },
- { "time": 0.7, "color": "ffffff00" },
- { "time": 0.7667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2, "color": "ffffffff" },
- { "time": 2.1667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": "dou" },
- { "time": 2.3333, "name": null },
- { "time": 3.5, "name": null }
- ]
- },
- "dou2": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.6667, "color": "ffffff00" },
- { "time": 0.7333, "color": "ffffffff" },
- { "time": 0.8, "color": "ffffff00" },
- { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2, "color": "ffffffff" },
- { "time": 2.1667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": "dou2" },
- { "time": 2.3333, "name": null },
- { "time": 3.5, "name": null }
- ]
- },
- "dou3": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.8, "color": "ffffff00" },
- { "time": 0.8667, "color": "ffffffff" },
- { "time": 0.9333, "color": "ffffff00" },
- { "time": 1, "color": "ffffffff", "curve": "stepped" },
- { "time": 2, "color": "ffffffff" },
- { "time": 2.1667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": "dou3" },
- { "time": 2.3333, "name": null },
- { "time": 3.5, "name": null }
- ]
- },
- "pinmu": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.0667, "color": "ffffff00" },
- { "time": 0.1333, "color": "ffffffff" },
- { "time": 0.2, "color": "ffffff00" },
- { "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2, "color": "ffffffff" },
- { "time": 2.0667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": "pinmu" },
- { "time": 1.1667, "name": "pinmu" },
- { "time": 2.3333, "name": "pinmu" },
- { "time": 3.5, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.4333, "name": null },
- { "time": 1.5333, "name": "youyan" },
- { "time": 2.6, "name": null },
- { "time": 2.7, "name": "youyan" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.4333, "name": null },
- { "time": 1.5333, "name": "zuoyan" },
- { "time": 2.6, "name": null },
- { "time": 2.7, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 14.86, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -3.08, "y": 0.09, "curve": "stepped" },
- { "time": 2.3333, "x": -3.08, "y": 0.09, "curve": "stepped" },
- { "time": 3.5, "x": -3.08, "y": 0.09 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "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.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 2.36, "y": -0.1 },
- { "time": 1.1667, "x": 0, "y": 0 },
- { "time": 1.7333, "x": 2.36, "y": -0.1 },
- { "time": 2.3333, "x": 0, "y": 0 },
- { "time": 2.9, "x": 2.36, "y": -0.1 },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5667, "x": 1.02, "y": 1 },
- { "time": 1.1667, "x": 1, "y": 1 },
- { "time": 1.7333, "x": 1.02, "y": 1 },
- { "time": 2.3333, "x": 1, "y": 1 },
- { "time": 2.9, "x": 1.02, "y": 1 },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -10.35 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.4, "angle": -14.62 },
- { "time": 1.5, "angle": -9.65 },
- { "time": 1.7333, "angle": -6.24 },
- { "time": 1.9333, "angle": -10.09 },
- { "time": 2.1667, "angle": -12.66 },
- { "time": 2.4333, "angle": 0 },
- { "time": 2.9, "angle": -10.35 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 14.62 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.3333, "angle": -53.98 },
- { "time": 1.5, "angle": -35.16, "curve": "stepped" },
- { "time": 1.7333, "angle": -35.16 },
- { "time": 1.9333, "angle": -48.88 },
- { "time": 2.4333, "angle": 0 },
- { "time": 2.9, "angle": 14.62 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 14.03 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.2667, "angle": -16.3 },
- { "time": 1.5, "angle": -2.51 },
- { "time": 1.6, "angle": -15.46 },
- { "time": 1.7333, "angle": -2.51 },
- { "time": 1.9333, "angle": -3.22 },
- { "time": 2.4333, "angle": 0 },
- { "time": 2.9, "angle": 14.03 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 10 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 10 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 10 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -11.51 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -11.51 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -11.51 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0.68, "y": -0.54 },
- { "time": 1.1667, "x": 0, "y": 0 },
- { "time": 1.7333, "x": 0.68, "y": -0.54 },
- { "time": 2.3333, "x": 0, "y": 0 },
- { "time": 2.9, "x": 0.68, "y": -0.54 },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -3.27 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -3.27 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -3.27 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -9.38 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -9.38 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -9.38 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 10.05 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 10.05 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 10.05 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 10.42 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 10.42 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 10.42 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 3.02 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 3.02 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 3.02 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4333, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 2.6, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 },
- { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 0.384, "y": 1 },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 },
- { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 0.384, "y": 1 },
- { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4333, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 2.6, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 },
- { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 0.384, "y": 1 },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1 },
- { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 0.384, "y": 1 },
- { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.4333, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 2.6, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 },
- { "time": 1.4333, "x": -2.59, "y": 0.09, "curve": "stepped" },
- { "time": 1.5333, "x": -2.59, "y": 0.09 },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0 },
- { "time": 2.6, "x": -2.59, "y": 0.09, "curve": "stepped" },
- { "time": 2.7, "x": -2.59, "y": 0.09 },
- { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -5.47 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -5.47 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -5.47 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -6 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -6 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -6 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -8.01 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -8.01 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -8.01 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 0.78 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 0.78 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 0.78 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 15.5 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 15.5 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 15.5 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 19.79 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 19.79 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 19.79 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -13.87 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -13.87 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -13.87 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 12.01 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 12.01 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 12.01 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 16.54 },
- { "time": 0.5667, "angle": 17.84 },
- { "time": 1.1667, "angle": 16.54 },
- { "time": 1.7333, "angle": 17.84 },
- { "time": 2.3333, "angle": 16.54 },
- { "time": 2.9, "angle": 17.84 },
- { "time": 3.5, "angle": 16.54 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 9.52 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 9.52 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 9.52 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -24.63 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -24.63 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -24.63 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -5.14 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -5.14 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -5.14 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5667, "x": 1.086, "y": 1 },
- { "time": 1.1667, "x": 1, "y": 1 },
- { "time": 1.7333, "x": 1.086, "y": 1 },
- { "time": 2.3333, "x": 1, "y": 1 },
- { "time": 2.9, "x": 1.086, "y": 1 },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5667, "x": 1.047, "y": 1 },
- { "time": 1.1667, "x": 1, "y": 1 },
- { "time": 1.7333, "x": 1.047, "y": 1 },
- { "time": 2.3333, "x": 1, "y": 1 },
- { "time": 2.9, "x": 1.047, "y": 1 },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -10.63 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -10.63 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -10.63 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": -24.87 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": -24.87 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": -24.87 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 3.24 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 3.24 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 3.24 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5667, "angle": 4.43 },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.7333, "angle": 4.43 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.9, "angle": 4.43 },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9667, "angle": 0, "curve": "stepped" },
- { "time": 2.9, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0.7667, "x": 7.62, "y": -8.71 },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9, "x": 0, "y": 0 },
- { "time": 3, "x": 7.62, "y": -8.71 }
- ],
- "scale": [
- { "time": 0.7667, "x": 0.2, "y": 0.2 },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9, "x": 1, "y": 1 },
- { "time": 3, "x": 0.2, "y": 0.2 }
- ]
- }
- },
- "deform": {
- "default": {
- "erji": {
- "erji": [
- { "time": 0 },
- {
- "time": 0.5667,
- "offset": 8,
- "vertices": [ -0.53481, 1.37687 ]
- },
- { "time": 1.1667 },
- {
- "time": 1.7333,
- "offset": 8,
- "vertices": [ -0.53481, 1.37687 ]
- },
- { "time": 2.3333 },
- {
- "time": 2.9,
- "offset": 8,
- "vertices": [ -0.53481, 1.37687 ]
- },
- { "time": 3.5 }
- ]
- },
- "pinmu": {
- "pinmu": [
- {
- "time": 0,
- "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ],
- "curve": "stepped"
- },
- {
- "time": 0.0667,
- "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
- },
- {
- "time": 0.1667,
- "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
- },
- { "time": 0.3667, "curve": "stepped" },
- { "time": 2 },
- {
- "time": 2.0667,
- "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
- },
- {
- "time": 2.1667,
- "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
- }
- ]
- }
- }
- },
- "drawOrder": [
- {
- "time": 1.5,
- "offsets": [
- { "slot": "diannao1", "offset": -28 }
- ]
- },
- {
- "time": 1.7333,
- "offsets": [
- { "slot": "diannao1", "offset": -28 }
- ]
- }
- ]
- },
- "walk1": {
- "slots": {
- "biaoqing_1": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "diannao1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 2, "name": null }
- ]
- },
- "diannao_x": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "dou": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 2, "name": null }
- ]
- },
- "dou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 2, "name": null }
- ]
- },
- "dou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 2, "name": null }
- ]
- },
- "pinmu": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null },
- { "time": 2, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- }
- },
- "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.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": 1.78 },
- { "time": 0.1667, "x": 0, "y": -1.18 },
- { "time": 0.5, "x": 0, "y": 1.78 },
- { "time": 0.6667, "x": 0, "y": -1.18 },
- { "time": 1, "x": 0, "y": 1.78 },
- { "time": 1.1667, "x": 0, "y": -1.18 },
- { "time": 1.5, "x": 0, "y": 1.78 },
- { "time": 1.6667, "x": 0, "y": -1.18 },
- { "time": 2, "x": 0, "y": 1.78 }
- ],
- "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 }
- ]
- },
- "bone2": {
- "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": 0.8333, "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": 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.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.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.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.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": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0.92,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0.92,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone4": {
- "rotate": [
- {
- "time": 0,
- "angle": -318.1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 3.29,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -318.1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 3.29,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -318.1 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -1.79,
- "y": -10.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -3.24,
- "y": -4.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -1.79,
- "y": -10.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -3.24,
- "y": -4.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -1.79, "y": -10.32 }
- ],
- "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 }
- ]
- },
- "bone5": {
- "rotate": [
- {
- "time": 0,
- "angle": -4.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -19.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -19.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.23 }
- ],
- "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": -9.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -9.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -9.34 }
- ],
- "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": 325.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 5.29,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 325.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 5.29,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 325.16 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -0.92,
- "y": 1.61,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -2.55,
- "y": -1.91,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -0.92,
- "y": 1.61,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -2.55,
- "y": -1.91,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -0.92, "y": 1.61 }
- ],
- "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": -20.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -5.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -20.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -5.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -20.71 }
- ],
- "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": -14.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -17.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -14.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -17.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -14.04 }
- ],
- "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": -15.86 },
- { "time": 0.1667, "angle": -0.53 },
- { "time": 0.3333, "angle": 19.59 },
- { "time": 0.5, "angle": 41.68 },
- { "time": 0.6667, "angle": 22.5 },
- { "time": 0.8333, "angle": -5.58 },
- { "time": 1, "angle": -15.86 },
- { "time": 1.1667, "angle": -0.53 },
- { "time": 1.3333, "angle": 19.59 },
- { "time": 1.5, "angle": 41.68 },
- { "time": 1.6667, "angle": 22.5 },
- { "time": 1.8333, "angle": -5.58 },
- { "time": 2, "angle": -15.86 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 2.34, "y": 1.1 },
- { "time": 0.3333, "x": 11.87, "y": 0.67 },
- { "time": 0.5, "x": 20.79, "y": 0.35 },
- { "time": 0.6667, "x": 13.56, "y": 0.17 },
- { "time": 0.8333, "x": 1.28, "y": 0.83 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 2.34, "y": 1.1 },
- { "time": 1.3333, "x": 11.87, "y": 0.67 },
- { "time": 1.5, "x": 20.79, "y": 0.35 },
- { "time": 1.6667, "x": 13.56, "y": 0.17 },
- { "time": 1.8333, "x": 1.28, "y": 0.83 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.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": -3.14 },
- { "time": 0.1667, "angle": 12.11 },
- { "time": 0.3333, "angle": -6.68 },
- { "time": 0.5, "angle": -3.14 },
- { "time": 0.6667, "angle": 30.59 },
- { "time": 0.8333, "angle": 44 },
- { "time": 1, "angle": -3.14 },
- { "time": 1.1667, "angle": 12.11 },
- { "time": 1.3333, "angle": -6.68 },
- { "time": 1.5, "angle": -3.14 },
- { "time": 1.6667, "angle": 30.59 },
- { "time": 1.8333, "angle": 44 },
- { "time": 2, "angle": -3.14 }
- ],
- "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.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.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": -6.46 },
- { "time": 0.3333, "angle": -11.41 },
- { "time": 0.5, "angle": 3.59 },
- { "time": 0.6667, "angle": -8.18 },
- { "time": 0.8333, "angle": -9.36 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": -6.46 },
- { "time": 1.3333, "angle": -11.41 },
- { "time": 1.5, "angle": 3.59 },
- { "time": 1.6667, "angle": -8.18 },
- { "time": 1.8333, "angle": -9.36 },
- { "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.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.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": 22.22 },
- { "time": 0.1667, "angle": 6.1 },
- { "time": 0.3333, "angle": -30.91 },
- { "time": 0.5, "angle": -26.13 },
- { "time": 0.6667, "angle": -19.66 },
- { "time": 0.8333, "angle": 6.1 },
- { "time": 1, "angle": 22.22 },
- { "time": 1.1667, "angle": 6.1 },
- { "time": 1.3333, "angle": -30.91 },
- { "time": 1.5, "angle": -26.13 },
- { "time": 1.6667, "angle": -19.66 },
- { "time": 1.8333, "angle": 6.1 },
- { "time": 2, "angle": 22.22 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -9.71, "y": 3.49 },
- { "time": 0.3333, "x": -19.49, "y": 4.16 },
- { "time": 0.5, "x": -21.02, "y": -1.46 },
- { "time": 0.6667, "x": -18.05, "y": 0.05 },
- { "time": 0.8333, "x": -7.01, "y": -0.49 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -9.71, "y": 3.49 },
- { "time": 1.3333, "x": -19.49, "y": 4.16 },
- { "time": 1.5, "x": -21.02, "y": -1.46 },
- { "time": 1.6667, "x": -18.05, "y": 0.05 },
- { "time": 1.8333, "x": -7.01, "y": -0.49 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 29.76 },
- { "time": 0.3333, "angle": 63.15 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 14.51 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 29.76 },
- { "time": 1.3333, "angle": 63.15 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 14.51 },
- { "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.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.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, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 4.62 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 10.03 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.3333, "angle": 4.62 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 10.03 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone17": {
- "translate": [
- {
- "time": 0,
- "x": 1.23,
- "y": 5.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.96,
- "y": 0.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 1.23,
- "y": 5.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.96,
- "y": 0.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 1.23, "y": 5.24 }
- ]
- },
- "bone18": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0.03,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.7,
- "y": 1.91,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0.03,
- "y": 0.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.7,
- "y": 1.91,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 0.03, "y": 0.5 }
- ],
- "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": -5.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -15.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -5.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -15.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -5.24 }
- ],
- "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.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -5.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 3.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -5.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 3.77 }
- ],
- "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": 9.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 3.27,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 9.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 3.27,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 9.74 }
- ],
- "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": 8.49,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -5.1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 8.49,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -5.1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 8.49 }
- ],
- "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": 4.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -8.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -8.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.74 }
- ],
- "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, "curve": "stepped" },
- { "time": 0.1667, "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.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.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.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.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.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 }
- ]
- },
- "bone25": {
- "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": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "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.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.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3, "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.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 },
- { "time": 1.1, "x": 0.42, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.42, "y": 1 },
- { "time": 1.3, "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 }
- ]
- },
- "bone26": {
- "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": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "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.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.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3, "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.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 },
- { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.464, "y": 1 },
- { "time": 1.3, "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 }
- ]
- },
- "bone28": {
- "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": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3, "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.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.1, "x": -1.59, "y": 0.05 },
- { "time": 1.1667, "x": 0, "y": 0 },
- { "time": 1.2, "x": -1.59, "y": 0.05 },
- { "time": 1.3, "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.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.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "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 }
- ]
- },
- "bone29": {
- "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": 0.8333, "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": 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.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.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.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.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 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.83 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.83 },
- { "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 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 0.95 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 0.95 },
- { "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 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -11.18 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -11.18 },
- { "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": 0 },
- { "time": 0.5, "angle": -5.15 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.15 },
- { "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 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 23.79 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 23.79 },
- { "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 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 13.15 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 13.15 },
- { "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.27, "y": 1.52 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 1, "x": 0.27, "y": 1.52 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 2, "x": 0.27, "y": 1.52 }
- ],
- "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 },
- { "time": 0.5, "angle": -13.87 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -13.87 },
- { "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 }
- ]
- },
- "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, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "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": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "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.1667, "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": 6.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.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": 16.54 },
- { "time": 0.5, "angle": 26.22 },
- { "time": 1, "angle": 16.54 },
- { "time": 1.5, "angle": 26.22 },
- { "time": 2, "angle": 16.54 }
- ],
- "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": 14.09 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 14.09 },
- { "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 },
- { "time": 0.5, "angle": -3.92 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.92 },
- { "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 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -28.31 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -28.31 },
- { "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": -8.82 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -8.82 },
- { "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 }
- ]
- },
- "bone50": {
- "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.77, "y": 1.53 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 1, "x": 0.77, "y": 1.53 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 2, "x": 0.77, "y": 1.53 }
- ],
- "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 }
- ]
- },
- "bone51": {
- "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": 1.36, "y": 0.3 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 1, "x": 1.36, "y": 0.3 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 2, "x": 1.36, "y": 0.3 }
- ],
- "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 },
- { "time": 0.5, "angle": -4.91 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -4.91 },
- { "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 },
- { "time": 0.5, "angle": -17.96 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -17.96 },
- { "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 },
- { "time": 0.5, "angle": 5.29 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.29 },
- { "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 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 4.32 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 4.32 },
- { "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 }
- ]
- },
- "bone60": {
- "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": 1.41, "y": 5.14 },
- { "time": 0.5, "x": 1.4, "y": 4.62 },
- { "time": 1, "x": 1.41, "y": 5.14 },
- { "time": 1.5, "x": 1.4, "y": 4.62 },
- { "time": 2, "x": 1.41, "y": 5.14 }
- ]
- }
- },
- "deform": {
- "default": {
- "chenyi": {
- "chenyi": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 4,
- "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 4,
- "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
- },
- { "time": 2 }
- ]
- },
- "erji": {
- "erji": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 6,
- "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 6,
- "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
- },
- { "time": 2 }
- ]
- },
- "kuzi": {
- "kuzi": [
- { "time": 0 },
- {
- "time": 0.1667,
- "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
- },
- {
- "time": 0.5,
- "offset": 2,
- "vertices": [ -2.02086, -1.08708 ]
- },
- {
- "time": 0.6667,
- "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
- },
- {
- "time": 0.7333,
- "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
- },
- {
- "time": 0.8333,
- "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
- },
- { "time": 1 },
- {
- "time": 1.1667,
- "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
- },
- {
- "time": 1.5,
- "offset": 2,
- "vertices": [ -2.02086, -1.08708 ]
- },
- {
- "time": 1.6667,
- "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
- },
- {
- "time": 1.7333,
- "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
- },
- {
- "time": 1.8333,
- "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
- },
- { "time": 2 }
- ]
- },
- "youjiao": {
- "youjiao": [
- {
- "time": 0,
- "offset": 76,
- "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
- "curve": "stepped"
- },
- {
- "time": 0.5,
- "offset": 76,
- "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 76,
- "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
- "curve": "stepped"
- },
- {
- "time": 1.5,
- "offset": 76,
- "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 76,
- "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ]
- }
- ]
- },
- "zuojiao": {
- "zuojiao": [
- {
- "time": 0,
- "offset": 66,
- "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 66,
- "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 66,
- "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|