123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969 |
- {
- "skeleton": { "hash": "JilH6+2F6bTKNZoTU6Chz/OpH6E", "spine": "3.6.53", "width": 381.53, "height": 200, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -4.34, "y": 61.51 },
- { "name": "bone2", "parent": "bone", "length": 16.64, "rotation": 88.34, "x": -0.31, "y": -0.06 },
- { "name": "bone3", "parent": "bone2", "length": 29.93, "rotation": -1.57, "x": 16.64 },
- { "name": "bone4", "parent": "bone3", "length": 72.3, "rotation": 3.42, "x": 29.93 },
- { "name": "bone5", "parent": "bone3", "length": 18, "rotation": 144.46, "x": 20.43, "y": 12.25, "color": "1491cbff" },
- { "name": "bone6", "parent": "bone5", "length": 24.28, "rotation": 0.17, "x": 16.26, "y": 0.19, "color": "1491cbff" },
- { "name": "bone7", "parent": "bone6", "length": 17.79, "rotation": 3.41, "x": 24.28, "color": "1491cbff" },
- { "name": "bone8", "parent": "bone3", "length": 18, "rotation": -136.74, "x": 22.36, "y": -25.23, "color": "e3cd56ff" },
- { "name": "bone9", "parent": "bone8", "length": 23.42, "rotation": -1.66, "x": 17.08, "color": "e3cd56ff" },
- { "name": "bone10", "parent": "bone9", "length": 21.89, "rotation": 0.1, "x": 23.42, "color": "e3cd56ff" },
- { "name": "bone11", "parent": "bone", "length": 18.94, "rotation": -80.23, "x": 16.79, "y": -19.7, "color": "9428cbff" },
- { "name": "bone12", "parent": "bone11", "length": 19.45, "rotation": 0.66, "x": 18.94, "color": "9428cbff" },
- { "name": "bone13", "parent": "bone12", "length": 8.75, "rotation": -95.41, "x": 19.45, "color": "9428cbff" },
- { "name": "bone14", "parent": "bone", "length": 21.13, "rotation": -92.08, "x": -7.38, "y": -17.56, "color": "21b620ff" },
- { "name": "bone15", "parent": "bone14", "length": 17.76, "rotation": 0.1, "x": 21.13, "color": "21b620ff" },
- { "name": "bone16", "parent": "bone15", "length": 8.85, "rotation": -78.07, "x": 17.76, "color": "21b620ff" },
- { "name": "bone17", "parent": "bone", "length": 16.62, "rotation": -88.44, "x": 0.33, "y": -11.53, "color": "262283ff" },
- { "name": "bone18", "parent": "bone3", "length": 19.2, "rotation": 165.37, "x": 20.7, "y": -23.18, "color": "73c24cff" },
- { "name": "bone19", "parent": "bone18", "length": 18.43, "rotation": 10.33, "x": 19.2, "color": "73c24cff" },
- { "name": "bone20", "parent": "bone19", "length": 14.87, "rotation": 13.36, "x": 19.18, "y": 0.1, "color": "73c24cff" },
- { "name": "bone21", "parent": "bone20", "length": 13.73, "rotation": 8.82, "x": 15.51, "y": 0.24, "color": "73c24cff" },
- { "name": "bone22", "parent": "bone21", "length": 14.8, "rotation": 3.79, "x": 13.73, "color": "73c24cff" },
- { "name": "bone23", "parent": "bone3", "length": 18.58, "rotation": -175.84, "x": 18.47, "y": 13.77, "color": "e85a5aff" },
- { "name": "bone24", "parent": "bone23", "length": 17.21, "rotation": -0.93, "x": 18.42, "color": "e85a5aff" },
- { "name": "bone25", "parent": "bone24", "length": 18.58, "rotation": -7.47, "x": 17.21, "color": "e85a5aff" },
- { "name": "bone26", "parent": "bone25", "length": 14.57, "rotation": -2.67, "x": 18.58, "color": "e85a5aff" },
- { "name": "bone27", "parent": "bone26", "length": 12.76, "rotation": -10.65, "x": 14.57, "color": "e85a5aff" },
- { "name": "bone28", "parent": "bone", "length": 17.07, "rotation": -88.99, "x": 4.52, "y": -9.51 },
- { "name": "bone29", "parent": "bone3", "rotation": -175.83, "x": 27.67, "y": 4.91 },
- { "name": "bone30", "parent": "bone29", "length": 13.44, "rotation": -2.23, "x": 6.8, "y": 0.1, "color": "ee9b20ff" },
- { "name": "bone31", "parent": "bone30", "length": 10.43, "rotation": -1.2, "x": 13.72, "y": 0.03, "color": "ee9b20ff" },
- { "name": "bone32", "parent": "bone31", "length": 6.96, "rotation": -1.24, "x": 10.45, "y": 0.03, "color": "ee9b20ff" },
- { "name": "bone33", "parent": "bone4", "length": 11.18, "rotation": -1.51, "x": 26.56, "y": 20.22 },
- { "name": "bone34", "parent": "bone4", "length": 12.81, "rotation": 0.19, "x": 24.74, "y": -10.13 },
- { "name": "bone35", "parent": "bone4", "x": 38.64, "y": 5.9 },
- { "name": "bone36", "parent": "bone4", "x": 29.19, "y": 4.99 },
- { "name": "bone37", "parent": "bone4", "length": 5.82, "rotation": -129.04, "x": 75.2, "y": -14.7, "color": "1ecc3aff" },
- { "name": "bone38", "parent": "bone37", "length": 8.68, "rotation": -41.96, "x": 5.82, "color": "1ecc3aff" },
- { "name": "bone39", "parent": "bone38", "length": 8.61, "rotation": 11.37, "x": 8.68, "color": "1ecc3aff" },
- { "name": "bone40", "parent": "bone39", "length": 10.67, "rotation": 30.68, "x": 8.61, "color": "1ecc3aff" },
- { "name": "bone41", "parent": "bone40", "length": 10.25, "rotation": -5.74, "x": 10.67, "color": "1ecc3aff" },
- { "name": "bone42", "parent": "bone4", "length": 8.34, "rotation": 128.06, "x": 75.74, "y": -7.94, "color": "288cbcff" },
- { "name": "bone43", "parent": "bone42", "length": 9.06, "rotation": 19.82, "x": 8.68, "y": 0.22, "color": "288cbcff" },
- { "name": "bone44", "parent": "bone43", "length": 9.58, "rotation": -7.21, "x": 9.23, "y": -0.04, "color": "288cbcff" },
- { "name": "bone45", "parent": "bone44", "length": 10.16, "rotation": -39.42, "x": 9.84, "y": -0.12, "color": "288cbcff" },
- { "name": "bone46", "parent": "bone4", "length": 12.47, "rotation": 113.01, "x": 78.89, "y": -4.06, "color": "e7d95dff" },
- { "name": "bone47", "parent": "bone46", "length": 11.14, "rotation": 20.43, "x": 12.97, "y": 0.2, "color": "e7d95dff" },
- { "name": "bone48", "parent": "bone47", "length": 12.62, "rotation": 19.04, "x": 11.32, "color": "e7d95dff" },
- { "name": "bone49", "parent": "bone48", "length": 10.64, "rotation": -46.16, "x": 13.02, "y": 0.06, "color": "e7d95dff" },
- { "name": "bone50", "parent": "bone3", "length": 22.07, "rotation": -106.04, "x": 44, "y": -300, "color": "2557a9ff" },
- { "name": "bone51", "parent": "bone50", "length": 22.88, "rotation": 164.14, "x": 19.48, "y": -0.1, "color": "2557a9ff" },
- { "name": "bone52", "parent": "bone51", "length": 19.77, "rotation": 4.97, "x": 23.2, "y": -0.06, "color": "2557a9ff" },
- { "name": "bone53", "parent": "bone52", "length": 20, "rotation": -52.78, "x": 12.29, "y": 0.46, "color": "2557a9ff" },
- { "name": "bone54", "parent": "bone34", "x": 7.23, "y": 4.4 },
- { "name": "bone55", "parent": "bone54", "x": -1.54, "y": -2.12 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone5", "attachment": "zuoshou" },
- { "name": "waitaohou", "bone": "bone28", "attachment": "waitaohou" },
- { "name": "zuojiao", "bone": "bone14", "attachment": "zuojiao" },
- { "name": "dang", "bone": "bone17", "attachment": "dang" },
- { "name": "youjiao", "bone": "bone11", "attachment": "youjiao" },
- { "name": "chenyi", "bone": "bone2", "attachment": "chenyi" },
- { "name": "waitaoyou", "bone": "bone18", "attachment": "waitaoyou" },
- { "name": "waitaozuo", "bone": "bone23", "attachment": "waitaozuo" },
- { "name": "yiling", "bone": "bone2", "attachment": "yiling" },
- { "name": "weijing", "bone": "bone30", "attachment": "weijing" },
- { "name": "youshou", "bone": "bone8", "attachment": "youshou" },
- { "name": "toufahou", "bone": "bone4", "attachment": "toufahou" },
- { "name": "youshou 1", "bone": "bone50", "attachment": "youshou 1" },
- { "name": "tou", "bone": "bone4", "attachment": "tou" },
- { "name": "zuoyan", "bone": "bone33", "attachment": "zuoyan" },
- { "name": "yanbai", "bone": "bone34", "attachment": "yanbai" },
- { "name": "yanqiu", "bone": "bone54", "attachment": "yanqiu" },
- { "name": "gaoguang", "bone": "bone55", "attachment": "gaoguang" },
- { "name": "biyan", "bone": "bone36" },
- { "name": "meimao", "bone": "bone35", "attachment": "meimao" },
- { "name": "toufa5", "bone": "bone4", "attachment": "toufa5" },
- { "name": "toufa4", "bone": "bone46", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone42", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone4", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone37", "attachment": "toufa1" },
- { "name": "fangdajing", "bone": "bone53", "attachment": "fangdajing" },
- { "name": "youshou2", "bone": "bone51" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": -0.82, "rotation": -90.19, "width": 48, "height": 8 }
- },
- "chenyi": {
- "chenyi": {
- "type": "mesh",
- "uvs": [ 0.61559, 0.03518, 0.61643, 0.06866, 0.61737, 0.1063, 0.82961, 0.13158, 1, 0.55588, 1, 0.74506, 1, 0.89673, 1, 0.9181, 0.6644, 0.92518, 0.66787, 1, 0.38224, 1, 0.16307, 1, 0.16134, 0.924, 0, 0.924, 0, 0.88951, 0, 0.73242, 0, 0.53421, 0.06819, 0.13519, 0.26186, 0.09908, 0.27069, 0.0661, 0.27832, 0.0376, 0.28839, 0, 0.43796, 0, 0.61471, 0, 0.39671, 0.74029, 0.38836, 0.89028, 0.40772, 0.54267, 0.43246, 0.09866, 0.43412, 0.06889, 0.43583, 0.03823 ],
- "triangles": [ 27, 28, 1, 27, 19, 28, 1, 29, 0, 1, 28, 29, 19, 20, 28, 28, 20, 29, 0, 22, 23, 0, 29, 22, 20, 21, 29, 29, 21, 22, 3, 4, 26, 26, 27, 2, 26, 2, 3, 17, 18, 26, 26, 18, 27, 2, 27, 1, 18, 19, 27, 10, 8, 9, 10, 25, 8, 25, 10, 12, 10, 11, 12, 7, 8, 6, 13, 14, 12, 12, 14, 25, 8, 25, 6, 25, 24, 6, 24, 5, 6, 24, 25, 15, 25, 14, 15, 24, 26, 5, 26, 4, 5, 26, 24, 16, 24, 15, 16, 16, 17, 26 ],
- "vertices": [ 2, 3, 34.94, -8.81, 0.21309, 4, 4.47, -9.1, 0.78691, 2, 3, 32.53, -8.99, 0.37103, 4, 2.06, -9.13, 0.62897, 2, 3, 29.83, -9.19, 0.66622, 4, -0.65, -9.17, 0.33378, 3, 2, 44.68, -20.45, 5.4E-4, 3, 28.6, -19.68, 0.96505, 4, -2.51, -19.56, 0.03441, 2, 2, 14.39, -29.68, 0.47861, 3, -1.43, -29.73, 0.52139, 2, 2, 0.77, -30.08, 0.79754, 3, -15.03, -30.5, 0.20246, 2, 2, -10.14, -30.39, 0.93709, 3, -25.94, -31.12, 0.06291, 2, 2, -11.68, -30.44, 0.9425, 3, -27.47, -31.2, 0.0575, 2, 2, -12.67, -14.02, 0.97513, 3, -28.91, -14.81, 0.02487, 2, 2, -18.05, -14.34, 0.983, 3, -34.28, -15.29, 0.017, 1, 2, -18.45, -0.35, 1, 1, 2, -18.76, 10.38, 1, 1, 2, -13.3, 10.63, 1, 1, 2, -13.52, 18.53, 1, 1, 2, -11.04, 18.6, 1, 2, 2, 0.26, 18.93, 0.97418, 3, -16.89, 18.47, 0.02582, 2, 2, 14.53, 19.34, 0.60102, 3, -2.64, 19.28, 0.39898, 2, 3, 26.24, 17.56, 0.99988, 4, -2.64, 17.75, 1.2E-4, 2, 3, 29.37, 8.23, 0.76959, 4, -0.07, 8.25, 0.23041, 2, 3, 31.76, 7.93, 0.45917, 4, 2.3, 7.81, 0.54083, 2, 3, 33.83, 7.68, 0.24662, 4, 4.35, 7.43, 0.75338, 2, 3, 36.56, 7.34, 0.12311, 4, 7.06, 6.93, 0.87689, 1, 4, 7.03, -0.4, 1, 2, 3, 37.46, -8.63, 0.14101, 4, 7, -9.06, 0.85899, 2, 2, 0.26, -0.52, 0.99917, 3, -16.36, -0.97, 8.3E-4, 1, 2, -10.55, -0.42, 1, 2, 2, 14.5, -0.65, 0.98763, 3, -2.12, -0.7, 0.01237, 2, 3, 29.87, -0.11, 0.53475, 4, -0.07, -0.11, 0.46525, 1, 4, 2.07, -0.2, 1, 2, 3, 34.22, -0.03, 9.4E-4, 4, 4.28, -0.29, 0.99906 ],
- "hull": 24,
- "edges": [ 32, 34, 34, 36, 4, 6, 6, 8, 42, 44, 44, 46, 30, 32, 30, 48, 8, 10, 48, 10, 28, 30, 20, 50, 50, 48, 28, 50, 10, 12, 50, 12, 52, 48, 32, 52, 52, 8, 54, 52, 36, 54, 54, 4, 36, 38, 56, 54, 38, 56, 4, 2, 56, 2, 38, 40, 40, 42, 44, 58, 58, 56, 40, 58, 2, 0, 0, 46, 58, 0, 18, 20, 18, 16, 12, 14, 16, 14, 20, 22, 22, 24, 26, 28, 24, 26 ],
- "width": 49,
- "height": 72
- }
- },
- "dang": {
- "dang": {
- "type": "mesh",
- "uvs": [ 0.3134, 0.22716, 0.54645, 0.21924, 1, 0.20382, 1, 0.74781, 0.57561, 1, 0.32061, 1, 0, 0.76056, 0, 0.23782 ],
- "triangles": [ 1, 2, 3, 6, 7, 0, 5, 0, 1, 4, 5, 1, 6, 0, 5, 3, 4, 1 ],
- "vertices": [ -1.8, -5.15, -1.71, 6.27, -1.54, 28.5, 13.69, 28.08, 20.18, 7.1, 19.84, -5.39, 12.71, -20.91, -1.92, -20.51 ],
- "hull": 8,
- "edges": [ 12, 14, 10, 12, 8, 10, 4, 6, 8, 6, 0, 14, 10, 0, 0, 2, 2, 4, 8, 2 ],
- "width": 49,
- "height": 28
- }
- },
- "fangdajing": {
- "fangdajing": { "x": 17.48, "y": 2.93, "rotation": -97.06, "width": 42, "height": 68 }
- },
- "gaoguang": {
- "gaoguang": { "x": 1.59, "y": 1.81, "rotation": -90.38, "width": 4, "height": 4 }
- },
- "meimao": {
- "meimao": { "x": 2.41, "y": -1.96, "rotation": -90.19, "width": 52, "height": 10 }
- },
- "tou": {
- "tou": { "x": 42.52, "y": -3.06, "rotation": -90.19, "width": 72, "height": 89 }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.56878, 0.14499, 0.58172, 0.25875, 0.65544, 0.37332, 0.73278, 0.42634, 0.86433, 0.47165, 1, 0.50665, 1, 0.84332, 1, 1, 0.81989, 1, 0.6846, 0.91614, 0.54433, 0.81832, 0.43673, 0.72208, 0.31767, 0.62332, 0.27989, 0.49499, 0.23751, 0.34056, 0.18433, 0.24999, 0, 0.22666, 0, 0, 0.04656, 0, 0.41544, 1.0E-5, 0.33989, 0.13332, 0.39322, 0.22332, 0.44211, 0.37165, 0.49989, 0.50832, 0.73989, 0.65666, 0.87805, 0.7548, 0.63165, 0.58356 ],
- "triangles": [ 20, 18, 19, 20, 19, 0, 21, 20, 0, 16, 17, 18, 15, 16, 18, 20, 15, 18, 15, 20, 21, 21, 0, 1, 14, 15, 21, 22, 21, 1, 14, 21, 22, 22, 1, 2, 13, 14, 22, 23, 22, 2, 13, 22, 23, 26, 23, 2, 26, 2, 3, 12, 13, 23, 24, 3, 4, 26, 3, 24, 11, 12, 23, 11, 23, 26, 25, 4, 5, 24, 4, 25, 10, 11, 26, 10, 26, 24, 25, 5, 6, 9, 10, 24, 9, 24, 25, 8, 9, 25, 8, 25, 6, 8, 6, 7 ],
- "vertices": [ 3, 37, 11.29, 5.02, 0.0779, 38, 0.71, 7.39, 0.89982, 39, -6.35, 8.81, 0.02228, 3, 38, 6.18, 6.98, 0.69337, 39, -1.08, 7.33, 0.28261, 40, -4.59, 11.25, 0.02402, 4, 38, 12.03, 8.72, 0.09905, 39, 5, 7.89, 0.53426, 40, 0.92, 8.63, 0.36287, 41, -10.56, 7.61, 0.00382, 4, 38, 14.99, 11.06, 0.00847, 39, 8.36, 9.6, 0.2309, 40, 4.68, 8.38, 0.68769, 41, -6.79, 7.74, 0.07294, 3, 39, 12.06, 13.27, 0.03179, 40, 9.74, 9.65, 0.54976, 41, -1.89, 9.51, 0.41845, 3, 39, 15.35, 17.25, 8.8E-4, 40, 14.6, 11.4, 0.31863, 41, 2.77, 11.74, 0.68049, 1, 41, 14.1, 0.21, 1, 1, 41, 19.37, -5.15, 1, 2, 40, 24.37, -11.12, 1.2E-4, 41, 14.75, -9.7, 0.99988, 2, 40, 18.05, -11.03, 0.04925, 41, 8.45, -10.24, 0.95075, 2, 40, 11.18, -10.53, 0.39453, 41, 1.56, -10.43, 0.60547, 3, 39, 17.91, -5.36, 0.02695, 40, 5.26, -9.36, 0.81109, 41, -4.44, -9.85, 0.16196, 3, 39, 11.97, -7.71, 0.35109, 40, -1.05, -8.35, 0.64361, 41, -10.82, -9.47, 0.00529, 3, 38, 15.64, -5.56, 0.00943, 39, 5.72, -6.82, 0.8994, 40, -5.96, -4.39, 0.09117, 3, 37, 7.9, -9.77, 0.06531, 38, 8.07, -5.88, 0.60569, 39, -1.75, -5.65, 0.329, 3, 37, 3.68, -7.59, 0.50915, 38, 3.48, -7.08, 0.48021, 39, -6.5, -5.91, 0.01065, 2, 37, -2.19, -10.88, 0.88525, 38, 1.31, -13.45, 0.11475, 1, 37, -9.02, -2.41, 1, 1, 37, -7.71, -1.36, 1, 2, 37, 2.63, 6.98, 0.92935, 38, -7.04, 3.05, 0.07065, 1, 37, 4.53, 0.29, 1, 2, 38, 3.41, 0.55, 0.99866, 39, -5.05, 1.58, 0.00134, 3, 38, 10.72, 1.15, 0.0389, 39, 2.23, 0.72, 0.9565, 40, -5.12, 3.88, 0.0046, 2, 39, 9.1, 0.37, 0.02413, 40, 0.61, 0.07, 0.97587, 1, 41, 1.14, 0.04, 1, 2, 40, 18.63, -0.63, 9.0E-5, 41, 7.99, 0.17, 0.99991, 2, 39, 14.15, 3.54, 0.00117, 40, 6.57, 0.22, 0.99883 ],
- "hull": 20,
- "edges": [ 34, 36, 36, 40, 42, 44, 44, 46, 14, 12, 32, 34, 32, 30, 26, 24, 14, 16, 12, 10, 10, 8, 36, 38, 0, 38, 30, 40, 40, 38, 26, 44, 0, 2, 2, 4, 44, 2, 24, 46, 46, 4, 26, 28, 28, 30, 28, 42, 42, 0, 20, 48, 48, 8, 12, 50, 50, 48, 10, 50, 16, 18, 18, 20, 50, 18, 16, 12, 4, 6, 6, 8, 46, 52, 52, 48, 6, 52, 20, 22, 22, 24, 52, 22 ],
- "width": 36,
- "height": 48
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.79126, 0.17788, 1, 0.48917, 1, 0.8047, 0.72999, 0.91694, 0.61969, 0.87035, 0.52165, 0.87247, 0.46037, 1, 0.30411, 1, 0.27654, 0.63106, 0.16624, 0.39176, 0, 0.24776, 0, 0, 0.38684, 0 ],
- "triangles": [ 10, 11, 12, 9, 10, 12, 0, 8, 9, 0, 9, 12, 4, 8, 0, 1, 4, 0, 2, 4, 1, 5, 8, 4, 3, 4, 2, 7, 8, 5, 6, 7, 5 ],
- "vertices": [ 76.79, -45.36, 55.59, -55.1, 34.13, -55.03, 26.54, -42.32, 29.73, -37.14, 29.6, -32.53, 20.93, -29.63, 20.96, -22.28, 46.05, -21.07, 62.34, -15.94, 72.16, -8.16, 89.01, -8.22, 88.95, -26.4 ],
- "hull": 13,
- "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 22, 24, 0, 24 ],
- "width": 47,
- "height": 68
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 1, 0.08976, 1, 0.41861, 0.87399, 0.46324, 0.84411, 0.59994, 0.80933, 0.72855, 0.69474, 0.89955, 0.55099, 1, 0.24001, 1, 0, 1, 0, 0.91744, 0, 0.76605, 0.1685, 0.73736, 0.245, 0.61305, 0.25598, 0.46888, 0.2705, 0.28624, 0.35218, 0.18727, 0.43483, 0.08712, 0.61333, 0, 1, 0, 0.69035, 0.32038, 0.5423, 0.56501, 0.37147, 0.81494, 0.8199, 0.2239, 0.61685, 0.44379, 0.47289, 0.66889, 0.17858, 0.86817 ],
- "triangles": [ 7, 21, 6, 6, 21, 5, 8, 25, 7, 7, 25, 21, 8, 9, 25, 9, 10, 25, 21, 24, 5, 5, 24, 4, 4, 24, 20, 10, 11, 25, 25, 11, 21, 11, 12, 21, 21, 12, 24, 4, 20, 3, 20, 24, 13, 24, 12, 13, 20, 23, 3, 3, 23, 2, 23, 20, 14, 20, 13, 14, 23, 19, 2, 19, 22, 2, 2, 22, 1, 14, 15, 23, 23, 15, 19, 22, 0, 1, 15, 16, 19, 16, 17, 19, 19, 17, 22, 0, 22, 18, 22, 17, 18 ],
- "vertices": [ 2, 42, -5.59, 1.36, 0.99878, 43, -13.03, 5.91, 0.00122, 2, 42, 0.93, 9.62, 0.72674, 43, -4.1, 11.47, 0.27326, 2, 42, 5.37, 7.93, 0.38449, 43, -0.49, 8.38, 0.61551, 3, 42, 8.93, 10.7, 0.03858, 43, 3.79, 9.78, 0.95388, 44, -6.63, 9.06, 0.00754, 4, 42, 12.46, 13.16, 1.7E-4, 43, 7.94, 10.89, 0.90161, 44, -2.65, 10.68, 0.09579, 45, -16.5, 0.41, 0.00243, 3, 43, 14.77, 10.28, 0.48503, 44, 4.2, 10.94, 0.43334, 45, -11.37, 4.96, 0.08163, 3, 43, 20.23, 7.59, 0.15827, 44, 9.96, 8.95, 0.48656, 45, -5.66, 7.08, 0.35518, 1, 45, 5.31, 4.86, 1, 1, 45, 13.78, 3.14, 1, 1, 45, 13.25, 0.55, 1, 1, 45, 12.29, -4.19, 1, 4, 42, 30.75, -0.9, 0.00158, 43, 20.38, -8.54, 3.7E-4, 44, 12.13, -7.03, 0.13902, 45, 6.16, -3.89, 0.85904, 4, 42, 26.12, -2.32, 0.03993, 43, 15.55, -8.31, 0.05091, 44, 7.31, -7.41, 0.68473, 45, 2.68, -7.24, 0.22443, 4, 42, 22.96, -5.7, 0.18288, 43, 11.42, -10.41, 0.23021, 44, 3.48, -10.01, 0.57026, 45, 1.37, -11.68, 0.01665, 3, 42, 18.93, -9.97, 0.44318, 43, 6.19, -13.06, 0.29875, 44, -1.38, -13.3, 0.25808, 3, 42, 14.66, -10.63, 0.6625, 43, 1.94, -12.24, 0.22022, 44, -5.7, -13.01, 0.11728, 3, 42, 10.34, -11.31, 0.8884, 43, -2.35, -11.41, 0.08106, 44, -10.06, -12.73, 0.03054, 2, 42, 3.56, -9.52, 1, 44, -16.28, -9.5, 0, 1, 42, -7.37, -0.9, 1, 2, 42, 7.73, 0.25, 0.97417, 43, -0.88, 0.35, 0.02583, 2, 42, 16.77, 3.1, 2.9E-4, 43, 8.59, -0.04, 0.99971, 2, 43, 18.63, -1.03, 4.4E-4, 44, 9.45, 0.2, 0.99956, 2, 42, 2.16, 0.71, 0.98527, 43, -5.96, 2.67, 0.01473, 1, 43, 3.87, 0.19, 1, 2, 43, 12.73, -0.4, 0.00126, 44, 3.52, 0.08, 0.99874, 1, 45, 6.64, 0.29, 1 ],
- "hull": 19,
- "edges": [ 2, 4, 8, 10, 10, 12, 20, 22, 22, 24, 34, 36, 32, 34, 2, 0, 0, 36, 16, 18, 18, 20, 32, 38, 38, 4, 0, 44, 44, 38, 2, 44, 44, 34, 28, 40, 40, 8, 4, 6, 6, 8, 38, 46, 46, 40, 6, 46, 40, 48, 48, 42, 10, 48, 24, 26, 26, 28, 48, 26, 12, 42, 42, 24, 18, 50, 50, 42, 22, 50, 12, 14, 14, 16, 50, 14, 28, 30, 30, 32, 46, 30 ],
- "width": 36,
- "height": 32
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 1, 0.11093, 1, 0.37566, 0.8443, 0.44481, 0.68853, 0.51593, 0.62311, 0.66014, 0.57793, 0.81819, 0.45159, 0.94027, 0.28353, 1, 0.13462, 1, 0, 1, 0, 0.92883, 0, 0.75497, 0.07111, 0.73151, 0.19163, 0.69175, 0.21499, 0.57717, 0.26484, 0.37171, 0.38642, 0.17405, 0.51874, 0.0892, 0.6669, 0.03264, 0.81691, 1.0E-5, 1, 0, 0.60695, 0.31756, 0.48918, 0.45063, 0.3563, 0.7679, 0.73999, 0.23221, 0.88522, 0.16447, 0.42367, 0.61281, 0.21603, 0.82247, 0.10075, 0.87923 ],
- "triangles": [ 8, 27, 7, 7, 23, 6, 7, 27, 23, 8, 10, 28, 8, 28, 27, 8, 9, 10, 6, 23, 5, 10, 11, 28, 11, 12, 28, 28, 12, 27, 12, 13, 27, 27, 13, 23, 23, 26, 5, 5, 26, 4, 13, 14, 23, 23, 14, 26, 26, 22, 4, 4, 22, 3, 22, 26, 15, 26, 14, 15, 22, 21, 3, 3, 21, 2, 21, 22, 16, 21, 24, 2, 2, 25, 1, 2, 24, 25, 25, 0, 1, 22, 15, 16, 16, 17, 21, 21, 17, 24, 17, 18, 24, 24, 19, 25, 24, 18, 19, 25, 19, 0, 19, 20, 0 ],
- "vertices": [ 2, 46, -7.17, 1.35, 0.99958, 47, -18.47, 8.11, 4.2E-4, 2, 46, -2.89, 11.33, 0.92451, 47, -10.98, 15.97, 0.07549, 2, 46, 5.67, 10.74, 0.64714, 47, -3.17, 12.43, 0.35286, 4, 46, 14.26, 10.23, 0.06078, 47, 4.71, 8.95, 0.88098, 48, -3.33, 10.62, 0.04543, 49, -18.93, -4.48, 0.01281, 3, 47, 11.25, 10.89, 0.4403, 48, 3.49, 10.31, 0.40147, 49, -13.99, 0.22, 0.15824, 3, 47, 17.42, 13.96, 0.09132, 48, 10.32, 11.2, 0.37085, 49, -9.9, 5.77, 0.53783, 3, 47, 25.63, 13.05, 0.00217, 48, 17.79, 7.66, 0.0288, 49, -2.18, 8.7, 0.96903, 1, 49, 6.9, 8.57, 1, 1, 49, 14.32, 6.37, 1, 1, 49, 21.03, 4.38, 1, 1, 49, 20.21, 1.58, 1, 1, 49, 18.18, -5.25, 1, 2, 48, 19.27, -13.85, 5.0E-4, 49, 14.36, -5.12, 0.9995, 2, 48, 14.94, -9.03, 0.20409, 49, 7.89, -4.91, 0.79591, 2, 48, 10.21, -10.11, 0.73742, 49, 5.39, -9.07, 0.26258, 3, 47, 16.58, -10.53, 0.00386, 48, 1.54, -11.67, 0.9933, 49, 0.51, -16.41, 0.00284, 3, 46, 23.18, -8.84, 0.08188, 47, 6.41, -12.03, 0.34124, 48, -8.57, -9.78, 0.57687, 3, 46, 15.48, -9.33, 0.49997, 47, -0.97, -9.8, 0.34593, 48, -14.82, -5.26, 0.1541, 3, 46, 7.49, -8.42, 0.98439, 47, -8.15, -6.17, 0.00907, 48, -20.41, 0.52, 0.00654, 1, 46, -0.21, -6.58, 1, 1, 46, -8.96, -2.83, 1, 1, 47, 2.17, 0.14, 1, 1, 47, 10.37, -0.14, 1, 1, 49, 0.57, 0.52, 1, 2, 46, 7.22, 0.6, 0.97831, 47, -5.25, 2.38, 0.02169, 2, 46, -0.82, 1.02, 0.99653, 47, -12.64, 5.58, 0.00347, 3, 47, 17.42, 2.33, 0.00128, 48, 6.53, 0.2, 0.99652, 49, -4.6, -4.58, 0.0022, 1, 49, 8.2, 0.59, 1, 1, 49, 14.6, 1.12, 1 ],
- "hull": 21,
- "edges": [ 38, 40, 34, 32, 32, 30, 30, 28, 28, 26, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 2, 0, 0, 40, 42, 44, 18, 20, 20, 22, 48, 42, 4, 48, 34, 36, 36, 38, 48, 36, 0, 50, 50, 48, 2, 50, 50, 38, 6, 42, 42, 34, 8, 44, 44, 32, 44, 52, 52, 46, 10, 52, 52, 30, 12, 46, 46, 28, 54, 46, 26, 54, 54, 14, 14, 16, 16, 18, 20, 56, 56, 54, 16, 56, 22, 24, 24, 26, 56, 24 ],
- "width": 52,
- "height": 41
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 1, 0.22843, 0.73216, 0.59614, 0.30916, 0.75043, 0.31141, 1, 0, 1, 0, 0.61414, 0.16291, 0.43157, 0.20791, 0.195, 0.45991, 0, 1, 0 ],
- "triangles": [ 8, 9, 0, 1, 8, 0, 7, 8, 1, 6, 7, 1, 2, 6, 1, 5, 6, 2, 4, 5, 2, 4, 2, 3 ],
- "vertices": [ 79.18, -17.18, 58.65, 0.03, 50.1, 27.13, 36.12, 27.03, 36.19, 46.96, 57.8, 46.89, 67.99, 36.43, 81.23, 33.5, 92.09, 17.34, 91.98, -17.23 ],
- "hull": 10,
- "edges": [ 6, 8, 6, 4, 4, 2, 0, 18, 2, 0, 16, 18, 16, 14, 14, 12, 8, 10, 12, 10 ],
- "width": 64,
- "height": 56
- }
- },
- "toufahou": {
- "toufahou": {
- "type": "mesh",
- "uvs": [ 1, 0.61219, 0.82749, 1, 0.61742, 1, 0.61742, 0.88345, 0.78853, 0.53517, 0.81902, 0.08307, 0.25996, 0.07303, 0.19389, 0.46819, 0.28199, 1, 0.21592, 1, 0.08547, 0.58875, 0, 0.5921, 0, 0.18354, 0.13968, 0, 1, 0 ],
- "triangles": [ 5, 6, 13, 14, 5, 13, 6, 12, 13, 7, 12, 6, 7, 11, 12, 10, 11, 7, 5, 14, 0, 4, 5, 0, 8, 10, 7, 8, 9, 10, 3, 1, 2, 4, 1, 3, 4, 0, 1 ],
- "vertices": [ 25.56, -44, 8.94, -29.29, 8.99, -11.43, 14.01, -11.45, 28.93, -26.04, 48.37, -28.7, 48.96, 18.82, 31.98, 24.49, 9.09, 17.08, 9.11, 22.7, 26.83, 33.73, 26.71, 40.99, 44.28, 40.93, 52.13, 29.03, 51.89, -44.09 ],
- "hull": 15,
- "edges": [ 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 22, 24, 26, 28, 24, 26, 2, 4, 0, 28, 2, 0 ],
- "width": 85,
- "height": 43
- }
- },
- "waitaohou": {
- "waitaohou": {
- "type": "mesh",
- "uvs": [ 1, 0.73947, 1, 0.87457, 1, 1, 0.51609, 1, 0, 1, 0, 0.86991, 0, 0.73947, 0, 0, 0.51143, 0, 1, 0, 0.51612, 0.87232, 0.51609, 0.73947 ],
- "triangles": [ 11, 8, 9, 0, 11, 9, 6, 7, 8, 6, 8, 11, 5, 6, 11, 10, 11, 0, 5, 11, 10, 10, 0, 1, 4, 5, 10, 3, 4, 10, 3, 10, 1, 3, 1, 2 ],
- "vertices": [ 28.65, 18.75, 34.19, 18.65, 39.33, 18.56, 38.98, -1.28, 38.61, -22.44, 33.27, -22.34, 27.93, -22.25, -2.39, -21.71, -2.02, -0.74, -1.66, 19.28, 33.75, -1.19, 28.3, -1.09 ],
- "hull": 10,
- "edges": [ 12, 14, 0, 18, 8, 10, 10, 12, 0, 2, 2, 4, 4, 6, 6, 8, 2, 20, 20, 10, 6, 20, 0, 22, 22, 12, 20, 22, 14, 16, 16, 18, 22, 16 ],
- "width": 41,
- "height": 41
- }
- },
- "waitaoyou": {
- "waitaoyou": {
- "type": "mesh",
- "uvs": [ 0.67959, 0.05361, 0.85599, 0.07355, 1, 0.13956, 1, 0.19628, 0.88172, 0.34049, 0.79105, 0.45103, 0.83769, 0.53368, 0.78854, 0.59272, 0.83368, 0.67967, 0.87228, 0.75401, 0.91627, 0.83307, 0.95807, 0.92089, 1, 1, 0.66939, 1, 0, 1, 0, 0.94455, 1.0E-5, 0.86373, 0, 0.77394, 0, 0.7012, 0, 0.59949, 0, 0.5388, 0.0186, 0.44468, 0.04283, 0.3221, 0.07186, 0.17523, 0.10649, 0, 0.20551, 0, 0.45012, 0.32721, 0.39267, 0.53015, 0.4403, 0.68868, 0.534, 0.84297, 0.41006, 0.44591, 0.40886, 0.59857, 0.61445, 0.93165, 0.48857, 0.76566, 0.57388, 0.17965 ],
- "triangles": [ 13, 11, 12, 14, 32, 13, 13, 32, 11, 14, 15, 32, 15, 29, 32, 15, 16, 29, 32, 10, 11, 32, 29, 10, 16, 33, 29, 29, 9, 10, 16, 17, 33, 29, 33, 9, 17, 28, 33, 33, 8, 9, 33, 28, 8, 28, 7, 8, 28, 31, 7, 17, 18, 28, 18, 31, 28, 18, 19, 31, 19, 27, 31, 19, 20, 27, 31, 27, 7, 7, 27, 6, 20, 21, 27, 6, 27, 5, 27, 30, 5, 27, 21, 30, 30, 26, 5, 5, 26, 4, 21, 22, 30, 30, 22, 26, 26, 34, 4, 4, 34, 3, 22, 23, 26, 26, 23, 34, 3, 34, 1, 34, 0, 1, 1, 2, 3, 34, 23, 25, 23, 24, 25, 34, 25, 0 ],
- "vertices": [ 1, 18, -8.43, -0.9, 1, 1, 18, -8.35, 5.24, 1, 2, 18, -3.65, 11.75, 0.99419, 19, -20.37, 15.65, 0.00581, 2, 18, 1.64, 13.45, 0.98757, 19, -14.86, 16.38, 0.01243, 4, 18, 16.29, 14.07, 0.55935, 19, -0.34, 14.36, 0.4392, 20, -15.69, 18.39, 0.00138, 21, -28.05, 22.72, 6.0E-5, 4, 18, 27.51, 14.55, 0.04269, 19, 10.79, 12.82, 0.79618, 20, -5.22, 14.31, 0.12855, 21, -18.32, 17.09, 0.03258, 3, 19, 18.62, 15.41, 0.4571, 20, 2.99, 15.02, 0.37355, 21, -10.1, 16.53, 0.16936, 4, 19, 24.57, 14.56, 0.1886, 20, 8.58, 12.82, 0.39206, 21, -4.91, 13.49, 0.41907, 22, -17.71, 14.7, 2.7E-4, 4, 19, 32.82, 17.15, 0.01543, 20, 17.21, 13.44, 0.06733, 21, 3.71, 12.78, 0.85705, 22, -9.16, 13.42, 0.0602, 4, 19, 39.88, 19.37, 2.0E-5, 20, 24.59, 13.97, 4.0E-5, 21, 11.08, 12.17, 0.64302, 22, -1.84, 12.32, 0.35692, 2, 21, 18.94, 11.62, 0.15294, 22, 5.97, 11.25, 0.84706, 2, 21, 27.62, 10.77, 0.00107, 22, 14.57, 9.83, 0.99893, 1, 22, 22.36, 8.7, 1, 1, 22, 18.91, -1.65, 1, 3, 20, 45.65, -17.12, 0.03725, 21, 27.13, -21.77, 0.01481, 22, 11.92, -22.61, 0.94795, 3, 20, 40.24, -16.57, 0.05772, 21, 21.87, -20.4, 0.04142, 22, 6.77, -20.89, 0.90085, 3, 20, 32.37, -15.76, 0.18123, 21, 14.21, -18.4, 0.17363, 22, -0.75, -18.39, 0.64514, 3, 20, 23.61, -14.87, 0.51603, 21, 5.69, -16.17, 0.25833, 22, -9.09, -15.61, 0.22564, 3, 20, 16.52, -14.15, 0.86714, 21, -1.2, -14.37, 0.09272, 22, -15.86, -13.35, 0.04014, 2, 19, 28.64, -11.15, 0.02266, 20, 6.6, -13.13, 0.97734, 2, 19, 22.74, -11.93, 0.20818, 20, 0.69, -12.53, 0.79182, 3, 18, 34.74, -9.91, 0.00347, 19, 13.52, -12.53, 0.79955, 20, -8.43, -10.98, 0.19698, 3, 18, 23.06, -12.83, 0.34793, 19, 1.5, -13.32, 0.65182, 20, -20.3, -8.97, 2.4E-4, 2, 18, 9.07, -16.33, 0.96719, 19, -12.89, -14.25, 0.03281, 1, 18, -7.63, -20.51, 1, 1, 18, -8.63, -17.4, 1, 2, 18, 19.42, 0.12, 0.39298, 19, 0.24, 0.07, 0.60702, 2, 20, 1.16, 0.45, 0.99841, 21, -14.15, 2.41, 0.00159, 4, 19, 35.4, 4.4, 0, 20, 16.77, 0.43, 6.2E-4, 21, 1.28, 0, 0.99937, 22, -12.43, 0.82, 0, 2, 20, 32.13, 1.98, 0.00316, 22, 2.9, -1.03, 0.99684, 3, 19, 11.94, 0.29, 0.99877, 20, -7, 1.86, 0.00109, 21, -21.99, 5.05, 1.4E-4, 3, 19, 26.78, 2.21, 0.00163, 20, 7.88, 0.3, 0.99252, 21, -7.52, 1.23, 0.00586, 2, 20, 41.04, 3.73, 2.0E-4, 22, 11.98, -1.26, 0.9998, 2, 20, 24.44, 1.25, 0.00483, 21, 8.98, -0.37, 0.99517, 1, 18, 4.4, -0.43, 1 ],
- "hull": 26,
- "edges": [ 10, 12, 12, 14, 48, 50, 0, 50, 24, 26, 26, 28, 40, 54, 54, 12, 40, 42, 52, 60, 60, 54, 42, 60, 60, 10, 54, 62, 62, 56, 14, 62, 38, 40, 62, 38, 36, 38, 36, 56, 14, 16, 56, 16, 32, 58, 58, 20, 28, 30, 30, 32, 26, 64, 64, 58, 30, 64, 20, 22, 22, 24, 64, 22, 32, 34, 34, 36, 56, 66, 66, 58, 34, 66, 16, 18, 18, 20, 66, 18, 42, 44, 44, 52, 6, 8, 8, 10, 52, 8, 44, 46, 46, 48, 0, 68, 68, 52, 46, 68, 68, 6, 4, 6, 0, 2, 4, 2 ],
- "width": 33,
- "height": 98
- }
- },
- "waitaozuo": {
- "waitaozuo": {
- "type": "mesh",
- "uvs": [ 0.61955, 0.07895, 1, 0.03948, 0.99999, 0.23784, 0.99999, 0.3449, 0.99999, 0.45982, 1, 0.52555, 1, 0.58384, 0.99999, 0.69041, 1, 0.77097, 1, 0.84517, 1, 0.94269, 1, 1, 0.23849, 1, 0, 1, 0.04033, 0.93164, 0.09443, 0.83992, 0.13427, 0.77239, 0.18295, 0.68986, 0.24772, 0.58007, 0.25461, 0.5255, 0.26188, 0.46787, 0.29404, 0.35046, 0.3235, 0.24288, 0.36105, 0.10578, 0.64594, 0.34561, 0.64594, 0.52214, 0.53748, 0.68701, 0.4184, 0.84091, 0.64594, 0.46194, 0.60548, 0.58083, 0.31955, 0.92832, 0.46989, 0.77171, 0.63547, 0.23979 ],
- "triangles": [ 2, 0, 1, 32, 0, 2, 23, 0, 32, 22, 23, 32, 2, 24, 32, 3, 24, 2, 24, 21, 22, 24, 22, 32, 4, 24, 3, 28, 21, 24, 28, 24, 4, 20, 21, 28, 25, 20, 28, 19, 20, 25, 25, 28, 4, 5, 25, 4, 29, 19, 25, 18, 19, 29, 25, 5, 6, 29, 25, 6, 26, 18, 29, 17, 18, 26, 7, 29, 6, 26, 29, 7, 31, 17, 26, 8, 31, 26, 8, 26, 7, 16, 17, 31, 27, 16, 31, 15, 16, 27, 31, 8, 9, 27, 31, 9, 30, 15, 27, 14, 15, 30, 27, 9, 10, 30, 27, 10, 12, 14, 30, 13, 14, 12, 30, 10, 11, 12, 30, 11 ],
- "vertices": [ 1, 23, -7.8, 0.31, 1, 1, 23, -11.6, 9.5, 1, 2, 23, 8.23, 9.18, 0.99613, 24, -10.34, 9.01, 0.00387, 2, 23, 18.94, 9.01, 0.46707, 24, 0.37, 9.01, 0.53293, 3, 23, 30.43, 8.82, 5.1E-4, 24, 11.86, 9.01, 0.92525, 25, -6.48, 8.24, 0.07424, 2, 24, 18.43, 9.01, 0.44365, 25, 0.03, 9.09, 0.55635, 3, 24, 24.26, 9.01, 0.06793, 25, 5.81, 9.85, 0.9235, 26, -13.21, 9.25, 0.00857, 3, 25, 16.38, 11.24, 0.59569, 26, -2.72, 11.12, 0.4043, 27, -19.05, 7.74, 1.0E-5, 3, 25, 24.37, 12.29, 0.1066, 26, 5.21, 12.54, 0.83243, 27, -11.52, 10.6, 0.06096, 3, 25, 31.73, 13.25, 0.00228, 26, 12.51, 13.85, 0.61727, 27, -4.58, 13.23, 0.38045, 2, 26, 22.11, 15.57, 0.1344, 27, 4.53, 16.69, 0.8656, 2, 26, 27.75, 16.58, 0.0545, 27, 9.89, 18.73, 0.9455, 1, 27, 16.38, 1.64, 1, 1, 27, 18.41, -3.71, 1, 1, 27, 11.68, -5.23, 1, 2, 26, 15.82, -7.64, 0.29396, 27, 2.64, -7.27, 0.70604, 3, 25, 27.21, -8.3, 0.0058, 26, 9.01, -7.89, 0.88403, 27, -4.01, -8.78, 0.11017, 2, 25, 18.88, -8.21, 0.44101, 26, 0.68, -8.19, 0.55899, 3, 24, 23.88, -9.04, 0.04581, 25, 7.79, -8.1, 0.95367, 26, -10.4, -8.59, 5.3E-4, 2, 24, 18.43, -8.88, 0.36299, 25, 2.36, -8.64, 0.63701, 2, 24, 12.66, -8.7, 0.84967, 25, -3.38, -9.22, 0.15033, 2, 23, 19.22, -7.94, 0.38267, 24, 0.92, -7.93, 0.61733, 2, 23, 8.47, -7.06, 0.99906, 24, -9.84, -7.22, 9.4E-4, 1, 23, -5.22, -5.94, 1, 2, 23, 18.87, 0.51, 0.26905, 24, 0.44, 0.51, 0.73095, 2, 24, 18.09, 0.51, 0.11028, 25, 0.8, 0.62, 0.88972, 1, 25, 17.49, 0.19, 1, 2, 26, 14.55, 0.03, 0.51208, 27, -0.03, 0.03, 0.48792, 1, 24, 12.07, 0.51, 1, 1, 25, 6.75, 0.42, 1, 1, 27, 8.99, 0.91, 1, 1, 26, 7.52, 0.03, 1, 1, 23, 8.29, 0.43, 1 ],
- "hull": 24,
- "edges": [ 2, 0, 0, 46, 22, 24, 24, 26, 36, 38, 38, 40, 38, 50, 50, 10, 48, 56, 56, 50, 40, 56, 8, 10, 56, 8, 50, 58, 58, 52, 36, 58, 10, 12, 58, 12, 34, 36, 34, 52, 12, 14, 52, 14, 30, 54, 54, 18, 26, 28, 28, 30, 24, 60, 60, 54, 28, 60, 18, 20, 20, 22, 60, 20, 30, 32, 32, 34, 52, 62, 62, 54, 32, 62, 14, 16, 16, 18, 62, 16, 40, 42, 42, 48, 6, 8, 48, 6, 42, 44, 44, 46, 0, 64, 64, 48, 44, 64, 2, 4, 4, 6, 64, 4 ],
- "width": 24,
- "height": 100
- }
- },
- "weijing": {
- "weijing": {
- "type": "mesh",
- "uvs": [ 1, 0.20307, 0.9016, 0.36644, 0.68626, 0.46728, 0.75738, 0.58424, 0.84323, 0.72544, 0.89359, 0.80827, 0.93276, 0.87269, 0.4596, 1, 0.34041, 0.96542, 0.05541, 0.88272, 0.07927, 0.76428, 0.10794, 0.62198, 0.11677, 0.51367, 0, 0.36845, 0.0856, 0, 0.2811, 0.1123, 0.38487, 0.11945, 0.5446, 0.13046, 0.88176, 0, 0.3495, 0.79248, 0.3581, 0.62888, 0.36212, 0.51798, 0.3438, 0.90101, 0.36003, 0.39442 ],
- "triangles": [ 22, 10, 19, 9, 10, 22, 22, 19, 4, 22, 4, 5, 8, 9, 22, 7, 22, 5, 8, 22, 7, 7, 5, 6, 11, 12, 20, 19, 11, 20, 10, 11, 19, 19, 20, 3, 21, 23, 2, 12, 23, 21, 20, 12, 21, 20, 21, 2, 20, 2, 3, 19, 3, 4, 2, 23, 1, 1, 18, 0, 17, 18, 1, 13, 14, 15, 23, 15, 16, 23, 16, 17, 23, 17, 1, 13, 15, 23, 12, 13, 23 ],
- "vertices": [ 1, 29, -3.59, 27.01, 1, 2, 29, 5.98, 22.72, 0.61439, 30, -1.7, 22.57, 0.38561, 4, 29, 11.78, 13.58, 0.19852, 30, 4.45, 13.66, 0.78654, 31, -9.55, 13.43, 0.01428, 32, -20.28, 12.96, 6.6E-4, 4, 29, 18.73, 16.46, 0.01448, 30, 11.28, 16.8, 0.77441, 31, -2.79, 16.72, 0.17244, 32, -13.59, 16.39, 0.03867, 3, 30, 19.53, 20.6, 0.47537, 31, 5.38, 20.68, 0.33347, 32, -5.52, 20.53, 0.19115, 3, 30, 24.37, 22.82, 0.37509, 31, 10.17, 23.01, 0.34787, 32, -0.78, 22.96, 0.27704, 3, 30, 28.13, 24.55, 0.3519, 31, 13.9, 24.82, 0.34789, 32, 2.91, 24.85, 0.30021, 3, 30, 36.09, 4.85, 0.032, 31, 22.26, 5.29, 0.05587, 32, 11.7, 5.51, 0.91213, 3, 30, 34.16, -0.2, 0.00297, 31, 20.44, 0.2, 0.00378, 32, 9.99, 0.38, 0.99325, 2, 31, 16.09, -11.97, 0.16959, 32, 5.9, -11.88, 0.83041, 2, 31, 9.06, -11.28, 0.52322, 32, -1.14, -11.34, 0.47678, 4, 29, 20.51, -10.85, 7.6E-4, 30, 14.12, -10.42, 0.16323, 31, 0.62, -10.44, 0.78037, 32, -9.6, -10.68, 0.05564, 4, 29, 14.12, -10.38, 0.05877, 30, 7.73, -10.19, 0.63896, 31, -5.78, -10.34, 0.30151, 32, -16, -10.73, 7.6E-4, 3, 29, 5.48, -15.14, 0.43572, 30, -0.73, -15.28, 0.53415, 31, -14.12, -15.62, 0.03013, 1, 29, -16.2, -11.19, 1, 2, 29, -9.44, -3.09, 0.99966, 30, -16.1, -3.82, 3.4E-4, 2, 29, -8.95, 1.26, 0.99931, 30, -15.78, 0.55, 6.9E-4, 1, 29, -8.19, 7.96, 1, 1, 29, -15.65, 22.25, 1, 3, 30, 23.95, -0.05, 5.4E-4, 31, 10.23, 0.14, 0.63181, 32, -0.22, 0.1, 0.36765, 1, 31, 0.57, 0.08, 1, 1, 30, 7.75, 0.12, 1, 3, 30, 30.36, -0.14, 5.5E-4, 31, 16.64, 0.18, 0.00128, 32, 6.19, 0.28, 0.99818, 1, 29, 7.26, -0.05, 1 ],
- "hull": 19,
- "edges": [ 14, 12, 4, 2, 2, 0, 24, 26, 26, 28, 28, 30, 34, 36, 36, 0, 30, 32, 32, 34, 14, 16, 16, 18, 18, 20, 20, 38, 38, 8, 20, 22, 22, 24, 40, 38, 22, 40, 4, 6, 6, 8, 40, 6, 42, 40, 24, 42, 42, 4, 16, 44, 44, 38, 18, 44, 8, 10, 10, 12, 44, 10, 32, 46, 46, 42, 26, 46, 46, 2 ],
- "width": 42,
- "height": 59
- }
- },
- "yanbai": {
- "yanbai": { "x": 7.26, "y": 0.08, "rotation": -90.38, "width": 22, "height": 16 }
- },
- "yanqiu": {
- "yanqiu": { "x": -1.46, "y": -2.8, "rotation": -90.38, "width": 13, "height": 13 }
- },
- "yiling": {
- "yiling": {
- "type": "mesh",
- "uvs": [ 0.27013, 0.03728, 0.45784, 0.2916, 0.67163, 0.10557, 1, 0.19977, 1, 0.25157, 0.55691, 0.88267, 0.31706, 0.8756, 0, 0.29396 ],
- "triangles": [ 2, 3, 4, 7, 0, 1, 6, 7, 1, 4, 5, 1, 4, 1, 2, 6, 1, 5 ],
- "vertices": [ 63.98, 9.64, 48.53, -1.32, 60.4, -12.95, 55.1, -31.5, 51.89, -31.6, 12.06, -7.93, 12.1, 5.51, 47.64, 24.3 ],
- "hull": 8,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
- "width": 56,
- "height": 62
- }
- },
- "youjiao": {
- "youjiao": {
- "type": "mesh",
- "uvs": [ 1, 0.51343, 1, 0.54243, 1, 0.56643, 1, 0.80443, 1, 0.83543, 1, 0.85943, 1, 1, 0.57796, 1, 0.57715, 0.96152, 0.57535, 0.87528, 0.66131, 0.84082, 0.65216, 0.81841, 0.64262, 0.79503, 0.56352, 0.60115, 0.55314, 0.57571, 0.54396, 0.55322, 0.37219, 0.13221, 0.69169, 0.06493, 1, 0, 0.87228, 0.85159, 0.86705, 0.8288, 0.85996, 0.79793, 0.804, 0.55417, 0.80984, 0.57958, 0.79784, 0.52733 ],
- "triangles": [ 17, 18, 0, 24, 17, 0, 22, 24, 0, 15, 16, 17, 15, 17, 24, 1, 22, 0, 23, 22, 1, 14, 15, 24, 14, 24, 22, 2, 23, 1, 13, 14, 22, 13, 22, 23, 12, 13, 23, 21, 23, 2, 12, 23, 21, 21, 2, 3, 11, 12, 21, 20, 21, 3, 11, 21, 20, 20, 3, 4, 10, 11, 20, 19, 20, 4, 10, 20, 19, 19, 4, 5, 8, 9, 10, 8, 10, 19, 7, 8, 19, 19, 5, 6, 7, 19, 6 ],
- "vertices": [ 2, 11, 18.3, 9.01, 0.56611, 12, -0.53, 9.01, 0.43389, 2, 11, 19.79, 8.75, 0.4323, 12, 0.95, 8.74, 0.5677, 2, 11, 21.02, 8.54, 0.32327, 12, 2.18, 8.51, 0.67673, 1, 12, 14.35, 6.28, 1, 1, 12, 15.93, 5.98, 1, 1, 12, 17.16, 5.76, 1, 2, 12, 24.35, 4.43, 0.7024, 13, -4.88, 4.47, 0.2976, 1, 13, 13.2, 2.88, 1, 2, 12, 19.09, -13.09, 7.0E-5, 13, 13.06, 0.88, 0.99993, 2, 12, 14.67, -12.35, 0.03748, 13, 12.75, -3.59, 0.96252, 2, 12, 13.58, -8.39, 0.35799, 13, 8.91, -5.05, 0.64201, 2, 12, 12.36, -8.57, 0.55706, 13, 9.2, -6.25, 0.44294, 3, 11, 30.13, -8.62, 5.5E-4, 12, 11.09, -8.75, 0.6887, 13, 9.5, -7.5, 0.31075, 3, 11, 19.62, -10.26, 0.42789, 12, 0.56, -10.27, 0.56739, 13, 12.01, -17.84, 0.00472, 3, 11, 18.24, -10.48, 0.54978, 12, -0.82, -10.47, 0.44858, 13, 12.34, -19.19, 0.00164, 3, 11, 17.02, -10.67, 0.65209, 12, -2.05, -10.65, 0.3475, 13, 12.63, -20.39, 4.1E-4, 1, 11, -5.81, -14.23, 1, 1, 11, -6.93, -0.1, 1, 1, 11, -8.01, 13.54, 1, 1, 12, 15.77, 0.43, 1, 1, 12, 14.56, 0.42, 1, 1, 12, 12.93, 0.41, 1, 2, 11, 18.96, 0.34, 0.47555, 12, 0.03, 0.34, 0.52445, 1, 12, 1.37, 0.35, 1, 1, 11, 17.54, 0.32, 1 ],
- "hull": 19,
- "edges": [ 12, 14, 18, 20, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
- "width": 43,
- "height": 52
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.44138, 0.20812, 0.46895, 0.2296, 0.50169, 0.2551, 0.81516, 0.49927, 0.84862, 0.52533, 0.88013, 0.54988, 1, 0.64324, 1, 1, 0.62827, 1, 0.45407, 0.80362, 0.42691, 0.77301, 0.40624, 0.74971, 0.15714, 0.46889, 0.13135, 0.43982, 0.10166, 0.40635, 0, 0.29175, 0, 0.05002, 0, 0, 0.17418, 0, 0.64284, 0.63831, 0.67475, 0.67063, 0.61865, 0.61618, 0.27535, 0.302, 0.30844, 0.33229, 0.3379, 0.35925 ],
- "triangles": [ 16, 17, 18, 22, 15, 16, 18, 22, 16, 0, 22, 18, 23, 22, 0, 23, 0, 1, 24, 23, 1, 24, 1, 2, 14, 15, 22, 13, 14, 22, 13, 22, 23, 12, 13, 23, 12, 23, 24, 21, 2, 3, 24, 2, 21, 19, 21, 3, 19, 3, 4, 20, 19, 4, 20, 4, 5, 11, 24, 21, 12, 24, 11, 10, 11, 21, 10, 21, 19, 9, 10, 19, 9, 19, 20, 8, 9, 20, 20, 5, 6, 20, 6, 7, 8, 20, 7 ],
- "vertices": [ 2, 8, 17.03, 8.65, 0.67958, 9, -0.3, 8.65, 0.32042, 2, 8, 18.8, 8.75, 0.49759, 9, 1.46, 8.8, 0.50241, 2, 8, 20.89, 8.87, 0.28688, 9, 3.56, 8.98, 0.71312, 2, 9, 23.6, 10.7, 0.43421, 10, 0.21, 10.7, 0.56579, 2, 9, 25.74, 10.88, 0.26536, 10, 2.35, 10.88, 0.73464, 2, 9, 27.76, 11.06, 0.14553, 10, 4.36, 11.05, 0.85447, 2, 9, 35.42, 11.71, 0.00122, 10, 12.03, 11.69, 0.99878, 1, 10, 28.79, -1.62, 1, 1, 10, 18.61, -14.43, 1, 3, 8, 44.75, -13.9, 1.1E-4, 9, 28.06, -13.09, 0.13937, 10, 4.62, -13.1, 0.86052, 3, 8, 42.57, -13.63, 0.00118, 9, 25.88, -12.89, 0.23609, 10, 2.44, -12.89, 0.76273, 3, 8, 40.92, -13.43, 0.00351, 9, 24.22, -12.73, 0.32766, 10, 0.78, -12.73, 0.66883, 3, 8, 20.96, -10.99, 0.68581, 9, 4.2, -10.87, 0.31369, 10, -19.23, -10.83, 5.0E-4, 2, 8, 18.9, -10.73, 0.82881, 9, 2.13, -10.68, 0.17119, 2, 8, 16.52, -10.44, 0.9422, 9, -0.25, -10.45, 0.0578, 1, 8, 8.38, -9.44, 1, 1, 8, -2.73, -0.12, 1, 1, 8, -5.02, 1.81, 1, 1, 8, -0.09, 7.68, 1, 2, 9, 25.44, -0.42, 0.0055, 10, 2.02, -0.43, 0.9945, 2, 9, 27.83, -0.53, 5.8E-4, 10, 4.41, -0.53, 0.99942, 3, 8, 40.79, -1.12, 0, 9, 23.74, -0.43, 0.17819, 10, 0.32, -0.43, 0.82181, 1, 8, 16.64, -0.56, 1, 2, 8, 18.97, -0.62, 0.81947, 9, 1.91, -0.56, 0.18053, 2, 8, 21.04, -0.67, 0.06117, 9, 3.98, -0.55, 0.93883 ],
- "hull": 19,
- "edges": [ 34, 36, 14, 12, 14, 16, 30, 32, 32, 34, 20, 38, 38, 8, 16, 18, 18, 20, 14, 40, 40, 38, 18, 40, 8, 10, 10, 12, 40, 10, 20, 22, 42, 38, 22, 42, 8, 6, 42, 6, 28, 30, 32, 44, 28, 44, 0, 36, 44, 0, 26, 28, 46, 44, 26, 46, 0, 2, 46, 2, 22, 24, 24, 26, 42, 48, 48, 46, 24, 48, 2, 4, 4, 6, 48, 4 ],
- "width": 44,
- "height": 60
- }
- },
- "youshou 1": {
- "youshou 1": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.68931, 1, 0.26431, 0.68703, 0.20431, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 2, 4, 1, 4, 0 ],
- "vertices": [ 29.32, -7.7, 19.05, -11.29, 2.63, -9.4, -4.56, 4.82, 21.72, 14.01 ],
- "hull": 5,
- "edges": [ 0, 8, 6, 8, 6, 4, 0, 2, 4, 2 ],
- "width": 35,
- "height": 23
- }
- },
- "youshou2": {
- "youshou2": {
- "type": "mesh",
- "uvs": [ 0.43697, 0.04689, 0.4619, 0.08086, 0.49576, 0.127, 0.79423, 0.53373, 0.7044, 0.72316, 0.61923, 0.90275, 0.25595, 0.56127, 0.225, 0.53218, 0.18687, 0.49634, 0, 0.32069, 0, 0, 0.40256, 0, 0.33118, 0.34, 0.30159, 0.30962, 0.36589, 0.37563 ],
- "triangles": [ 8, 9, 13, 2, 12, 1, 9, 10, 13, 13, 0, 1, 13, 11, 0, 13, 10, 11, 5, 6, 4, 6, 14, 4, 4, 14, 3, 6, 7, 14, 14, 2, 3, 14, 7, 12, 7, 8, 12, 8, 13, 12, 14, 12, 2, 12, 13, 1 ],
- "vertices": [ 2, 51, 24.43, -12.67, 0.06274, 52, 0.14, -12.67, 0.93726, 2, 51, 22.25, -12.29, 0.15392, 52, -2.01, -12.11, 0.84608, 2, 51, 19.29, -11.78, 0.34264, 52, -4.92, -11.34, 0.65736, 1, 51, -6.86, -7.3, 1, 1, 51, -7.25, 3.08, 1, 1, 51, -7.61, 12.92, 1, 2, 51, 20.14, 13.25, 0.9509, 52, -1.89, 13.52, 0.0491, 2, 51, 22.51, 13.28, 0.8733, 52, 0.47, 13.34, 0.1267, 2, 51, 25.42, 13.31, 0.71951, 52, 3.37, 13.12, 0.28049, 2, 51, 39.7, 13.48, 0.08207, 52, 17.61, 12.05, 0.91793, 1, 52, 25.02, -0.7, 1, 2, 51, 27.45, -13.18, 0.01147, 52, 3.09, -13.45, 0.98853, 1, 51, 22.13, 2.2, 1, 2, 51, 24.45, 2.13, 0.62066, 52, 1.44, 2.06, 0.37934, 1, 51, 19.39, 2.28, 1 ],
- "hull": 12,
- "edges": [ 18, 20, 20, 22, 6, 8, 8, 10, 14, 24, 24, 2, 14, 16, 16, 18, 20, 26, 26, 24, 16, 26, 2, 0, 0, 22, 26, 0, 10, 12, 12, 14, 8, 28, 28, 24, 12, 28, 2, 4, 4, 6, 28, 4 ],
- "width": 63,
- "height": 46
- }
- },
- "zuojiao": {
- "zuojiao": {
- "type": "mesh",
- "uvs": [ 1, 0.20149, 0.93235, 0.50353, 0.92791, 0.52336, 0.92328, 0.54404, 0.85596, 0.8446, 0.85061, 0.86851, 0.84918, 0.90155, 0.84306, 1, 0, 1, 0, 0.9238, 0, 0.88803, 0.21516, 0.83684, 0.20948, 0.80749, 0.20379, 0.78976, 0.12649, 0.54863, 0.12021, 0.52905, 0.11325, 0.50734, 0, 0.1541, 0, 0, 0.58826, 0, 1, 0, 0.52611, 0.87426, 0.53314, 0.84825, 0.53463, 0.82536, 0.55428, 0.52287, 0.55281, 0.54553, 0.55534, 0.5066 ],
- "triangles": [ 17, 18, 19, 19, 20, 0, 0, 26, 19, 26, 17, 19, 1, 26, 0, 16, 17, 26, 26, 15, 16, 2, 26, 1, 24, 26, 2, 24, 15, 26, 3, 24, 2, 24, 14, 15, 25, 24, 3, 25, 14, 24, 13, 14, 25, 23, 12, 13, 25, 23, 13, 22, 11, 12, 4, 25, 3, 23, 25, 4, 23, 22, 12, 5, 23, 4, 22, 23, 5, 21, 11, 22, 6, 22, 5, 21, 22, 6, 9, 10, 11, 9, 11, 21, 8, 9, 21, 7, 21, 6, 8, 21, 7 ],
- "vertices": [ 1, 14, 5.33, 8.35, 1, 2, 14, 19.86, 7.53, 0.8166, 15, -1.25, 7.53, 0.1834, 2, 14, 20.82, 7.47, 0.73299, 15, -0.3, 7.47, 0.26701, 2, 14, 21.81, 7.42, 0.63334, 15, 0.7, 7.41, 0.36666, 2, 15, 15.16, 6.57, 0.96154, 16, -6.96, -1.18, 0.03846, 2, 15, 16.31, 6.5, 0.90089, 16, -6.66, -0.07, 0.09911, 2, 15, 17.9, 6.52, 0.77137, 16, -6.35, 1.49, 0.22863, 2, 15, 22.63, 6.57, 0.46729, 16, -5.42, 6.12, 0.53271, 1, 16, 11.19, 3.21, 1, 1, 16, 10.56, -0.4, 1, 2, 15, 17.84, -10.47, 0.0016, 16, 10.26, -2.09, 0.9984, 2, 15, 15.23, -6.26, 0.30443, 16, 5.6, -3.76, 0.69557, 2, 15, 13.83, -6.42, 0.56875, 16, 5.47, -5.17, 0.43125, 2, 15, 12.98, -6.56, 0.67896, 16, 5.43, -6.03, 0.32104, 2, 14, 22.61, -8.5, 0.35673, 15, 1.47, -8.5, 0.64327, 2, 14, 21.68, -8.66, 0.45114, 15, 0.53, -8.66, 0.54886, 2, 14, 20.64, -8.84, 0.55625, 15, -0.5, -8.84, 0.44375, 1, 14, 3.78, -11.72, 1, 1, 14, -3.61, -11.98, 1, 1, 14, -4.04, -0.23, 1, 1, 14, -4.34, 8, 1, 1, 15, 16.81, 0.02, 1, 1, 15, 15.56, 0.12, 1, 1, 15, 14.46, 0.11, 1, 2, 14, 21.07, 0, 0.55243, 15, -0.06, 0, 0.44757, 1, 15, 1.03, 0.01, 1, 1, 14, 20.28, 0, 1 ],
- "hull": 21,
- "edges": [ 36, 38, 38, 40, 16, 18, 42, 18, 34, 36, 18, 20, 22, 20, 0, 40, 14, 16, 22, 42, 10, 12, 12, 14, 42, 12, 22, 24, 44, 42, 24, 44, 44, 10, 24, 26, 46, 44, 26, 46, 8, 10, 46, 8, 30, 48, 48, 4, 26, 28, 28, 30, 46, 50, 50, 48, 28, 50, 4, 6, 6, 8, 50, 6, 30, 32, 32, 34, 38, 52, 52, 48, 32, 52, 0, 2, 2, 4, 52, 2 ],
- "width": 20,
- "height": 48
- }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.30317, 0.91401, 0.40961, 0.88847, 0.44123, 0.86191, 0.47409, 0.58736, 0.81393, 0.56022, 0.84753, 0.53564, 0.87796, 0.43704, 1, 0.12443, 1, 0, 1, 0, 0.65493, 0.10002, 0.57573, 0.13625, 0.54704, 0.16648, 0.5231, 0.52947, 0.23565, 0.56473, 0.20773, 0.59897, 0.18062, 0.82706, 0, 1, 0, 0.41024, 0.66464, 0.7482, 0.28377, 0.72564, 0.30919, 0.7007, 0.3373, 0.38615, 0.69291, 0.35987, 0.72374 ],
- "triangles": [ 6, 7, 24, 7, 8, 24, 24, 8, 10, 24, 10, 11, 10, 8, 9, 6, 24, 5, 24, 23, 5, 5, 23, 4, 4, 23, 19, 4, 22, 3, 4, 19, 22, 11, 12, 24, 24, 12, 23, 12, 13, 23, 23, 13, 19, 19, 14, 22, 19, 13, 14, 22, 21, 3, 3, 21, 2, 21, 20, 2, 2, 20, 1, 1, 20, 0, 14, 15, 22, 22, 15, 21, 15, 16, 21, 21, 16, 20, 20, 18, 0, 20, 17, 18, 20, 16, 17 ],
- "vertices": [ 1, 5, 9.35, 8.39, 1, 2, 5, 16.2, 9.04, 0.97534, 7, -23.75, 10.28, 0.02466, 2, 5, 18.23, 9.23, 0.94197, 7, -21.71, 10.34, 0.05803, 2, 5, 20.35, 9.43, 0.88664, 7, -19.58, 10.41, 0.11336, 2, 5, 42.22, 11.5, 0.02569, 7, 2.38, 11.11, 0.97431, 2, 5, 44.38, 11.71, 0.00899, 7, 4.55, 11.18, 0.99101, 2, 5, 46.34, 11.89, 0.0023, 7, 6.51, 11.25, 0.9977, 1, 7, 14.4, 11.5, 1, 1, 7, 22.33, 0.26, 1, 1, 7, 25.48, -4.22, 1, 1, 7, 10.26, -14.95, 1, 2, 5, 45.62, -13.27, 0.00772, 7, 4.22, -13.82, 0.99228, 2, 5, 43.41, -13, 0.02135, 7, 2.04, -13.41, 0.97865, 2, 5, 41.57, -12.77, 0.04169, 7, 0.22, -13.07, 0.95831, 2, 5, 19.47, -10.04, 0.90066, 7, -21.67, -8.97, 0.09934, 2, 5, 17.32, -9.77, 0.9504, 7, -23.8, -8.57, 0.0496, 2, 5, 15.24, -9.51, 0.9795, 7, -25.86, -8.18, 0.0205, 1, 5, 1.35, -7.8, 1, 1, 5, -3.42, -1.87, 1, 1, 7, 0.28, 0.1, 1, 1, 5, 15.47, -0.91, 1, 2, 5, 17.16, -0.82, 0.99938, 7, -23.4, 0.38, 6.2E-4, 2, 5, 19.03, -0.73, 0.97966, 7, -21.53, 0.35, 0.02034, 2, 5, 42.67, 0.51, 2.0E-5, 7, 2.14, 0.11, 0.99998, 1, 7, 4.17, 0.13, 1 ],
- "hull": 19,
- "edges": [ 34, 36, 18, 20, 0, 36, 14, 16, 16, 18, 32, 34, 36, 40, 32, 40, 0, 2, 40, 2, 30, 32, 42, 40, 30, 42, 2, 4, 42, 4, 28, 30, 38, 44, 44, 42, 28, 44, 4, 6, 44, 6, 26, 28, 26, 38, 6, 8, 38, 8, 24, 26, 46, 38, 24, 46, 8, 10, 46, 10, 20, 22, 22, 24, 16, 48, 48, 46, 22, 48, 10, 12, 12, 14, 48, 12 ],
- "width": 44,
- "height": 54
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 6.04, "y": -0.09, "rotation": -88.68, "width": 18, "height": 17 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2667, "name": null },
- { "time": 1.5, "name": "biyan" },
- { "time": 1.6333, "name": null },
- { "time": 2.8, "name": "biyan" },
- { "time": 2.9333, "name": null },
- { "time": 3.6, "name": "biyan" },
- { "time": 3.7333, "name": null }
- ]
- },
- "fangdajing": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.5333, "name": "fangdajing" }
- ]
- },
- "gaoguang": {
- "attachment": [
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "gaoguang" }
- ],
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "gaoguang" },
- { "time": 1.5, "name": null },
- { "time": 1.6333, "name": "gaoguang" },
- { "time": 2.8, "name": null },
- { "time": 2.9333, "name": "gaoguang" },
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "gaoguang" }
- ]
- },
- "yanbai": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "yanbai" },
- { "time": 1.5, "name": null },
- { "time": 1.6333, "name": "yanbai" },
- { "time": 2.8, "name": null },
- { "time": 2.9333, "name": "yanbai" },
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "yanbai" }
- ]
- },
- "yanqiu": {
- "attachment": [
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "yanqiu" }
- ],
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "yanqiu" },
- { "time": 1.5, "name": null },
- { "time": 1.6333, "name": "yanqiu" },
- { "time": 2.8, "name": null },
- { "time": 2.9333, "name": "yanqiu" },
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "yanqiu" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0.3, "name": null }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3, "name": "youshou2" }
- ]
- },
- "youshou 1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.3, "name": "youshou 1" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2667, "name": "zuoyan" },
- { "time": 1.5, "name": null },
- { "time": 1.6333, "name": "zuoyan" },
- { "time": 2.8, "name": null },
- { "time": 2.9333, "name": "zuoyan" },
- { "time": 3.6, "name": null },
- { "time": 3.7333, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": -65.52 },
- { "time": 0.6, "angle": -72.83, "curve": "stepped" },
- { "time": 0.8667, "angle": -72.83, "curve": "stepped" },
- { "time": 1.1667, "angle": -72.83, "curve": "stepped" },
- { "time": 1.5, "angle": -72.83 },
- { "time": 1.9, "angle": 277.04 },
- { "time": 2.1667, "angle": 267.11 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 0.6, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 0.8667, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 1.1667, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 1.5, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 1.9, "x": -21.53, "y": 273.6, "curve": "stepped" },
- { "time": 2.1667, "x": -21.53, "y": 273.6 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "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.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1667, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": -233.05 },
- { "time": 0.6, "angle": -242.52 },
- { "time": 0.8667, "angle": -238.53 },
- { "time": 1.1667, "angle": -242.52 },
- { "time": 1.5, "angle": -238.53 },
- { "time": 1.5333, "angle": -265.48 },
- { "time": 1.7667, "angle": -283.35 },
- { "time": 2.0333, "angle": -277.71 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "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.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0 },
- { "time": 0.6, "angle": -19.42 },
- { "time": 0.8667, "angle": -6.96 },
- { "time": 1.1667, "angle": -19.42 },
- { "time": 1.5, "angle": -6.96, "curve": "stepped" },
- {
- "time": 1.7667,
- "angle": -6.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.0333, "angle": -55.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1 },
- { "time": 0.6, "x": 0.8, "y": 1 },
- { "time": 0.8667, "x": 1, "y": 1 },
- { "time": 1.1667, "x": 0.8, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 0.8, "y": 1 },
- { "time": 1.7667, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3667, "angle": 0, "curve": "stepped" },
- { "time": 0.6, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- {
- "time": 1.7667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.0333, "angle": 40.26 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "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.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1 }
- ]
- },
- "root": {
- "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.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "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.2, "y": -1.06 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0 },
- { "time": 2, "x": 5.47, "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.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "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": 1.6667,
- "angle": 0,
- "curve": [ 0.244, 0, 0.694, 0.77 ]
- },
- { "time": 2.3333, "angle": -6.66 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.6, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- {
- "time": 1.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.1667, "angle": 3.9 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.92, "y": 0.03 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0 },
- { "time": 1.6667, "x": -1.16, "y": 0.03 },
- { "time": 2.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- {
- "time": 1.7667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.2, "angle": -2.58 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.34, "y": 0.02 },
- { "time": 0.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 24.56 },
- { "time": 0.3333, "angle": 30.7, "curve": "stepped" },
- { "time": 1.6667, "angle": 30.7 },
- { "time": 1.9333, "angle": -2.95 },
- { "time": 2.1, "angle": 3.45 },
- { "time": 2.2333, "angle": 9.85 }
- ],
- "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": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.2333, "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": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -11.92 },
- { "time": 0.3333, "angle": 3.16, "curve": "stepped" },
- { "time": 1.6667, "angle": 3.16 },
- { "time": 1.9333, "angle": 44.97 },
- { "time": 2.1, "angle": 47.35 },
- { "time": 2.2333, "angle": 43.78 }
- ],
- "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": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.2333, "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": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -13.45 },
- { "time": 0.3333, "angle": -6.99, "curve": "stepped" },
- { "time": 1.6667, "angle": -6.99 },
- { "time": 1.9333, "angle": 17.94 }
- ],
- "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": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "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": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -10.75 },
- { "time": 0.3, "angle": -33.15, "curve": "stepped" },
- { "time": 0.3333, "angle": -33.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 53.59, "y": -197.84 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -16.38 },
- { "time": 0.3, "angle": -48.85 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -20.28 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.59 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0 },
- { "time": 2, "angle": -8.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.03, "y": 1.4 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.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": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.96 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "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": 1.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": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0 },
- { "time": 2, "angle": 9.7 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.3 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "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": 1.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": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 8.75 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0 },
- { "time": 2, "angle": 37.4 }
- ],
- "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": 1.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": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -12.62 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 5.97 },
- { "time": 0.1667, "angle": 0 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": 0.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.9667, "angle": 20.48 },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "angle": 20.48 },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0 },
- { "time": 0.9667, "x": -0.42, "y": 1.07 },
- {
- "time": 1.8333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "x": -0.42, "y": 1.07 },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- {
- "time": 0,
- "angle": 7.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.9667, "angle": -10.92 },
- { "time": 1.3, "angle": -1.65 },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "angle": -10.92 },
- { "time": 3.2333, "angle": -1.65 },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- {
- "time": 0,
- "angle": 7.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.9667, "angle": -0.88 },
- { "time": 1.3, "angle": 14.84 },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "angle": -0.88 },
- { "time": 3.2333, "angle": 14.84 },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": -4.5 },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ]
- },
- "bone25": {
- "rotate": [
- {
- "time": 0,
- "angle": -10.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 3.15,
- "curve": [ 0.243, 0, 0.691, 0.76 ]
- },
- {
- "time": 1.5,
- "angle": 3.64,
- "curve": [ 0.37, 0.63, 0.709, 1 ]
- },
- { "time": 2.5, "angle": -13.76 },
- { "time": 3.9333, "angle": 3.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- {
- "time": 0,
- "angle": -14.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 0.72,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.5, "angle": 3.57 },
- { "time": 2.1, "angle": 8.59 },
- { "time": 2.5, "angle": -8.81 },
- { "time": 3.9333, "angle": 0.72 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.83,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.4667,
- "angle": 7.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.5, "angle": 16.5 },
- { "time": 2.1, "angle": 22.79 },
- { "time": 2.5, "angle": 0 },
- { "time": 3.9333, "angle": 7.25 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0 },
- { "time": 1.6333, "angle": -14.95 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- {
- "time": 0,
- "angle": -13.4,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6, "angle": -8.68 },
- { "time": 0.8667, "angle": 0 },
- { "time": 1.1667, "angle": -8.68 },
- { "time": 1.5, "angle": 0 },
- {
- "time": 1.6333,
- "angle": -11.61,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.1667, "angle": 8.35 }
- ],
- "translate": [
- { "time": 1.5, "x": 0, "y": 0 },
- {
- "time": 1.6333,
- "x": -1.14,
- "y": 0.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.1667, "x": 0, "y": 0 }
- ]
- },
- "bone32": {
- "rotate": [
- {
- "time": 0,
- "angle": -13.4,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6, "angle": 16.96 },
- { "time": 0.8667, "angle": 0 },
- { "time": 1.1667, "angle": 16.96 },
- { "time": 1.5, "angle": 0 },
- { "time": 2.1667, "angle": -12.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- {
- "time": 1.6333,
- "x": -3.64,
- "y": -3.66,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "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": 2.1667, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 2.9333, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.4667, "angle": 0, "curve": "stepped" },
- { "time": 3.6, "angle": 0, "curve": "stepped" },
- { "time": 3.7333, "angle": 0, "curve": "stepped" },
- { "time": 3.8667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.8667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.366, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.366, "y": 1 },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1 },
- { "time": 1.5, "x": 0.313, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 0.313, "y": 1 },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 },
- { "time": 2.8, "x": 0.313, "y": 1, "curve": "stepped" },
- { "time": 2.9333, "x": 0.313, "y": 1 },
- { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.4667, "x": 1, "y": 1 },
- { "time": 3.6, "x": 0.313, "y": 1, "curve": "stepped" },
- { "time": 3.7333, "x": 0.313, "y": 1 },
- { "time": 3.8667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 2.9333, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.4667, "angle": 0, "curve": "stepped" },
- { "time": 3.6, "angle": 0, "curve": "stepped" },
- { "time": 3.7333, "angle": 0, "curve": "stepped" },
- { "time": 3.8667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0 },
- { "time": 1.5, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 1.6333, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 1.7667, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 1.8, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 2.6667, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 2.8, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 2.9333, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 3.0667, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 3.4667, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 3.6, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 3.7333, "x": -2.37, "y": -0.01, "curve": "stepped" },
- { "time": 3.8667, "x": -2.37, "y": -0.01 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.366, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.366, "y": 1 },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1 },
- { "time": 1.5, "x": 0.494, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 0.494, "y": 1 },
- { "time": 1.7667, "x": 1.3, "y": 1.3, "curve": "stepped" },
- { "time": 1.8, "x": 1.3, "y": 1.3, "curve": "stepped" },
- { "time": 2.6667, "x": 1.3, "y": 1.3 },
- { "time": 2.8, "x": 0.494, "y": 1.3, "curve": "stepped" },
- { "time": 2.9333, "x": 0.494, "y": 1.3 },
- { "time": 3.0667, "x": 1.3, "y": 1.3, "curve": "stepped" },
- { "time": 3.4667, "x": 1.3, "y": 1.3 },
- { "time": 3.6, "x": 0.494, "y": 1.3, "curve": "stepped" },
- { "time": 3.7333, "x": 0.494, "y": 1.3 },
- { "time": 3.8667, "x": 1.3, "y": 1.3 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 2.9333, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0, "curve": "stepped" },
- { "time": 3.4667, "angle": 0, "curve": "stepped" },
- { "time": 3.6, "angle": 0, "curve": "stepped" },
- { "time": 3.7333, "angle": 0, "curve": "stepped" },
- { "time": 3.8667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.8, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": -1.8, "y": 0 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0 },
- { "time": 1.5, "x": -1.11, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": -1.11, "y": 0 },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 },
- { "time": 2.8, "x": -1.11, "y": 0, "curve": "stepped" },
- { "time": 2.9333, "x": -1.11, "y": 0 },
- { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.4667, "x": 0, "y": 0 },
- { "time": 3.6, "x": -1.11, "y": 0, "curve": "stepped" },
- { "time": 3.7333, "x": -1.11, "y": 0 },
- { "time": 3.8667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.8667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.8, "angle": 0, "curve": "stepped" },
- { "time": 2.9333, "angle": 0, "curve": "stepped" },
- { "time": 3.0667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.0667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.0667, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 1.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 1.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 1.93 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.98 },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 3.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.98 },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 3.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.98 },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 3.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.76 },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 6.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 6.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 6.06 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.76 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.76 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.08 },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.1667,
- "angle": 4.88,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.5,
- "angle": 4.88,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 3.1667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.9333, "angle": 4.88 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.39 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3.1667, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -2.39 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 3.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "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": 3.9333, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 3.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 1.6333, "x": 0, "y": 0 },
- { "time": 1.7667, "x": 0.44, "y": -1.28 },
- { "time": 2.9333, "x": 0, "y": 0 },
- { "time": 3.0667, "x": 0.44, "y": -1.28, "curve": "stepped" },
- { "time": 3.4667, "x": 0.44, "y": -1.28 },
- { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.7333, "x": 0, "y": 0 },
- { "time": 3.8667, "x": 0.44, "y": 0.3 }
- ],
- "scale": [
- { "time": 3.4667, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 3.4667, "angle": 0 }
- ],
- "translate": [
- { "time": 3.4667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 3.4667, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "waitaohou": {
- "waitaohou": [
- {
- "time": 0,
- "vertices": [ -7.14621, 0.8426, -5.15533, 2.06055, -3.32445, 4.35551, -3.07579, -11.94044, -11.40351, -17.16388, -12.5834, -13.02536, -13.67466, -3.87561, 0, 0, 0, 0, 0, 0, -5.85374, -7.05752, -7.58962, -3.98333 ]
- },
- { "time": 0.3333 },
- {
- "time": 1.5,
- "vertices": [ -5.80336, 4.09832, -6.42092, 9.04501, -7.32334, 11.17632, -4.56202, 7.83692, -3.5806, 10.16995, -5.52269, 6.67878, -4.8635, 4.08171, 0, 0, 0, 0, 0, 0, -5.30015, 5.96972, -5.10262, 3.85088 ]
- },
- {
- "time": 2.1667,
- "vertices": [ -5.37464, 1.9029, -5.49009, 4.56286, -5.93963, 5.7235, -3.86799, 0.14597, -8.73843, -11.70463, -9.09505, -5.5749, -8.91171, -4.40047, 0, 0, 0, 0, 0, 0, -4.61364, -0.59095, -5.2613, -0.87704 ]
- },
- { "time": 3.9333 }
- ]
- },
- "youshou2": {
- "youshou2": [
- {
- "time": 0.3,
- "vertices": [ 0.20703, 3.83282, 0.53858, 3.80033, 0.20703, 3.83282, 0.53858, 3.80033, 0.20703, 3.83282, 0.53858, 3.80033, 6.56782, 3.25912, 1.15477, -0.57042, 4.55291, -3.50618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.20703, 3.83282, 0.53858, 3.80033 ]
- },
- { "time": 0.6 }
- ]
- }
- }
- },
- "drawOrder": [
- {
- "time": 0.3,
- "offsets": [
- { "slot": "youshou 1", "offset": -5 },
- { "slot": "youshou2", "offset": -18 }
- ]
- },
- {
- "time": 1.5333,
- "offsets": [
- { "slot": "youshou 1", "offset": 13 }
- ]
- }
- ]
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "fangdajing": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "gaoguang": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "gaoguang" }
- ]
- },
- "yanbai": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "yanbai" }
- ]
- },
- "yanqiu": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "yanqiu" }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youshou 1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.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": 1.49 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 1.49 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 1.49 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 1.49 },
- { "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": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- {
- "time": 0,
- "angle": -308.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 24.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -308.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 24.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -308.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 }
- ]
- },
- "bone6": {
- "rotate": [
- {
- "time": 0,
- "angle": -22.6,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -22.6,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -16.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -22.6 }
- ],
- "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": -12.04, "curve": "stepped" },
- { "time": 0.5, "angle": -12.04, "curve": "stepped" },
- { "time": 1, "angle": -12.04, "curve": "stepped" },
- { "time": 1.5, "angle": -12.04, "curve": "stepped" },
- { "time": 2, "angle": -12.04 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- {
- "time": 0,
- "angle": -38.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -15.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -38.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -15.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -38.96 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 3.26,
- "y": -2.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 3.26,
- "y": -2.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 3.26, "y": -2.51 }
- ],
- "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": -16.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -16.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -16.5 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": -11.62, "curve": "stepped" },
- { "time": 0.5, "angle": -11.62, "curve": "stepped" },
- { "time": 1, "angle": -11.62, "curve": "stepped" },
- { "time": 1.5, "angle": -11.62, "curve": "stepped" },
- { "time": 2, "angle": -11.62 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 12.51 },
- { "time": 0.1667, "angle": -8.33 },
- { "time": 0.3333, "angle": -23.61 },
- { "time": 0.5, "angle": -36.35 },
- { "time": 0.6667, "angle": -23.87 },
- { "time": 0.8333, "angle": 3.23 },
- { "time": 1, "angle": 12.51 },
- { "time": 1.1667, "angle": -8.33 },
- { "time": 1.3333, "angle": -23.61 },
- { "time": 1.5, "angle": -36.35 },
- { "time": 1.6667, "angle": -23.87 },
- { "time": 1.8333, "angle": 3.23 },
- { "time": 2, "angle": 12.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.73, "y": -0.45 },
- { "time": 0.3333, "x": -3.1, "y": 0.57 },
- { "time": 0.5, "x": -5.19, "y": -1.36 },
- { "time": 0.6667, "x": -3.46, "y": -0.9 },
- { "time": 0.8333, "x": -1.73, "y": -0.45 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -1.73, "y": -0.45 },
- { "time": 1.3333, "x": -3.1, "y": 0.57 },
- { "time": 1.5, "x": -5.19, "y": -1.36 },
- { "time": 1.6667, "x": -3.46, "y": -0.9 },
- { "time": 1.8333, "x": -1.73, "y": -0.45 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 38.68 },
- { "time": 0.3333, "angle": 35.9 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 17.15 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 38.68 },
- { "time": 1.3333, "angle": 35.9 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 17.15 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.73, "y": -1.42 },
- { "time": 0.3333, "x": -1.16, "y": -0.86 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -1.73, "y": -1.42 },
- { "time": 1.3333, "x": -1.16, "y": -0.86 },
- { "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 }
- ]
- },
- "bone13": {
- "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": 14.84 },
- { "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": 14.84 },
- { "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 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": -18.95 },
- { "time": 0.1667, "angle": 0.34 },
- { "time": 0.3333, "angle": 24.87 },
- { "time": 0.5, "angle": 44.49 },
- { "time": 0.6667, "angle": 16.35 },
- { "time": 0.8333, "angle": -11.63 },
- { "time": 1, "angle": -18.95 },
- { "time": 1.1667, "angle": 0.34 },
- { "time": 1.3333, "angle": 24.87 },
- { "time": 1.5, "angle": 44.49 },
- { "time": 1.6667, "angle": 16.35 },
- { "time": 1.8333, "angle": -11.63 },
- { "time": 2, "angle": -18.95 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.41 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 49.77 },
- { "time": 0.8333, "angle": 46.19 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 5.41 },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 49.77 },
- { "time": 1.8333, "angle": 46.19 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.26, "y": -0.85 },
- { "time": 0.8333, "x": -1.42, "y": -1.49 },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": -1.26, "y": -0.85 },
- { "time": 1.8333, "x": -1.42, "y": -1.49 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -6.7 },
- { "time": 0.3333, "angle": -22.13 },
- { "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": -6.7 },
- { "time": 1.3333, "angle": -22.13 },
- { "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 }
- ]
- },
- "bone17": {
- "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 },
- { "time": 0.5, "x": 1.84, "y": 3.92 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 1.84, "y": 3.92 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 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": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -2.25,
- "y": 0.2,
- "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.25,
- "y": 0.2,
- "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 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 8.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 8.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.243, 0, 0.649, 0.6 ]
- },
- {
- "time": 0.5,
- "x": -1.09,
- "y": 2.92,
- "curve": [ 0.382, 0.57, 0.735, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.243, 0, 0.649, 0.6 ]
- },
- {
- "time": 1.5,
- "x": -1.09,
- "y": 2.92,
- "curve": [ 0.382, 0.57, 0.735, 1 ]
- },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- {
- "time": 0,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 1,
- "y": 0.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 1,
- "y": 0.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 8.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 8.36,
- "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 }
- ]
- },
- "bone22": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 8.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 8.36,
- "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 }
- ]
- },
- "bone23": {
- "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 }
- ]
- },
- "bone24": {
- "scale": [
- {
- "time": 0,
- "x": 1,
- "y": 0.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 1,
- "y": 0.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 1, "y": 0.8 }
- ]
- },
- "bone25": {
- "rotate": [
- {
- "time": 0,
- "angle": -12.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -12.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -12.67 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -1.62,
- "y": -1.22,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -1.62,
- "y": -1.22,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -1.62, "y": -1.22 }
- ],
- "scale": [
- {
- "time": 0,
- "x": 1,
- "y": 0.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 1,
- "y": 0.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 1, "y": 0.8 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": -12.67 },
- { "time": 0.2333, "angle": -7.31 },
- {
- "time": 0.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": -12.67 },
- { "time": 1.2333, "angle": -7.31 },
- {
- "time": 1.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -12.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": -12.67 },
- { "time": 0.2333, "angle": -13.78 },
- {
- "time": 0.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": -12.67 },
- { "time": 1.2333, "angle": -13.78 },
- {
- "time": 1.5,
- "angle": 2.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -12.67 }
- ],
- "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 }
- ]
- },
- "bone28": {
- "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": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.5, "angle": -5.88 },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.5, "angle": -5.88 },
- { "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 }
- ]
- },
- "bone31": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.5, "angle": -16.35 },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.5, "angle": -16.35 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.5, "angle": -16.35 },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.5, "angle": -16.35 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "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.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.365, "y": 1 },
- { "time": 1.3667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "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.3667, "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.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.365, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.365, "y": 1 },
- { "time": 1.3667, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "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.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -1.08, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -1.08, "y": 0 },
- { "time": 1.3667, "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.3667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -1.34, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.99,
- "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": -5.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -5.04,
- "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": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -0.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -0.51,
- "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 }
- ]
- },
- "bone41": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -0.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -0.51,
- "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 }
- ]
- },
- "bone42": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.88,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.88,
- "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 }
- ]
- },
- "bone43": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 10.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 10.14,
- "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": 0.76,
- "y": 0.27,
- "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.76,
- "y": 0.27,
- "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 }
- ]
- },
- "bone44": {
- "rotate": [
- {
- "time": 0,
- "angle": 7.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 7.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 7.93 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.71,
- "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 }
- ]
- },
- "bone46": {
- "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 }
- ]
- },
- "bone47": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 10.37,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 10.37,
- "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 }
- ]
- },
- "bone48": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9.9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9.9,
- "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 }
- ]
- },
- "bone49": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.56,
- "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 }
- ]
- },
- "bone29": {
- "translate": [
- { "time": 0, "x": 0.08, "y": -1.1, "curve": "stepped" },
- { "time": 1, "x": 0.08, "y": -1.1 }
- ]
- },
- "bone4": {
- "translate": [
- { "time": 0, "x": 0.07, "y": -1.11, "curve": "stepped" },
- { "time": 1, "x": 0.07, "y": -1.11 }
- ]
- }
- },
- "deform": {
- "default": {
- "chenyi": {
- "chenyi": [
- {
- "time": 0,
- "offset": 34,
- "vertices": [ -0.21918, -10.04058, 0.05614, -10.04282, 2.04752, -13.65644, 2.42107, -13.59519, 1.77298, -1.25114, 3.61602, 8.12716, 0.03322, 7.65418, 0, 0, 1.92733, -2.81433, -0.78955, -4.37572, -0.66937, -4.39571, -0.54735, -4.82689, -0.4149, -4.84008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.56107, -0.20083 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 34,
- "vertices": [ -0.21918, -10.04058, 0.05614, -10.04282, 2.04752, -13.65644, 2.42107, -13.59519, 1.77298, -1.25114, 3.61602, 8.12716, 0.03322, 7.65418, 0, 0, 1.92733, -2.81433, -0.78955, -4.37572, -0.66937, -4.39571, -0.54735, -4.82689, -0.4149, -4.84008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.56107, -0.20083 ]
- }
- ]
- },
- "toufa2": {
- "toufa2": [
- {
- "time": 0,
- "offset": 2,
- "vertices": [ -2.03989, 0.00681 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 2,
- "vertices": [ -2.03989, 0.00681 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 2,
- "vertices": [ -2.03989, 0.00681 ]
- }
- ]
- },
- "toufa5": {
- "toufa5": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 6,
- "vertices": [ -1.6359, -1.21858, 0.20347, -0.20467, -0.60434, 2.24601 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 6,
- "vertices": [ -1.6359, -1.21858, 0.20347, -0.20467, -0.60434, 2.24601 ]
- },
- { "time": 2 }
- ]
- },
- "waitaohou": {
- "waitaohou": [
- {
- "time": 0,
- "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
- },
- {
- "time": 0.5,
- "vertices": [ -11.12916, 6.13391, -10.8797, 8.24981, -12.07646, 12.51166, -6.01128, 4.95113, -5.47238, -0.42822, -5.55107, 0.83336, -9.46989, 1.32878, 0, 0, 0, 0, 0, 0, -9.40202, 4.93815, -8.05604, 3.40007 ]
- },
- {
- "time": 1,
- "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
- },
- {
- "time": 1.5,
- "vertices": [ -11.12916, 6.13391, -10.8797, 8.24981, -12.07646, 12.51166, -6.01128, 4.95113, -5.47238, -0.42822, -5.55107, 0.83336, -9.46989, 1.32878, 0, 0, 0, 0, 0, 0, -9.40202, 4.93815, -8.05604, 3.40007 ]
- },
- {
- "time": 2,
- "vertices": [ -2.5376, 0.04491, -2.52264, 0.89078, -3.54265, 4.4574, -5.14863, -5.69977, -9.35645, -16.04894, -9.4333, -9.48458, -8.77579, -5.05651, 0, 0, 0, 0, 0, 0, -3.97716, -4.94838, -3.57415, -3.99036 ]
- }
- ]
- },
- "waitaoyou": {
- "waitaoyou": [
- {
- "time": 0,
- "offset": 2,
- "vertices": [ 0.80276, 3.25943 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 2,
- "vertices": [ 0.80276, 3.25943 ]
- }
- ]
- },
- "yiling": {
- "yiling": [
- {
- "time": 0,
- "offset": 14,
- "vertices": [ -2.85715, 0.58546 ]
- },
- {
- "time": 0.5,
- "offset": 8,
- "vertices": [ -4.5071, -0.13072 ]
- },
- {
- "time": 1,
- "offset": 14,
- "vertices": [ -2.85715, 0.58546 ]
- },
- {
- "time": 1.5,
- "offset": 8,
- "vertices": [ -4.5071, -0.13072 ]
- },
- {
- "time": 2,
- "offset": 14,
- "vertices": [ -2.85715, 0.58546 ]
- }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0,
- "offset": 66,
- "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 66,
- "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 66,
- "vertices": [ 1.06472, -2.85829, 3.44069, 0.02202, 3.10467, 0.45833 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|