123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542 |
- {
- "skeleton": { "hash": "03fBWeCS3JmUPQpqYMVXFl4+JO0", "spine": "3.6.53", "width": 207.02, "height": 200.89, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -4.31, "y": 66.46 },
- { "name": "bone2", "parent": "bone", "length": 11.14, "rotation": 90, "y": -0.8 },
- { "name": "bone3", "parent": "bone2", "length": 32.65, "rotation": -1.75, "x": 11.14 },
- { "name": "bone4", "parent": "bone3", "length": 19.09, "rotation": 157.54, "x": 29.62, "y": 11.74, "color": "be7811ff" },
- { "name": "bone5", "parent": "bone4", "length": 14.09, "rotation": 1.08, "x": 19.09, "color": "be7811ff" },
- { "name": "bone6", "parent": "bone5", "length": 13.29, "rotation": -4.74, "x": 14.09, "color": "be7811ff" },
- { "name": "bone7", "parent": "bone3", "length": 23.25, "rotation": -152.43, "x": 29.63, "y": -15.13, "color": "30039bff" },
- { "name": "bone8", "parent": "bone7", "length": 11.05, "rotation": -0.51, "x": 23.25, "color": "30039bff" },
- { "name": "bone9", "parent": "bone8", "length": 14.74, "rotation": 3.13, "x": 11.05, "color": "30039bff" },
- { "name": "bone10", "parent": "bone", "x": -2.2, "y": -2.32 },
- { "name": "bone11", "parent": "bone10", "length": 7, "rotation": -104.65, "x": -8.48, "y": 1.72 },
- { "name": "bone12", "parent": "bone11", "length": 7.85, "rotation": 0.61, "x": 8.34, "y": -0.02 },
- { "name": "bone13", "parent": "bone12", "length": 6.23, "rotation": -3.75, "x": 7.85 },
- { "name": "bone14", "parent": "bone13", "length": 4.91, "rotation": -6.44, "x": 6.23 },
- { "name": "bone15", "parent": "bone10", "length": 7.06, "rotation": -90, "x": 4.25, "y": -0.18 },
- { "name": "bone16", "parent": "bone15", "length": 6.56, "rotation": -1.89, "x": 7.06 },
- { "name": "bone17", "parent": "bone16", "length": 7.49, "rotation": 2.99, "x": 6.92, "y": 0.01 },
- { "name": "bone18", "parent": "bone17", "length": 7.09, "rotation": 4.72, "x": 7.49 },
- { "name": "bone19", "parent": "bone10", "length": 7.54, "rotation": -69.32, "x": 14.62, "y": 1.76 },
- { "name": "bone20", "parent": "bone19", "length": 6.67, "rotation": -0.49, "x": 7.54 },
- { "name": "bone21", "parent": "bone20", "length": 6.46, "rotation": 2.08, "x": 6.67 },
- { "name": "bone22", "parent": "bone21", "length": 8.97, "rotation": 7.58, "x": 6.46 },
- { "name": "bone23", "parent": "bone", "length": 18, "rotation": -83.42, "x": 16, "y": -19.99, "color": "520625ff" },
- { "name": "bone24", "parent": "bone23", "length": 19.27, "rotation": -1.96, "x": 19.88, "y": 0.08, "color": "520625ff" },
- { "name": "bone25", "parent": "bone24", "length": 15.67, "rotation": -80.69, "x": 21.68, "color": "520625ff" },
- { "name": "bone26", "parent": "bone", "length": 17.34, "rotation": -93.3, "x": -7.1, "y": -19.39, "color": "b2380dff" },
- { "name": "bone27", "parent": "bone26", "length": 20.09, "rotation": -2.72, "x": 19.19, "y": 0.08, "color": "b2380dff" },
- { "name": "bone28", "parent": "bone27", "length": 14.52, "rotation": -68.45, "x": 21.8, "color": "b2380dff" },
- { "name": "bone29", "parent": "bone3", "length": 49.95, "rotation": 3.48, "x": 36.04, "y": 0.52 },
- { "name": "bone30", "parent": "bone29", "length": 10.56, "rotation": -5.36, "x": 21.75, "y": 14.73 },
- { "name": "bone31", "parent": "bone29", "length": 10.89, "rotation": -5.93, "x": 18.86, "y": -13.72 },
- { "name": "bone32", "parent": "bone29", "x": 23.5, "y": 2.75 },
- { "name": "bone33", "parent": "bone29", "x": 35.41, "y": 1.41 },
- { "name": "bone34", "parent": "bone29", "length": 10.03, "rotation": 133.71, "x": 81.35, "y": 4.88, "color": "71aaf6ff" },
- { "name": "bone35", "parent": "bone34", "length": 9.88, "rotation": 0.91, "x": 10.03, "color": "71aaf6ff" },
- { "name": "bone36", "parent": "bone35", "length": 8.46, "rotation": 15.75, "x": 9.88, "color": "71aaf6ff" },
- { "name": "bone37", "parent": "bone36", "length": 9.05, "rotation": 7.26, "x": 8.46, "color": "71aaf6ff" },
- { "name": "bone38", "parent": "bone37", "length": 9.55, "rotation": 5.96, "x": 9.05, "color": "71aaf6ff" },
- { "name": "bone39", "parent": "bone38", "length": 8.01, "rotation": 5.99, "x": 9.55, "color": "71aaf6ff" },
- { "name": "bone40", "parent": "bone29", "length": 8.08, "rotation": 172.01, "x": 32.29, "y": 28.05, "color": "9712eaff" },
- { "name": "bone41", "parent": "bone40", "length": 6.94, "rotation": 3.53, "x": 8.08, "color": "9712eaff" },
- { "name": "bone42", "parent": "bone41", "length": 7.25, "rotation": 12.33, "x": 6.94, "color": "9712eaff" },
- { "name": "bone43", "parent": "bone42", "length": 6.5, "rotation": 14.36, "x": 7.47, "y": -0.04, "color": "9712eaff" },
- { "name": "bone44", "parent": "bone43", "length": 7.56, "rotation": 25.17, "x": 6.5, "color": "9712eaff" },
- { "name": "bone45", "parent": "bone29", "length": 8.87, "rotation": 171.14, "x": 24.34, "y": -30.92, "color": "4b30f2ff" },
- { "name": "bone46", "parent": "bone45", "length": 7.31, "rotation": -5.03, "x": 9.09, "y": 0.03, "color": "4b30f2ff" },
- { "name": "bone47", "parent": "bone46", "length": 6.65, "rotation": -0.27, "x": 7.31, "color": "4b30f2ff" },
- { "name": "bone48", "parent": "bone47", "length": 5.26, "rotation": -13.6, "x": 7.1, "y": -0.01, "color": "4b30f2ff" },
- { "name": "bone49", "parent": "bone48", "length": 4.91, "rotation": -21.7, "x": 5.46, "y": 0.1, "color": "4b30f2ff" },
- { "name": "bone50", "parent": "bone29", "length": 18.27, "rotation": -139.08, "x": 80.5, "y": -18.25, "color": "0cc562ff" },
- { "name": "bone51", "parent": "bone50", "length": 17.22, "rotation": -17.21, "x": 18.6, "y": -0.09, "color": "0cc562ff" },
- { "name": "bone52", "parent": "bone51", "length": 18.3, "rotation": -14.5, "x": 17.22, "color": "0cc562ff" },
- { "name": "bone53", "parent": "bone52", "length": 16.79, "rotation": 0.47, "x": 18.6, "y": -0.06, "color": "0cc562ff" },
- { "name": "bone54", "parent": "bone53", "length": 14.8, "rotation": -11.41, "x": 16.79, "color": "0cc562ff" },
- { "name": "bone55", "parent": "bone54", "length": 12.18, "rotation": -19.56, "x": 14.8, "color": "0cc562ff" },
- { "name": "bone56", "parent": "bone29", "length": 12.16, "rotation": 167.79, "x": 83.44, "y": -5.95, "color": "e0f82fff" },
- { "name": "bone57", "parent": "bone56", "length": 10.28, "rotation": 8.29, "x": 12.16, "color": "e0f82fff" },
- { "name": "bone58", "parent": "bone57", "length": 10.18, "rotation": 7.3, "x": 10.28, "color": "e0f82fff" },
- { "name": "bone59", "parent": "bone58", "length": 11.42, "rotation": 6.69, "x": 10.18, "color": "e0f82fff" },
- { "name": "bone60", "parent": "bone3", "length": 5.23, "rotation": 173.62, "x": 17.7, "y": 2.05, "color": "108e2cff" },
- { "name": "bone61", "parent": "bone60", "length": 6.26, "rotation": 1.34, "x": 5.38, "y": 0.02, "color": "108e2cff" },
- { "name": "bone62", "parent": "bone61", "length": 5.86, "rotation": -3.39, "x": 6.55, "y": 0.03, "color": "108e2cff" },
- { "name": "bone63", "parent": "bone62", "length": 5.17, "rotation": -3.06, "x": 6.3, "y": 0.08, "color": "108e2cff" },
- { "name": "bone64", "parent": "bone3", "length": 27.25, "rotation": 120.84, "x": 30.6, "y": -166.21, "color": "59b008ff" },
- { "name": "bone65", "parent": "bone64", "length": 19.85, "rotation": -94.51, "x": 27.25, "color": "59b008ff" },
- { "name": "bone66", "parent": "bone65", "length": 20.28, "rotation": -7.52, "x": 19.85, "color": "59b008ff" },
- { "name": "bone67", "parent": "bone3", "length": 24.14, "rotation": -116.25, "x": 27.18, "y": -66.62, "color": "2185e3ff" },
- { "name": "bone68", "parent": "bone67", "length": 19.35, "rotation": 81.46, "x": 24.14, "color": "2185e3ff" },
- { "name": "bone69", "parent": "bone68", "length": 20.4, "rotation": 3.44, "x": 19.35, "color": "2185e3ff" },
- { "name": "bone70", "parent": "bone30", "x": 5.6, "y": 5.85 },
- { "name": "bone71", "parent": "bone70", "x": -1.56, "y": -2.26 },
- { "name": "bone72", "parent": "bone31", "x": 7.48, "y": 6.6 },
- { "name": "bone73", "parent": "bone72", "x": -2.31, "y": -3 },
- { "name": "bone74", "parent": "bone29", "x": 6.98, "y": 4.48 },
- { "name": "bone75", "parent": "bone", "length": 17.7, "rotation": -89.51, "x": -10.78, "y": -21.04, "color": "fffc80ff" },
- { "name": "bone76", "parent": "bone75", "length": 22.65, "rotation": -0.49, "x": 17.7, "color": "fffc80ff" },
- { "name": "bone77", "parent": "bone76", "length": 15.36, "rotation": 77.59, "x": 22.65, "color": "fffc80ff" }
- ],
- "slots": [
- { "name": "teashuzuotui", "bone": "bone75", "attachment": "teashuzuotui" },
- { "name": "zuotui", "bone": "bone26", "attachment": "zuotui" },
- { "name": "youtui", "bone": "bone23", "attachment": "youtui" },
- { "name": "toufa 7", "bone": "bone29", "attachment": "toufa 7" },
- { "name": "toufa6", "bone": "bone40", "attachment": "toufa6" },
- { "name": "toufa5", "bone": "bone45", "attachment": "toufa5" },
- { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
- { "name": "zuoshou2", "bone": "bone66", "attachment": "zuoshou2" },
- { "name": "zuoshou1", "bone": "bone64", "attachment": "zuoshou1" },
- { "name": "zuoshou3", "bone": "bone65", "attachment": "zuoshou3" },
- { "name": "qunzi", "bone": "bone11", "attachment": "qunzi" },
- { "name": "shangyi", "bone": "bone3", "attachment": "shangyi" },
- { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
- { "name": "toufa2", "bone": "bone50", "attachment": "toufa2" },
- { "name": "youshou2", "bone": "bone69", "attachment": "youshou2" },
- { "name": "youshou1", "bone": "bone67", "attachment": "youshou1" },
- { "name": "youshou3", "bone": "bone68", "attachment": "youshou3" },
- { "name": "lingdai", "bone": "bone60", "attachment": "lingdai" },
- { "name": "lingzi", "bone": "bone3", "attachment": "lingzi" },
- { "name": "tou", "bone": "bone29", "attachment": "tou" },
- { "name": "youyan", "bone": "bone31", "attachment": "youyan" },
- { "name": "zuoyan", "bone": "bone30", "attachment": "zuoyan" },
- { "name": "meimao", "bone": "bone33", "attachment": "meimao" },
- { "name": "toufa4", "bone": "bone34", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone56", "attachment": "toufa3" },
- { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
- { "name": "biyan", "bone": "bone32" },
- { "name": "yanqiuyou", "bone": "bone70", "attachment": "yanqiuyou" },
- { "name": "yanqiuzuo", "bone": "bone72", "attachment": "yanqiuzuo" },
- { "name": "zuiba 2", "bone": "bone74", "attachment": "zuiba 2" },
- { "name": "biaoqing", "bone": "bone32" },
- { "name": "gaoguangyou", "bone": "bone71", "attachment": "gaoguangyou" },
- { "name": "gaoguangzuo", "bone": "bone73", "attachment": "gaoguangzuo" },
- { "name": "zuiba", "bone": "bone74", "attachment": "zuiba" }
- ],
- "skins": {
- "default": {
- "biaoqing": {
- "biaoqing": { "x": 0.48, "y": -0.06, "rotation": -91.74, "width": 44, "height": 8 }
- },
- "biyan": {
- "biyan": { "x": -0.75, "y": 0.58, "rotation": -91.74, "width": 46, "height": 9 }
- },
- "gaoguangyou": {
- "gaoguangyou": { "x": 0.44, "y": 1.13, "rotation": -86.38, "width": 7, "height": 6 }
- },
- "gaoguangzuo": {
- "gaoguangzuo": { "x": 1.43, "y": 1.71, "rotation": -85.8, "width": 7, "height": 6 }
- },
- "lingdai": {
- "lingdai": {
- "type": "mesh",
- "uvs": [ 1, 0.21955, 1, 0.35224, 1, 0.47916, 1, 0.59646, 1, 0.71185, 1, 0.86377, 1, 1, 0.21812, 1, 0, 1, 0, 0.84646, 0, 0.70608, 0, 0.61185, 0, 0.48108, 0, 0.34262, 0, 0.20416, 0, 0, 0.50383, 0, 1, 0, 0.43597, 0.21955, 0.38597, 0.47147, 0.32169, 0.70608, 0.40953, 0.35277, 0.35066, 0.60034, 0.27257, 0.84546 ],
- "triangles": [ 18, 16, 0, 16, 18, 15, 16, 17, 0, 18, 14, 15, 7, 23, 6, 23, 5, 6, 23, 7, 9, 7, 8, 9, 23, 20, 5, 20, 4, 5, 9, 10, 23, 23, 10, 20, 20, 22, 4, 22, 3, 4, 22, 20, 11, 20, 10, 11, 11, 12, 22, 22, 19, 3, 22, 12, 19, 19, 2, 3, 12, 13, 19, 19, 21, 2, 21, 1, 2, 19, 13, 21, 21, 18, 1, 18, 21, 14, 18, 0, 1, 21, 13, 14 ],
- "vertices": [ 4, 61, -0.96, 7.75, 0.73027, 62, -7.96, 7.26, 0.01584, 63, -14.62, 6.41, 0.00242, 60, 4.24, 7.75, 0.25148, 4, 61, 2.47, 8.16, 0.82233, 62, -4.56, 7.87, 0.10691, 63, -11.26, 7.2, 0.03123, 60, 7.65, 8.24, 0.03953, 4, 61, 5.74, 8.55, 0.59363, 62, -1.31, 8.45, 0.276, 63, -8.05, 7.96, 0.13003, 60, 10.92, 8.71, 3.4E-4, 3, 61, 8.77, 8.91, 0.30919, 62, 1.69, 8.99, 0.36219, 63, -5.08, 8.66, 0.32861, 3, 61, 11.75, 9.27, 0.11885, 62, 4.64, 9.52, 0.27328, 63, -2.16, 9.34, 0.60786, 3, 61, 15.67, 9.73, 0.01697, 62, 8.53, 10.22, 0.07983, 63, 1.68, 10.25, 0.9032, 2, 62, 12.02, 10.85, 0.01632, 63, 5.13, 11.06, 0.98368, 2, 61, 20.48, -0.72, 0, 63, 7.64, 0.4, 1, 2, 61, 20.84, -3.75, 0, 63, 8.34, -2.57, 1, 2, 62, 10.56, -3.64, 0.12346, 63, 4.45, -3.48, 0.87655, 3, 61, 13.26, -4.65, 0.0346, 62, 6.97, -4.28, 0.71273, 63, 0.9, -4.32, 0.25268, 3, 61, 10.82, -4.94, 0.17457, 62, 4.56, -4.72, 0.80544, 63, -1.49, -4.88, 0.02, 3, 61, 7.45, -5.34, 0.6263, 62, 1.21, -5.32, 0.37259, 60, 12.95, -5.15, 0.00111, 3, 61, 3.87, -5.77, 0.88961, 62, -2.33, -5.95, 0.01969, 60, 9.39, -5.66, 0.0907, 2, 61, 0.3, -6.19, 0.50032, 60, 5.82, -6.17, 0.49968, 2, 61, -4.97, -6.82, 0.04764, 60, 0.57, -6.92, 0.95236, 2, 61, -5.81, 0.18, 0.00375, 60, -0.43, 0.07, 0.99625, 2, 61, -6.63, 7.08, 0.36142, 60, -1.41, 6.94, 0.63858, 2, 61, -0.03, -0.09, 0.68812, 60, 5.36, -0.07, 0.31188, 2, 61, 6.56, -0.01, 0.01645, 62, 0.01, -0.04, 0.98355, 2, 62, 6.17, 0.15, 0.19948, 63, -0.13, 0.06, 0.80052, 1, 61, 3.46, -0.04, 1, 2, 62, 3.39, 0.06, 0.99852, 63, -2.9, -0.17, 0.00148, 1, 63, 3.55, 0.23, 1 ],
- "hull": 18,
- "edges": [ 30, 32, 32, 34, 32, 36, 12, 14, 14, 16, 28, 30, 28, 36, 0, 34, 36, 0, 24, 38, 38, 4, 20, 40, 40, 8, 24, 26, 26, 28, 36, 42, 42, 38, 26, 42, 0, 2, 2, 4, 42, 2, 20, 22, 22, 24, 38, 44, 44, 40, 22, 44, 4, 6, 6, 8, 44, 6, 16, 18, 18, 20, 14, 46, 46, 40, 18, 46, 8, 10, 10, 12, 46, 10 ],
- "width": 14,
- "height": 26
- }
- },
- "lingzi": {
- "lingzi": {
- "type": "mesh",
- "uvs": [ 1, 0.10369, 1, 0.49523, 0.89521, 0.64273, 0.78275, 0.79023, 0.56703, 0.86264, 0.52831, 1, 0.34762, 1, 0, 0.53814, 0, 0.18146, 0.24253, 0, 0.68422, 0, 0.80118, 0, 0.32365, 0.4727, 0.70391, 0.12893, 0.47203, 0.74302 ],
- "triangles": [ 13, 10, 11, 13, 12, 9, 13, 9, 10, 8, 9, 12, 13, 11, 0, 1, 13, 0, 13, 14, 12, 7, 8, 12, 1, 2, 13, 2, 14, 13, 3, 14, 2, 4, 14, 3, 12, 6, 7, 6, 14, 4, 14, 6, 12, 5, 6, 4 ],
- "vertices": [ 33.41, -16.55, 24.8, -16.82, 21.46, -13.56, 18.1, -10.07, 16.3, -3.22, 13.24, -2.07, 13.07, 3.71, 22.88, 15.14, 30.73, 15.38, 34.95, 7.74, 35.38, -6.39, 35.5, -10.13, 24.64, 4.83, 32.57, -7.1, 18.84, -0.1 ],
- "hull": 12,
- "edges": [ 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 14, 16, 16, 18, 2, 0, 22, 0, 12, 24, 24, 18, 18, 20, 20, 22, 20, 26, 26, 28 ],
- "width": 32,
- "height": 22
- }
- },
- "meimao": {
- "meimao": { "x": -0.72, "y": 0.05, "rotation": -91.74, "width": 49, "height": 9 }
- },
- "qunzi": {
- "qunzi": {
- "type": "mesh",
- "uvs": [ 0.84178, 0.18321, 0.90771, 0.35437, 0.9525, 0.47065, 1, 0.59398, 1, 0.77594, 1, 1, 0.89773, 1, 0.46368, 1, 0.03157, 1, 0, 1, 1.0E-5, 0.82044, 1.0E-5, 0.70861, 0.01629, 0.55402, 0.06356, 0.36933, 0.10217, 0.21847, 0.15809, 0, 0.28071, 0, 0.45005, 0, 0.59603, 0, 0.77121, 0, 0.19702, 0.41153, 0.1542, 0.60109, 0.12111, 0.73853, 0.45235, 0.29653, 0.45589, 0.46603, 0.45589, 0.6439, 0.45589, 0.78829, 0.64275, 0.25751, 0.70114, 0.44233, 0.75242, 0.59283, 0.79012, 0.75174, 0.23002, 0.24927, 0.07508, 0.87295, 0.46086, 0.92337, 0.84587, 0.88037 ],
- "triangles": [ 5, 34, 4, 7, 34, 6, 5, 6, 34, 33, 30, 34, 34, 30, 4, 30, 3, 4, 30, 29, 3, 25, 28, 29, 29, 2, 3, 29, 28, 2, 28, 1, 2, 24, 27, 28, 1, 27, 0, 1, 28, 27, 27, 17, 18, 27, 23, 17, 27, 19, 0, 27, 18, 19, 20, 23, 24, 24, 23, 27, 23, 31, 17, 30, 25, 29, 25, 22, 21, 25, 21, 24, 25, 24, 28, 32, 33, 7, 7, 33, 34, 22, 26, 33, 33, 26, 30, 30, 26, 25, 26, 22, 25, 8, 32, 7, 8, 9, 32, 9, 10, 32, 32, 22, 33, 32, 10, 22, 10, 11, 22, 22, 11, 21, 11, 12, 21, 21, 12, 20, 21, 20, 24, 12, 13, 20, 20, 13, 31, 20, 31, 23, 31, 13, 14, 31, 16, 17, 14, 15, 31, 31, 15, 16 ],
- "vertices": [ 3, 19, 0.57, 11.84, 0.95704, 21, -13.31, 12.27, 0.04079, 22, -17.98, 14.77, 0.00216, 3, 19, 9.24, 12.51, 0.6056, 21, -4.62, 12.7, 0.31241, 22, -9.31, 14.05, 0.08199, 3, 19, 15.13, 12.97, 0.25867, 21, 1.28, 13, 0.45069, 22, -3.42, 13.57, 0.29064, 3, 19, 21.38, 13.46, 0.06532, 21, 7.53, 13.31, 0.31869, 22, 2.82, 13.05, 0.61599, 3, 19, 29.21, 10.5, 0.00124, 21, 15.28, 10.14, 0.05181, 22, 10.08, 8.88, 0.94695, 1, 22, 19.02, 3.75, 1, 2, 18, 12.99, 23.65, 0.01037, 22, 16.17, -1.22, 0.98963, 4, 13, 12.07, 21.97, 0.0017, 14, 3.34, 22.49, 0.01263, 18, 10.52, -0.53, 0.97494, 22, 4.07, -22.3, 0.01073, 2, 14, 13.27, 0.42, 0.98604, 18, 8.07, -24.6, 0.01396, 2, 14, 13.99, -1.19, 0.9926, 18, 7.89, -26.36, 0.0074, 2, 13, 12.14, -5.27, 0.03878, 14, 6.46, -4.58, 0.96122, 3, 12, 14.63, -7.3, 0.03335, 13, 7.24, -6.85, 0.42756, 14, 1.77, -6.69, 0.53909, 4, 11, 15.93, -8.08, 0.02803, 12, 7.51, -8.14, 0.45896, 13, 0.19, -8.15, 0.47627, 14, -5.09, -8.78, 0.03674, 3, 11, 7.04, -7.67, 0.5844, 12, -1.38, -7.64, 0.39291, 13, -8.71, -8.22, 0.02269, 3, 11, -0.22, -7.33, 0.97831, 12, -8.63, -7.22, 0.02071, 10, -15.52, 3.79, 9.8E-4, 4, 11, -10.73, -6.85, 0.85893, 15, -14.02, -16.64, 0.0013, 19, -20.84, -21, 6.0E-5, 10, -12.39, 13.84, 0.13972, 4, 11, -12.47, -0.2, 0.62291, 15, -14.02, -9.77, 0.04543, 19, -18.41, -14.58, 0.02119, 10, -5.52, 13.84, 0.31047, 4, 11, -14.87, 8.97, 0.15096, 15, -14.02, -0.29, 0.24831, 19, -15.06, -5.71, 0.25188, 10, 3.96, 13.84, 0.34885, 4, 11, -16.94, 16.88, 0.01255, 15, -14.02, 7.88, 0.17507, 19, -12.17, 1.94, 0.70121, 10, 12.14, 13.84, 0.11117, 3, 15, -14.02, 17.69, 0.0121, 19, -8.71, 11.12, 0.97929, 10, 21.95, 13.84, 0.00862, 6, 11, 7.03, 0.05, 0.98862, 12, -1.31, 0.08, 0.01023, 17, -9.33, -14.07, 6.0E-5, 16, -1.67, -14.52, 3.0E-4, 15, 4.91, -14.46, 1.7E-4, 10, -10.21, -5.09, 6.3E-4, 4, 11, 16.07, -0.06, 4.0E-5, 12, 7.74, -0.13, 0.58021, 13, -0.11, -0.13, 0.41957, 14, -6.28, -0.85, 1.9E-4, 5, 13, 6.48, 0.03, 0.33463, 14, 0.24, 0.06, 0.66507, 18, -3.39, -18.39, 1.4E-4, 17, 5.63, -18.61, 1.5E-4, 16, 13.51, -18.28, 0, 3, 11, -1.7, 12.55, 1.4E-4, 15, -0.38, -0.16, 0.96648, 10, 4.09, 0.2, 0.03338, 2, 16, 0.36, 0.05, 0.76147, 15, 7.42, 0.04, 0.23853, 5, 17, 1.64, 0.22, 0.99477, 16, 8.54, 0.32, 0.00215, 19, 12.76, -15.86, 3.5E-4, 21, -1.89, -15.76, 0.00249, 22, -10.36, -14.52, 2.4E-4, 3, 18, 0.79, 0.03, 0.99981, 21, 4.25, -18.28, 9.0E-5, 22, -4.6, -17.83, 1.0E-4, 2, 19, -0.17, 0.21, 0.99973, 10, 14.75, 1.99, 2.7E-4, 4, 17, -7.37, 14.13, 0.0012, 16, -1.18, 13.74, 0.0029, 19, 8.94, 0.26, 0.86338, 21, -5.27, 0.47, 0.13252, 3, 19, 16.43, 0.5, 0.00524, 21, 2.23, 0.5, 0.98773, 22, -4.13, 1.05, 0.00703, 3, 18, 1.02, 18.82, 0.00761, 17, 6.96, 18.84, 0.00279, 22, 3.26, -0.76, 0.9896, 2, 11, -0.66, -0.05, 0.98611, 10, -8.36, 2.37, 0.01389, 3, 14, 6.94, 0.25, 0.98653, 18, 2.5, -21.58, 0.01314, 17, 11.76, -21.3, 3.2E-4, 3, 13, 8.77, 20.75, 8.2E-4, 14, 0.19, 20.9, 0.00312, 18, 7, -0.33, 0.99606, 3, 18, 7.22, 21.32, 0.01318, 17, 12.93, 21.85, 9.0E-5, 22, 9.95, -0.99, 0.98673 ],
- "hull": 20,
- "edges": [ 30, 32, 40, 42, 42, 44, 16, 18, 32, 34, 34, 46, 46, 48, 48, 50, 50, 52, 14, 16, 34, 36, 36, 38, 36, 54, 54, 56, 56, 58, 58, 60, 10, 12, 12, 14, 28, 30, 32, 62, 62, 40, 28, 62, 62, 46, 46, 54, 0, 38, 54, 0, 26, 28, 26, 40, 40, 48, 48, 56, 0, 2, 56, 2, 22, 24, 24, 26, 24, 42, 42, 50, 50, 58, 2, 4, 4, 6, 58, 4, 22, 44, 44, 52, 52, 60, 60, 6, 18, 20, 20, 22, 16, 64, 64, 44, 20, 64, 14, 66, 66, 52, 64, 66, 12, 68, 68, 60, 66, 68, 6, 8, 8, 10, 68, 8 ],
- "width": 56,
- "height": 46
- }
- },
- "shangyi": {
- "shangyi": {
- "type": "mesh",
- "uvs": [ 1, 0.71626, 1, 0.76867, 1, 0.83467, 1, 1, 0.4521, 1, 0, 1, 0, 0.84438, 0, 0.79585, 0, 0.72402, 0, 0, 0.47743, 0, 1, 0, 0.45671, 0.7182, 0.45553, 0.79025, 0.45458, 0.84823 ],
- "triangles": [ 13, 12, 1, 12, 0, 1, 8, 9, 12, 12, 10, 0, 12, 9, 10, 10, 11, 0, 4, 14, 3, 14, 2, 3, 14, 4, 6, 4, 5, 6, 14, 13, 2, 13, 14, 7, 14, 6, 7, 13, 1, 2, 7, 8, 13, 13, 8, 12 ],
- "vertices": [ 2, 2, 12.79, -23.57, 0.30584, 3, 2.36, -23.5, 0.69416, 2, 2, 10.12, -23.57, 0.38076, 3, -0.31, -23.59, 0.61924, 2, 2, 6.75, -23.57, 0.46977, 3, -3.67, -23.69, 0.53023, 2, 2, -1.68, -23.57, 0.58492, 3, -12.1, -23.95, 0.41508, 2, 2, -1.68, -0.01, 0.99899, 3, -12.82, -0.4, 0.00101, 2, 2, -1.68, 19.43, 0.99669, 3, -13.41, 19.03, 0.00331, 2, 2, 6.25, 19.43, 0.89998, 3, -5.48, 19.28, 0.10002, 2, 2, 8.73, 19.43, 0.82553, 3, -3.01, 19.35, 0.17447, 2, 2, 12.39, 19.43, 0.68122, 3, 0.66, 19.46, 0.31878, 1, 3, 37.56, 20.59, 1, 1, 3, 38.19, 0.07, 1, 1, 3, 38.87, -22.39, 1, 1, 3, 1.55, -0.16, 1, 1, 2, 9.01, -0.15, 1, 2, 2, 6.06, -0.11, 0.99985, 3, -5.08, -0.27, 1.5E-4 ],
- "hull": 12,
- "edges": [ 6, 8, 8, 10, 18, 20, 20, 22, 24, 20, 16, 18, 16, 24, 0, 22, 24, 0, 14, 16, 26, 24, 14, 26, 0, 2, 26, 2, 10, 12, 12, 14, 8, 28, 28, 26, 12, 28, 2, 4, 4, 6, 28, 4 ],
- "width": 43,
- "height": 51
- }
- },
- "teashuzuotui": {
- "teashuzuotui": {
- "type": "mesh",
- "uvs": [ 0.59294, 0.36434, 0.59513, 0.39726, 0.59645, 0.43369, 0.62066, 0.78038, 1, 0.85124, 1, 0.92308, 1, 1, 0, 1, 1.0E-5, 0.80578, 3.0E-5, 0.43769, 1.0E-5, 0.40439, 1.0E-5, 0.37402, 0, 0, 0.26743, 0, 0.56866, 0, 0.25574, 0.79704, 0.26154, 0.40146, 0.26678, 0.43764, 0.26205, 0.36712 ],
- "triangles": [ 18, 12, 13, 18, 13, 14, 0, 18, 14, 11, 12, 18, 16, 11, 18, 16, 18, 0, 16, 0, 1, 10, 11, 16, 17, 16, 1, 17, 1, 2, 9, 10, 16, 9, 16, 17, 15, 9, 17, 3, 15, 17, 3, 17, 2, 8, 9, 15, 3, 4, 5, 15, 3, 5, 15, 5, 6, 7, 8, 15, 6, 7, 15 ],
- "vertices": [ 2, 75, 16.25, 8.44, 0.65366, 76, -1.52, 8.43, 0.34634, 2, 75, 17.87, 8.48, 0.49525, 76, 0.1, 8.48, 0.50475, 3, 75, 19.65, 8.5, 0.32353, 76, 1.88, 8.52, 0.67639, 77, 3.86, 22.11, 9.0E-5, 2, 76, 18.87, 9.15, 0.27476, 77, 8.12, 5.66, 0.72524, 1, 77, 18.5, 4.39, 1, 1, 77, 19.25, 0.95, 1, 1, 77, 20.06, -2.73, 1, 2, 76, 29.63, -6.99, 0.44742, 77, -5.33, -8.32, 0.55258, 2, 76, 20.11, -6.99, 0.96567, 77, -7.37, 0.98, 0.03433, 2, 75, 19.72, -7.01, 0.22137, 76, 2.08, -6.99, 0.77863, 2, 75, 18.09, -6.99, 0.40476, 76, 0.44, -6.99, 0.59524, 2, 75, 16.6, -6.98, 0.58539, 76, -1.04, -6.99, 0.41461, 1, 75, -1.73, -6.83, 1, 1, 75, -1.67, 0.13, 1, 1, 75, -1.6, 7.96, 1, 1, 76, 19.68, -0.34, 1, 2, 75, 18, -0.19, 0.22553, 76, 0.3, -0.19, 0.77447, 1, 76, 2.07, -0.05, 1, 1, 75, 16.32, -0.17, 1 ],
- "hull": 15,
- "edges": [ 12, 14, 6, 8, 24, 26, 26, 28, 8, 10, 10, 12, 30, 10, 14, 16, 16, 30, 30, 6, 20, 32, 32, 2, 16, 18, 18, 20, 30, 34, 34, 32, 18, 34, 2, 4, 4, 6, 34, 4, 20, 22, 22, 24, 26, 36, 36, 32, 22, 36, 2, 0, 0, 28, 36, 0 ],
- "width": 26,
- "height": 49
- }
- },
- "tou": {
- "tou": { "x": 38.55, "y": -3.66, "rotation": -91.74, "width": 71, "height": 85 }
- },
- "toufa 7": {
- "toufa 7": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -23.25, -45.31, -20.82, 34.66, 83.13, 31.51, 80.71, -48.46 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 80,
- "height": 104
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.72068, 0.1193, 0.90268, 0.28936, 1, 0.46241, 1, 1, 0.5635, 1, 0.46836, 0.78464, 0.36495, 0.49822, 0.26155, 0.22969, 0, 0.07455, 0, 0, 0.518, 0 ],
- "triangles": [ 7, 8, 9, 10, 7, 9, 0, 6, 7, 0, 7, 10, 6, 2, 5, 1, 6, 0, 2, 6, 1, 3, 4, 5, 3, 5, 2 ],
- "vertices": [ 77.95, -31.17, 67.34, -38.86, 56.66, -42.82, 23.88, -41.82, 24.46, -22.63, 37.72, -18.84, 55.32, -14.82, 71.83, -10.77, 81.64, 0.45, 86.19, 0.31, 85.5, -22.47 ],
- "hull": 11,
- "edges": [ 16, 18, 16, 14, 14, 12, 12, 10, 6, 8, 10, 8, 18, 20, 20, 0, 0, 2, 6, 4, 2, 4 ],
- "width": 44,
- "height": 61
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.54825, 0.04376, 0.71151, 0.0947, 0.85299, 0.16155, 0.98251, 0.25476, 0.99999, 0.40435, 1, 0.491, 1, 0.59135, 0.99999, 0.71094, 0.99999, 0.77379, 0.99999, 0.81877, 0.99999, 0.90903, 1, 1, 0.80583, 1, 0.68974, 1, 0.72431, 0.94034, 0.75867, 0.88106, 0.76045, 0.8255, 0.7623, 0.76804, 0.72646, 0.6868, 0.697, 0.62, 0.61802, 0.51416, 0.56213, 0.42759, 0.51923, 0.36212, 0.44304, 0.24274, 0.37049, 0.15996, 0.21086, 0.10743, 0, 0.05968, 0, 0, 0.31969, 0, 0.26807, 0.05519, 0.57365, 0.18702, 0.77546, 0.36951, 0.85453, 0.56088, 0.91839, 0.73598, 0.90234, 0.84949, 0.43181, 0.12583, 0.67951, 0.28656, 0.80674, 0.45868, 0.87709, 0.64309, 0.9101, 0.79463, 0.84926, 0.93227 ],
- "triangles": [ 12, 40, 11, 40, 10, 11, 13, 14, 12, 12, 14, 40, 14, 15, 40, 40, 34, 10, 40, 15, 34, 34, 9, 10, 15, 16, 34, 34, 39, 9, 34, 16, 39, 16, 17, 39, 39, 8, 9, 39, 33, 8, 39, 17, 33, 33, 7, 8, 17, 38, 33, 33, 38, 7, 17, 18, 38, 7, 38, 6, 38, 18, 32, 18, 19, 32, 38, 32, 6, 19, 37, 32, 32, 5, 6, 19, 20, 37, 32, 37, 5, 20, 31, 37, 20, 21, 31, 37, 4, 5, 37, 31, 4, 21, 36, 31, 31, 3, 4, 21, 22, 36, 31, 2, 3, 31, 36, 2, 22, 30, 36, 22, 23, 30, 36, 1, 2, 36, 30, 1, 24, 35, 23, 23, 35, 30, 35, 0, 30, 30, 0, 1, 25, 29, 24, 24, 29, 35, 29, 28, 35, 35, 28, 0, 25, 26, 29, 26, 27, 29, 29, 27, 28 ],
- "vertices": [ 1, 50, 7.36, 9.22, 1, 2, 50, 15.79, 11, 0.9396, 51, -5.97, 9.76, 0.0604, 2, 50, 24.73, 11.03, 0.41177, 51, 2.56, 12.44, 0.58823, 3, 50, 35.22, 8.94, 0.04522, 51, 13.2, 13.55, 0.85174, 52, -7.29, 12.11, 0.10304, 2, 51, 26.76, 7.93, 0.06503, 52, 7.25, 10.07, 0.93497, 2, 52, 15.59, 8.45, 0.89122, 53, -2.94, 8.54, 0.10878, 2, 52, 25.24, 6.59, 0.05315, 53, 6.7, 6.59, 0.94685, 2, 53, 18.19, 4.27, 0.37699, 54, 0.52, 4.46, 0.62301, 1, 54, 6.68, 4.46, 1, 2, 54, 11.09, 4.46, 0.98381, 55, -4.99, 2.97, 0.01619, 2, 54, 19.94, 4.46, 0.02414, 55, 3.35, 5.93, 0.97586, 1, 55, 11.75, 8.91, 1, 1, 55, 14.54, 1.04, 1, 1, 55, 16.22, -3.66, 1, 1, 55, 10.21, -4.22, 1, 2, 54, 17.2, -5.91, 0.11995, 55, 4.24, -4.77, 0.88005, 2, 54, 11.75, -5.84, 0.80161, 55, -0.92, -6.52, 0.19839, 3, 53, 21.65, -6.85, 0.04899, 54, 6.12, -5.76, 0.9502, 55, -6.25, -8.33, 8.1E-4, 2, 53, 13.54, -6.79, 0.81183, 54, -1.84, -7.3, 0.18817, 3, 52, 25.53, -6.74, 0.00853, 53, 6.88, -6.74, 0.99101, 54, -8.39, -8.56, 4.5E-4, 2, 52, 14.7, -8.1, 0.88285, 53, -3.96, -8.01, 0.11715, 2, 51, 20.73, -10.05, 0.1263, 52, 5.91, -8.85, 0.8737, 2, 51, 14.15, -8.96, 0.64729, 52, -0.73, -9.45, 0.35271, 2, 50, 18.63, -7.32, 0.27921, 51, 2.17, -6.89, 0.72079, 1, 50, 10.55, -4.12, 1, 1, 50, 2.12, -5.68, 1, 1, 50, -7.47, -9.18, 1, 1, 50, -11.77, -5.21, 1, 1, 50, -2.45, 4.9, 1, 1, 50, 0.02, -0.4, 1, 2, 50, 18.42, 0.51, 0.84431, 51, -0.34, 0.52, 0.15569, 2, 51, 19.53, 0.68, 0.02372, 52, 2.07, 1.23, 0.97628, 2, 52, 21.13, 1.01, 0.05367, 53, 2.54, 1.05, 0.94633, 1, 54, 2.98, 0.96, 1, 2, 54, 14.1, 0.27, 0.83183, 55, -0.74, 0.02, 0.16817, 1, 50, 9.88, 0.09, 1, 2, 50, 28.68, -2.75, 6.8E-4, 51, 10.42, 0.44, 0.99932, 1, 52, 10.9, 0.9, 1, 1, 53, 10.63, 0.41, 1, 1, 54, 8.73, 0.6, 1, 1, 55, 7.67, 0.58, 1 ],
- "hull": 29,
- "edges": [ 54, 56, 56, 0, 0, 2, 2, 4, 4, 6, 52, 54, 52, 50, 50, 48, 48, 46, 46, 44, 40, 38, 6, 8, 12, 14, 52, 58, 22, 24, 24, 26, 50, 58, 58, 56, 58, 70, 70, 60, 48, 70, 70, 0, 46, 60, 60, 2, 60, 72, 72, 62, 44, 72, 72, 4, 40, 42, 42, 44, 42, 62, 62, 6, 62, 74, 74, 64, 40, 74, 74, 8, 38, 64, 8, 10, 10, 12, 64, 10, 34, 36, 36, 38, 64, 76, 76, 66, 36, 76, 76, 12, 34, 66, 66, 14, 30, 68, 68, 18, 30, 32, 32, 34, 66, 78, 78, 68, 32, 78, 14, 16, 16, 18, 78, 16, 26, 28, 28, 30, 24, 80, 80, 68, 28, 80, 18, 20, 20, 22, 80, 20 ],
- "width": 43,
- "height": 98
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 0.82401, 0.15198, 0.87002, 0.30612, 0.90288, 0.45945, 0.93319, 0.56493, 0.96585, 0.70436, 0.99999, 0.85769, 1, 1, 0.50585, 1, 0, 1, 0, 0.92677, 0, 0.75334, 0, 0.64353, 0, 0.5489, 0.07597, 0.33593, 0.15538, 0.15705, 0.26216, 0, 0.46752, 0, 0.76323, 0, 0.40454, 0.32529, 0.39907, 0.51482, 0.42371, 0.74908, 0.43343, 0.16668, 0.47106, 0.89371, 0.41066, 0.62502 ],
- "triangles": [ 20, 23, 3, 20, 3, 4, 10, 23, 20, 22, 20, 4, 22, 4, 5, 9, 10, 20, 9, 20, 22, 8, 9, 22, 7, 22, 5, 8, 22, 7, 7, 5, 6, 19, 13, 18, 19, 18, 1, 19, 1, 2, 12, 13, 19, 23, 19, 2, 23, 2, 3, 23, 11, 12, 23, 12, 19, 10, 11, 23, 21, 15, 16, 14, 15, 21, 21, 16, 17, 21, 17, 0, 18, 14, 21, 18, 21, 0, 18, 0, 1, 13, 14, 18 ],
- "vertices": [ 3, 56, 2.8, 15.95, 0.88539, 58, -14.92, 19.19, 0.1112, 59, -22.69, 21.98, 0.00341, 3, 56, 10.64, 19.37, 0.60207, 58, -6.46, 20.37, 0.34524, 59, -14.15, 22.17, 0.05269, 3, 56, 18.53, 22.23, 0.2713, 58, 1.91, 21, 0.49747, 59, -5.76, 21.82, 0.23123, 3, 56, 23.9, 24.52, 0.1186, 58, 7.7, 21.76, 0.43727, 59, 0.07, 21.9, 0.44413, 3, 56, 31.05, 27.23, 0.02699, 58, 15.32, 22.46, 0.24637, 59, 7.72, 21.7, 0.72664, 3, 56, 38.93, 30.15, 0.00145, 58, 23.7, 23.14, 0.08614, 59, 16.12, 21.41, 0.91242, 2, 58, 31.35, 22.46, 0.03949, 59, 23.64, 19.84, 0.96051, 1, 59, 19.39, -0.48, 1, 2, 58, 27.6, -19.37, 0.02353, 59, 15.04, -21.27, 0.97647, 2, 58, 23.66, -19.02, 0.04592, 59, 11.17, -20.46, 0.95408, 2, 58, 14.33, -18.18, 0.28853, 59, 2, -18.54, 0.71147, 3, 56, 35.19, -13.26, 0.00694, 58, 8.42, -17.65, 0.5534, 59, -3.8, -17.33, 0.43967, 3, 56, 30.17, -14.18, 0.04433, 58, 3.33, -17.2, 0.72096, 59, -8.8, -16.28, 0.23471, 3, 56, 18.28, -13.14, 0.44982, 58, -7.83, -12.99, 0.54068, 59, -19.41, -10.8, 0.00951, 2, 56, 8.17, -11.61, 0.92315, 58, -17.16, -8.81, 0.07685, 1, 56, -0.98, -8.74, 1, 1, 56, -2.55, -0.26, 1, 2, 56, -4.8, 11.95, 0.98489, 58, -23.32, 17.38, 0.01511, 2, 56, 15.21, 0.33, 0.70932, 58, -7.17, 0.81, 0.29068, 1, 58, 3, -0.34, 1, 1, 59, 5.42, -1.08, 1, 1, 56, 6.56, -0.03, 1, 1, 59, 13.47, -0.73, 1, 1, 58, 8.97, -0.38, 1 ],
- "hull": 18,
- "edges": [ 36, 38, 12, 14, 14, 16, 30, 32, 30, 28, 28, 26, 26, 24, 32, 34, 2, 4, 12, 10, 8, 10, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 26, 36, 36, 2, 24, 38, 38, 4, 20, 40, 40, 8, 14, 44, 44, 40, 10, 44, 16, 18, 18, 20, 44, 18, 20, 22, 22, 24, 38, 46, 46, 40, 22, 46, 4, 6, 6, 8, 46, 6 ],
- "width": 42,
- "height": 54
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 1, 0.10142, 0.86781, 0.19924, 0.72294, 0.30422, 0.63424, 0.43545, 0.58642, 0.50912, 0.52418, 0.60998, 0.47755, 0.71699, 0.46086, 0.79157, 0.43911, 0.88878, 0.43381, 0.95522, 0.43024, 1, 0.10503, 1, 0, 1, 1.0E-5, 0.87248, 0, 0.75143, 0, 0.65862, 0, 0.56668, 0.05909, 0.43489, 0.11685, 0.31377, 0.19963, 0.20163, 0.30864, 0.09703, 0.51298, 0, 0.73181, 0, 1, 0, 0.50985, 0.19115, 0.39383, 0.28901, 0.2299, 0.49984, 0.19668, 0.61678, 0.12868, 0.77187, 0.64745, 0.07052, 0.2975, 0.39189, 0.16151, 0.69699, 0.1151, 0.90286 ],
- "triangles": [ 9, 10, 32, 10, 11, 32, 11, 12, 32, 12, 13, 32, 9, 32, 8, 32, 28, 8, 32, 13, 28, 8, 28, 7, 13, 14, 28, 7, 28, 31, 7, 31, 6, 6, 31, 27, 31, 28, 15, 28, 14, 15, 6, 27, 5, 31, 15, 27, 15, 16, 27, 16, 17, 27, 27, 26, 5, 27, 17, 26, 26, 30, 5, 17, 18, 26, 5, 30, 4, 30, 25, 4, 26, 18, 30, 18, 19, 30, 4, 25, 3, 25, 24, 3, 30, 19, 25, 19, 20, 25, 25, 20, 24, 3, 24, 2, 24, 29, 2, 2, 29, 1, 29, 22, 1, 1, 22, 0, 24, 21, 29, 24, 20, 21, 22, 23, 0, 29, 21, 22 ],
- "vertices": [ 1, 34, -10.17, 12.91, 1, 4, 34, -1.93, 12.49, 0.98855, 35, -11.77, 12.68, 0.01097, 36, -17.39, 18.08, 4.3E-4, 37, -23.36, 21.2, 5.0E-5, 4, 34, 7.01, 11.94, 0.67938, 35, -2.84, 11.99, 0.25387, 36, -8.99, 14.99, 0.0467, 37, -15.42, 17.07, 0.02004, 5, 34, 15.2, 14.28, 0.14486, 35, 5.39, 14.2, 0.43186, 36, -0.47, 14.88, 0.24866, 37, -6.98, 15.89, 0.1672, 38, -14.29, 17.47, 0.00742, 6, 34, 19.74, 15.66, 0.03542, 35, 9.95, 15.5, 0.27974, 36, 4.27, 14.9, 0.30178, 37, -2.27, 15.31, 0.33963, 38, -9.67, 16.41, 0.04189, 39, -17.41, 18.32, 0.00154, 6, 34, 25.84, 17.65, 9.2E-4, 35, 16.09, 17.4, 0.08878, 36, 10.69, 15.06, 0.16718, 37, 4.12, 14.66, 0.51331, 38, -3.38, 15.09, 0.19149, 39, -11.29, 16.36, 0.03832, 5, 35, 21.98, 20.06, 0.01411, 36, 17.09, 16.02, 0.03323, 37, 10.58, 14.8, 0.33435, 38, 3.06, 14.56, 0.40182, 39, -4.94, 15.16, 0.21648, 5, 35, 25.59, 22.44, 0.00205, 36, 21.21, 17.33, 0.00558, 37, 14.83, 15.58, 0.16087, 38, 7.37, 14.9, 0.37965, 39, -0.62, 15.04, 0.45185, 4, 36, 26.57, 19.04, 0, 37, 20.37, 16.6, 0.03816, 38, 12.98, 15.33, 0.19948, 39, 5.01, 14.89, 0.76236, 3, 37, 24, 17.71, 0.00845, 38, 16.71, 16.06, 0.1099, 39, 8.79, 15.22, 0.88165, 3, 37, 26.44, 18.45, 0.00331, 38, 19.22, 16.54, 0.0909, 39, 11.34, 15.45, 0.9058, 1, 39, 13.6, 0.66, 1, 1, 39, 14.33, -4.12, 1, 2, 38, 17.2, -4.44, 0.00289, 39, 7.14, -5.22, 0.99711, 3, 37, 20.16, -5.06, 0.00132, 38, 10.52, -6.19, 0.48256, 39, 0.32, -6.26, 0.51612, 3, 37, 15.21, -6.93, 0.10992, 38, 5.41, -7.53, 0.83699, 39, -4.91, -7.06, 0.05309, 3, 36, 19.8, -7.4, 0.00206, 37, 10.31, -8.78, 0.47902, 38, 0.34, -8.86, 0.51892, 3, 36, 11.88, -8.52, 0.25922, 37, 2.32, -8.88, 0.70287, 38, -7.62, -8.13, 0.03791, 3, 35, 16.8, -7.81, 0.09, 36, 4.54, -9.4, 0.76822, 37, -5.08, -8.83, 0.14178, 4, 34, 19.73, -9.32, 0.01523, 35, 9.55, -9.47, 0.6191, 36, -2.89, -9.02, 0.3652, 37, -12.4, -7.52, 4.7E-4, 3, 34, 11.96, -9.93, 0.3059, 35, 1.77, -9.96, 0.67506, 36, -10.51, -7.38, 0.01904, 2, 34, 1.43, -7.11, 0.97689, 35, -8.72, -6.97, 0.02311, 1, 34, -5.63, 0.06, 1, 1, 34, -14.29, 8.86, 1, 4, 34, 9.29, 0.43, 0.94471, 35, -0.73, 0.45, 0.05452, 36, -10.1, 3.31, 5.5E-4, 37, -17.99, 5.63, 2.1E-4, 4, 34, 17.01, 0.54, 3.0E-5, 35, 6.99, 0.43, 0.98734, 36, -2.67, 1.2, 0.01146, 37, -10.89, 2.6, 0.00117, 1, 37, 3.01, -0.22, 1, 4, 35, 26.76, 6.77, 3.0E-5, 37, 9.79, 0.7, 0.10433, 38, 0.81, 0.62, 0.89472, 39, -8.63, 1.53, 9.2E-4, 2, 38, 10.15, -0.17, 0.13424, 39, 0.58, -0.23, 0.86576, 1, 34, -0.05, 0.12, 1, 3, 35, 14.29, 1.27, 1.3E-4, 36, 4.59, 0.03, 0.99957, 37, -3.84, 0.52, 2.9E-4, 3, 37, 14.64, 0.8, 3.2E-4, 38, 5.64, 0.21, 0.99786, 39, -3.87, 0.62, 0.00182, 1, 39, 8.05, 0.28, 1 ],
- "hull": 24,
- "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 0, 46, 0, 2, 2, 4, 4, 6, 10, 12, 42, 44, 44, 46, 48, 50, 52, 54, 20, 22, 22, 24, 44, 58, 58, 48, 42, 58, 58, 2, 40, 48, 48, 4, 38, 50, 50, 6, 50, 60, 60, 52, 36, 60, 6, 8, 8, 10, 60, 8, 34, 52, 52, 10, 32, 54, 54, 12, 28, 56, 56, 16, 28, 30, 30, 32, 54, 62, 62, 56, 30, 62, 12, 14, 14, 16, 62, 14, 24, 26, 26, 28, 22, 64, 64, 56, 26, 64, 16, 18, 18, 20, 64, 18 ],
- "width": 46,
- "height": 57
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 1, 0.35312, 1, 0.47653, 0.99999, 0.5895, 1, 0.71117, 1, 0.82067, 1, 0.92322, 1, 1, 0, 1, 0, 0.80123, 0.08997, 0.72374, 0.17354, 0.65175, 0.22768, 0.52212, 0.26645, 0.43449, 0.28686, 0.32714, 0.34609, 0, 0.63899, 0, 1, 0, 0.56268, 0.35628, 0.48636, 0.56832, 0.42995, 0.68304, 0.27399, 0.85858, 0.5259, 0.4471, 0.35309, 0.76955 ],
- "triangles": [ 8, 9, 20, 22, 4, 5, 20, 22, 5, 7, 8, 20, 20, 5, 6, 7, 20, 6, 22, 10, 19, 9, 10, 22, 22, 19, 4, 20, 9, 22, 11, 12, 18, 19, 11, 18, 10, 11, 19, 18, 2, 3, 19, 18, 3, 19, 3, 4, 17, 15, 0, 13, 14, 17, 21, 13, 17, 12, 13, 21, 17, 0, 1, 21, 17, 1, 18, 12, 21, 2, 21, 1, 18, 21, 2, 15, 16, 0, 17, 14, 15 ],
- "vertices": [ 4, 45, 7.79, 9.87, 0.20217, 46, -2.15, 9.69, 0.73433, 47, -9.51, 9.65, 0.06136, 49, -24.18, -3.82, 0.00213, 5, 45, 12.94, 10.51, 0.00971, 46, 2.92, 10.78, 0.7215, 47, -4.45, 10.76, 0.23769, 48, -13.76, 7.75, 0.00309, 49, -20.69, 0.01, 0.02801, 4, 46, 7.56, 11.78, 0.4239, 47, 0.19, 11.78, 0.42937, 48, -9.49, 9.84, 0.03534, 49, -17.5, 3.52, 0.11139, 4, 46, 12.55, 12.86, 0.15391, 47, 5.18, 12.88, 0.42602, 48, -4.9, 12.08, 0.11195, 49, -14.06, 7.3, 0.30813, 4, 46, 17.05, 13.82, 0.04175, 47, 9.67, 13.87, 0.26909, 48, -0.77, 14.1, 0.14059, 49, -10.97, 10.71, 0.54858, 4, 46, 21.26, 14.73, 0.00586, 47, 13.87, 14.8, 0.15379, 48, 3.1, 15.99, 0.1172, 49, -8.07, 13.89, 0.72315, 4, 46, 24.41, 15.41, 3.0E-5, 47, 17.02, 15.49, 0.12469, 48, 6, 17.4, 0.10524, 49, -5.9, 16.28, 0.77004, 1, 49, 10.38, 1.48, 1, 3, 47, 13.6, -7.79, 0.04198, 48, 8.15, -6.03, 0.38999, 49, 4.76, -4.7, 0.56802, 3, 47, 10, -6.56, 0.20434, 48, 4.36, -5.68, 0.68138, 49, 1.11, -5.77, 0.11428, 3, 46, 13.94, -5.44, 3.3E-4, 47, 6.65, -5.41, 0.60047, 48, 0.83, -5.35, 0.3992, 3, 46, 8.37, -5.43, 0.31882, 47, 1.08, -5.42, 0.67614, 48, -4.58, -6.67, 0.00504, 3, 45, 13.19, -5.72, 0.00851, 46, 4.59, -5.37, 0.87825, 47, -2.7, -5.38, 0.11324, 2, 45, 8.66, -5.83, 0.40961, 46, 0.09, -5.88, 0.59039, 1, 45, -5.14, -6.25, 1, 1, 45, -5.94, 0.15, 1, 2, 45, -6.92, 8.03, 0.9804, 46, -16.65, 6.57, 0.0196, 3, 46, 0.01, 0.31, 0.99933, 47, -7.31, 0.28, 6.7E-4, 49, -16.97, -10.2, 0, 3, 46, 9.06, 0.55, 0.02057, 47, 1.75, 0.55, 0.97699, 49, -9.73, -4.74, 0.00244, 4, 46, 14.04, 0.35, 5.2E-4, 47, 6.72, 0.38, 0.72663, 48, -0.46, 0.29, 0.26408, 49, -5.57, -2.01, 0.00877, 1, 49, 1.92, 1.14, 1, 3, 46, 3.9, 0.32, 0.99573, 47, -3.41, 0.31, 0.00411, 49, -13.8, -7.92, 1.6E-4, 2, 48, 3.55, 0.37, 0.93009, 49, -1.88, -0.46, 0.06991 ],
- "hull": 17,
- "edges": [ 12, 14, 14, 16, 28, 30, 30, 32, 30, 34, 36, 38, 40, 14, 24, 26, 26, 28, 26, 34, 0, 32, 34, 0, 34, 42, 42, 36, 24, 42, 0, 2, 42, 2, 20, 38, 38, 6, 20, 22, 22, 24, 22, 36, 2, 4, 4, 6, 36, 4, 16, 40, 10, 12, 40, 10, 6, 8, 8, 10, 38, 44, 44, 40, 8, 44, 16, 18, 18, 20, 44, 18 ],
- "width": 22,
- "height": 42
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 0.73806, 0.22333, 0.75038, 0.29842, 0.70278, 0.41638, 0.66543, 0.5264, 0.65311, 0.56807, 0.6378, 0.61988, 0.67424, 0.68762, 0.71611, 0.76544, 0.79713, 0.80179, 0.85611, 0.82825, 1, 0.89281, 1, 0.95548, 1, 1, 0.88324, 1, 0.50564, 1, 0.36608, 0.96338, 0.19727, 0.91909, 0.10544, 0.86451, 0, 0.80183, 1.0E-5, 0.67531, 1.0E-5, 0.58729, 0, 0.4642, 0, 0.37538, 0, 0.26001, 0, 0, 0.32943, 0, 0.70143, 0, 0.23154, 0.35705, 0.23048, 0.56555, 0.2658, 0.70075, 0.39306, 0.82609, 0.26088, 0.25001, 0.22914, 0.44516, 0.72481, 0.89682, 0.94139, 0.94299, 0.33401, 0.76793, 0.24808, 0.63291, 0.56764, 0.86331 ],
- "triangles": [ 30, 6, 7, 37, 30, 7, 37, 7, 8, 33, 37, 8, 33, 8, 9, 34, 9, 10, 33, 9, 34, 34, 10, 11, 15, 16, 30, 15, 30, 37, 14, 15, 37, 14, 37, 33, 13, 33, 34, 14, 33, 13, 34, 11, 12, 13, 34, 12, 35, 29, 5, 29, 18, 19, 30, 35, 6, 17, 18, 29, 17, 29, 35, 16, 17, 35, 16, 35, 30, 28, 32, 3, 4, 28, 3, 20, 21, 28, 4, 36, 28, 5, 36, 4, 36, 19, 20, 36, 20, 28, 29, 36, 5, 35, 5, 6, 29, 19, 36, 21, 22, 32, 3, 32, 2, 21, 32, 28, 31, 24, 25, 0, 31, 25, 0, 25, 26, 23, 24, 31, 27, 23, 31, 1, 27, 31, 1, 31, 0, 22, 23, 27, 2, 27, 1, 32, 22, 27, 32, 27, 2 ],
- "vertices": [ 3, 40, -0.43, 9.04, 0.96049, 41, -7.93, 9.54, 0.03931, 42, -12.49, 12.5, 2.0E-4, 3, 40, 2.98, 9.64, 0.85423, 41, -4.49, 9.94, 0.13625, 42, -9.04, 12.15, 0.00952, 3, 40, 8.47, 9.34, 0.44358, 41, 0.97, 9.29, 0.43286, 42, -3.85, 10.35, 0.12356, 4, 40, 13.58, 9.18, 0.0897, 41, 6.06, 8.83, 0.42256, 42, 1.03, 8.81, 0.48763, 44, -5.22, 13.69, 1.1E-4, 5, 40, 15.51, 9.16, 0.03545, 41, 7.98, 8.68, 0.29826, 42, 2.88, 8.26, 0.66137, 43, -2.39, 9.18, 0.00129, 44, -4.15, 12.09, 0.00362, 5, 40, 17.91, 9.13, 0.00624, 41, 10.38, 8.51, 0.13666, 42, 5.18, 7.58, 0.79577, 43, -0.33, 7.94, 0.03179, 44, -2.81, 10.09, 0.02953, 5, 40, 20.94, 10.16, 1.0E-5, 41, 13.46, 9.35, 0.02714, 42, 8.37, 7.74, 0.63056, 43, 2.8, 7.31, 0.17514, 44, -0.24, 8.19, 0.16716, 4, 41, 17, 10.31, 8.2E-4, 42, 12.03, 7.93, 0.21203, 43, 6.39, 6.58, 0.17965, 44, 2.7, 6, 0.6075, 3, 42, 13.93, 9.16, 0.06829, 43, 8.54, 7.31, 0.0605, 44, 4.96, 5.75, 0.87121, 3, 42, 15.32, 10.07, 0.0267, 43, 10.11, 7.84, 0.01887, 44, 6.6, 5.56, 0.95443, 2, 42, 18.71, 12.27, 4.7E-4, 44, 10.61, 5.1, 0.99953, 1, 44, 12.5, 2.92, 1, 1, 44, 13.84, 1.37, 1, 1, 44, 12.16, -0.08, 1, 1, 44, 6.74, -4.77, 1, 2, 43, 12.01, -3.19, 0.03914, 44, 3.63, -5.23, 0.96086, 2, 43, 8.85, -5.3, 0.39695, 44, -0.13, -5.79, 0.60305, 2, 43, 5.84, -5.87, 0.80026, 44, -3.09, -5.03, 0.19974, 3, 42, 11.41, -5.77, 0.0013, 43, 2.4, -6.53, 0.9888, 44, -6.49, -4.17, 0.0099, 2, 42, 5.67, -4.8, 0.51954, 43, -2.92, -4.17, 0.48046, 3, 41, 9.46, -3.67, 0.13344, 42, 1.68, -4.12, 0.81479, 43, -6.62, -2.52, 0.05178, 3, 40, 12.12, -3.7, 0.01868, 41, 3.8, -3.94, 0.96678, 42, -3.9, -3.18, 0.01454, 2, 40, 8.05, -4.14, 0.56322, 41, -0.28, -4.13, 0.43678, 2, 40, 2.78, -4.72, 0.99977, 41, -5.58, -4.39, 2.3E-4, 1, 40, -9.11, -6.02, 1, 1, 40, -9.79, 0.2, 1, 1, 40, -10.56, 7.22, 1, 3, 40, 6.74, 0.14, 0.9934, 41, -1.33, 0.22, 0.00649, 42, -8.03, 1.98, 1.1E-4, 2, 41, 8.25, 0.66, 0.01424, 42, 1.42, 0.36, 0.98576, 2, 41, 14.43, 1.62, 0, 43, 0.2, -0.03, 1, 2, 43, 6.45, -0.16, 0.58385, 44, -0.11, -0.12, 0.41615, 2, 40, 1.78, 0.16, 0.99989, 41, -6.28, 0.54, 1.1E-4, 3, 40, 10.77, 0.54, 0.00494, 41, 2.72, 0.37, 0.99207, 42, -4.04, 1.26, 0.003, 3, 42, 18.01, 7.08, 0.00369, 43, 11.98, 4.28, 0.00116, 44, 6.78, 1.54, 0.99515, 1, 44, 11.28, 2.63, 1, 1, 43, 3.55, -0.1, 1, 2, 41, 11.33, 1.14, 7.7E-4, 42, 4.53, 0.17, 0.99923, 3, 42, 16, 4.39, 0.00671, 43, 9.36, 2.18, 0.00852, 44, 3.51, 0.75, 0.98476 ],
- "hull": 27,
- "edges": [ 46, 48, 40, 42, 48, 50, 50, 52, 20, 22, 22, 24, 50, 62, 62, 54, 46, 62, 2, 0, 0, 52, 62, 0, 2, 54, 42, 44, 44, 46, 54, 44, 54, 64, 64, 56, 42, 64, 2, 4, 4, 6, 64, 4, 6, 56, 56, 40, 36, 58, 58, 10, 32, 60, 60, 14, 28, 66, 18, 20, 66, 18, 22, 68, 68, 66, 20, 68, 24, 26, 26, 28, 68, 26, 32, 34, 34, 36, 58, 70, 70, 60, 34, 70, 10, 12, 12, 14, 70, 12, 36, 38, 38, 40, 56, 72, 72, 58, 38, 72, 6, 8, 8, 10, 72, 8, 28, 30, 30, 32, 60, 74, 74, 66, 30, 74, 14, 16, 16, 18, 74, 16 ],
- "width": 19,
- "height": 46
- }
- },
- "yanqiuyou": {
- "yanqiuyou": { "x": -1.87, "y": -2.73, "rotation": -86.38, "width": 13, "height": 13 }
- },
- "yanqiuzuo": {
- "yanqiuzuo": { "x": -2.83, "y": -2.76, "rotation": -85.8, "width": 12, "height": 12 }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.80653, 0.27305, 0.83268, 0.28955, 0.86706, 0.31124, 1, 0.3951, 1, 0.55235, 1, 0.56954, 1, 0.60539, 1, 1, 0.46081, 1, 0.33704, 0.7882, 0.32706, 0.77112, 0.31389, 0.74857, 0.21512, 0.57955, 0.19763, 0.54962, 0.18231, 0.52341, 0, 0.21142, 0, 0, 0.3737, 0, 0.4681, 0.4681, 0.494, 0.494, 0.45042, 0.45042, 0.66568, 0.66568, 0.65198, 0.65198, 0.68893, 0.68893 ],
- "triangles": [ 5, 23, 21, 6, 23, 5, 9, 10, 21, 9, 21, 23, 8, 9, 23, 23, 6, 7, 8, 23, 7, 19, 18, 1, 19, 1, 2, 2, 3, 4, 22, 19, 2, 12, 13, 18, 12, 18, 19, 2, 4, 22, 22, 4, 21, 4, 5, 21, 11, 12, 19, 11, 19, 22, 10, 11, 22, 10, 22, 21, 20, 15, 16, 20, 17, 0, 20, 16, 17, 18, 20, 0, 18, 0, 1, 14, 15, 20, 13, 14, 20, 13, 20, 18 ],
- "vertices": [ 2, 7, 18.45, 11.42, 0.77374, 8, -4.89, 11.37, 0.22626, 3, 7, 19.5, 11.69, 0.71128, 8, -3.85, 11.66, 0.28866, 9, -14.24, 12.46, 6.0E-5, 3, 7, 20.88, 12.06, 0.62176, 8, -2.47, 12.03, 0.37714, 9, -12.84, 12.75, 0.0011, 3, 7, 26.22, 13.46, 0.32429, 8, 2.86, 13.49, 0.64678, 9, -7.45, 13.91, 0.02893, 3, 7, 33.3, 10.04, 0.04955, 8, 9.96, 10.12, 0.6339, 9, -0.53, 10.17, 0.31655, 3, 7, 34.07, 9.66, 0.03405, 8, 10.74, 9.76, 0.58058, 9, 0.22, 9.76, 0.38537, 3, 7, 35.69, 8.88, 0.01274, 8, 12.36, 8.99, 0.44061, 9, 1.8, 8.91, 0.54665, 1, 9, 19.15, -0.49, 1, 2, 8, 23.97, -12.61, 0.00384, 9, 12.21, -13.29, 0.99616, 3, 7, 36.12, -11.21, 7.8E-4, 8, 12.97, -11.1, 0.3155, 9, 1.31, -11.19, 0.68372, 3, 7, 35.23, -11.08, 0.00239, 8, 12.08, -10.98, 0.37621, 9, 0.43, -11.02, 0.6214, 3, 7, 34.06, -10.91, 0.00702, 8, 10.91, -10.82, 0.46094, 9, -0.73, -10.79, 0.53205, 3, 7, 25.29, -9.63, 0.31648, 8, 2.13, -9.61, 0.6449, 9, -9.43, -9.11, 0.03862, 3, 7, 23.74, -9.41, 0.45072, 8, 0.58, -9.4, 0.53378, 9, -10.97, -8.81, 0.01549, 3, 7, 22.38, -9.21, 0.57779, 8, -0.78, -9.21, 0.41667, 9, -12.32, -8.55, 0.00554, 1, 7, 6.19, -6.84, 1, 1, 7, -3.32, -2.24, 1, 1, 7, 1.07, 6.84, 1, 2, 7, 23.25, -1.06, 0.51273, 8, 0.01, -1.06, 0.48727, 2, 7, 24.72, -0.99, 0.07113, 8, 1.48, -0.98, 0.92887, 2, 7, 22.25, -1.1, 0.88332, 8, -0.99, -1.11, 0.11668, 2, 8, 11.23, -0.46, 0.32585, 9, 0.15, -0.47, 0.67415, 2, 8, 10.45, -0.5, 0.83562, 9, -0.63, -0.47, 0.16438, 2, 8, 12.55, -0.39, 0.00435, 9, 1.47, -0.47, 0.99565 ],
- "hull": 18,
- "edges": [ 32, 34, 30, 32, 14, 16, 26, 36, 36, 2, 24, 26, 38, 36, 24, 38, 2, 4, 4, 6, 38, 4, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 20, 42, 42, 10, 20, 22, 22, 24, 38, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 16, 18, 18, 20, 14, 46, 46, 42, 18, 46, 10, 12, 12, 14, 46, 12 ],
- "width": 27,
- "height": 50
- }
- },
- "youshou1": {
- "youshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.17889, 1, 1, 0.49419, 1, 0, 0.50552, 0, 0, 0.54567, 0 ],
- "triangles": [ 3, 4, 5, 2, 3, 5, 2, 5, 0, 2, 0, 1 ],
- "vertices": [ 19.51, 11.21, 28.76, -6.19, 17.6, -12.13, 1.12, -7.45, -4.58, 3.27, 7.47, 9.67 ],
- "hull": 6,
- "edges": [ 6, 8, 2, 4, 6, 4, 8, 10, 2, 0, 10, 0 ],
- "width": 25,
- "height": 24
- }
- },
- "youshou2": {
- "youshou2": { "x": 10.36, "y": 2.98, "rotation": -56.91, "width": 23, "height": 25 }
- },
- "youshou3": {
- "youshou3": {
- "type": "mesh",
- "uvs": [ 1, 0.36538, 0.45058, 1, 0, 1, 0, 0.5938, 0.60008, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
- "vertices": [ 17.77, -6.97, -4.36, -6.95, -10.79, 1.74, -1.66, 8.51, 20.28, 6.83, 25.99, -0.88 ],
- "hull": 6,
- "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
- "width": 24,
- "height": 28
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 0.92902, 0.32027, 0.93678, 0.37101, 0.94318, 0.41288, 0.9932, 0.74006, 0.9959, 0.75769, 1, 0.78454, 1, 1, 0, 1, 0, 0.94645, 0, 0.84614, 0.41806, 0.77398, 0.41294, 0.75235, 0.40762, 0.72987, 0.34202, 0.45293, 0.33065, 0.40494, 0.31934, 0.3572, 0.23473, 0, 0.59773, 0, 0.88006, 0, 0.7334, 0.87605, 0.64963, 0.33513, 0.65827, 0.39095, 0.71841, 0.78544, 0.71494, 0.76268, 0.71046, 0.7333, 0.66443, 0.43136 ],
- "triangles": [ 8, 9, 10, 19, 8, 10, 7, 8, 19, 7, 19, 6, 12, 25, 24, 24, 2, 3, 11, 12, 24, 23, 24, 3, 11, 24, 23, 23, 3, 4, 10, 11, 23, 22, 23, 4, 10, 23, 22, 22, 4, 5, 19, 22, 5, 19, 10, 22, 19, 5, 6, 20, 17, 18, 20, 18, 0, 15, 16, 17, 15, 17, 20, 21, 20, 0, 21, 0, 1, 14, 15, 20, 14, 20, 21, 25, 21, 1, 25, 1, 2, 13, 14, 21, 13, 21, 25, 12, 13, 25, 24, 25, 2 ],
- "vertices": [ 2, 23, 14.44, 7.25, 0.99919, 24, -6.14, 7.05, 8.1E-4, 2, 23, 16.99, 7.14, 0.97339, 24, -3.59, 7.02, 0.02661, 2, 23, 19.07, 7.06, 0.86296, 24, -1.04, 6.94, 0.13704, 1, 24, 15.36, 6.82, 1, 1, 24, 16.25, 6.81, 1, 2, 24, 17.59, 6.8, 0.99767, 25, -6.99, -0.55, 0.00233, 2, 24, 26.77, 5.94, 0.35251, 25, -4.64, 8.36, 0.64749, 1, 25, 18.51, 1.74, 1, 1, 25, 17.87, -0.85, 1, 2, 24, 16.31, -17.37, 1.8E-4, 25, 16.66, -5.72, 0.99982, 2, 24, 14.8, -7.07, 0.52619, 25, 6.26, -5.55, 0.47381, 2, 24, 14.13, -7.11, 0.70155, 25, 6.18, -6.22, 0.29845, 3, 23, 33.35, -7.59, 7.0E-5, 24, 13.27, -7.15, 0.81269, 25, 6.08, -7.07, 0.18724, 3, 23, 19.41, -7.5, 0.81231, 24, -0.21, -7.6, 0.16003, 25, 3.96, -22.83, 0.02766, 2, 23, 17.02, -7.5, 0.95309, 24, -3.06, -7.61, 0.04691, 2, 23, 14.6, -7.5, 0.99357, 24, -5.48, -7.69, 0.00643, 1, 23, -3.38, -7.47, 1, 1, 23, -2.38, 1.19, 1, 1, 23, -1.61, 7.92, 1, 2, 24, 20.55, 0.06, 0.55105, 25, 0.15, 1.28, 0.44895, 1, 23, 14.41, 0.5, 1, 1, 23, 17.2, 0.39, 1, 1, 24, 17.09, 0.06, 1, 1, 24, 15.95, 0.07, 1, 1, 24, 14.48, 0.09, 1, 2, 23, 19.23, 0.31, 0.88196, 24, -0.66, 0.2, 0.11804 ],
- "hull": 19,
- "edges": [ 12, 14, 20, 18, 12, 10, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 30, 40, 40, 0, 28, 30, 42, 40, 28, 42, 0, 2, 42, 2, 38, 44, 20, 44, 44, 10, 20, 22, 46, 44, 22, 46, 8, 10, 46, 8, 22, 24, 48, 46, 24, 48, 6, 8, 48, 6, 30, 32, 36, 0, 34, 40, 24, 26, 26, 28, 42, 50, 50, 48, 26, 50, 2, 4, 4, 6, 50, 4 ],
- "width": 24,
- "height": 50
- }
- },
- "youyan": {
- "youyan": { "x": 6.84, "y": 0.66, "rotation": -85.8, "width": 22, "height": 16 }
- },
- "zuiba": {
- "zuiba": { "x": 0.48, "y": -2.04, "rotation": -91.74, "width": 18, "height": 10 }
- },
- "zuiba 2": {
- "zuiba 2": { "x": 0.29, "y": -1.26, "rotation": -91.74, "width": 19, "height": 10 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.27074, 0.83104, 0.5441, 0.81576, 0.56883, 0.7976, 0.59821, 0.67755, 0.79245, 0.66655, 0.81024, 0.65173, 0.83422, 0.54927, 1, 0, 1, 0, 0.56015, 0.03764, 0.52546, 0.06668, 0.4987, 0.25041, 0.32938, 0.27738, 0.30452, 0.30008, 0.28361, 0.60781, 0, 1, 0, 0.55948, 0.44052, 0.5293, 0.4707, 0.32782, 0.67218, 0.29552, 0.70448, 0.34869, 0.65131, 0.58035, 0.41965 ],
- "triangles": [ 8, 20, 7, 7, 20, 6, 8, 9, 20, 20, 19, 6, 6, 19, 5, 19, 21, 5, 5, 21, 4, 21, 18, 4, 4, 18, 3, 9, 10, 20, 20, 10, 19, 10, 11, 19, 19, 11, 21, 11, 12, 21, 21, 12, 18, 18, 17, 3, 3, 17, 2, 17, 22, 2, 2, 22, 1, 1, 22, 0, 12, 13, 18, 18, 13, 17, 13, 14, 17, 17, 14, 22, 0, 22, 16, 22, 14, 15, 22, 15, 16 ],
- "vertices": [ 1, 4, 8.13, 10.67, 1, 2, 4, 22.38, 10.97, 0.72248, 6, -11.46, 9.99, 0.27752, 2, 4, 23.67, 11, 0.64715, 6, -10.18, 10.1, 0.35285, 2, 4, 25.2, 11.03, 0.55069, 6, -8.65, 10.23, 0.44931, 2, 4, 35.33, 11.24, 0.05678, 6, 1.44, 11.09, 0.94322, 2, 4, 36.26, 11.26, 0.03917, 6, 2.37, 11.16, 0.96083, 2, 4, 37.51, 11.28, 0.02232, 6, 3.61, 11.27, 0.97768, 1, 6, 12.23, 12, 1, 1, 6, 20.7, -4.02, 1, 2, 4, 34.33, -13.73, 0.10879, 6, 2.04, -13.89, 0.89121, 2, 4, 32.3, -13.28, 0.15312, 6, -0.02, -13.57, 0.84688, 2, 4, 30.74, -12.93, 0.20742, 6, -1.6, -13.33, 0.79258, 2, 4, 20.84, -10.73, 0.76302, 6, -11.62, -11.76, 0.23698, 2, 4, 19.39, -10.41, 0.8341, 6, -13.09, -11.54, 0.1659, 2, 4, 18.16, -10.14, 0.88451, 6, -14.33, -11.34, 0.11549, 1, 4, 1.58, -6.46, 1, 2, 4, -3.72, 5.34, 1, 6, -37.16, 2.71, 0, 2, 4, 21.52, 0.76, 0.87295, 6, -11.67, -0.25, 0.12705, 2, 4, 23.25, 0.44, 0.74512, 6, -9.92, -0.46, 0.25488, 2, 4, 34.8, -1.66, 0.00729, 6, 1.73, -1.81, 0.99271, 2, 4, 36.65, -1.99, 0.00173, 6, 3.6, -2.03, 0.99827, 2, 4, 33.6, -1.44, 0.01814, 6, 0.53, -1.67, 0.98186, 2, 4, 20.33, 0.97, 0.94336, 6, -12.88, -0.11, 0.05664 ],
- "hull": 17,
- "edges": [ 30, 32, 16, 18, 0, 32, 14, 16, 26, 34, 34, 4, 24, 26, 36, 34, 24, 36, 4, 6, 36, 6, 10, 38, 18, 20, 38, 20, 16, 40, 40, 38, 18, 40, 10, 12, 12, 14, 40, 12, 8, 10, 42, 38, 8, 42, 20, 22, 42, 22, 22, 24, 6, 8, 36, 42, 0, 2, 2, 4, 32, 44, 44, 34, 2, 44, 26, 28, 28, 30, 44, 28 ],
- "width": 33,
- "height": 48
- }
- },
- "zuoshou1": {
- "zuoshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.53665, 0.44345, 1, 0, 1, 0, 0.19053, 0.46145, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
- "vertices": [ 2.28, 9.29, 20.34, 11.97, 30.41, 6.37, 20.96, -10.61, 8.26, -8.77, -3.98, -1.96 ],
- "hull": 6,
- "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
- "width": 26,
- "height": 24
- }
- },
- "zuoshou2": {
- "zuoshou2": { "x": 9.83, "y": -1.54, "rotation": -107.06, "width": 24, "height": 26 }
- },
- "zuoshou3": {
- "zuoshou3": {
- "type": "mesh",
- "uvs": [ 1, 0.72079, 1, 1, 0.48837, 1, 0, 0.22549, 0, 0, 0.47722, 0 ],
- "triangles": [ 3, 4, 5, 2, 5, 0, 3, 5, 2, 2, 0, 1 ],
- "vertices": [ -3.22, -7.69, -10.83, -4.2, -6.36, 5.57, 19.03, 5.23, 25.18, 2.41, 21.01, -6.7 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
- "width": 21,
- "height": 30
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 1, 0.37187, 1, 0.39314, 1, 0.41229, 1, 0.77842, 1, 0.80014, 1, 0.82931, 1, 1, 0, 1, 0, 0.93271, 0, 0.81207, 0.41562, 0.73356, 0.42123, 0.70346, 0.42606, 0.67756, 0.48035, 0.38613, 0.48465, 0.36306, 0.48859, 0.34191, 0.55229, 0, 0.80895, 0, 1, 0, 0.67895, 0.8025, 0.68453, 0.76807, 0.68944, 0.73779, 0.74349, 0.39729, 0.74643, 0.37533, 0.74999, 0.35591 ],
- "triangles": [ 8, 9, 10, 8, 10, 19, 7, 8, 19, 12, 13, 21, 11, 12, 21, 20, 11, 21, 10, 11, 20, 3, 21, 2, 20, 21, 3, 4, 20, 3, 19, 10, 20, 19, 20, 4, 5, 19, 4, 19, 5, 6, 7, 19, 6, 24, 16, 17, 15, 16, 24, 17, 18, 0, 24, 17, 0, 23, 15, 24, 14, 15, 23, 24, 0, 1, 23, 24, 1, 22, 14, 23, 13, 14, 22, 23, 1, 2, 22, 23, 2, 21, 13, 22, 21, 22, 2 ],
- "vertices": [ 2, 26, 17.95, 6.71, 0.8523, 27, 0.28, 6.73, 0.1477, 2, 26, 18.78, 6.76, 0.76361, 27, 1.11, 6.83, 0.23639, 2, 26, 19.5, 6.81, 0.66476, 27, 1.83, 6.9, 0.33524, 2, 27, 17.69, 8.6, 0.98435, 28, -8.88, 0.93, 0.01565, 2, 27, 18.68, 8.7, 0.96433, 28, -8.62, 1.88, 0.03567, 2, 27, 19.96, 8.85, 0.91908, 28, -8.28, 3.13, 0.08092, 2, 27, 27.38, 9.69, 0.58953, 28, -6.34, 10.34, 0.41047, 1, 28, 19.31, 2.17, 1, 1, 28, 18.46, -0.87, 1, 1, 28, 16.94, -6.34, 1, 2, 27, 16.41, -7.32, 0.48756, 28, 5.45, -6.11, 0.51244, 2, 27, 15.34, -7.31, 0.6967, 28, 5.06, -7.11, 0.3033, 2, 27, 14.31, -7.31, 0.8111, 28, 4.68, -8.06, 0.1889, 2, 26, 18.87, -7.28, 0.55409, 27, 1.87, -7.2, 0.44591, 2, 26, 18.02, -7.22, 0.68273, 27, 1.02, -7.17, 0.31727, 2, 26, 17.21, -7.16, 0.78397, 27, 0.21, -7.16, 0.21603, 1, 26, 1.47, -6.35, 1, 1, 26, 1.07, 0.57, 1, 1, 26, 0.77, 5.72, 1, 1, 27, 19.76, 0.1, 1, 1, 27, 18.13, 0.08, 1, 1, 27, 16.7, 0.06, 1, 1, 26, 19.81, -0.12, 1, 1, 26, 18.78, -0.1, 1, 2, 26, 17.86, -0.06, 0.99985, 27, 0.52, -0.03, 1.5E-4 ],
- "hull": 19,
- "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 24, 26, 44, 42, 26, 44, 6, 4, 44, 4, 26, 28, 46, 44, 28, 46, 4, 2, 46, 2, 2, 0, 0, 36, 34, 48, 48, 46, 0, 48, 28, 30, 30, 32, 48, 30 ],
- "width": 27,
- "height": 47
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 4.67, "y": 2.93, "rotation": -86.38, "width": 20, "height": 16 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biaoqing": {
- "attachment": [
- { "time": 0.1333, "name": "biaoqing" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.0667, "name": "biyan" },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "gaoguangyou": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "gaoguangzuo": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "yanqiuyou": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "yanqiuzuo": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0.2, "name": null }
- ]
- },
- "youshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "youshou1" }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "youshou2" }
- ]
- },
- "youshou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "youshou3" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0.1667, "name": null }
- ]
- },
- "zuiba 2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "zuiba 2" }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.2, "name": null }
- ]
- },
- "zuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "zuoshou1" }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "zuoshou2" }
- ]
- },
- "zuoshou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "zuoshou3" }
- ]
- },
- "zuotui": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1333, "name": null },
- { "time": 0.1667, "name": null }
- ]
- }
- },
- "bones": {
- "bone67": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2, "angle": -31.33 },
- { "time": 2.4667, "angle": -14.9 }
- ],
- "translate": [
- { "time": 0, "x": -1.26, "y": 53.66, "curve": "stepped" },
- { "time": 0.1667, "x": -1.26, "y": 53.66, "curve": "stepped" },
- { "time": 2.4667, "x": -1.26, "y": 53.66 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone64": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2, "angle": 40.7 },
- { "time": 0.3333, "angle": 25.34 },
- { "time": 2.4667, "angle": 17.67 }
- ],
- "translate": [
- { "time": 0, "x": -3.52, "y": 179.15, "curve": "stepped" },
- { "time": 0.1667, "x": -3.52, "y": 179.15, "curve": "stepped" },
- { "time": 0.3333, "x": -3.52, "y": 179.15, "curve": "stepped" },
- { "time": 2.4667, "x": -3.52, "y": 179.15 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "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.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -0.7 },
- { "time": 0.1667, "x": 0, "y": -0.85 },
- { "time": 0.4, "x": 0, "y": -1.21 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.4, "angle": -4.26 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.95, "y": 0.06 },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 10.2 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.52 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.66 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -12.49 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -10.78 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.58 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -15.09 },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.18 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.6, "angle": 3.34 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -1.69, "y": -0.19 },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.9, "y": 1.3 },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.18 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.6, "angle": 4.3 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.18 },
- { "time": 0.9, "angle": 0, "curve": "stepped" },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -2.15, "y": 0.07 },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.8, "y": 1 },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -2.12, "y": -0.11 },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 8.64 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.6, "angle": 2.3 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -2.28, "y": 0.09 },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.9, "y": 1.5 },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 8.64 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.6, "angle": 6.95 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 8.64 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.6, "angle": 9.68 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4, "angle": -6.12 }
- ],
- "translate": [
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4, "angle": 10.85 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.06 },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -49.3, "y": -2.16, "curve": "stepped" },
- { "time": 0.1667, "x": -49.3, "y": -2.16 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.0667, "x": 0.464, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 0.464, "y": 1 },
- { "time": 0.1667, "x": 0.679, "y": 1 },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.0667, "x": 0.464, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 0.464, "y": 1 },
- { "time": 0.1667, "x": 0.679, "y": 1 },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.0667, "x": -1.27, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": -1.27, "y": 0 },
- { "time": 0.1667, "x": -0.76, "y": 0 },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.33 },
- { "time": 0.9, "angle": -1.58 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.33 },
- { "time": 0.9, "angle": 3.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.33 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.9, "angle": -6.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 1.05, "y": 1 },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.33 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.9, "angle": -6.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.33 },
- { "time": 0.9, "angle": 0 },
- { "time": 1.9, "angle": -6.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4, "angle": -3.74 },
- { "time": 1.0333, "angle": -10.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.68 },
- { "time": 0.4, "angle": -5.3 },
- { "time": 1.6667, "angle": -7.57 },
- { "time": 2.4667, "angle": -0.68 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.68 },
- { "time": 0.4, "angle": -3.21 },
- { "time": 1.6667, "angle": -9.37 },
- { "time": 2.4667, "angle": -17.63 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -8.44 },
- { "time": 0.4, "angle": -6.57 },
- { "time": 1.6667, "angle": -9.37 },
- { "time": 2.4667, "angle": -18.61 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -8.44 },
- { "time": 0.4, "angle": -6.57 },
- { "time": 1.6667, "angle": -9.37 },
- { "time": 2.4667, "angle": -18.61 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.07 },
- { "time": 1.2, "angle": 5.08 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.5 },
- { "time": 1.2, "angle": 5.08 },
- { "time": 2.3333, "angle": -1.91 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.73 },
- { "time": 1.2, "angle": 15.19 },
- { "time": 2.3333, "angle": 8.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.73 },
- { "time": 1.2, "angle": 15.19 },
- { "time": 2.3333, "angle": 8.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.73 },
- { "time": 1.2, "angle": 15.19 },
- { "time": 2.3333, "angle": 8.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.8333, "angle": 2.8 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.8333, "angle": 7.1 },
- { "time": 2, "angle": -0.98 },
- { "time": 2.4667, "angle": -3.77 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.8333, "angle": 0.13 },
- { "time": 2, "angle": 5.7 },
- { "time": 2.4667, "angle": -3.77 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 1.05, "y": 1 },
- { "time": 0.8333, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.8333, "angle": 2.8 },
- { "time": 2, "angle": 5.7 },
- { "time": 2.4667, "angle": -3.77 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.49 },
- { "time": 0.7333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.67 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.7, "angle": -2.02 },
- { "time": 2.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 1.05, "y": 1 },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -0.45 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.9, "angle": -3.65 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.04 },
- { "time": 0.6667, "angle": 5.89 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.04, "curve": "stepped" },
- { "time": 0.6667, "angle": 1.04, "curve": "stepped" },
- { "time": 2, "angle": 1.04 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.09 },
- { "time": 1, "angle": -6.6 },
- { "time": 2, "angle": -5.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone63": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.09 },
- { "time": 0.6667, "angle": 4.33 },
- { "time": 2, "angle": -5.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone65": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2, "angle": -54.67 },
- { "time": 0.3333, "angle": -38.51 },
- { "time": 2.4667, "angle": -30.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3333, "x": -2.42, "y": 1.41 },
- { "time": 2.4667, "x": -3.39, "y": 1.98 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 },
- { "time": 0.2, "x": 0.7, "y": 0.7 },
- { "time": 0.3333, "x": 0.767, "y": 0.9 },
- { "time": 2.4667, "x": 0.8, "y": 1 }
- ]
- },
- "bone66": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 15.12 },
- { "time": 2.4667, "angle": 21.17 }
- ],
- "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": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone68": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2, "angle": 59.77 },
- { "time": 0.3333, "angle": 35.92 },
- { "time": 2.4667, "angle": 23.99 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3333, "x": 0.04, "y": -2.05 },
- { "time": 2.4667, "x": 0.05, "y": -2.88 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 },
- { "time": 0.2, "x": 0.7, "y": 0.7 },
- { "time": 0.3333, "x": 0.767, "y": 0.9 },
- { "time": 2.4667, "x": 0.8, "y": 1 }
- ]
- },
- "bone69": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -7.42 },
- { "time": 2.4667, "angle": -10.38 }
- ],
- "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": 2.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4667, "x": 1, "y": 1 }
- ]
- },
- "bone76": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.4, "angle": -16.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone77": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.31 },
- { "time": 0.4, "angle": 11.87 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone75": {
- "rotate": [
- { "time": 0, "angle": -5.08, "curve": "stepped" },
- { "time": 0.1667, "angle": -5.08 },
- { "time": 0.4, "angle": 4.09 }
- ],
- "translate": [
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.4, "x": 0.06, "y": -0.75 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone70": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.0667, "x": 0, "y": -1.72, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": -1.72, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": -1.72, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": -1.72 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone72": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.0667, "x": 0.56, "y": -2.04, "curve": "stepped" },
- { "time": 0.1333, "x": 0.56, "y": -2.04, "curve": "stepped" },
- { "time": 0.1667, "x": 0.56, "y": -2.04, "curve": "stepped" },
- { "time": 0.2333, "x": 0.56, "y": -2.04 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone74": {
- "rotate": [
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone71": {
- "rotate": [
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone73": {
- "rotate": [
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "teashuzuotui": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "toufa 7": {
- "attachment": [
- { "time": 1.1, "name": "toufa 7" }
- ]
- },
- "youshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youshou3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "zuoshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1, "name": null }
- ]
- },
- "zuoshou3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuotui": {
- "attachment": [
- { "time": 0, "name": "zuotui" },
- { "time": 1, "name": "zuotui" },
- { "time": 2, "name": "zuotui" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 40.37 },
- { "time": 0.3333, "angle": 47.24 },
- { "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 },
- { "time": 1.1667, "angle": 40.37 },
- { "time": 1.3333, "angle": 47.24 },
- { "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.14, "y": -0.08, "curve": "stepped" },
- { "time": 0.1667, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 0.3333, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 0.5, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 0.6667, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 0.8333, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1.1667, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1.3333, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1.5, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1.6667, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 1.8333, "x": 0.14, "y": -0.08, "curve": "stepped" },
- { "time": 2, "x": 0.14, "y": -0.08 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 5.9 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 5.9 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 0.1667, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 0.3333, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 0.5, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 0.6667, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 0.8333, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1.1667, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1.3333, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1.5, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1.6667, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 1.8333, "x": 2.5, "y": -0.01, "curve": "stepped" },
- { "time": 2, "x": 2.5, "y": -0.01 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 25.59 },
- { "time": 0.1667, "angle": 7.49 },
- { "time": 0.3333, "angle": -25.05 },
- { "time": 0.5, "angle": -28.88 },
- { "time": 0.6667, "angle": -10.72 },
- { "time": 0.8333, "angle": 7.43 },
- { "time": 1, "angle": 25.59 },
- { "time": 1.1667, "angle": 7.49 },
- { "time": 1.3333, "angle": -25.05 },
- { "time": 1.5, "angle": -28.88 },
- { "time": 1.6667, "angle": -10.72 },
- { "time": 1.8333, "angle": 7.43 },
- { "time": 2, "angle": 25.59 }
- ],
- "translate": [
- { "time": 0, "x": -3.64, "y": 4.31 },
- { "time": 0.1667, "x": -7.45, "y": 3.29 },
- { "time": 0.3333, "x": -11.26, "y": 2.27 },
- { "time": 0.5, "x": -15.06, "y": 1.25 },
- { "time": 0.6667, "x": -11.26, "y": 2.27 },
- { "time": 0.8333, "x": -7.45, "y": 3.29 },
- { "time": 1, "x": -3.64, "y": 4.31 },
- { "time": 1.1667, "x": -7.45, "y": 3.29 },
- { "time": 1.3333, "x": -11.26, "y": 2.27 },
- { "time": 1.5, "x": -15.06, "y": 1.25 },
- { "time": 1.6667, "x": -11.26, "y": 2.27 },
- { "time": 1.8333, "x": -7.45, "y": 3.29 },
- { "time": 2, "x": -3.64, "y": 4.31 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": -15.48 },
- { "time": 0.1667, "angle": 2.11 },
- { "time": 0.3333, "angle": 23.04 },
- { "time": 0.5, "angle": 42.3 },
- { "time": 0.6667, "angle": 10.98 },
- { "time": 0.8333, "angle": -17.68 },
- { "time": 1, "angle": -15.48 },
- { "time": 1.1667, "angle": 2.11 },
- { "time": 1.3333, "angle": 23.04 },
- { "time": 1.5, "angle": 42.3 },
- { "time": 1.6667, "angle": 10.98 },
- { "time": 1.8333, "angle": -17.68 },
- { "time": 2, "angle": -15.48 }
- ],
- "translate": [
- { "time": 0, "x": 1.08, "y": 5.93 },
- { "time": 0.1667, "x": 3.39, "y": 4.25 },
- { "time": 0.3333, "x": 5.87, "y": 4.43 },
- { "time": 0.5, "x": 6.84, "y": 6.96 },
- { "time": 0.6667, "x": 7.11, "y": 5.98 },
- { "time": 0.8333, "x": 3.37, "y": 3.41 },
- { "time": 1, "x": 1.08, "y": 5.93 },
- { "time": 1.1667, "x": 3.39, "y": 4.25 },
- { "time": 1.3333, "x": 5.87, "y": 4.43 },
- { "time": 1.5, "x": 6.84, "y": 6.96 },
- { "time": 1.6667, "x": 7.11, "y": 5.98 },
- { "time": 1.8333, "x": 3.37, "y": 3.41 },
- { "time": 2, "x": 1.08, "y": 5.93 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ],
- "shear": [
- { "time": 0, "x": 0, "y": 1.2, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 1.2, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 1.2 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 60.35 },
- { "time": 0.8333, "angle": 46.42 },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 60.35 },
- { "time": 1.8333, "angle": 46.42 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 0.1667, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 0.3333, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 0.5, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 0.6667, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 0.8333, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1.1667, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1.3333, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1.5, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1.6667, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 1.8333, "x": 1.5, "y": 0.26, "curve": "stepped" },
- { "time": 2, "x": 1.5, "y": 0.26 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": -11.43 },
- { "time": 0.1667, "angle": -9.42 },
- { "time": 0.3333, "angle": -29.51 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -10.31 },
- { "time": 0.8333, "angle": -9.67 },
- { "time": 1, "angle": -11.43 },
- { "time": 1.1667, "angle": -9.42 },
- { "time": 1.3333, "angle": -29.51 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -10.31 },
- { "time": 1.8333, "angle": -9.67 },
- { "time": 2, "angle": -11.43 }
- ],
- "translate": [
- { "time": 0, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 1.64, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 1.64, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": 0.54 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 0.54 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 0.54 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 0.54 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- {
- "time": 0,
- "angle": -307.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 6.95,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -307.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 6.95,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -307.39 }
- ],
- "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 }
- ]
- },
- "bone5": {
- "rotate": [
- {
- "time": 0,
- "angle": -18.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.31,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -18.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.31,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -18.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 }
- ]
- },
- "bone6": {
- "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 }
- ]
- },
- "bone7": {
- "rotate": [
- {
- "time": 0,
- "angle": 324.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -2.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 324.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -2.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 324.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 }
- ]
- },
- "bone8": {
- "rotate": [
- {
- "time": 0,
- "angle": -23.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -23.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -23.97 }
- ],
- "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": 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 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- {
- "time": 0,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 3.39 }
- ],
- "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 }
- ]
- },
- "bone12": {
- "rotate": [
- {
- "time": 0,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 3.39 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.03,
- "y": -1.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.03,
- "y": -1.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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 }
- ]
- },
- "bone13": {
- "rotate": [
- {
- "time": 0,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 3.39 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.2,
- "y": -0.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.2,
- "y": -0.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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 }
- ]
- },
- "bone14": {
- "rotate": [
- {
- "time": 0,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 3.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 3.39 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0.38,
- "y": 1.52,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0.38,
- "y": 1.52,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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 }
- ]
- },
- "bone15": {
- "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 }
- ]
- },
- "bone16": {
- "rotate": [
- {
- "time": 0,
- "angle": 13.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 13.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 13.58 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -1.8,
- "y": -0.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.94,
- "y": 0.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -1.8,
- "y": -0.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.94,
- "y": 0.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -1.8, "y": -0.37 }
- ],
- "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 }
- ]
- },
- "bone17": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.64,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.64 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0.91,
- "y": -2.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0.91,
- "y": -2.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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 }
- ]
- },
- "bone18": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -2.41,
- "y": -0.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -2.41,
- "y": -0.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- {
- "time": 0,
- "angle": 10.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 10.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 10.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 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 5.89 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -2.14,
- "y": 1.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -2.14,
- "y": 1.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -2.14, "y": 1.98 }
- ],
- "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": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 5.89 }
- ],
- "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": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 5.89 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.532, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.532, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.504, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.504, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -1.51, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -1.51, "y": 0 },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -2.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": -5.09 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -5.09 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -5.09 }
- ],
- "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": -5.09 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -5.09 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -5.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": -5.09 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -5.09 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -5.09 }
- ],
- "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": -5.09 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -5.09 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -5.09 }
- ],
- "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": -5.09 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -5.09 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -5.09 }
- ],
- "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": -4.01 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": -4.01 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": -4.01 }
- ],
- "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": -4.01 },
- { "time": 0.2667, "angle": 8.98 },
- { "time": 0.5, "angle": 5.74 },
- { "time": 1, "angle": -4.01 },
- { "time": 1.2667, "angle": 8.98 },
- { "time": 1.5, "angle": 5.74 },
- { "time": 2, "angle": -4.01 }
- ],
- "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": -4.01 },
- { "time": 0.2667, "angle": -10.22 },
- { "time": 0.5, "angle": 5.74 },
- { "time": 0.7333, "angle": 8.02 },
- { "time": 1, "angle": -4.01 },
- { "time": 1.2667, "angle": -10.22 },
- { "time": 1.5, "angle": 5.74 },
- { "time": 1.7333, "angle": 8.02 },
- { "time": 2, "angle": -4.01 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": -4.01 },
- { "time": 0.5, "angle": 5.74 },
- { "time": 0.7333, "angle": 8.02 },
- { "time": 1, "angle": -4.01 },
- { "time": 1.5, "angle": 5.74 },
- { "time": 1.7333, "angle": 8.02 },
- { "time": 2, "angle": -4.01 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": -4.01 },
- { "time": 0.5, "angle": 5.74 },
- { "time": 0.7333, "angle": 8.02 },
- { "time": 1, "angle": -4.01 },
- { "time": 1.5, "angle": 5.74 },
- { "time": 1.7333, "angle": 8.02 },
- { "time": 2, "angle": -4.01 }
- ],
- "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.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.43 },
- { "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": -6.22 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.22 },
- { "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": 6.49 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.49 },
- { "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": 6.49 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.49 },
- { "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": -13.9 },
- { "time": 0.5, "angle": 0.82 },
- { "time": 1, "angle": -13.9 },
- { "time": 1.5, "angle": 0.82 },
- { "time": 2, "angle": -13.9 }
- ],
- "translate": [
- { "time": 0, "x": 0.5, "y": 1.35 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 1, "x": 0.5, "y": 1.35 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 2, "x": 0.5, "y": 1.35 }
- ],
- "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 }
- ]
- },
- "bone61": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.21,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.21,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.32 }
- ],
- "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 }
- ]
- },
- "bone62": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 11.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 11.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.32 }
- ],
- "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 }
- ]
- },
- "bone63": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 11.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 11.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.32 }
- ],
- "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 }
- ]
- },
- "bone64": {
- "translate": [
- { "time": 0, "x": 0.36, "y": -11.66 }
- ]
- },
- "bone67": {
- "translate": [
- { "time": 0, "x": -33.08, "y": -79.63, "curve": "stepped" },
- { "time": 1, "x": -33.08, "y": -79.63 }
- ]
- }
- },
- "deform": {
- "default": {
- "lingzi": {
- "lingzi": [
- {
- "time": 0,
- "vertices": [ 0.37779, 1.26007, 0.29602, 0.52925, 0.68015, 1.58143, 0.28019, 1.049, 1.42149, 0.13839, -1.0E-5, 0.98542, -0.04324, 2.72987, 1.89178, -0.03235, 1.18846, -0.58817, 0.94881, 1.17354, 0, 0, 0.20097, 3.64781, 1.18278, 1.56678, 0, 0, 0.43661, 2.41441 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "vertices": [ 0.37779, 1.26007, 0.29602, 0.52925, 0.68015, 1.58143, 0.28019, 1.049, 1.42149, 0.13839, -1.0E-5, 0.98542, -0.04324, 2.72987, 1.89178, -0.03235, 1.18846, -0.58817, 0.94881, 1.17354, 0, 0, 0.20097, 3.64781, 1.18278, 1.56678, 0, 0, 0.43661, 2.41441 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "vertices": [ 0.37779, 1.26007, 0.29602, 0.52925, 0.68015, 1.58143, 0.28019, 1.049, 1.42149, 0.13839, -1.0E-5, 0.98542, -0.04324, 2.72987, 1.89178, -0.03235, 1.18846, -0.58817, 0.94881, 1.17354, 0, 0, 0.20097, 3.64781, 1.18278, 1.56678, 0, 0, 0.43661, 2.41441 ]
- }
- ]
- },
- "qunzi": {
- "qunzi": [
- {
- "time": 0,
- "offset": 120,
- "vertices": [ -0.11343, 1.56805, -0.00385, 1.57211, 0.70027, 1.40756, 0.5071, 1.48812, 0.19498, 1.56, 1.56, -0.19498, 0.03893, 0.80307, 0.09483, 0.79836, 0.08977, 0.79899, 0.04705, 0.80263, -0.07764, 0.57983, -0.10846, 0.57486, 0.2384, 0.53422, 0.1936, 0.55204, 0.11856, 0.57287, 0, 0, 0, 0, 0, 0, 0.40715, 1.96732, 0, 2.009, 0.31316, 2.6274, -0.03862, 2.64572, 0.84792, 2.50646, 1.40421, 2.24266, 1.88792, 1.85394, 1.13773, 2.29671, 1.87097, 1.75178, 2.22751, 1.26788, 0, 0, 0, 0, -2.48544, -1.1948, -2.30473, -1.51434, -2.67834, -0.65692, -2.75763, -0.02016, 0.39416, -1.60699, 0.01211, -1.65459, -0.37359, -1.61189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.43683, 1.09975, -0.49487, 1.07487, 0.20576, 1.1653 ]
- },
- {
- "time": 0.5,
- "offset": 62,
- "vertices": [ -1.43209, -0.21898, -1.39408, -0.39419, -1.28804, -0.66322, -1.08685, -0.95794, -1.47692, -1.55313, -1.27378, -1.72366, -0.90613, -1.94248, -2.08762, -1.17646, -1.92632, -1.4253, -0.19901, 2.38801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10278, 3.11831, 0, 3.12, -0.00815, 3.97086, 0.23014, 3.96423, 1.73415, 3.57224, 1.45343, 3.69535, 1.74361, 3.56752, 0.18322, 3.20353, 1.43501, 2.86999, 1.65939, 2.74635 ]
- },
- {
- "time": 1,
- "offset": 120,
- "vertices": [ -0.11343, 1.56805, -0.00385, 1.57211, 0.70027, 1.40756, 0.5071, 1.48812, 0.19498, 1.56, 1.56, -0.19498, 0.03893, 0.80307, 0.09483, 0.79836, 0.08977, 0.79899, 0.04705, 0.80263, -0.07764, 0.57983, -0.10846, 0.57486, 0.2384, 0.53422, 0.1936, 0.55204, 0.11856, 0.57287, 0, 0, 0, 0, 0, 0, 0.40715, 1.96732, 0, 2.009, 0.31316, 2.6274, -0.03862, 2.64572, 0.84792, 2.50646, 1.40421, 2.24266, 1.88792, 1.85394, 1.13773, 2.29671, 1.87097, 1.75178, 2.22751, 1.26788, 0, 0, 0, 0, -2.48544, -1.1948, -2.30473, -1.51434, -2.67834, -0.65692, -2.75763, -0.02016, 0.39416, -1.60699, 0.01211, -1.65459, -0.37359, -1.61189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.43683, 1.09975, -0.49487, 1.07487, 0.20576, 1.1653 ]
- },
- {
- "time": 1.5,
- "offset": 62,
- "vertices": [ -1.43209, -0.21898, -1.39408, -0.39419, -1.28804, -0.66322, -1.08685, -0.95794, -1.47692, -1.55313, -1.27378, -1.72366, -0.90613, -1.94248, -2.08762, -1.17646, -1.92632, -1.4253, -0.19901, 2.38801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10278, 3.11831, 0, 3.12, -0.00815, 3.97086, 0.23014, 3.96423, 1.73415, 3.57224, 1.45343, 3.69535, 1.74361, 3.56752, 0.18322, 3.20353, 1.43501, 2.86999, 1.65939, 2.74635 ]
- },
- {
- "time": 2,
- "offset": 120,
- "vertices": [ -0.11343, 1.56805, -0.00385, 1.57211, 0.70027, 1.40756, 0.5071, 1.48812, 0.19498, 1.56, 1.56, -0.19498, 0.03893, 0.80307, 0.09483, 0.79836, 0.08977, 0.79899, 0.04705, 0.80263, -0.07764, 0.57983, -0.10846, 0.57486, 0.2384, 0.53422, 0.1936, 0.55204, 0.11856, 0.57287, 0, 0, 0, 0, 0, 0, 0.40715, 1.96732, 0, 2.009, 0.31316, 2.6274, -0.03862, 2.64572, 0.84792, 2.50646, 1.40421, 2.24266, 1.88792, 1.85394, 1.13773, 2.29671, 1.87097, 1.75178, 2.22751, 1.26788, 0, 0, 0, 0, -2.48544, -1.1948, -2.30473, -1.51434, -2.67834, -0.65692, -2.75763, -0.02016, 0.39416, -1.60699, 0.01211, -1.65459, -0.37359, -1.61189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.43683, 1.09975, -0.49487, 1.07487, 0.20576, 1.1653 ]
- }
- ]
- },
- "shangyi": {
- "shangyi": [
- {
- "time": 0,
- "offset": 4,
- "vertices": [ -0.85399, 0.36602, -0.86472, 0.33983, -0.97601, 0.732, -0.99786, 0.70191, -0.73199, 0.85399, -0.75768, 0.83128, -0.12201, 8.32201, -0.3755, 8.31443, 3.04998, 5.40802, 2.88372, 5.49845, 0.03799, 2.88998, -0.05011, 2.88979, 1.22001, 0.366, 1.20824, 0.40301, 3.90398, 0.12201, 3.89844, 0.24092, 0, 0, -0.22427, 1.15573, 0, 0, -0.116, 3.80624, 0, 3.80801, -0.854, 6.248, -1.04395, 6.21908 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 4,
- "vertices": [ -0.85399, 0.36602, -0.86472, 0.33983, -0.97601, 0.732, -0.99786, 0.70191, -0.73199, 0.85399, -0.75768, 0.83128, -0.12201, 8.32201, -0.3755, 8.31443, 3.04998, 5.40802, 2.88372, 5.49845, 0.03799, 2.88998, -0.05011, 2.88979, 1.22001, 0.366, 1.20824, 0.40301, 3.90398, 0.12201, 3.89844, 0.24092, 0, 0, -0.22427, 1.15573, 0, 0, -0.116, 3.80624, 0, 3.80801, -0.854, 6.248, -1.04395, 6.21908 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 4,
- "vertices": [ -0.85399, 0.36602, -0.86472, 0.33983, -0.97601, 0.732, -0.99786, 0.70191, -0.73199, 0.85399, -0.75768, 0.83128, -0.12201, 8.32201, -0.3755, 8.31443, 3.04998, 5.40802, 2.88372, 5.49845, 0.03799, 2.88998, -0.05011, 2.88979, 1.22001, 0.366, 1.20824, 0.40301, 3.90398, 0.12201, 3.89844, 0.24092, 0, 0, -0.22427, 1.15573, 0, 0, -0.116, 3.80624, 0, 3.80801, -0.854, 6.248, -1.04395, 6.21908 ]
- }
- ]
- },
- "teashuzuotui": {
- "teashuzuotui": [
- { "time": 0 }
- ]
- },
- "toufa1": {
- "toufa1": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 8,
- "vertices": [ 0.04693, 1.5473, 0.81277, 1.26595, 0.39083, 4.37613, 0.05473, 1.80516 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 8,
- "vertices": [ 0.04693, 1.5473, 0.81277, 1.26595, 0.39083, 4.37613, 0.05473, 1.80516 ]
- },
- { "time": 2 }
- ]
- },
- "toufa4": {
- "toufa4": [
- {
- "time": 0,
- "offset": 10,
- "vertices": [ -1.69127, 3.66756, -1.63293, 3.69397, -0.56892, 3.99855, -0.0592, 4.03831, -2.6627, 3.13768, -2.61263, 3.17953, -1.65152, 3.76933, -1.16205, 3.94778, -0.74568, 4.04709, -3.72083, 5.29553, -3.6364, 5.35393, -2.04666, 6.13998, -1.25449, 6.34933, -0.58817, 6.44524, 0.08771, 6.47145, -2.01535, 2.731, -1.97179, 2.76263, -1.14789, 3.19414, -0.73511, 3.31357, -0.38693, 3.37198, -0.03293, 3.39396 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 10,
- "vertices": [ -1.69127, 3.66756, -1.63293, 3.69397, -0.56892, 3.99855, -0.0592, 4.03831, -2.6627, 3.13768, -2.61263, 3.17953, -1.65152, 3.76933, -1.16205, 3.94778, -0.74568, 4.04709, -3.72083, 5.29553, -3.6364, 5.35393, -2.04666, 6.13998, -1.25449, 6.34933, -0.58817, 6.44524, 0.08771, 6.47145, -2.01535, 2.731, -1.97179, 2.76263, -1.14789, 3.19414, -0.73511, 3.31357, -0.38693, 3.37198, -0.03293, 3.39396 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 10,
- "vertices": [ -1.69127, 3.66756, -1.63293, 3.69397, -0.56892, 3.99855, -0.0592, 4.03831, -2.6627, 3.13768, -2.61263, 3.17953, -1.65152, 3.76933, -1.16205, 3.94778, -0.74568, 4.04709, -3.72083, 5.29553, -3.6364, 5.35393, -2.04666, 6.13998, -1.25449, 6.34933, -0.58817, 6.44524, 0.08771, 6.47145, -2.01535, 2.731, -1.97179, 2.76263, -1.14789, 3.19414, -0.73511, 3.31357, -0.38693, 3.37198, -0.03293, 3.39396 ]
- }
- ]
- },
- "toufa 7": {
- "toufa 7": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ -3.10363, 0.3172, 0.45682, 3.77884 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ -3.10363, 0.3172, 0.45682, 3.77884 ]
- },
- { "time": 2 }
- ]
- },
- "zuotui": {
- "zuotui": [
- {
- "time": 0,
- "vertices": [ -0.4425, 0, -0.442, -0.02103, -0.39723, 0, -0.39677, -0.01888, -0.35535, 0, -0.35494, -0.01689, 0.37245, 0.01772, 0.12032, 0.35291, 0.41448, 0.01971, 0.1339, 0.39274, 0.47213, 0.02246, 0.15253, 0.44737, 0.81373, 0.03872, 0.26288, 0.77107, 0.29544, 0.86655, 0.25468, 0.74701, 0.18163, 0.53271, 0.35722, 0.01699, 0.11541, 0.33848, 0.28673, 0.01364, 0.09263, 0.27169, 0.23038, 0.01096, 0.07442, 0.21829, -0.36546, 0, -0.36505, -0.01736, -0.41676, 0, -0.41629, -0.0198, -0.46278, 0, -0.46227, -0.02199, -1.12149, 0, -1.13745, 0, -1.14934, 0, 0.43651, 0.02076, 0.37162, 0.01768, 0.31456, 0.01496, -0.38771, 0, -0.42912, 0, -0.46577, 0, -0.46525, -0.02213 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "vertices": [ -0.4425, 0, -0.442, -0.02103, -0.39723, 0, -0.39677, -0.01888, -0.35535, 0, -0.35494, -0.01689, 0.37245, 0.01772, 0.12032, 0.35291, 0.41448, 0.01971, 0.1339, 0.39274, 0.47213, 0.02246, 0.15253, 0.44737, 0.81373, 0.03872, 0.26288, 0.77107, 0.29544, 0.86655, 0.25468, 0.74701, 0.18163, 0.53271, 0.35722, 0.01699, 0.11541, 0.33848, 0.28673, 0.01364, 0.09263, 0.27169, 0.23038, 0.01096, 0.07442, 0.21829, -0.36546, 0, -0.36505, -0.01736, -0.41676, 0, -0.41629, -0.0198, -0.46278, 0, -0.46227, -0.02199, -1.12149, 0, -1.13745, 0, -1.14934, 0, 0.43651, 0.02076, 0.37162, 0.01768, 0.31456, 0.01496, -0.38771, 0, -0.42912, 0, -0.46577, 0, -0.46525, -0.02213 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "vertices": [ -0.4425, 0, -0.442, -0.02103, -0.39723, 0, -0.39677, -0.01888, -0.35535, 0, -0.35494, -0.01689, 0.37245, 0.01772, 0.12032, 0.35291, 0.41448, 0.01971, 0.1339, 0.39274, 0.47213, 0.02246, 0.15253, 0.44737, 0.81373, 0.03872, 0.26288, 0.77107, 0.29544, 0.86655, 0.25468, 0.74701, 0.18163, 0.53271, 0.35722, 0.01699, 0.11541, 0.33848, 0.28673, 0.01364, 0.09263, 0.27169, 0.23038, 0.01096, 0.07442, 0.21829, -0.36546, 0, -0.36505, -0.01736, -0.41676, 0, -0.41629, -0.0198, -0.46278, 0, -0.46227, -0.02199, -1.12149, 0, -1.13745, 0, -1.14934, 0, 0.43651, 0.02076, 0.37162, 0.01768, 0.31456, 0.01496, -0.38771, 0, -0.42912, 0, -0.46577, 0, -0.46525, -0.02213 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|