69004.json 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257
  1. {
  2. "skeleton": { "hash": "2FKx1YXQ2demK7w/bpxIsFKiUs8", "spine": "3.6.53", "width": 214.74, "height": 223.45, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.12, "y": 64.18 },
  6. { "name": "bone2", "parent": "bone", "length": 16.23, "rotation": 88.9, "x": 0.31, "y": 2.18 },
  7. { "name": "bone3", "parent": "bone2", "length": 20.32, "rotation": -2.42, "x": 16.23 },
  8. { "name": "bone4", "parent": "bone3", "length": 19.71, "rotation": 157.72, "x": 16.05, "y": 7.87, "color": "3b98ffff" },
  9. { "name": "bone5", "parent": "bone4", "length": 14.65, "rotation": -1.1, "x": 19.71, "color": "3b98ffff" },
  10. { "name": "bone6", "parent": "bone5", "length": 13.26, "rotation": -1.17, "x": 14.65, "color": "3b98ffff" },
  11. { "name": "bone7", "parent": "bone3", "length": 20.39, "rotation": -154.58, "x": 17.97, "y": -13.69 },
  12. { "name": "bone8", "parent": "bone7", "length": 15.22, "rotation": 8.93, "x": 20.21, "y": 0.07 },
  13. { "name": "bone9", "parent": "bone8", "length": 9.63, "rotation": -9.47, "x": 15.22 },
  14. { "name": "bone10", "parent": "bone", "length": 10.34, "rotation": -88.92, "x": -0.01, "y": -2.66 },
  15. { "name": "bone11", "parent": "bone", "length": 16.06, "rotation": -100.49, "x": -6.64, "y": -13.38 },
  16. { "name": "bone12", "parent": "bone11", "length": 16.99, "rotation": 7.2, "x": 18.47, "y": -0.15 },
  17. { "name": "bone13", "parent": "bone12", "length": 12.82, "rotation": -73.52, "x": 20.92, "y": -0.36 },
  18. { "name": "bone14", "parent": "bone", "length": 16.26, "rotation": -84.49, "x": 14.81, "y": -12.99, "color": "4069f6ff" },
  19. { "name": "bone15", "parent": "bone14", "length": 17.75, "rotation": -3.62, "x": 20.53, "y": -0.41, "color": "4069f6ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 13.66, "rotation": -82.02, "x": 20.85, "y": -0.88, "color": "4069f6ff" },
  21. { "name": "bone17", "parent": "bone2", "length": 11.64, "rotation": 18.11, "x": -7.26, "y": -17.02 },
  22. { "name": "bone18", "parent": "bone3", "length": 12.54, "rotation": 176.32, "x": 16.09, "y": 7.07 },
  23. { "name": "bone19", "parent": "bone18", "length": 11.07, "rotation": 1.08, "x": 12.54 },
  24. { "name": "bone20", "parent": "bone19", "length": 10.43, "rotation": -1.1, "x": 11.07 },
  25. { "name": "bone21", "parent": "bone3", "length": 11.93, "rotation": -174.59, "x": 17.29, "y": -8.21 },
  26. { "name": "bone22", "parent": "bone21", "length": 8.23, "rotation": 7.27, "x": 14.94, "y": -0.1 },
  27. { "name": "bone23", "parent": "bone22", "length": 9.47, "rotation": 5.26, "x": 10.36, "y": 0.05 },
  28. { "name": "bone24", "parent": "bone3", "length": 44.84, "rotation": 6.76, "x": 27.82, "y": 0.32 },
  29. { "name": "bone25", "parent": "bone24", "length": 9.8, "rotation": -0.66, "x": 13.8, "y": 14.09 },
  30. { "name": "bone26", "parent": "bone24", "length": 12.55, "rotation": -0.72, "x": 12.04, "y": -13.02 },
  31. { "name": "bone27", "parent": "bone24", "length": 4.07, "rotation": -1.69, "x": 15.64, "y": 3.74 },
  32. { "name": "bone28", "parent": "bone24", "length": 4.73, "rotation": -1.9, "x": 28.21, "y": 3.91 },
  33. { "name": "bone29", "parent": "bone24", "length": 11.88, "rotation": 49.77, "x": 61.98, "y": -11.52 },
  34. { "name": "bone30", "parent": "bone29", "length": 12.93, "rotation": 52.15, "x": 12.22, "y": 0.42 },
  35. { "name": "bone31", "parent": "bone30", "length": 12.77, "rotation": 23.23, "x": 12.93 },
  36. { "name": "bone32", "parent": "bone31", "length": 13.44, "rotation": 14.08, "x": 12.77 },
  37. { "name": "bone33", "parent": "bone32", "length": 13.58, "rotation": 7.04, "x": 13.44 },
  38. { "name": "bone34", "parent": "bone33", "length": 8.57, "rotation": 8.21, "x": 13.58 },
  39. { "name": "bone35", "parent": "bone24", "length": 12.49, "rotation": -171.22, "x": 61.34, "y": -22.66 },
  40. { "name": "bone36", "parent": "bone35", "length": 9.82, "rotation": -23.47, "x": 12.87, "y": -0.08 },
  41. { "name": "bone37", "parent": "bone36", "length": 11.15, "rotation": -20.19, "x": 10.45, "y": 0.13 },
  42. { "name": "bone38", "parent": "bone24", "length": 17.97, "rotation": -10.1, "x": 7.55, "y": -33.67 },
  43. { "name": "bone39", "parent": "bone24", "length": 15.93, "rotation": -96.33, "x": 61.21, "y": -44.45 },
  44. { "name": "bone40", "parent": "bone39", "length": 12.92, "rotation": -41.23, "x": 15.94, "y": -0.21 },
  45. { "name": "bone41", "parent": "bone40", "length": 15.02, "rotation": -32.43, "x": 13.23 },
  46. { "name": "bone42", "parent": "bone41", "length": 18.05, "rotation": -34.92, "x": 15.02 },
  47. { "name": "bone43", "parent": "bone42", "length": 18.59, "rotation": -27.08, "x": 18.05 },
  48. { "name": "bone44", "parent": "bone43", "length": 14.61, "rotation": 15.76, "x": 18.89, "y": 0.02 },
  49. { "name": "bone45", "parent": "bone44", "length": 11.64, "rotation": 37.22, "x": 14.79, "y": 0.12 },
  50. { "name": "bone46", "parent": "bone45", "length": 9.2, "rotation": 48.36, "x": 11.64 },
  51. { "name": "bone47", "parent": "bone46", "length": 12.24, "rotation": 55.84, "x": 9.37, "y": 0.13 },
  52. { "name": "bone48", "parent": "bone24", "length": 20.87, "rotation": -138.23, "x": 31.47, "y": -28.87 },
  53. { "name": "bone49", "parent": "bone24", "length": 12.48, "rotation": -2.45, "x": 31.55, "y": -39.98 },
  54. { "name": "bone50", "parent": "bone24", "length": 13.52, "rotation": -37.93, "x": 66.16, "y": -23.73 },
  55. { "name": "bone51", "parent": "bone24", "length": 14.4, "rotation": 12.62, "x": 71.42, "y": 17.4 },
  56. { "name": "bone52", "parent": "bone", "length": 13.77, "rotation": 85.68, "x": 81.94, "y": -8.22 },
  57. { "name": "bone53", "parent": "bone", "x": -62.84, "y": 9.39 },
  58. { "name": "bone54", "parent": "bone53", "length": 32.66, "rotation": 87.73, "x": -10.88, "y": -0.26 },
  59. { "name": "bone55", "parent": "bone53", "x": -17.35, "y": 17.35 },
  60. { "name": "bone56", "parent": "bone24", "length": 9.46, "rotation": 168.23, "x": 19.19, "y": 23.53 },
  61. { "name": "bone57", "parent": "bone56", "length": 9.82, "rotation": 20.91, "x": 10.39, "y": 0.14 },
  62. { "name": "bone58", "parent": "bone24", "length": 12, "rotation": 162.66, "x": 21.78, "y": -31.67 },
  63. { "name": "bone59", "parent": "bone58", "length": 10, "rotation": -7.97, "x": 14.55, "y": 0.26 },
  64. { "name": "bone60", "parent": "bone2", "length": 9.46, "rotation": -1.44, "x": -5.55, "y": 1.51 },
  65. { "name": "bone61", "parent": "bone", "length": 35.24, "rotation": 131.19, "x": -68.01, "y": 89.12 }
  66. ],
  67. "slots": [
  68. { "name": "erduo", "bone": "bone24", "attachment": "erduo" },
  69. { "name": "biaoqing_1", "bone": "bone61", "attachment": "biaoqing_1" },
  70. { "name": "zuoshou", "bone": "bone4", "attachment": "zuoshou" },
  71. { "name": "kuzi", "bone": "bone10", "attachment": "kuzi" },
  72. { "name": "youjiao", "bone": "bone14", "attachment": "youjiao" },
  73. { "name": "zuojiao", "bone": "bone11", "attachment": "zuojiao" },
  74. { "name": "chenyi", "bone": "bone2", "attachment": "chenyi" },
  75. { "name": "xingxing", "bone": "bone60", "attachment": "xingxing" },
  76. { "name": "youxiji", "bone": "bone17", "attachment": "youxiji" },
  77. { "name": "waitaoy", "bone": "bone21", "attachment": "waitaoy" },
  78. { "name": "waitaoz", "bone": "bone18", "attachment": "waitaoz" },
  79. { "name": "youshou", "bone": "bone7", "attachment": "youshou" },
  80. { "name": "toufa6", "bone": "bone56", "attachment": "toufa6" },
  81. { "name": "tou", "bone": "bone24", "attachment": "tou" },
  82. { "name": "youyan", "bone": "bone26", "attachment": "youyan" },
  83. { "name": "zuoyan", "bone": "bone25", "attachment": "zuoyan" },
  84. { "name": "biyan", "bone": "bone27", "attachment": "biyan" },
  85. { "name": "meimao", "bone": "bone28", "attachment": "meimao" },
  86. { "name": "yanjing", "bone": "bone24", "attachment": "yanjing" },
  87. { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
  88. { "name": "touga4", "bone": "bone24", "attachment": "touga4" },
  89. { "name": "toufa3", "bone": "bone24", "attachment": "toufa3" },
  90. { "name": "toufa2", "bone": "bone48", "attachment": "toufa2" },
  91. { "name": "toufa8", "bone": "bone58", "attachment": "toufa8" },
  92. { "name": "erji 3", "bone": "bone38", "attachment": "erji 3" },
  93. { "name": "erji2", "bone": "bone50", "attachment": "erji2" },
  94. { "name": "erji", "bone": "bone51", "attachment": "erji" },
  95. { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
  96. { "name": "xin3", "bone": "bone52" },
  97. { "name": "toufa7", "bone": "bone35", "attachment": "toufa7" },
  98. { "name": "diannao1", "bone": "bone53", "attachment": "diannao1" },
  99. { "name": "dou", "bone": "bone55", "attachment": "dou" },
  100. { "name": "dou2", "bone": "bone55", "attachment": "dou2" },
  101. { "name": "dou3", "bone": "bone55", "attachment": "dou3" },
  102. { "name": "pinmu", "bone": "bone54", "attachment": "pinmu" },
  103. { "name": "diannao_x", "bone": "bone53", "attachment": "diannao_x", "blend": "additive" }
  104. ],
  105. "skins": {
  106. "default": {
  107. "biaoqing_1": {
  108. "biaoqing_1": { "x": 35.11, "y": -5.19, "rotation": -131.19, "width": 87, "height": 83 }
  109. },
  110. "biyan": {
  111. "biyan": { "x": 2.33, "y": -3.26, "rotation": -91.55, "width": 48, "height": 8 }
  112. },
  113. "chenyi": {
  114. "chenyi": {
  115. "type": "mesh",
  116. "uvs": [ 0.46701, 1, 0.1716, 1, 0, 1, 0, 0.67901, 0, 0.61814, 0, 0.54207, 0, 0.4774, 0, 0, 0.20026, 0, 0.35568, 0, 0.18483, 0.54016, 0.39316, 0.43746, 0.40574, 0.53334, 0.18274, 0.6129, 0.41551, 0.60776, 0.18663, 0.47697, 0.18081, 0.67977 ],
  117. "triangles": [ 9, 12, 11, 15, 7, 8, 8, 9, 11, 15, 8, 11, 6, 7, 15, 9, 0, 12, 15, 11, 12, 10, 15, 12, 10, 6, 15, 5, 6, 10, 0, 14, 12, 13, 5, 10, 13, 10, 12, 13, 12, 14, 4, 5, 13, 16, 3, 4, 13, 16, 4, 1, 2, 3, 16, 1, 3, 16, 13, 14, 0, 16, 14, 1, 16, 0 ],
  118. "vertices": [ 2, 2, -7.68, -25.53, 0.9779, 3, -22.81, -26.51, 0.0221, 1, 2, -8.18, 0.46, 1, 1, 2, -8.47, 15.56, 1, 2, 2, 7.89, 15.88, 0.95914, 3, -9, 15.51, 0.04086, 2, 2, 11, 15.94, 0.88587, 3, -5.9, 15.7, 0.11413, 2, 2, 14.88, 16.01, 0.72471, 3, -2.03, 15.94, 0.27529, 2, 2, 18.17, 16.07, 0.54562, 3, 1.27, 16.14, 0.45438, 2, 2, 42.52, 16.54, 4.0E-5, 3, 25.57, 17.64, 0.99996, 1, 3, 26.65, 0.05, 1, 1, 3, 27.49, -13.6, 1, 2, 2, 15.29, -0.25, 0.99907, 3, -0.93, -0.29, 9.3E-4, 2, 2, 20.88, -18.48, 0.25104, 3, 5.42, -18.26, 0.74896, 2, 2, 16.01, -19.68, 0.45844, 3, 0.61, -19.67, 0.54156, 2, 2, 11.57, -0.14, 0.99888, 3, -4.64, -0.33, 0.00112, 2, 2, 12.23, -20.61, 0.61916, 3, -3.12, -20.76, 0.38084, 2, 2, 18.51, -0.35, 0.00403, 3, 2.3, -0.25, 0.99597, 2, 2, 8.16, -0.03, 0.9999, 3, -8.06, -0.37, 1.0E-4 ],
  119. "hull": 10,
  120. "edges": [ 2, 4, 14, 16, 0, 2, 16, 18, 22, 18, 18, 0, 10, 20, 24, 22, 20, 24, 8, 10, 26, 20, 8, 26, 0, 28, 28, 24, 26, 28, 10, 12, 12, 14, 16, 30, 30, 20, 12, 30, 30, 22, 4, 6, 6, 8, 2, 32, 32, 26, 6, 32 ],
  121. "width": 88,
  122. "height": 51
  123. }
  124. },
  125. "diannao1": {
  126. "diannao1": { "x": 3.93, "y": -2.88, "width": 57, "height": 27 }
  127. },
  128. "diannao_x": {
  129. "diannao_x": { "x": 4.43, "y": -2.11, "width": 57, "height": 27 }
  130. },
  131. "dou": {
  132. "dou": { "x": 4.78, "y": 0.27, "width": 18, "height": 16 }
  133. },
  134. "dou2": {
  135. "dou2": { "x": 15.28, "y": -4.23, "width": 9, "height": 9 }
  136. },
  137. "dou3": {
  138. "dou3": { "x": 23.78, "y": -7.23, "width": 10, "height": 11 }
  139. },
  140. "erduo": {
  141. "erduo": { "x": 18.19, "y": 23.94, "rotation": -93.23, "width": 19, "height": 20 }
  142. },
  143. "erji": {
  144. "erji": {
  145. "type": "mesh",
  146. "uvs": [ 1, 1, 0.4713, 1, 0, 1, 0, 0, 0.3319, 0, 1, 0 ],
  147. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  148. "vertices": [ 1, 51, -18.72, -12, 1, 1, 51, -14.39, 3.26, 1, 1, 51, -10.52, 16.86, 1, 1, 51, 22.18, 7.57, 1, 1, 51, 19.46, -2.01, 1, 1, 51, 13.99, -21.29, 1 ],
  149. "hull": 6,
  150. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  151. "width": 30,
  152. "height": 34
  153. }
  154. },
  155. "erji 3": {
  156. "erji 3": { "x": 14.26, "y": 1.84, "rotation": -83.13, "width": 27, "height": 44 }
  157. },
  158. "erji2": {
  159. "erji2": { "x": -3.24, "y": 0.3, "rotation": -55.3, "width": 52, "height": 45 }
  160. },
  161. "kuzi": {
  162. "kuzi": {
  163. "type": "mesh",
  164. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  165. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  166. "vertices": [ 15.3, 25.32, 14.5, -16.68, -11.49, -16.19, -10.7, 25.81 ],
  167. "hull": 4,
  168. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  169. "width": 42,
  170. "height": 26
  171. }
  172. },
  173. "meimao": {
  174. "meimao": { "x": 2.31, "y": -2.63, "rotation": -91.33, "width": 37, "height": 7 }
  175. },
  176. "pinmu": {
  177. "pinmu": {
  178. "type": "mesh",
  179. "uvs": [ 1, 0.21023, 0.86947, 1, 0, 0.65903, 0, 0 ],
  180. "triangles": [ 2, 3, 0, 1, 2, 0 ],
  181. "vertices": [ 30.48, -30.12, -17.11, -25.74, 1.67, 16.77, 41.18, 18.34 ],
  182. "hull": 4,
  183. "edges": [ 4, 6, 2, 4, 6, 0, 0, 2 ],
  184. "width": 48,
  185. "height": 60
  186. }
  187. },
  188. "tou": {
  189. "tou": {
  190. "type": "mesh",
  191. "uvs": [ 1, 0.72889, 0.76375, 1, 0.18576, 1, 0.10445, 0, 1, 0 ],
  192. "triangles": [ 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
  193. "vertices": [ 12.73, -41.36, -8.32, -19.82, -5.51, 29.81, 76.75, 32.17, 72.41, -44.73 ],
  194. "hull": 5,
  195. "edges": [ 6, 8, 6, 4, 0, 8, 2, 4, 0, 2 ],
  196. "width": 86,
  197. "height": 82
  198. }
  199. },
  200. "toufa1": {
  201. "toufa1": {
  202. "type": "mesh",
  203. "uvs": [ 0.99999, 0.31789, 1, 0.42804, 0.79298, 0.38945, 0.66887, 0.44932, 0.58243, 0.55604, 0.50722, 0.68811, 0.42336, 0.83536, 0.32961, 1, 0, 1, 0, 0.73684, 0, 0.53245, 1.0E-5, 0.33512, 0.18767, 0.13228, 0.39201, 0, 0.61069, 1.0E-5, 1, 0, 0.67867, 0.11584, 0.50973, 0.14089, 0.34982, 0.26167, 0.20479, 0.42939, 0.10601, 0.59704, 0.06041, 0.77037 ],
  204. "triangles": [ 21, 9, 20, 21, 20, 6, 8, 9, 21, 7, 21, 6, 8, 21, 7, 10, 11, 19, 20, 10, 19, 20, 19, 5, 9, 10, 20, 6, 20, 5, 11, 12, 19, 5, 19, 4, 18, 12, 13, 18, 13, 17, 19, 12, 18, 18, 17, 3, 4, 18, 3, 19, 18, 4, 17, 13, 14, 17, 14, 16, 3, 17, 16, 16, 14, 15, 0, 16, 15, 2, 16, 0, 2, 0, 1, 3, 16, 2 ],
  205. "vertices": [ 4, 29, -14.09, -0.52, 0.99984, 30, -16.89, 20.2, 7.0E-5, 31, -19.43, 30.32, 8.0E-5, 32, -23.86, 37.24, 1.0E-5, 1, 29, -18.33, 5.11, 1, 6, 29, -6.1, 11.23, 0.76457, 30, -2.7, 21.1, 0.10996, 31, -6.04, 25.55, 0.09117, 32, -12.03, 29.36, 0.02848, 33, -21.68, 32.26, 0.00446, 34, -30.29, 36.97, 0.00135, 6, 29, -1.96, 19.15, 0.31062, 30, 6.09, 22.69, 0.18864, 31, 2.66, 23.55, 0.28813, 32, -4.08, 25.3, 0.14864, 33, -14.28, 27.26, 0.04199, 34, -23.69, 30.95, 0.02199, 6, 29, -1.58, 27.98, 0.08591, 30, 13.3, 27.81, 0.08281, 31, 11.31, 25.41, 0.2768, 32, 4.76, 25, 0.29294, 33, -5.55, 25.88, 0.15277, 34, -15.24, 28.35, 0.10877, 6, 29, -2.76, 37.67, 0.0151, 30, 20.23, 34.69, 0.01786, 31, 20.39, 29, 0.12824, 32, 14.44, 26.28, 0.2421, 33, 4.22, 25.96, 0.26601, 34, -5.56, 27.03, 0.33068, 6, 29, -4.08, 48.48, 5.3E-4, 30, 27.95, 42.36, 0.00105, 31, 30.51, 33, 0.03466, 32, 25.24, 27.7, 0.09156, 33, 15.1, 26.04, 0.18882, 34, 5.23, 25.56, 0.68339, 4, 31, 41.83, 37.48, 0.00491, 32, 37.31, 29.28, 0.0195, 33, 27.27, 26.14, 0.05953, 34, 17.29, 23.91, 0.91605, 1, 34, 25.41, 4.09, 1, 1, 34, 9.83, -2.3, 1, 3, 32, 26.63, -5.94, 0.00271, 33, 12.36, -7.51, 0.81066, 34, -2.28, -7.26, 0.18663, 3, 31, 32.2, -9.18, 2.0E-5, 32, 16.62, -13.63, 0.28198, 33, 1.48, -13.92, 0.718, 3, 31, 14.58, -11.78, 0.51595, 32, -1.11, -11.87, 0.44326, 33, -15.9, -9.99, 0.04079, 2, 30, 15.94, -9.77, 0.25149, 31, -1.09, -10.17, 0.74851, 3, 29, 18.36, -1.55, 0.17478, 30, 2.22, -6.06, 0.82486, 31, -12.23, -1.34, 3.6E-4, 1, 29, -1.85, -16.77, 1, 4, 29, 10.37, 1.72, 0.46008, 30, -0.11, 2.25, 0.53474, 31, -11.09, 7.21, 0.00483, 32, -21.39, 12.8, 3.5E-4, 4, 29, 18.18, 9.6, 0.00236, 30, 10.91, 0.93, 0.98337, 31, -1.49, 1.65, 0.01378, 32, -13.43, 5.07, 4.9E-4, 5, 29, 21.83, 22.03, 7.3E-4, 30, 22.97, 5.68, 7.9E-4, 31, 11.46, 1.26, 0.91814, 32, -0.96, 1.54, 0.08008, 34, -26.93, 7.21, 2.6E-4, 6, 29, 22.9, 36.28, 2.0E-5, 30, 34.87, 13.57, 0, 31, 25.52, 3.82, 7.5E-4, 32, 13.29, 0.6, 0.54131, 33, -0.08, 0.62, 0.45693, 34, -13.43, 2.56, 9.8E-4, 4, 31, 37.21, 8.24, 1.4E-4, 32, 25.71, 2.05, 3.9E-4, 33, 12.43, 0.53, 0.92341, 34, -1.06, 0.69, 0.07606, 3, 31, 46.42, 15.09, 7.0E-5, 32, 36.31, 6.45, 2.3E-4, 34, 10.32, 2.15, 0.9997 ],
  206. "hull": 16,
  207. "edges": [ 14, 16, 2, 0, 0, 30, 0, 32, 32, 34, 34, 36, 36, 38, 38, 40, 26, 28, 28, 30, 28, 32, 2, 4, 4, 6, 32, 4, 26, 34, 34, 6, 22, 24, 24, 26, 24, 36, 6, 8, 36, 8, 22, 38, 8, 10, 38, 10, 20, 22, 20, 40, 10, 12, 12, 14, 40, 12, 16, 18, 18, 20, 16, 42, 42, 40, 18, 42, 42, 14 ],
  208. "width": 65,
  209. "height": 64
  210. }
  211. },
  212. "toufa2": {
  213. "toufa2": {
  214. "type": "mesh",
  215. "uvs": [ 0.51805, 0.39199, 1, 0.65903, 1, 1, 0.42472, 1, 0.13036, 0.62532 ],
  216. "triangles": [ 3, 4, 0, 3, 0, 1, 3, 1, 2 ],
  217. "vertices": [ -7.69, 8.71, 15.8, 11.81, 28.82, -1.21, 12.96, -17.08, -9.47, -10.89 ],
  218. "hull": 5,
  219. "edges": [ 4, 2, 2, 0, 0, 8, 4, 6, 8, 6 ],
  220. "width": 39,
  221. "height": 54
  222. }
  223. },
  224. "toufa3": {
  225. "toufa3": {
  226. "type": "mesh",
  227. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  228. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  229. "vertices": [ 45.97, -16.19, 47.5, 10.76, 62.47, 9.92, 60.95, -17.04 ],
  230. "hull": 4,
  231. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  232. "width": 27,
  233. "height": 15
  234. }
  235. },
  236. "toufa5": {
  237. "toufa5": {
  238. "type": "mesh",
  239. "uvs": [ 0.82231, 0.05777, 0.99999, 0.19042, 1, 0.36824, 0.99999, 0.49486, 0.85363, 0.63095, 0.71139, 0.67577, 0.56341, 0.7273, 0.49056, 0.76382, 0.42211, 0.79812, 0.40601, 0.82024, 0.38069, 0.85313, 0.42115, 0.86343, 0.46686, 0.82854, 0.55357, 0.79269, 0.73531, 0.85612, 0.74575, 0.94142, 0.59577, 0.99999, 0.38778, 1, 0.25159, 1, 0.07063, 0.93289, 0, 0.86295, 0, 0.77595, 0.06715, 0.66677, 0.25273, 0.61286, 0.36368, 0.55895, 0.42615, 0.52657, 0.48475, 0.49618, 0.46721, 0.45698, 0.45134, 0.42151, 0.41791, 0.38524, 0.33859, 0.33924, 0, 0.33242, 0, 0.13795, 0, 0, 0.69703, 0, 0.55087, 0.1533, 0.76855, 0.2863, 0.80491, 0.38359, 0.71485, 0.49718, 0.40123, 0.66506, 0.23071, 0.78789, 0.23071, 0.909, 0.45881, 0.956, 0.63737, 0.92391, 0.61699, 0.81689, 0.65349, 0.19732, 0.6228, 0.54646, 0.5213, 0.60079, 0.31284, 0.72873, 0.23071, 0.8493, 0.35642, 0.94456 ],
  240. "triangles": [ 44, 13, 14, 43, 44, 14, 13, 44, 43, 43, 14, 15, 42, 11, 12, 50, 11, 42, 43, 42, 12, 43, 12, 13, 16, 42, 43, 16, 43, 15, 17, 50, 42, 17, 42, 16, 50, 41, 10, 50, 10, 11, 18, 41, 50, 19, 41, 18, 18, 50, 17, 49, 21, 40, 49, 40, 9, 10, 49, 9, 20, 21, 49, 41, 49, 10, 19, 20, 49, 41, 19, 49, 48, 23, 39, 22, 23, 48, 7, 39, 6, 48, 39, 7, 40, 22, 48, 21, 22, 40, 8, 48, 7, 40, 48, 8, 9, 40, 8, 25, 26, 46, 47, 25, 46, 24, 25, 47, 39, 24, 47, 23, 24, 39, 5, 46, 4, 47, 46, 5, 6, 47, 5, 39, 47, 6, 3, 37, 2, 38, 26, 27, 37, 38, 27, 38, 37, 3, 46, 26, 38, 4, 38, 3, 46, 38, 4, 36, 1, 2, 37, 36, 2, 28, 45, 36, 27, 28, 36, 27, 36, 37, 45, 35, 34, 45, 34, 0, 36, 45, 0, 36, 0, 1, 29, 35, 45, 28, 29, 45, 35, 32, 33, 34, 35, 33, 30, 31, 32, 35, 30, 32, 29, 30, 35 ],
  241. "vertices": [ 3, 39, 29.27, 9.9, 0.09559, 40, 3.35, 16.39, 0.90387, 41, -17.12, 8.54, 5.4E-4, 2, 40, 19.16, 12.91, 0.55599, 41, -1.92, 14.09, 0.44401, 2, 41, 16.42, 12.25, 0.68146, 42, -5.87, 10.85, 0.31854, 3, 41, 28.31, 6.97, 0.01224, 42, 6.91, 13.33, 0.98349, 43, -15.98, 6.79, 0.00427, 3, 42, 22.51, 11.65, 0.40901, 43, -1.33, 12.41, 0.57972, 44, -16.1, 17.41, 0.01127, 3, 42, 29.38, 6.73, 0.04252, 43, 7.03, 11.15, 0.82894, 44, -8.39, 13.94, 0.12854, 3, 43, 16.06, 10.23, 0.31177, 44, 0.05, 10.59, 0.68391, 45, -5.4, 17.26, 0.00432, 4, 43, 21.25, 10.63, 0.02369, 44, 5.16, 9.57, 0.91997, 45, -1.96, 13.35, 0.0561, 47, 10.91, 17.59, 2.3E-4, 4, 44, 9.95, 8.6, 0.71108, 45, 1.28, 9.68, 0.27151, 46, 0.35, 14.18, 0.00477, 47, 6.55, 15.35, 0.01264, 4, 44, 12.29, 9.15, 0.46873, 45, 3.47, 8.71, 0.46189, 46, 1.08, 11.89, 0.02528, 47, 5.08, 13.47, 0.04409, 4, 44, 15.79, 9.92, 0.1198, 45, 6.72, 7.2, 0.54687, 46, 2.11, 8.46, 0.13259, 47, 2.82, 10.68, 0.20073, 4, 44, 15.57, 12.19, 0.02429, 45, 7.92, 9.14, 0.25666, 46, 4.36, 8.85, 0.1608, 47, 4.4, 9.05, 0.55825, 4, 44, 11.34, 12.17, 9.1E-4, 45, 4.54, 11.68, 0.08484, 46, 4.01, 13.07, 0.04494, 47, 7.7, 11.7, 0.86931, 3, 45, 1.21, 16.28, 0.03658, 46, 5.23, 18.61, 0.0062, 47, 12.97, 13.8, 0.95722, 2, 45, 8.34, 24.86, 0.00127, 47, 19.54, 4.79, 0.99873, 1, 47, 17.28, -3.63, 1, 1, 47, 8.28, -6.93, 1, 2, 46, 11.49, -3.22, 0.43188, 47, -1.59, -3.64, 0.56812, 3, 45, 21.19, -0.34, 0.01634, 46, 6.09, -7.36, 0.97687, 47, -8.05, -1.49, 0.00679, 2, 45, 13.69, -8.86, 0.77404, 46, -5.26, -7.42, 0.22596, 3, 44, 26.99, -5.5, 0.03009, 45, 6.32, -11.86, 0.96536, 46, -12.4, -3.9, 0.00455, 2, 44, 19.55, -10.33, 0.40237, 45, -2.53, -11.2, 0.59763, 2, 44, 8.38, -13.58, 0.96159, 45, -13.39, -7.03, 0.03841, 2, 43, 20.04, -8.79, 0.21782, 44, -1.28, -8.79, 0.78218, 6, 39, 9.13, -42.39, 8.0E-5, 40, 22.67, -36.21, 1.0E-4, 41, 27.39, -25.49, 1.4E-4, 42, 24.73, -13.83, 0.02359, 43, 12.25, -9.27, 0.89499, 44, -8.92, -7.13, 0.0811, 6, 39, 12.07, -38.92, 0.00188, 40, 22.59, -31.66, 0.00193, 41, 24.89, -21.7, 0.00485, 42, 20.51, -12.14, 0.13797, 43, 7.72, -9.69, 0.8496, 44, -13.39, -6.31, 0.00377, 5, 39, 14.83, -35.67, 0.01217, 40, 22.53, -27.4, 0.01181, 41, 22.54, -18.13, 0.03283, 42, 16.55, -10.57, 0.43274, 43, 3.47, -10.09, 0.51046, 5, 39, 13.74, -31.72, 0.0451, 40, 19.1, -25.15, 0.04158, 41, 18.45, -18.07, 0.11059, 42, 13.15, -12.86, 0.60124, 43, 1.5, -13.67, 0.20149, 5, 39, 12.75, -28.15, 0.10106, 40, 16.01, -23.12, 0.08566, 41, 14.74, -18.02, 0.19346, 42, 10.08, -14.93, 0.53797, 43, -0.29, -16.92, 0.08185, 5, 39, 10.88, -24.55, 0.21705, 40, 12.23, -21.64, 0.14936, 41, 10.76, -18.8, 0.24177, 42, 7.26, -17.85, 0.36909, 43, -1.47, -20.8, 0.02273, 5, 39, 6.67, -20.08, 0.52896, 40, 6.11, -21.05, 0.17345, 41, 5.28, -21.58, 0.15309, 42, 4.37, -23.27, 0.14333, 43, -1.59, -26.94, 0.00116, 4, 39, -10.28, -20.29, 0.94976, 40, -6.49, -32.38, 0.02325, 41, 0.73, -37.9, 0.01352, 42, 9.98, -39.26, 0.01347, 2, 39, -11.35, -0.49, 0.99996, 42, -8.46, -46.58, 4.0E-5, 1, 39, -12.11, 13.56, 1, 2, 39, 22.69, 15.44, 0.33618, 40, -5.24, 16.22, 0.66382, 4, 39, 16.24, -0.56, 0.34796, 40, 0.45, -0.07, 0.65198, 41, -10.75, -6.91, 4.0E-5, 42, -17.18, -20.41, 2.0E-5, 1, 41, 4.95, 0.58, 1, 2, 41, 15.03, 0.08, 0.50489, 42, -0.04, 0.07, 0.49511, 1, 42, 12.39, 0.16, 1, 2, 43, 17.97, 0.11, 1, 45, -12.33, 9.64, 0, 2, 44, 14.29, 0, 0.68651, 45, -0.47, 0.21, 0.31349, 2, 45, 11.85, -0.7, 0.53287, 46, -0.38, -0.62, 0.46713, 1, 47, 3.2, -0.51, 1, 1, 47, 12.71, -0.22, 1, 3, 45, 3.91, 19.26, 0.02326, 46, 9.25, 18.57, 0.00175, 47, 15.19, 10.46, 0.975, 1, 40, 7.26, 0.3, 1, 5, 39, 22, -40.41, 3.9E-4, 40, 31.05, -26.24, 4.0E-4, 41, 29.11, -12.59, 9.0E-4, 42, 18.76, -2.26, 0.1765, 43, 1.67, -1.68, 0.82183, 4, 39, 17.23, -46.22, 0, 40, 31.29, -33.75, 1.0E-5, 42, 25.79, -4.93, 0.00256, 43, 9.14, -0.86, 0.99743, 1, 44, 6.99, 0.16, 1, 1, 45, 5.78, -0.25, 1, 3, 45, 15.93, 5.3, 0.00104, 46, 6.81, 0.31, 0.99418, 47, -1.28, 2.22, 0.00478 ],
  242. "hull": 35,
  243. "edges": [ 64, 66, 64, 70, 72, 74, 74, 76, 84, 86, 86, 88, 66, 68, 68, 0, 0, 2, 62, 64, 62, 60, 60, 58, 46, 44, 44, 42, 40, 42, 40, 38, 38, 36, 2, 4, 4, 6, 6, 8, 26, 28, 28, 30, 30, 32, 60, 70, 70, 68, 70, 90, 90, 72, 58, 90, 90, 0, 56, 58, 56, 72, 72, 2, 52, 54, 54, 56, 54, 74, 74, 4, 52, 76, 76, 6, 50, 52, 76, 92, 50, 92, 92, 8, 46, 48, 48, 50, 78, 94, 94, 92, 48, 94, 8, 10, 10, 12, 94, 10, 46, 78, 78, 12, 78, 96, 96, 80, 44, 96, 12, 14, 14, 16, 96, 14, 42, 80, 80, 16, 80, 98, 98, 82, 40, 98, 16, 18, 18, 20, 98, 18, 38, 82, 82, 20, 82, 100, 100, 84, 36, 100, 20, 22, 100, 22, 32, 34, 34, 36, 34, 84, 22, 24, 24, 26, 84, 24, 32, 86, 86, 26 ],
  244. "width": 50,
  245. "height": 102
  246. }
  247. },
  248. "toufa6": {
  249. "toufa6": {
  250. "type": "mesh",
  251. "uvs": [ 0.85933, 0.36077, 0.81845, 0.4656, 0.77231, 0.58392, 0.74316, 0.65868, 0.71099, 0.74119, 0.61007, 1, 0.31553, 1, 0, 1, 0, 0.73645, 0, 0.67258, 0, 0.58839, 0, 0.46646, 1.0E-5, 0.35614, 0, 0, 0.36871, 0, 1, 0, 0.25008, 0.58259, 0.27425, 0.4639, 0.27316, 0.72979, 0.26347, 0.66799, 0.29579, 0.34627 ],
  252. "triangles": [ 9, 16, 19, 4, 18, 19, 8, 9, 19, 8, 19, 18, 3, 4, 19, 7, 8, 18, 5, 6, 18, 7, 18, 6, 4, 5, 18, 20, 13, 14, 12, 13, 20, 0, 14, 15, 20, 14, 0, 17, 12, 20, 1, 20, 0, 17, 20, 1, 11, 12, 17, 16, 11, 17, 2, 17, 1, 16, 17, 2, 10, 11, 16, 3, 16, 2, 19, 16, 3, 9, 10, 16 ],
  253. "vertices": [ 2, 56, 0.39, 12.24, 0.9728, 57, -5.03, 14.88, 0.0272, 2, 56, 3.73, 11.84, 0.89752, 57, -2.04, 13.3, 0.10248, 2, 56, 7.51, 11.38, 0.70552, 57, 1.32, 11.53, 0.29448, 2, 56, 9.9, 11.09, 0.52387, 57, 3.45, 10.4, 0.47613, 2, 56, 12.53, 10.77, 0.31147, 57, 5.79, 9.16, 0.68853, 2, 56, 20.8, 9.76, 0.0072, 57, 13.15, 5.27, 0.9928, 1, 57, 11.76, -1.06, 1, 1, 57, 10.28, -7.84, 1, 2, 56, 14.71, -4.72, 0.06201, 57, 2.3, -6.08, 0.93799, 2, 56, 12.75, -5.02, 0.22279, 57, 0.36, -5.66, 0.77721, 2, 56, 10.17, -5.41, 0.61705, 57, -2.19, -5.1, 0.38295, 2, 56, 6.43, -5.97, 0.97215, 57, -5.88, -4.29, 0.02785, 1, 56, 3.05, -6.47, 1, 1, 56, -7.87, -8.11, 1, 1, 56, -9.07, -0.09, 1, 1, 56, -11.13, 13.64, 1, 1, 56, 9.17, 0.01, 1, 1, 56, 5.46, -0.01, 1, 1, 57, 3.38, -0.17, 1, 1, 57, 1.47, 0.03, 1, 1, 56, 1.78, -0.08, 1 ],
  254. "hull": 16,
  255. "edges": [ 26, 28, 28, 30, 12, 14, 10, 12, 20, 32, 32, 4, 20, 22, 34, 32, 22, 34, 4, 2, 34, 2, 14, 16, 12, 36, 16, 36, 8, 10, 36, 8, 16, 18, 18, 20, 32, 38, 38, 36, 18, 38, 4, 6, 6, 8, 38, 6, 22, 24, 24, 26, 28, 40, 40, 34, 24, 40, 2, 0, 0, 30, 40, 0 ],
  256. "width": 22,
  257. "height": 31
  258. }
  259. },
  260. "toufa7": {
  261. "toufa7": {
  262. "type": "mesh",
  263. "uvs": [ 0.59685, 0.23625, 0.596, 0.33144, 0.59531, 0.40874, 0.59484, 0.46057, 0.59435, 0.51569, 0.59344, 0.61683, 0.5922, 0.75609, 0.11606, 0.76843, 0, 0.77144, 0, 0.60692, 0, 0.51577, 0, 0.46796, 0, 0.42265, 0, 0.32754, 0, 0.25026, 0, 0, 0.28376, 0, 0.59896, 0, 0.35784, 0.33744, 0.30845, 0.52568, 0.33619, 0.41995, 0.33624, 0.23905, 0.24575, 0.6048, 0.32398, 0.46651 ],
  264. "triangles": [ 8, 9, 7, 7, 22, 6, 7, 9, 22, 6, 22, 5, 22, 19, 5, 5, 19, 4, 9, 10, 22, 22, 10, 19, 19, 23, 4, 23, 19, 11, 19, 10, 11, 4, 23, 3, 11, 12, 23, 23, 20, 3, 23, 12, 20, 3, 20, 2, 12, 13, 20, 20, 18, 2, 2, 18, 1, 20, 13, 18, 13, 21, 18, 1, 18, 0, 0, 18, 21, 13, 14, 21, 14, 16, 21, 14, 15, 16, 0, 21, 17, 17, 21, 16 ],
  265. "vertices": [ 2, 35, 9.23, 10.17, 0.79789, 36, -7.43, 7.95, 0.20211, 3, 35, 14.25, 9.06, 0.36954, 36, -2.38, 8.93, 0.6198, 37, -15.09, 3.83, 0.01066, 3, 35, 18.33, 8.17, 0.07855, 36, 1.71, 9.74, 0.84083, 37, -11.52, 6, 0.08062, 3, 35, 21.06, 7.57, 0.01195, 36, 4.46, 10.28, 0.79744, 37, -9.13, 7.45, 0.19061, 2, 36, 7.38, 10.85, 0.62942, 37, -6.58, 9, 0.37058, 2, 36, 12.74, 11.9, 0.25611, 37, -1.91, 11.84, 0.74389, 2, 36, 20.12, 13.35, 0.04377, 37, 4.51, 15.74, 0.95623, 1, 37, 14.82, 0.28, 1, 2, 36, 25.52, -9.13, 1.1E-4, 37, 17.34, -3.48, 0.99989, 3, 35, 23.96, -16.77, 0.05012, 36, 16.82, -10.89, 0.16389, 37, 9.78, -8.15, 0.78598, 3, 35, 19.15, -15.74, 0.19331, 36, 11.99, -11.87, 0.38378, 37, 5.59, -10.73, 0.42291, 3, 35, 16.62, -15.21, 0.32013, 36, 9.46, -12.38, 0.43626, 37, 3.39, -12.08, 0.24361, 3, 35, 14.23, -14.7, 0.46798, 36, 7.06, -12.87, 0.40989, 37, 1.3, -13.37, 0.12213, 3, 35, 9.2, -13.63, 0.78144, 36, 2.03, -13.89, 0.20556, 37, -3.07, -16.06, 0.013, 3, 35, 5.12, -12.76, 0.93584, 36, -2.06, -14.72, 0.06413, 37, -6.62, -18.25, 4.0E-5, 1, 35, -8.09, -9.95, 1, 1, 35, -5.79, 0.88, 1, 1, 35, -3.23, 12.9, 1, 2, 35, 12.63, -0.09, 0.80722, 36, -0.22, -0.1, 0.19278, 2, 36, 10.13, 0.03, 0.54513, 37, -0.27, -0.21, 0.45487, 2, 35, 16.81, -1.84, 0.0016, 36, 4.32, -0.05, 0.9984, 2, 35, 7.26, 0.19, 0.99973, 36, -5.26, -1.98, 2.7E-4, 3, 35, 25.84, -7.37, 2.0E-4, 36, 14.8, -1.52, 0.00159, 37, 4.65, -0.05, 0.99821, 2, 35, 19.18, -2.83, 3.5E-4, 36, 6.87, -0.01, 0.99965 ],
  266. "hull": 18,
  267. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 20, 38, 38, 8, 16, 18, 18, 20, 14, 44, 44, 38, 18, 44, 8, 10, 10, 12, 44, 10, 20, 22, 22, 24, 38, 46, 46, 40, 22, 46, 4, 6, 6, 8, 46, 6 ],
  268. "width": 39,
  269. "height": 54
  270. }
  271. },
  272. "toufa8": {
  273. "toufa8": {
  274. "type": "mesh",
  275. "uvs": [ 0.63224, 0.90107, 0.64572, 0.84977, 0.65555, 0.81238, 0.67141, 0.75209, 0.70565, 0.62186, 0.82082, 0.62186, 1, 0.62186, 0.93014, 0.77748, 0.90948, 0.8235, 0.88794, 0.87148, 0.8633, 0.92637, 0.83025, 1, 0.70956, 1, 0.60623, 1, 0.77268, 0.8191, 0.75777, 0.86183, 0.7402, 0.9122, 0.78514, 0.76807 ],
  276. "triangles": [ 15, 2, 14, 1, 2, 15, 15, 14, 9, 16, 1, 15, 0, 1, 16, 10, 15, 9, 16, 15, 10, 12, 0, 16, 13, 0, 12, 11, 16, 10, 12, 16, 11, 17, 4, 5, 3, 4, 17, 7, 5, 6, 17, 5, 7, 14, 3, 17, 2, 3, 14, 8, 17, 7, 14, 17, 8, 9, 14, 8 ],
  277. "vertices": [ 2, 58, 22.43, -10.21, 0.04233, 59, 9.25, -9.28, 0.95767, 2, 58, 17.96, -10.13, 0.20308, 59, 4.82, -9.82, 0.79692, 2, 58, 14.71, -10.08, 0.43256, 59, 1.59, -10.22, 0.56744, 2, 58, 9.47, -9.99, 0.82614, 59, -3.61, -10.86, 0.17386, 1, 58, -1.86, -9.8, 1, 1, 58, -4.27, -0.19, 1, 1, 58, -8.03, 14.75, 1, 2, 58, 6.11, 12.11, 0.89359, 59, -10, 10.56, 0.10641, 2, 58, 10.3, 11.33, 0.68969, 59, -5.75, 10.37, 0.31031, 2, 58, 14.66, 10.51, 0.35319, 59, -1.32, 10.17, 0.64681, 2, 58, 19.64, 9.58, 0.06465, 59, 3.75, 9.94, 0.93535, 1, 59, 10.55, 9.62, 1, 1, 59, 14.45, 0.01, 1, 1, 59, 17.79, -8.23, 1, 2, 58, 12.8, -0.17, 0.73619, 59, -1.67, -0.67, 0.26381, 2, 58, 16.6, -0.54, 0.01033, 59, 2.14, -0.51, 0.98967, 2, 58, 21.07, -0.98, 8.2E-4, 59, 6.63, -0.32, 0.99918, 1, 58, 8.39, -0.18, 1 ],
  278. "hull": 14,
  279. "edges": [ 8, 10, 10, 12, 22, 24, 24, 26, 4, 28, 28, 16, 4, 2, 30, 28, 2, 30, 16, 18, 30, 18, 2, 0, 0, 26, 24, 32, 32, 30, 0, 32, 18, 20, 20, 22, 32, 20, 4, 6, 6, 8, 10, 34, 34, 28, 6, 34, 12, 14, 14, 16, 34, 14 ],
  280. "width": 86,
  281. "height": 84
  282. }
  283. },
  284. "touga4": {
  285. "touga4": {
  286. "type": "mesh",
  287. "uvs": [ 1, 0.24745, 1, 0.66111, 0.71379, 0.66807, 0.65267, 0.40388, 0, 0.38128, 0, 0.1953, 0.29956, 0, 0.77321, 0 ],
  288. "triangles": [ 4, 5, 6, 3, 6, 7, 3, 7, 0, 4, 6, 3, 3, 0, 1, 2, 3, 1 ],
  289. "vertices": [ 56.31, -49.83, 21.61, -47.87, 22.42, -23.26, 44.87, -19.26, 49.94, 36.67, 65.53, 35.79, 80.46, 9.14, 78.16, -31.53 ],
  290. "hull": 8,
  291. "edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 14, 0, 12, 14, 8, 10, 12, 10 ],
  292. "width": 86,
  293. "height": 84
  294. }
  295. },
  296. "waitaoy": {
  297. "waitaoy": {
  298. "type": "mesh",
  299. "uvs": [ 0.79442, 0.37775, 0.8228, 0.4445, 0.85076, 0.51029, 0.88037, 0.57996, 0.90907, 0.64748, 0.94564, 0.73351, 0.97594, 0.80479, 1, 0.86141, 1, 1, 0.58066, 1, 0, 1, 0, 0.95122, 0, 0.85277, 0, 0.7785, 0, 0.7025, 0, 0.63341, 0, 0.56259, 0, 0.48314, 0, 0.42268, 0, 0, 0.28046, 0, 0.63386, 0, 0.28046, 0.46586, 0.36406, 0.68177, 0.28046, 0.40886, 0.3127, 0.54912, 0.33819, 0.61496, 0.45975, 0.82236, 0.41053, 0.75004, 0.52293, 0.91518 ],
  300. "triangles": [ 9, 7, 8, 10, 29, 9, 9, 29, 7, 10, 11, 29, 11, 27, 29, 11, 12, 27, 29, 6, 7, 29, 27, 6, 12, 28, 27, 12, 13, 28, 27, 5, 6, 27, 28, 5, 13, 23, 28, 13, 14, 23, 28, 4, 5, 28, 23, 4, 14, 26, 23, 14, 15, 26, 23, 3, 4, 23, 26, 3, 15, 25, 26, 15, 16, 25, 26, 2, 3, 26, 25, 2, 16, 22, 25, 16, 17, 22, 25, 1, 2, 25, 22, 1, 17, 18, 22, 22, 0, 1, 18, 24, 22, 22, 24, 0, 24, 19, 20, 24, 18, 19, 24, 21, 0, 24, 20, 21 ],
  301. "vertices": [ 3, 21, 11.12, 10.23, 0.65952, 22, -2.48, 10.73, 0.33358, 23, -11.81, 11.81, 0.0069, 3, 21, 14.07, 10.7, 0.42652, 22, 0.51, 10.82, 0.53321, 23, -8.82, 11.63, 0.04027, 3, 21, 16.98, 11.17, 0.22742, 22, 3.45, 10.92, 0.64769, 23, -5.88, 11.45, 0.12489, 3, 21, 20.07, 11.66, 0.09301, 22, 6.57, 11.01, 0.61197, 23, -2.76, 11.26, 0.29502, 3, 21, 23.05, 12.13, 0.02909, 22, 9.6, 11.11, 0.45119, 23, 0.26, 11.08, 0.51973, 3, 21, 26.86, 12.74, 0.00269, 22, 13.45, 11.23, 0.21467, 23, 4.1, 10.84, 0.78264, 3, 21, 30.02, 13.24, 0, 22, 16.64, 11.32, 0.08579, 23, 7.29, 10.65, 0.9142, 2, 22, 19.18, 11.4, 0.03431, 23, 9.82, 10.49, 0.96569, 1, 23, 15.73, 8.97, 1, 1, 23, 13.64, 0.85, 1, 1, 23, 10.75, -10.4, 1, 2, 22, 19.9, -8.97, 1.6E-4, 23, 8.67, -9.86, 0.99984, 2, 22, 15.62, -8.28, 0.03607, 23, 4.48, -8.78, 0.96393, 2, 22, 12.39, -7.76, 0.18143, 23, 1.31, -7.97, 0.81857, 2, 22, 9.09, -7.23, 0.51595, 23, -1.93, -7.14, 0.48405, 2, 22, 6.09, -6.74, 0.83293, 23, -4.87, -6.38, 0.16707, 3, 21, 18.72, -5.92, 0.01354, 22, 3.02, -6.25, 0.96536, 23, -7.89, -5.6, 0.0211, 2, 21, 15.23, -5.8, 0.21682, 22, -0.44, -5.69, 0.78318, 2, 21, 12.57, -5.71, 0.57721, 22, -3.06, -5.27, 0.42279, 1, 21, -6.02, -5.1, 1, 1, 21, -5.83, 0.51, 1, 1, 21, -5.6, 7.57, 1, 2, 21, 14.65, -0.17, 0.04446, 22, -0.29, -0.03, 0.95554, 2, 22, 9.35, 0.1, 0.45628, 23, -1, 0.14, 0.54372, 2, 21, 12.15, -0.09, 0.95861, 22, -2.77, 0.37, 0.04139, 2, 22, 3.43, 0.02, 0.99999, 23, -6.91, 0.6, 1.0E-5, 3, 21, 21.25, 0.77, 6.0E-5, 22, 6.37, 0.06, 0.99972, 23, -3.97, 0.37, 2.3E-4, 2, 22, 15.76, 1.01, 0.00114, 23, 5.47, 0.46, 0.99886, 2, 22, 12.47, 0.54, 0.00385, 23, 2.14, 0.29, 0.99615, 2, 22, 20, 1.61, 4.0E-5, 23, 9.74, 0.66, 0.99996 ],
  302. "hull": 22,
  303. "edges": [ 38, 40, 16, 18, 18, 20, 40, 42, 16, 14, 34, 44, 44, 2, 34, 36, 36, 38, 40, 48, 48, 44, 36, 48, 2, 0, 0, 42, 48, 0, 32, 34, 44, 50, 32, 50, 2, 4, 50, 4, 28, 46, 46, 8, 28, 30, 30, 32, 46, 52, 52, 50, 30, 52, 4, 6, 6, 8, 52, 6, 24, 54, 12, 14, 54, 12, 24, 26, 26, 28, 46, 56, 56, 54, 26, 56, 8, 10, 10, 12, 56, 10, 20, 22, 22, 24, 18, 58, 58, 54, 22, 58, 58, 14 ],
  304. "width": 20,
  305. "height": 44
  306. }
  307. },
  308. "waitaoz": {
  309. "waitaoz": {
  310. "type": "mesh",
  311. "uvs": [ 0.8654, 0.36364, 0.85586, 0.41702, 0.84586, 0.47292, 0.82969, 0.56336, 0.80568, 0.69766, 0.79355, 0.76548, 0.77594, 0.86394, 0.75161, 1, 0.38055, 1, 0, 1, 0, 0.83902, 0, 0.74004, 0.04202, 0.67388, 0.11832, 0.55374, 0.17747, 0.46059, 0.21179, 0.40655, 0.24479, 0.35458, 0.46996, 0, 0.64432, 0, 0.93043, 0, 0.56385, 0.41307, 0.49232, 0.69232, 0.57354, 0.36333, 0.55144, 0.46152, 0.52512, 0.56426, 0.47102, 0.75096, 0.43246, 0.85711 ],
  312. "triangles": [ 8, 26, 7, 7, 26, 6, 26, 8, 10, 8, 9, 10, 26, 25, 6, 6, 25, 5, 25, 26, 11, 26, 10, 11, 25, 21, 5, 5, 21, 4, 11, 12, 25, 25, 12, 21, 21, 24, 4, 4, 24, 3, 12, 13, 21, 21, 13, 24, 13, 14, 24, 24, 23, 3, 24, 14, 23, 3, 23, 2, 23, 20, 2, 14, 15, 23, 2, 20, 1, 23, 15, 20, 20, 22, 1, 1, 22, 0, 15, 16, 20, 20, 16, 22, 22, 18, 0, 0, 18, 19, 16, 17, 22, 22, 17, 18 ],
  313. "vertices": [ 2, 18, 8.98, 4.91, 0.90445, 19, -3.47, 4.97, 0.09555, 2, 18, 11.28, 5.03, 0.63979, 19, -1.17, 5.06, 0.36021, 2, 18, 13.69, 5.17, 0.26317, 19, 1.24, 5.14, 0.73683, 3, 18, 17.58, 5.38, 0.00891, 19, 5.14, 5.29, 0.9785, 20, -6.03, 5.17, 0.01259, 2, 19, 10.92, 5.49, 0.50923, 20, -0.25, 5.49, 0.49077, 2, 19, 13.84, 5.6, 0.14674, 20, 2.67, 5.65, 0.85326, 2, 19, 18.08, 5.75, 0.00181, 20, 6.91, 5.89, 0.99819, 1, 20, 12.76, 6.21, 1, 1, 20, 13.55, -0.05, 1, 1, 20, 14.37, -6.46, 1, 2, 19, 18.42, -7.48, 0.01227, 20, 7.5, -7.33, 0.98773, 2, 19, 14.19, -7.93, 0.16466, 20, 3.28, -7.87, 0.83534, 2, 19, 11.29, -7.52, 0.43469, 20, 0.36, -7.52, 0.56531, 3, 18, 18.68, -6.67, 0.01183, 19, 6.01, -6.78, 0.92052, 20, -4.92, -6.88, 0.06765, 3, 18, 14.58, -6.17, 0.20622, 19, 1.92, -6.21, 0.79352, 20, -9.02, -6.38, 2.6E-4, 2, 18, 12.21, -5.89, 0.51089, 19, -0.45, -5.88, 0.48911, 2, 18, 9.92, -5.61, 0.81438, 19, -2.73, -5.56, 0.18562, 1, 18, -5.69, -3.72, 1, 1, 18, -6.06, -0.78, 1, 1, 18, -6.67, 4.04, 1, 1, 18, 11.73, 0.09, 1, 2, 19, 11.26, 0.17, 0.27589, 20, 0.19, 0.18, 0.72411, 1, 18, 9.59, -0.02, 1, 2, 18, 13.83, 0.14, 0.00274, 19, 1.29, 0.12, 0.99726, 2, 19, 5.73, 0.14, 0.99997, 20, -5.34, 0.04, 3.0E-5, 2, 19, 13.81, 0.08, 2.1E-4, 20, 2.74, 0.13, 0.99979, 1, 20, 7.35, 0.06, 1 ],
  314. "hull": 20,
  315. "edges": [ 16, 18, 34, 36, 36, 38, 14, 16, 30, 40, 40, 2, 30, 32, 32, 34, 36, 44, 44, 40, 32, 44, 2, 0, 0, 38, 44, 0, 28, 30, 40, 46, 28, 46, 2, 4, 46, 4, 26, 28, 42, 48, 48, 46, 26, 48, 4, 6, 48, 6, 22, 24, 24, 26, 24, 42, 6, 8, 42, 8, 50, 42, 22, 50, 8, 10, 50, 10, 18, 20, 20, 22, 16, 52, 52, 50, 20, 52, 10, 12, 12, 14, 52, 12 ],
  316. "width": 17,
  317. "height": 43
  318. }
  319. },
  320. "xin3": {
  321. "xin3": { "x": 4.23, "y": 0.17, "rotation": -85.68, "width": 23, "height": 20 }
  322. },
  323. "xingxing": {
  324. "xingxing": { "x": 2.91, "y": -1.26, "rotation": -87.46, "width": 23, "height": 21 }
  325. },
  326. "yanjing": {
  327. "yanjing": {
  328. "type": "mesh",
  329. "uvs": [ 1, 1, 0.67625, 1, 0.32863, 1, 0, 1, 0, 0, 0.32168, 0, 0.65308, 0, 1, 0 ],
  330. "triangles": [ 3, 4, 5, 2, 5, 6, 3, 5, 2, 1, 6, 7, 2, 6, 1, 1, 7, 0 ],
  331. "vertices": [ 4.97, -32.9, 6.12, -12.54, 7.35, 9.32, 8.52, 29.99, 36.48, 28.41, 35.33, 8.18, 34.15, -12.66, 32.92, -34.48 ],
  332. "hull": 8,
  333. "edges": [ 6, 8, 0, 14, 8, 10, 4, 6, 10, 4, 10, 12, 12, 14, 0, 2, 2, 4, 12, 2 ],
  334. "width": 63,
  335. "height": 28
  336. }
  337. },
  338. "youjiao": {
  339. "youjiao": {
  340. "type": "mesh",
  341. "uvs": [ 1, 0.34582, 1, 0.39428, 1, 0.43005, 1, 0.64216, 1, 0.67151, 1, 0.71082, 1, 1, 0, 1, 0, 0.93835, 0, 0.8187, 0.28045, 0.7167, 0.2761, 0.68357, 0.27219, 0.65387, 0.2441, 0.44021, 0.24104, 0.41701, 0.23583, 0.37736, 0.15614, 0, 0.56414, 0, 1, 0, 0.61514, 0.36166, 0.69483, 0.71278, 0.68072, 0.65063, 0.68775, 0.6816, 0.6247, 0.4038, 0.63342, 0.44221 ],
  342. "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 7, 20, 6, 1, 23, 0, 24, 23, 1, 13, 14, 23, 2, 24, 1, 13, 23, 24, 21, 24, 2, 3, 21, 2, 12, 13, 24, 12, 24, 21, 22, 21, 3, 4, 22, 3, 11, 12, 21, 11, 21, 22, 20, 22, 4, 5, 20, 4, 10, 11, 22, 10, 22, 20, 20, 5, 6, 19, 17, 18, 0, 19, 18, 15, 16, 17, 15, 17, 19, 23, 19, 0, 14, 15, 19, 14, 19, 23 ],
  343. "vertices": [ 2, 14, 17.23, 12.18, 0.66174, 15, -4.09, 12.36, 0.33826, 2, 14, 19.73, 11.94, 0.489, 15, -1.57, 12.28, 0.511, 2, 14, 21.59, 11.76, 0.3607, 15, 0.29, 12.22, 0.6393, 3, 14, 32.56, 10.7, 0.00753, 15, 11.31, 11.85, 0.98521, 16, -13.94, -7.68, 0.00726, 3, 14, 34.08, 10.56, 0.00222, 15, 12.83, 11.8, 0.97651, 16, -13.67, -6.17, 0.02127, 3, 14, 36.12, 10.36, 9.0E-5, 15, 14.88, 11.74, 0.94064, 16, -13.32, -4.16, 0.05927, 2, 15, 29.91, 11.24, 0.26194, 16, -10.75, 10.65, 0.73806, 1, 16, 20.78, 5.17, 1, 1, 16, 20.23, 2.01, 1, 2, 15, 19.43, -20.43, 7.0E-4, 16, 19.16, -4.12, 0.9993, 2, 15, 14.42, -11.29, 0.39703, 16, 9.41, -7.8, 0.60297, 3, 14, 32.49, -12.56, 5.4E-4, 15, 12.7, -11.37, 0.59388, 16, 9.26, -9.53, 0.40557, 3, 14, 30.94, -12.54, 0.00317, 15, 11.15, -11.44, 0.70991, 16, 9.11, -11.07, 0.28692, 3, 14, 19.79, -12.37, 0.32575, 15, 0.02, -11.98, 0.66592, 16, 8.1, -22.17, 0.00833, 3, 14, 18.58, -12.35, 0.40749, 15, -1.19, -12.03, 0.58821, 16, 7.99, -23.37, 0.0043, 3, 14, 16.51, -12.31, 0.55505, 15, -3.26, -12.13, 0.44408, 16, 7.8, -25.43, 8.7E-4, 1, 14, -3.26, -12.97, 1, 1, 14, -2.01, 0.03, 1, 1, 14, -0.67, 13.91, 1, 2, 14, 16.86, -0.15, 0.93312, 15, -3.67, 0.03, 0.06688, 1, 15, 14.66, 1.97, 1, 1, 15, 11.41, 1.63, 1, 1, 15, 13.03, 1.8, 1, 2, 14, 19.07, -0.06, 0.32081, 15, -1.47, 0.26, 0.67919, 1, 15, 0.53, 0.47, 1 ],
  344. "hull": 19,
  345. "edges": [ 12, 14, 34, 36, 34, 38, 14, 16, 40, 16, 32, 34, 32, 30, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 24, 42, 42, 6, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 30, 38, 0, 36, 38, 0, 28, 30, 38, 46, 28, 46, 0, 2, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4 ],
  346. "width": 32,
  347. "height": 52
  348. }
  349. },
  350. "youshou": {
  351. "youshou": {
  352. "type": "mesh",
  353. "uvs": [ 0.62044, 0.3016, 0.68336, 0.36845, 0.73549, 0.42383, 0.87429, 0.5713, 0.9198, 0.62323, 0.97213, 0.67332, 1, 1, 0.5823, 1, 0.43644, 0.82715, 0.38664, 0.76737, 0.34123, 0.71337, 0.22358, 0.57349, 0.17569, 0.51655, 0.11337, 0.44246, 0, 0.30766, 0, 0, 0.10604, 0, 0.33657, 0, 0.42017, 0.45106, 0.68363, 0.69626, 0.37035, 0.37952, 0.47669, 0.50366, 0.73529, 0.74586, 0.63124, 0.6475 ],
  354. "triangles": [ 7, 22, 6, 22, 5, 6, 7, 8, 22, 8, 19, 22, 8, 9, 19, 9, 23, 19, 22, 4, 5, 22, 19, 4, 19, 3, 4, 9, 10, 23, 10, 21, 23, 10, 11, 21, 19, 23, 3, 23, 2, 3, 23, 21, 2, 11, 18, 21, 21, 1, 2, 21, 18, 1, 18, 0, 1, 11, 12, 18, 12, 20, 18, 12, 13, 20, 18, 20, 0, 13, 14, 20, 20, 14, 16, 16, 17, 20, 20, 17, 0, 14, 15, 16 ],
  355. "vertices": [ 2, 7, 15.8, 8.53, 0.55522, 8, -3.04, 9.04, 0.44478, 2, 7, 19.79, 8.96, 0.17418, 8, 0.97, 8.84, 0.82582, 2, 7, 23.1, 9.32, 0.02198, 8, 4.29, 8.68, 0.97802, 2, 8, 13.14, 8.25, 0.87049, 9, -3.41, 7.8, 0.12951, 2, 8, 16.2, 8.01, 0.61277, 9, -0.35, 8.07, 0.38723, 2, 8, 19.28, 8, 0.35027, 9, 2.7, 8.56, 0.64973, 1, 9, 19.12, 3.03, 1, 1, 9, 14.56, -8.64, 1, 3, 7, 39.58, -6.98, 0.00162, 8, 18.04, -9.98, 0.14105, 9, 4.43, -9.38, 0.85734, 3, 7, 36.08, -7.19, 0.01709, 8, 14.56, -9.64, 0.38703, 9, 0.94, -9.61, 0.59588, 3, 7, 32.92, -7.38, 0.06261, 8, 11.4, -9.34, 0.61839, 9, -2.22, -9.84, 0.319, 3, 7, 24.73, -7.89, 0.57092, 8, 3.23, -8.57, 0.418, 9, -10.42, -10.42, 0.01108, 3, 7, 21.39, -8.1, 0.88039, 8, -0.1, -8.26, 0.11938, 9, -13.75, -10.66, 2.3E-4, 2, 7, 17.05, -8.37, 0.99988, 8, -4.43, -7.85, 1.2E-4, 1, 7, 9.15, -8.86, 1, 1, 7, -5.98, -2.78, 1, 1, 7, -4.79, 0.18, 1, 1, 7, -2.21, 6.59, 1, 2, 7, 20.91, 0, 0.3144, 8, 0.68, -0.18, 0.6856, 1, 9, 0.67, 0.06, 1, 2, 7, 16.83, 0.03, 0.99948, 8, -3.34, 0.48, 5.2E-4, 2, 7, 24.12, 0.53, 0.00631, 8, 3.94, -0.15, 0.99369, 2, 8, 18.94, -0.07, 0.00991, 9, 3.69, 0.54, 0.99009, 3, 7, 32.93, 1.99, 6.0E-5, 8, 12.87, -0.08, 0.99691, 9, -2.31, -0.47, 0.00303 ],
  356. "hull": 18,
  357. "edges": [ 30, 32, 32, 34, 12, 10, 28, 30, 12, 14, 24, 36, 36, 2, 24, 26, 26, 28, 32, 40, 40, 36, 26, 40, 2, 0, 0, 34, 40, 0, 22, 24, 36, 42, 22, 42, 2, 4, 42, 4, 18, 38, 8, 10, 38, 8, 14, 16, 16, 18, 12, 44, 44, 38, 16, 44, 44, 10, 18, 20, 20, 22, 38, 46, 46, 42, 20, 46, 4, 6, 6, 8, 46, 6 ],
  358. "width": 30,
  359. "height": 53
  360. }
  361. },
  362. "youxiji": {
  363. "youxiji": {
  364. "type": "mesh",
  365. "uvs": [ 1, 1, 0.46116, 1, 0, 1, 0, 0, 0.14264, 0, 1, 0 ],
  366. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  367. "vertices": [ -8.46, -5.15, -5.78, 3.61, -3.49, 11.11, 14.68, 5.55, 13.97, 3.23, 9.71, -10.71 ],
  368. "hull": 6,
  369. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  370. "width": 17,
  371. "height": 19
  372. }
  373. },
  374. "youyan": {
  375. "youyan": { "x": 5.02, "y": -0.97, "rotation": -92.51, "width": 25, "height": 18 }
  376. },
  377. "zuojiao": {
  378. "zuojiao": {
  379. "type": "mesh",
  380. "uvs": [ 0.99999, 0.36472, 0.99999, 0.39938, 0.99999, 0.42972, 0.99999, 0.6445, 0.99999, 0.66964, 0.99999, 0.71731, 1, 1, 0, 1, 0, 0.88964, 0, 0.80531, 0.32508, 0.68798, 0.32861, 0.64962, 0.33073, 0.62656, 0.35037, 0.41295, 0.35394, 0.37406, 0.35683, 0.34271, 0.38833, 0, 0.73758, 0, 1, 0, 0.63308, 0.39098, 0.61933, 0.70264, 0.62137, 0.65642, 0.62225, 0.63657, 0.64232, 0.35642, 0.63186, 0.41866 ],
  381. "triangles": [ 7, 20, 6, 7, 8, 20, 8, 10, 20, 8, 9, 10, 20, 5, 6, 5, 20, 4, 4, 20, 21, 10, 11, 20, 20, 11, 21, 4, 21, 3, 3, 21, 22, 11, 12, 21, 21, 12, 22, 3, 22, 2, 2, 22, 24, 12, 13, 22, 22, 13, 24, 2, 24, 1, 1, 24, 19, 13, 14, 24, 24, 14, 19, 19, 23, 1, 1, 23, 0, 14, 15, 19, 19, 15, 23, 23, 17, 0, 0, 17, 18, 15, 16, 23, 23, 16, 17 ],
  382. "vertices": [ 2, 11, 13.18, 12.84, 0.74638, 12, -3.62, 13.55, 0.25362, 2, 11, 15.02, 13.18, 0.63631, 12, -1.75, 13.66, 0.36369, 2, 11, 16.63, 13.48, 0.53288, 12, -0.11, 13.76, 0.46712, 3, 11, 28.04, 15.6, 0.05461, 12, 11.46, 14.42, 0.85528, 13, -16.86, -4.87, 0.09011, 3, 11, 29.37, 15.84, 0.03626, 12, 12.82, 14.5, 0.83313, 13, -16.55, -3.55, 0.1306, 3, 11, 31.9, 16.31, 0.01455, 12, 15.39, 14.65, 0.75159, 13, -15.96, -1.05, 0.23386, 2, 12, 30.63, 15.52, 0.17961, 13, -12.48, 13.82, 0.82039, 1, 13, 22.57, 5.6, 1, 1, 13, 21.21, -0.2, 1, 1, 13, 20.18, -4.63, 1, 2, 12, 15.2, -9.7, 0.47279, 13, 7.34, -8.13, 0.52721, 2, 12, 13.13, -9.69, 0.70658, 13, 6.74, -10.12, 0.29342, 2, 12, 11.88, -9.69, 0.79839, 13, 6.38, -11.32, 0.20161, 2, 11, 20, -9.68, 0.19957, 12, 0.32, -9.64, 0.80043, 2, 11, 17.91, -9.93, 0.36056, 12, -1.78, -9.64, 0.63944, 2, 11, 16.23, -10.14, 0.50356, 12, -3.48, -9.63, 0.49644, 1, 11, -2.17, -12.39, 1, 1, 11, -4.46, -0.03, 1, 1, 11, -6.18, 9.26, 1, 2, 11, 16.98, 0.11, 0.65981, 12, -1.45, 0.45, 0.34019, 1, 12, 15.39, 0.92, 1, 2, 11, 31.15, 2.31, 1.8E-4, 12, 12.89, 0.85, 0.99982, 2, 11, 30.09, 2.15, 4.2E-4, 12, 11.82, 0.82, 0.99958, 1, 11, 15.09, 0.1, 1, 2, 11, 18.46, 0.34, 0.05238, 12, 0.05, 0.49, 0.94762 ],
  383. "hull": 19,
  384. "edges": [ 12, 14, 34, 36, 14, 16, 40, 16, 32, 34, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 20, 22, 42, 40, 22, 42, 10, 8, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 38, 38, 2, 28, 30, 30, 32, 34, 46, 46, 38, 30, 46, 2, 0, 0, 36, 46, 0, 24, 26, 26, 28, 38, 48, 48, 44, 26, 48, 2, 4, 4, 6, 48, 4 ],
  385. "width": 36,
  386. "height": 54
  387. }
  388. },
  389. "zuoshou": {
  390. "zuoshou": {
  391. "type": "mesh",
  392. "uvs": [ 1, 0.21144, 0.75776, 0.53446, 0.72784, 0.57435, 0.70564, 0.60395, 0.59164, 0.75596, 0.55215, 0.80863, 0.52147, 0.84952, 0.40863, 1, 0.14562, 1, 0, 1, 0, 0.73924, 0.11035, 0.61911, 0.14343, 0.58309, 0.17643, 0.54716, 0.31141, 0.40022, 0.34198, 0.36693, 0.37996, 0.32559, 0.67903, 0, 1, 0, 0.56119, 0.43077, 0.38692, 0.70357, 0.51629, 0.50106, 0.53624, 0.46984, 0.35122, 0.74743, 0.40963, 0.66802 ],
  393. "triangles": [ 8, 23, 7, 7, 23, 6, 23, 8, 10, 23, 10, 11, 10, 8, 9, 23, 20, 6, 6, 20, 5, 11, 12, 23, 23, 12, 20, 20, 24, 5, 5, 24, 4, 24, 21, 4, 4, 21, 3, 12, 13, 20, 20, 13, 24, 13, 14, 24, 24, 14, 21, 21, 22, 3, 3, 22, 2, 22, 19, 2, 2, 19, 1, 14, 15, 21, 21, 15, 22, 15, 16, 22, 22, 16, 19, 1, 19, 0, 0, 19, 18, 19, 16, 17, 19, 17, 18 ],
  394. "vertices": [ 1, 4, 2.42, 9.88, 1, 2, 4, 20.86, 8.84, 0.42305, 5, 0.98, 8.86, 0.57695, 3, 4, 23.14, 8.71, 0.21883, 5, 3.26, 8.77, 0.78108, 6, -11.57, 8.54, 9.0E-5, 3, 4, 24.83, 8.61, 0.11429, 5, 4.95, 8.71, 0.88259, 6, -9.88, 8.51, 0.00312, 2, 5, 13.64, 8.39, 0.62694, 6, -1.18, 8.37, 0.37306, 2, 5, 16.65, 8.28, 0.32129, 6, 1.83, 8.32, 0.67871, 2, 5, 18.98, 8.19, 0.14033, 6, 4.17, 8.28, 0.85967, 1, 6, 12.77, 8.13, 1, 1, 6, 17.35, -0.45, 1, 1, 6, 19.88, -5.21, 1, 2, 5, 22.8, -11.51, 0.03237, 6, 8.38, -11.34, 0.96763, 2, 5, 15.59, -10.59, 0.35743, 6, 1.16, -10.57, 0.64257, 2, 5, 13.43, -10.31, 0.54325, 6, -1.01, -10.33, 0.45675, 3, 4, 30.8, -10.25, 4.1E-4, 5, 11.28, -10.03, 0.71882, 6, -3.17, -10.1, 0.28076, 3, 4, 22.01, -8.95, 0.2458, 5, 2.47, -8.91, 0.752, 6, -12, -9.15, 0.0022, 2, 4, 20.02, -8.66, 0.43471, 5, 0.47, -8.65, 0.56529, 2, 4, 17.54, -8.29, 0.69429, 5, -2.01, -8.33, 0.30571, 1, 4, -1.93, -5.42, 1, 1, 4, -7.1, 5.28, 1, 2, 4, 19.36, 0.03, 0.79498, 5, -0.35, 0.03, 0.20502, 2, 5, 14.73, 0.45, 0.46878, 6, 0.07, 0.45, 0.53122, 2, 4, 23.25, 0.07, 2.3E-4, 5, 3.53, 0.14, 0.99977, 2, 4, 21.52, 0.05, 2.5E-4, 5, 1.81, 0.09, 0.99975, 2, 5, 17.28, 0.26, 0.00109, 6, 2.63, 0.32, 0.99891, 2, 5, 12.76, 0.39, 0.98632, 6, -1.89, 0.36, 0.01368 ],
  395. "hull": 19,
  396. "edges": [ 0, 36, 34, 36, 18, 20, 36, 38, 14, 16, 16, 18, 32, 34, 32, 38, 0, 2, 38, 2, 28, 42, 42, 6, 28, 30, 30, 32, 38, 44, 44, 42, 30, 44, 2, 4, 4, 6, 44, 4, 24, 40, 40, 10, 20, 22, 22, 24, 16, 46, 46, 40, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 40, 48, 48, 42, 26, 48, 6, 8, 8, 10, 48, 8 ],
  397. "width": 37,
  398. "height": 50
  399. }
  400. },
  401. "zuoyan": {
  402. "zuoyan": { "x": 4.92, "y": 1.86, "rotation": -92.57, "width": 23, "height": 20 }
  403. }
  404. }
  405. },
  406. "animations": {
  407. "stand1": {
  408. "slots": {
  409. "biaoqing_1": {
  410. "color": [
  411. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  412. { "time": 0.7667, "color": "ffffff00" },
  413. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  414. { "time": 2.9, "color": "ffffffff" },
  415. { "time": 3, "color": "ffffff00" }
  416. ]
  417. },
  418. "biyan": {
  419. "attachment": [
  420. { "time": 0, "name": null },
  421. { "time": 1.3333, "name": null },
  422. { "time": 1.4333, "name": "biyan" },
  423. { "time": 1.5333, "name": null },
  424. { "time": 2.3333, "name": null },
  425. { "time": 2.5, "name": null },
  426. { "time": 2.6, "name": "biyan" },
  427. { "time": 2.7, "name": null },
  428. { "time": 3.5, "name": null }
  429. ]
  430. },
  431. "diannao1": {
  432. "color": [
  433. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  434. { "time": 0.1333, "color": "ffffff00" },
  435. { "time": 0.3333, "color": "ffffffff", "curve": "stepped" },
  436. { "time": 2, "color": "ffffffff" },
  437. { "time": 2.1667, "color": "ffffff00" }
  438. ],
  439. "attachment": [
  440. { "time": 0, "name": "diannao1" },
  441. { "time": 1.1667, "name": "diannao1" },
  442. { "time": 2.3333, "name": "diannao1" },
  443. { "time": 3.5, "name": null }
  444. ]
  445. },
  446. "diannao_x": {
  447. "color": [
  448. { "time": 0, "color": "ffffff00" },
  449. { "time": 0.0667, "color": "ffffffff" },
  450. { "time": 0.2333, "color": "ffffff00", "curve": "stepped" },
  451. { "time": 2.1, "color": "ffffff00" }
  452. ]
  453. },
  454. "dou": {
  455. "color": [
  456. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  457. { "time": 0.5667, "color": "ffffff00" },
  458. { "time": 0.6333, "color": "ffffffff" },
  459. { "time": 0.7, "color": "ffffff00" },
  460. { "time": 0.7667, "color": "ffffffff", "curve": "stepped" },
  461. { "time": 2, "color": "ffffffff" },
  462. { "time": 2.1667, "color": "ffffff00" }
  463. ],
  464. "attachment": [
  465. { "time": 0, "name": "dou" },
  466. { "time": 2.3333, "name": null },
  467. { "time": 3.5, "name": null }
  468. ]
  469. },
  470. "dou2": {
  471. "color": [
  472. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  473. { "time": 0.6667, "color": "ffffff00" },
  474. { "time": 0.7333, "color": "ffffffff" },
  475. { "time": 0.8, "color": "ffffff00" },
  476. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  477. { "time": 2, "color": "ffffffff" },
  478. { "time": 2.1667, "color": "ffffff00" }
  479. ],
  480. "attachment": [
  481. { "time": 0, "name": "dou2" },
  482. { "time": 2.3333, "name": null },
  483. { "time": 3.5, "name": null }
  484. ]
  485. },
  486. "dou3": {
  487. "color": [
  488. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  489. { "time": 0.8, "color": "ffffff00" },
  490. { "time": 0.8667, "color": "ffffffff" },
  491. { "time": 0.9333, "color": "ffffff00" },
  492. { "time": 1, "color": "ffffffff", "curve": "stepped" },
  493. { "time": 2, "color": "ffffffff" },
  494. { "time": 2.1667, "color": "ffffff00" }
  495. ],
  496. "attachment": [
  497. { "time": 0, "name": "dou3" },
  498. { "time": 2.3333, "name": null },
  499. { "time": 3.5, "name": null }
  500. ]
  501. },
  502. "pinmu": {
  503. "color": [
  504. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  505. { "time": 0.0667, "color": "ffffff00" },
  506. { "time": 0.1333, "color": "ffffffff" },
  507. { "time": 0.2, "color": "ffffff00" },
  508. { "time": 0.2667, "color": "ffffffff", "curve": "stepped" },
  509. { "time": 2, "color": "ffffffff" },
  510. { "time": 2.0667, "color": "ffffff00" }
  511. ],
  512. "attachment": [
  513. { "time": 0, "name": "pinmu" },
  514. { "time": 1.1667, "name": "pinmu" },
  515. { "time": 2.3333, "name": "pinmu" },
  516. { "time": 3.5, "name": null }
  517. ]
  518. },
  519. "youyan": {
  520. "attachment": [
  521. { "time": 1.4333, "name": null },
  522. { "time": 1.5333, "name": "youyan" },
  523. { "time": 2.6, "name": null },
  524. { "time": 2.7, "name": "youyan" }
  525. ]
  526. },
  527. "zuoyan": {
  528. "attachment": [
  529. { "time": 1.4333, "name": null },
  530. { "time": 1.5333, "name": "zuoyan" },
  531. { "time": 2.6, "name": null },
  532. { "time": 2.7, "name": "zuoyan" }
  533. ]
  534. }
  535. },
  536. "bones": {
  537. "bone53": {
  538. "rotate": [
  539. { "time": 0, "angle": 0, "curve": "stepped" },
  540. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  541. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  542. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  543. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  544. { "time": 2.9, "angle": 0, "curve": "stepped" },
  545. { "time": 3.5, "angle": 0 }
  546. ],
  547. "translate": [
  548. { "time": 0, "x": 14.86, "y": 0 }
  549. ],
  550. "scale": [
  551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  552. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  553. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  554. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  555. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  556. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  557. { "time": 3.5, "x": 1, "y": 1 }
  558. ]
  559. },
  560. "bone55": {
  561. "rotate": [
  562. { "time": 0, "angle": 0, "curve": "stepped" },
  563. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  564. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  565. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  566. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  567. { "time": 2.9, "angle": 0, "curve": "stepped" },
  568. { "time": 3.5, "angle": 0 }
  569. ],
  570. "translate": [
  571. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  572. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  573. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  574. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  575. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  576. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  577. { "time": 3.5, "x": 0, "y": 0 }
  578. ],
  579. "scale": [
  580. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  581. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  582. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  583. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  584. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 3.5, "x": 1, "y": 1 }
  587. ]
  588. },
  589. "bone54": {
  590. "rotate": [
  591. { "time": 0, "angle": 0, "curve": "stepped" },
  592. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  593. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  594. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  595. { "time": 2.9, "angle": 0, "curve": "stepped" },
  596. { "time": 3.5, "angle": 0 }
  597. ],
  598. "translate": [
  599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  600. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  601. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  604. { "time": 3.5, "x": 0, "y": 0 }
  605. ],
  606. "scale": [
  607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  608. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  611. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  612. { "time": 3.5, "x": 1, "y": 1 }
  613. ]
  614. },
  615. "bone27": {
  616. "rotate": [
  617. { "time": 0, "angle": 0, "curve": "stepped" },
  618. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  619. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  620. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  621. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  622. { "time": 2.5, "angle": 0, "curve": "stepped" },
  623. { "time": 2.9, "angle": 0, "curve": "stepped" },
  624. { "time": 3.5, "angle": 0 }
  625. ],
  626. "translate": [
  627. { "time": 0, "x": -3.08, "y": 0.09, "curve": "stepped" },
  628. { "time": 2.3333, "x": -3.08, "y": 0.09, "curve": "stepped" },
  629. { "time": 3.5, "x": -3.08, "y": 0.09 }
  630. ],
  631. "scale": [
  632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  633. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  634. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 3.5, "x": 1, "y": 1 }
  640. ]
  641. },
  642. "root": {
  643. "rotate": [
  644. { "time": 0, "angle": 0 }
  645. ],
  646. "translate": [
  647. { "time": 0, "x": 0, "y": 0 }
  648. ],
  649. "scale": [
  650. { "time": 0, "x": 0.65, "y": 0.65 }
  651. ]
  652. },
  653. "bone": {
  654. "rotate": [
  655. { "time": 0, "angle": 0, "curve": "stepped" },
  656. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  657. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  658. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  659. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  660. { "time": 2.9, "angle": 0, "curve": "stepped" },
  661. { "time": 3.5, "angle": 0 }
  662. ],
  663. "translate": [
  664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  668. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  669. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  670. { "time": 3.5, "x": 0, "y": 0 }
  671. ],
  672. "scale": [
  673. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  674. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  675. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  676. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  677. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 3.5, "x": 1, "y": 1 }
  680. ]
  681. },
  682. "bone2": {
  683. "rotate": [
  684. { "time": 0, "angle": 0, "curve": "stepped" },
  685. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  686. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  687. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  688. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  689. { "time": 2.9, "angle": 0, "curve": "stepped" },
  690. { "time": 3.5, "angle": 0 }
  691. ],
  692. "translate": [
  693. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  694. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  695. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  696. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  697. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  698. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 3.5, "x": 0, "y": 0 }
  700. ],
  701. "scale": [
  702. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  703. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  704. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  705. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  706. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  707. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  708. { "time": 3.5, "x": 1, "y": 1 }
  709. ]
  710. },
  711. "bone3": {
  712. "rotate": [
  713. { "time": 0, "angle": 0, "curve": "stepped" },
  714. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  715. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  716. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  717. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  718. { "time": 2.9, "angle": 0, "curve": "stepped" },
  719. { "time": 3.5, "angle": 0 }
  720. ],
  721. "translate": [
  722. { "time": 0, "x": 0, "y": 0 },
  723. { "time": 0.5667, "x": 2.36, "y": -0.1 },
  724. { "time": 1.1667, "x": 0, "y": 0 },
  725. { "time": 1.7333, "x": 2.36, "y": -0.1 },
  726. { "time": 2.3333, "x": 0, "y": 0 },
  727. { "time": 2.9, "x": 2.36, "y": -0.1 },
  728. { "time": 3.5, "x": 0, "y": 0 }
  729. ],
  730. "scale": [
  731. { "time": 0, "x": 1, "y": 1 },
  732. { "time": 0.5667, "x": 1.02, "y": 1 },
  733. { "time": 1.1667, "x": 1, "y": 1 },
  734. { "time": 1.7333, "x": 1.02, "y": 1 },
  735. { "time": 2.3333, "x": 1, "y": 1 },
  736. { "time": 2.9, "x": 1.02, "y": 1 },
  737. { "time": 3.5, "x": 1, "y": 1 }
  738. ]
  739. },
  740. "bone4": {
  741. "rotate": [
  742. { "time": 0, "angle": 0 },
  743. { "time": 0.5667, "angle": -10.35 },
  744. { "time": 1.1667, "angle": 0 },
  745. { "time": 1.4, "angle": -14.62 },
  746. { "time": 1.5, "angle": -9.65 },
  747. { "time": 1.7333, "angle": -6.24 },
  748. { "time": 1.9333, "angle": -10.09 },
  749. { "time": 2.1667, "angle": -12.66 },
  750. { "time": 2.4333, "angle": 0 },
  751. { "time": 2.9, "angle": -10.35 },
  752. { "time": 3.5, "angle": 0 }
  753. ],
  754. "translate": [
  755. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  756. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  757. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  758. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  759. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  760. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  761. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 3.5, "x": 0, "y": 0 }
  763. ],
  764. "scale": [
  765. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  766. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  767. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 3.5, "x": 1, "y": 1 }
  772. ]
  773. },
  774. "bone5": {
  775. "rotate": [
  776. { "time": 0, "angle": 0 },
  777. { "time": 0.5667, "angle": 14.62 },
  778. { "time": 1.1667, "angle": 0 },
  779. { "time": 1.3333, "angle": -53.98 },
  780. { "time": 1.5, "angle": -35.16, "curve": "stepped" },
  781. { "time": 1.7333, "angle": -35.16 },
  782. { "time": 1.9333, "angle": -48.88 },
  783. { "time": 2.4333, "angle": 0 },
  784. { "time": 2.9, "angle": 14.62 },
  785. { "time": 3.5, "angle": 0 }
  786. ],
  787. "translate": [
  788. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  791. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  792. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  793. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 3.5, "x": 0, "y": 0 }
  795. ],
  796. "scale": [
  797. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  800. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 3.5, "x": 1, "y": 1 }
  804. ]
  805. },
  806. "bone6": {
  807. "rotate": [
  808. { "time": 0, "angle": 0 },
  809. { "time": 0.5667, "angle": 14.03 },
  810. { "time": 1.1667, "angle": 0 },
  811. { "time": 1.2667, "angle": -16.3 },
  812. { "time": 1.5, "angle": -2.51 },
  813. { "time": 1.6, "angle": -15.46 },
  814. { "time": 1.7333, "angle": -2.51 },
  815. { "time": 1.9333, "angle": -3.22 },
  816. { "time": 2.4333, "angle": 0 },
  817. { "time": 2.9, "angle": 14.03 },
  818. { "time": 3.5, "angle": 0 }
  819. ],
  820. "translate": [
  821. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  822. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 3.5, "x": 0, "y": 0 }
  828. ],
  829. "scale": [
  830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  831. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  834. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  836. { "time": 3.5, "x": 1, "y": 1 }
  837. ]
  838. },
  839. "bone7": {
  840. "rotate": [
  841. { "time": 0, "angle": 0 },
  842. { "time": 0.5667, "angle": 10 },
  843. { "time": 1.1667, "angle": 0 },
  844. { "time": 1.7333, "angle": 10 },
  845. { "time": 2.3333, "angle": 0 },
  846. { "time": 2.9, "angle": 10 },
  847. { "time": 3.5, "angle": 0 }
  848. ],
  849. "translate": [
  850. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  852. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 3.5, "x": 0, "y": 0 }
  857. ],
  858. "scale": [
  859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 3.5, "x": 1, "y": 1 }
  866. ]
  867. },
  868. "bone8": {
  869. "rotate": [
  870. { "time": 0, "angle": 0 },
  871. { "time": 0.5667, "angle": -11.51 },
  872. { "time": 1.1667, "angle": 0 },
  873. { "time": 1.7333, "angle": -11.51 },
  874. { "time": 2.3333, "angle": 0 },
  875. { "time": 2.9, "angle": -11.51 },
  876. { "time": 3.5, "angle": 0 }
  877. ],
  878. "translate": [
  879. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  882. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  883. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  884. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  885. { "time": 3.5, "x": 0, "y": 0 }
  886. ],
  887. "scale": [
  888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  892. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  894. { "time": 3.5, "x": 1, "y": 1 }
  895. ]
  896. },
  897. "bone9": {
  898. "rotate": [
  899. { "time": 0, "angle": 0, "curve": "stepped" },
  900. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  901. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  902. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  903. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  904. { "time": 2.9, "angle": 0, "curve": "stepped" },
  905. { "time": 3.5, "angle": 0 }
  906. ],
  907. "translate": [
  908. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  914. { "time": 3.5, "x": 0, "y": 0 }
  915. ],
  916. "scale": [
  917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 3.5, "x": 1, "y": 1 }
  924. ]
  925. },
  926. "bone10": {
  927. "rotate": [
  928. { "time": 0, "angle": 0, "curve": "stepped" },
  929. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  930. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  931. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  932. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  933. { "time": 2.9, "angle": 0, "curve": "stepped" },
  934. { "time": 3.5, "angle": 0 }
  935. ],
  936. "translate": [
  937. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  938. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  939. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  943. { "time": 3.5, "x": 0, "y": 0 }
  944. ],
  945. "scale": [
  946. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  947. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  948. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  949. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  950. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 3.5, "x": 1, "y": 1 }
  953. ]
  954. },
  955. "bone11": {
  956. "rotate": [
  957. { "time": 0, "angle": 0, "curve": "stepped" },
  958. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  959. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  960. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  961. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  962. { "time": 2.9, "angle": 0, "curve": "stepped" },
  963. { "time": 3.5, "angle": 0 }
  964. ],
  965. "translate": [
  966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  967. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  971. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  972. { "time": 3.5, "x": 0, "y": 0 }
  973. ],
  974. "scale": [
  975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 3.5, "x": 1, "y": 1 }
  982. ]
  983. },
  984. "bone12": {
  985. "rotate": [
  986. { "time": 0, "angle": 0, "curve": "stepped" },
  987. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  988. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  989. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  990. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  991. { "time": 2.9, "angle": 0, "curve": "stepped" },
  992. { "time": 3.5, "angle": 0 }
  993. ],
  994. "translate": [
  995. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  996. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  997. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  998. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  999. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1000. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1001. { "time": 3.5, "x": 0, "y": 0 }
  1002. ],
  1003. "scale": [
  1004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1005. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1006. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1007. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1008. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1009. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1010. { "time": 3.5, "x": 1, "y": 1 }
  1011. ]
  1012. },
  1013. "bone13": {
  1014. "rotate": [
  1015. { "time": 0, "angle": 0, "curve": "stepped" },
  1016. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1017. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1018. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1019. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1020. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1021. { "time": 3.5, "angle": 0 }
  1022. ],
  1023. "translate": [
  1024. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 3.5, "x": 0, "y": 0 }
  1031. ],
  1032. "scale": [
  1033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 3.5, "x": 1, "y": 1 }
  1040. ]
  1041. },
  1042. "bone14": {
  1043. "rotate": [
  1044. { "time": 0, "angle": 0, "curve": "stepped" },
  1045. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1046. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1047. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1048. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1049. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1050. { "time": 3.5, "angle": 0 }
  1051. ],
  1052. "translate": [
  1053. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1057. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1058. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1059. { "time": 3.5, "x": 0, "y": 0 }
  1060. ],
  1061. "scale": [
  1062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1064. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1065. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1066. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1067. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1068. { "time": 3.5, "x": 1, "y": 1 }
  1069. ]
  1070. },
  1071. "bone15": {
  1072. "rotate": [
  1073. { "time": 0, "angle": 0, "curve": "stepped" },
  1074. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1075. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1076. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1077. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1078. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1079. { "time": 3.5, "angle": 0 }
  1080. ],
  1081. "translate": [
  1082. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1083. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1085. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1088. { "time": 3.5, "x": 0, "y": 0 }
  1089. ],
  1090. "scale": [
  1091. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1096. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1097. { "time": 3.5, "x": 1, "y": 1 }
  1098. ]
  1099. },
  1100. "bone16": {
  1101. "rotate": [
  1102. { "time": 0, "angle": 0, "curve": "stepped" },
  1103. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1104. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1105. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1106. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1107. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1108. { "time": 3.5, "angle": 0 }
  1109. ],
  1110. "translate": [
  1111. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1112. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1113. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1114. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1115. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1116. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 3.5, "x": 0, "y": 0 }
  1118. ],
  1119. "scale": [
  1120. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1121. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1122. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1123. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1124. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 3.5, "x": 1, "y": 1 }
  1127. ]
  1128. },
  1129. "bone17": {
  1130. "rotate": [
  1131. { "time": 0, "angle": 0, "curve": "stepped" },
  1132. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1133. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1134. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1135. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1136. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1137. { "time": 3.5, "angle": 0 }
  1138. ],
  1139. "translate": [
  1140. { "time": 0, "x": 0, "y": 0 },
  1141. { "time": 0.5667, "x": 0.68, "y": -0.54 },
  1142. { "time": 1.1667, "x": 0, "y": 0 },
  1143. { "time": 1.7333, "x": 0.68, "y": -0.54 },
  1144. { "time": 2.3333, "x": 0, "y": 0 },
  1145. { "time": 2.9, "x": 0.68, "y": -0.54 },
  1146. { "time": 3.5, "x": 0, "y": 0 }
  1147. ],
  1148. "scale": [
  1149. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1150. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1151. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 3.5, "x": 1, "y": 1 }
  1156. ]
  1157. },
  1158. "bone18": {
  1159. "rotate": [
  1160. { "time": 0, "angle": 0 },
  1161. { "time": 0.5667, "angle": -3.27 },
  1162. { "time": 1.1667, "angle": 0 },
  1163. { "time": 1.7333, "angle": -3.27 },
  1164. { "time": 2.3333, "angle": 0 },
  1165. { "time": 2.9, "angle": -3.27 },
  1166. { "time": 3.5, "angle": 0 }
  1167. ],
  1168. "translate": [
  1169. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 3.5, "x": 0, "y": 0 }
  1176. ],
  1177. "scale": [
  1178. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1179. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1181. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1182. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 3.5, "x": 1, "y": 1 }
  1185. ]
  1186. },
  1187. "bone19": {
  1188. "rotate": [
  1189. { "time": 0, "angle": 0 },
  1190. { "time": 0.5667, "angle": -9.38 },
  1191. { "time": 1.1667, "angle": 0 },
  1192. { "time": 1.7333, "angle": -9.38 },
  1193. { "time": 2.3333, "angle": 0 },
  1194. { "time": 2.9, "angle": -9.38 },
  1195. { "time": 3.5, "angle": 0 }
  1196. ],
  1197. "translate": [
  1198. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1202. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1203. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1204. { "time": 3.5, "x": 0, "y": 0 }
  1205. ],
  1206. "scale": [
  1207. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1210. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1211. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1213. { "time": 3.5, "x": 1, "y": 1 }
  1214. ]
  1215. },
  1216. "bone20": {
  1217. "rotate": [
  1218. { "time": 0, "angle": 0, "curve": "stepped" },
  1219. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1220. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1221. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1222. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1223. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1224. { "time": 3.5, "angle": 0 }
  1225. ],
  1226. "translate": [
  1227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1228. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1229. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1230. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1231. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1232. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1233. { "time": 3.5, "x": 0, "y": 0 }
  1234. ],
  1235. "scale": [
  1236. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1237. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1238. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1239. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1240. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1241. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1242. { "time": 3.5, "x": 1, "y": 1 }
  1243. ]
  1244. },
  1245. "bone21": {
  1246. "rotate": [
  1247. { "time": 0, "angle": 0 },
  1248. { "time": 0.5667, "angle": 10.05 },
  1249. { "time": 1.1667, "angle": 0 },
  1250. { "time": 1.7333, "angle": 10.05 },
  1251. { "time": 2.3333, "angle": 0 },
  1252. { "time": 2.9, "angle": 10.05 },
  1253. { "time": 3.5, "angle": 0 }
  1254. ],
  1255. "translate": [
  1256. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1257. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 3.5, "x": 0, "y": 0 }
  1263. ],
  1264. "scale": [
  1265. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1266. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1267. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1268. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1269. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1271. { "time": 3.5, "x": 1, "y": 1 }
  1272. ]
  1273. },
  1274. "bone22": {
  1275. "rotate": [
  1276. { "time": 0, "angle": 0 },
  1277. { "time": 0.5667, "angle": 10.42 },
  1278. { "time": 1.1667, "angle": 0 },
  1279. { "time": 1.7333, "angle": 10.42 },
  1280. { "time": 2.3333, "angle": 0 },
  1281. { "time": 2.9, "angle": 10.42 },
  1282. { "time": 3.5, "angle": 0 }
  1283. ],
  1284. "translate": [
  1285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 3.5, "x": 0, "y": 0 }
  1292. ],
  1293. "scale": [
  1294. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 3.5, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone23": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0 },
  1306. { "time": 0.5667, "angle": 3.02 },
  1307. { "time": 1.1667, "angle": 0 },
  1308. { "time": 1.7333, "angle": 3.02 },
  1309. { "time": 2.3333, "angle": 0 },
  1310. { "time": 2.9, "angle": 3.02 },
  1311. { "time": 3.5, "angle": 0 }
  1312. ],
  1313. "translate": [
  1314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 3.5, "x": 0, "y": 0 }
  1321. ],
  1322. "scale": [
  1323. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1324. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1325. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1326. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 3.5, "x": 1, "y": 1 }
  1330. ]
  1331. },
  1332. "bone24": {
  1333. "rotate": [
  1334. { "time": 0, "angle": 0, "curve": "stepped" },
  1335. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1336. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1337. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1338. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1339. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1340. { "time": 3.5, "angle": 0 }
  1341. ],
  1342. "translate": [
  1343. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1344. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1345. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1346. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1347. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1348. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1349. { "time": 3.5, "x": 0, "y": 0 }
  1350. ],
  1351. "scale": [
  1352. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1353. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1354. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1355. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1356. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1357. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1358. { "time": 3.5, "x": 1, "y": 1 }
  1359. ]
  1360. },
  1361. "bone25": {
  1362. "rotate": [
  1363. { "time": 0, "angle": 0, "curve": "stepped" },
  1364. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1365. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1366. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1367. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1368. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1369. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1370. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1371. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1372. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1373. { "time": 2.7, "angle": 0, "curve": "stepped" },
  1374. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1375. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1376. { "time": 3.5, "angle": 0 }
  1377. ],
  1378. "translate": [
  1379. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1380. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1381. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1389. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1390. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1391. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1392. { "time": 3.5, "x": 0, "y": 0 }
  1393. ],
  1394. "scale": [
  1395. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 1.3333, "x": 1, "y": 1 },
  1398. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  1399. { "time": 1.5333, "x": 0.384, "y": 1 },
  1400. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1401. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1402. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1403. { "time": 2.5, "x": 1, "y": 1 },
  1404. { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
  1405. { "time": 2.7, "x": 0.384, "y": 1 },
  1406. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 3.5, "x": 1, "y": 1 }
  1409. ]
  1410. },
  1411. "bone26": {
  1412. "rotate": [
  1413. { "time": 0, "angle": 0, "curve": "stepped" },
  1414. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1415. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1416. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1417. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1418. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1419. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1420. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1421. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1422. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1423. { "time": 2.7, "angle": 0, "curve": "stepped" },
  1424. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1425. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1426. { "time": 3.5, "angle": 0 }
  1427. ],
  1428. "translate": [
  1429. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1432. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1433. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1434. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1439. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  1440. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1441. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 3.5, "x": 0, "y": 0 }
  1443. ],
  1444. "scale": [
  1445. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1446. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1447. { "time": 1.3333, "x": 1, "y": 1 },
  1448. { "time": 1.4333, "x": 0.384, "y": 1, "curve": "stepped" },
  1449. { "time": 1.5333, "x": 0.384, "y": 1 },
  1450. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1451. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1452. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 2.5, "x": 1, "y": 1 },
  1454. { "time": 2.6, "x": 0.384, "y": 1, "curve": "stepped" },
  1455. { "time": 2.7, "x": 0.384, "y": 1 },
  1456. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1457. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 3.5, "x": 1, "y": 1 }
  1459. ]
  1460. },
  1461. "bone28": {
  1462. "rotate": [
  1463. { "time": 0, "angle": 0, "curve": "stepped" },
  1464. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1465. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1466. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1467. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1468. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1469. { "time": 1.9, "angle": 0, "curve": "stepped" },
  1470. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1471. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1472. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1473. { "time": 2.7, "angle": 0, "curve": "stepped" },
  1474. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1475. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  1476. { "time": 3.5, "angle": 0 }
  1477. ],
  1478. "translate": [
  1479. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1480. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 1.3333, "x": 0, "y": 0 },
  1482. { "time": 1.4333, "x": -2.59, "y": 0.09, "curve": "stepped" },
  1483. { "time": 1.5333, "x": -2.59, "y": 0.09 },
  1484. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1485. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1486. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 2.5, "x": 0, "y": 0 },
  1488. { "time": 2.6, "x": -2.59, "y": 0.09, "curve": "stepped" },
  1489. { "time": 2.7, "x": -2.59, "y": 0.09 },
  1490. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 3.5, "x": 0, "y": 0 }
  1493. ],
  1494. "scale": [
  1495. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1496. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1502. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1503. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  1504. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1505. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1507. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1508. { "time": 3.5, "x": 1, "y": 1 }
  1509. ]
  1510. },
  1511. "bone29": {
  1512. "rotate": [
  1513. { "time": 0, "angle": 0, "curve": "stepped" },
  1514. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1515. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1516. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1517. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1518. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1519. { "time": 3.5, "angle": 0 }
  1520. ],
  1521. "translate": [
  1522. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 3.5, "x": 0, "y": 0 }
  1529. ],
  1530. "scale": [
  1531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1532. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1533. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1536. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1537. { "time": 3.5, "x": 1, "y": 1 }
  1538. ]
  1539. },
  1540. "bone30": {
  1541. "rotate": [
  1542. { "time": 0, "angle": 0, "curve": "stepped" },
  1543. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1544. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1545. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1546. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1547. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1548. { "time": 3.5, "angle": 0 }
  1549. ],
  1550. "translate": [
  1551. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1552. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1553. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1554. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1555. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1556. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1557. { "time": 3.5, "x": 0, "y": 0 }
  1558. ],
  1559. "scale": [
  1560. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1561. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1562. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1563. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1564. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1565. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1566. { "time": 3.5, "x": 1, "y": 1 }
  1567. ]
  1568. },
  1569. "bone31": {
  1570. "rotate": [
  1571. { "time": 0, "angle": 0, "curve": "stepped" },
  1572. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1573. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1574. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1575. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1576. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1577. { "time": 3.5, "angle": 0 }
  1578. ],
  1579. "translate": [
  1580. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1581. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1582. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1583. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1584. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1585. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1586. { "time": 3.5, "x": 0, "y": 0 }
  1587. ],
  1588. "scale": [
  1589. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1590. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1591. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1594. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1595. { "time": 3.5, "x": 1, "y": 1 }
  1596. ]
  1597. },
  1598. "bone32": {
  1599. "rotate": [
  1600. { "time": 0, "angle": 0 },
  1601. { "time": 0.5667, "angle": -5.47 },
  1602. { "time": 1.1667, "angle": 0 },
  1603. { "time": 1.7333, "angle": -5.47 },
  1604. { "time": 2.3333, "angle": 0 },
  1605. { "time": 2.9, "angle": -5.47 },
  1606. { "time": 3.5, "angle": 0 }
  1607. ],
  1608. "translate": [
  1609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 3.5, "x": 0, "y": 0 }
  1616. ],
  1617. "scale": [
  1618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1623. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 3.5, "x": 1, "y": 1 }
  1625. ]
  1626. },
  1627. "bone33": {
  1628. "rotate": [
  1629. { "time": 0, "angle": 0 },
  1630. { "time": 0.5667, "angle": -6 },
  1631. { "time": 1.1667, "angle": 0 },
  1632. { "time": 1.7333, "angle": -6 },
  1633. { "time": 2.3333, "angle": 0 },
  1634. { "time": 2.9, "angle": -6 },
  1635. { "time": 3.5, "angle": 0 }
  1636. ],
  1637. "translate": [
  1638. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1639. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1640. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1641. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 3.5, "x": 0, "y": 0 }
  1645. ],
  1646. "scale": [
  1647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1648. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1649. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1650. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1651. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1652. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1653. { "time": 3.5, "x": 1, "y": 1 }
  1654. ]
  1655. },
  1656. "bone34": {
  1657. "rotate": [
  1658. { "time": 0, "angle": 0 },
  1659. { "time": 0.5667, "angle": -8.01 },
  1660. { "time": 1.1667, "angle": 0 },
  1661. { "time": 1.7333, "angle": -8.01 },
  1662. { "time": 2.3333, "angle": 0 },
  1663. { "time": 2.9, "angle": -8.01 },
  1664. { "time": 3.5, "angle": 0 }
  1665. ],
  1666. "translate": [
  1667. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1673. { "time": 3.5, "x": 0, "y": 0 }
  1674. ],
  1675. "scale": [
  1676. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 3.5, "x": 1, "y": 1 }
  1683. ]
  1684. },
  1685. "bone35": {
  1686. "rotate": [
  1687. { "time": 0, "angle": 0 },
  1688. { "time": 0.5667, "angle": 0.78 },
  1689. { "time": 1.1667, "angle": 0 },
  1690. { "time": 1.7333, "angle": 0.78 },
  1691. { "time": 2.3333, "angle": 0 },
  1692. { "time": 2.9, "angle": 0.78 },
  1693. { "time": 3.5, "angle": 0 }
  1694. ],
  1695. "translate": [
  1696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1698. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1699. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 3.5, "x": 0, "y": 0 }
  1703. ],
  1704. "scale": [
  1705. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1706. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1707. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1708. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1709. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1710. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 3.5, "x": 1, "y": 1 }
  1712. ]
  1713. },
  1714. "bone36": {
  1715. "rotate": [
  1716. { "time": 0, "angle": 0 },
  1717. { "time": 0.5667, "angle": 15.5 },
  1718. { "time": 1.1667, "angle": 0 },
  1719. { "time": 1.7333, "angle": 15.5 },
  1720. { "time": 2.3333, "angle": 0 },
  1721. { "time": 2.9, "angle": 15.5 },
  1722. { "time": 3.5, "angle": 0 }
  1723. ],
  1724. "translate": [
  1725. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1726. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 3.5, "x": 0, "y": 0 }
  1732. ],
  1733. "scale": [
  1734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1739. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1740. { "time": 3.5, "x": 1, "y": 1 }
  1741. ]
  1742. },
  1743. "bone37": {
  1744. "rotate": [
  1745. { "time": 0, "angle": 0 },
  1746. { "time": 0.5667, "angle": 19.79 },
  1747. { "time": 1.1667, "angle": 0 },
  1748. { "time": 1.7333, "angle": 19.79 },
  1749. { "time": 2.3333, "angle": 0 },
  1750. { "time": 2.9, "angle": 19.79 },
  1751. { "time": 3.5, "angle": 0 }
  1752. ],
  1753. "translate": [
  1754. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1755. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1756. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1757. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1758. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1759. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1760. { "time": 3.5, "x": 0, "y": 0 }
  1761. ],
  1762. "scale": [
  1763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1765. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1766. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1767. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1768. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1769. { "time": 3.5, "x": 1, "y": 1 }
  1770. ]
  1771. },
  1772. "bone38": {
  1773. "rotate": [
  1774. { "time": 0, "angle": 0, "curve": "stepped" },
  1775. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1776. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1777. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  1778. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1779. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1780. { "time": 3.5, "angle": 0 }
  1781. ],
  1782. "translate": [
  1783. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1784. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1785. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1787. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1788. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1789. { "time": 3.5, "x": 0, "y": 0 }
  1790. ],
  1791. "scale": [
  1792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1793. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1794. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1795. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1797. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1798. { "time": 3.5, "x": 1, "y": 1 }
  1799. ]
  1800. },
  1801. "bone39": {
  1802. "rotate": [
  1803. { "time": 0, "angle": 0 },
  1804. { "time": 0.5667, "angle": -13.87 },
  1805. { "time": 1.1667, "angle": 0 },
  1806. { "time": 1.7333, "angle": -13.87 },
  1807. { "time": 2.3333, "angle": 0 },
  1808. { "time": 2.9, "angle": -13.87 },
  1809. { "time": 3.5, "angle": 0 }
  1810. ],
  1811. "translate": [
  1812. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 3.5, "x": 0, "y": 0 }
  1819. ],
  1820. "scale": [
  1821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 3.5, "x": 1, "y": 1 }
  1828. ]
  1829. },
  1830. "bone40": {
  1831. "rotate": [
  1832. { "time": 0, "angle": 0, "curve": "stepped" },
  1833. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1834. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1835. { "time": 3.5, "angle": 0 }
  1836. ],
  1837. "translate": [
  1838. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1839. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1840. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1841. { "time": 3.5, "x": 0, "y": 0 }
  1842. ],
  1843. "scale": [
  1844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1845. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 3.5, "x": 1, "y": 1 }
  1848. ]
  1849. },
  1850. "bone41": {
  1851. "rotate": [
  1852. { "time": 0, "angle": 0, "curve": "stepped" },
  1853. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1854. { "time": 3.5, "angle": 0 }
  1855. ],
  1856. "translate": [
  1857. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 3.5, "x": 0, "y": 0 }
  1860. ],
  1861. "scale": [
  1862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 3.5, "x": 1, "y": 1 }
  1865. ]
  1866. },
  1867. "bone42": {
  1868. "rotate": [
  1869. { "time": 0, "angle": 0 },
  1870. { "time": 0.5667, "angle": 12.01 },
  1871. { "time": 1.1667, "angle": 0 },
  1872. { "time": 1.7333, "angle": 12.01 },
  1873. { "time": 2.3333, "angle": 0 },
  1874. { "time": 2.9, "angle": 12.01 },
  1875. { "time": 3.5, "angle": 0 }
  1876. ],
  1877. "translate": [
  1878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1883. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 3.5, "x": 0, "y": 0 }
  1885. ],
  1886. "scale": [
  1887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1892. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 3.5, "x": 1, "y": 1 }
  1894. ]
  1895. },
  1896. "bone43": {
  1897. "rotate": [
  1898. { "time": 0, "angle": 16.54 },
  1899. { "time": 0.5667, "angle": 17.84 },
  1900. { "time": 1.1667, "angle": 16.54 },
  1901. { "time": 1.7333, "angle": 17.84 },
  1902. { "time": 2.3333, "angle": 16.54 },
  1903. { "time": 2.9, "angle": 17.84 },
  1904. { "time": 3.5, "angle": 16.54 }
  1905. ],
  1906. "translate": [
  1907. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1910. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1911. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 3.5, "x": 0, "y": 0 }
  1914. ],
  1915. "scale": [
  1916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1917. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1920. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 3.5, "x": 1, "y": 1 }
  1923. ]
  1924. },
  1925. "bone44": {
  1926. "rotate": [
  1927. { "time": 0, "angle": 0, "curve": "stepped" },
  1928. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1929. { "time": 3.5, "angle": 0 }
  1930. ],
  1931. "translate": [
  1932. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1933. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1934. { "time": 3.5, "x": 0, "y": 0 }
  1935. ],
  1936. "scale": [
  1937. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1938. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1939. { "time": 3.5, "x": 1, "y": 1 }
  1940. ]
  1941. },
  1942. "bone45": {
  1943. "rotate": [
  1944. { "time": 0, "angle": 0 },
  1945. { "time": 0.5667, "angle": 9.52 },
  1946. { "time": 1.1667, "angle": 0 },
  1947. { "time": 1.7333, "angle": 9.52 },
  1948. { "time": 2.3333, "angle": 0 },
  1949. { "time": 2.9, "angle": 9.52 },
  1950. { "time": 3.5, "angle": 0 }
  1951. ],
  1952. "translate": [
  1953. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1956. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1957. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1958. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1959. { "time": 3.5, "x": 0, "y": 0 }
  1960. ],
  1961. "scale": [
  1962. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1963. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1964. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1965. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1966. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 3.5, "x": 1, "y": 1 }
  1969. ]
  1970. },
  1971. "bone46": {
  1972. "rotate": [
  1973. { "time": 0, "angle": 0 },
  1974. { "time": 0.5667, "angle": -24.63 },
  1975. { "time": 1.1667, "angle": 0 },
  1976. { "time": 1.7333, "angle": -24.63 },
  1977. { "time": 2.3333, "angle": 0 },
  1978. { "time": 2.9, "angle": -24.63 },
  1979. { "time": 3.5, "angle": 0 }
  1980. ],
  1981. "translate": [
  1982. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1983. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1984. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 3.5, "x": 0, "y": 0 }
  1989. ],
  1990. "scale": [
  1991. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1993. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1994. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1995. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1996. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1997. { "time": 3.5, "x": 1, "y": 1 }
  1998. ]
  1999. },
  2000. "bone47": {
  2001. "rotate": [
  2002. { "time": 0, "angle": 0 },
  2003. { "time": 0.5667, "angle": -5.14 },
  2004. { "time": 1.1667, "angle": 0 },
  2005. { "time": 1.7333, "angle": -5.14 },
  2006. { "time": 2.3333, "angle": 0 },
  2007. { "time": 2.9, "angle": -5.14 },
  2008. { "time": 3.5, "angle": 0 }
  2009. ],
  2010. "translate": [
  2011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2017. { "time": 3.5, "x": 0, "y": 0 }
  2018. ],
  2019. "scale": [
  2020. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 3.5, "x": 1, "y": 1 }
  2027. ]
  2028. },
  2029. "bone49": {
  2030. "rotate": [
  2031. { "time": 0, "angle": 0, "curve": "stepped" },
  2032. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2033. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2034. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2035. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2036. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2037. { "time": 3.5, "angle": 0 }
  2038. ],
  2039. "translate": [
  2040. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 3.5, "x": 0, "y": 0 }
  2047. ],
  2048. "scale": [
  2049. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2053. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2054. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2055. { "time": 3.5, "x": 1, "y": 1 }
  2056. ]
  2057. },
  2058. "bone50": {
  2059. "rotate": [
  2060. { "time": 0, "angle": 0, "curve": "stepped" },
  2061. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2062. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2063. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2064. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2065. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2066. { "time": 3.5, "angle": 0 }
  2067. ],
  2068. "translate": [
  2069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 3.5, "x": 0, "y": 0 }
  2076. ],
  2077. "scale": [
  2078. { "time": 0, "x": 1, "y": 1 },
  2079. { "time": 0.5667, "x": 1.086, "y": 1 },
  2080. { "time": 1.1667, "x": 1, "y": 1 },
  2081. { "time": 1.7333, "x": 1.086, "y": 1 },
  2082. { "time": 2.3333, "x": 1, "y": 1 },
  2083. { "time": 2.9, "x": 1.086, "y": 1 },
  2084. { "time": 3.5, "x": 1, "y": 1 }
  2085. ]
  2086. },
  2087. "bone51": {
  2088. "rotate": [
  2089. { "time": 0, "angle": 0, "curve": "stepped" },
  2090. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2091. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2092. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2093. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2094. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2095. { "time": 3.5, "angle": 0 }
  2096. ],
  2097. "translate": [
  2098. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 3.5, "x": 0, "y": 0 }
  2105. ],
  2106. "scale": [
  2107. { "time": 0, "x": 1, "y": 1 },
  2108. { "time": 0.5667, "x": 1.047, "y": 1 },
  2109. { "time": 1.1667, "x": 1, "y": 1 },
  2110. { "time": 1.7333, "x": 1.047, "y": 1 },
  2111. { "time": 2.3333, "x": 1, "y": 1 },
  2112. { "time": 2.9, "x": 1.047, "y": 1 },
  2113. { "time": 3.5, "x": 1, "y": 1 }
  2114. ]
  2115. },
  2116. "bone52": {
  2117. "rotate": [
  2118. { "time": 0, "angle": 0, "curve": "stepped" },
  2119. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2120. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2121. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2122. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2123. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2124. { "time": 3.5, "angle": 0 }
  2125. ],
  2126. "translate": [
  2127. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2129. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2130. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2131. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2132. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2133. { "time": 3.5, "x": 0, "y": 0 }
  2134. ],
  2135. "scale": [
  2136. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 3.5, "x": 1, "y": 1 }
  2143. ]
  2144. },
  2145. "bone56": {
  2146. "rotate": [
  2147. { "time": 0, "angle": 0 },
  2148. { "time": 0.5667, "angle": -10.63 },
  2149. { "time": 1.1667, "angle": 0 },
  2150. { "time": 1.7333, "angle": -10.63 },
  2151. { "time": 2.3333, "angle": 0 },
  2152. { "time": 2.9, "angle": -10.63 },
  2153. { "time": 3.5, "angle": 0 }
  2154. ],
  2155. "translate": [
  2156. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2157. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2160. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2161. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2162. { "time": 3.5, "x": 0, "y": 0 }
  2163. ],
  2164. "scale": [
  2165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2170. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2171. { "time": 3.5, "x": 1, "y": 1 }
  2172. ]
  2173. },
  2174. "bone57": {
  2175. "rotate": [
  2176. { "time": 0, "angle": 0 },
  2177. { "time": 0.5667, "angle": -24.87 },
  2178. { "time": 1.1667, "angle": 0 },
  2179. { "time": 1.7333, "angle": -24.87 },
  2180. { "time": 2.3333, "angle": 0 },
  2181. { "time": 2.9, "angle": -24.87 },
  2182. { "time": 3.5, "angle": 0 }
  2183. ],
  2184. "translate": [
  2185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2186. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2187. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2189. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2190. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2191. { "time": 3.5, "x": 0, "y": 0 }
  2192. ],
  2193. "scale": [
  2194. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2195. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2196. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 3.5, "x": 1, "y": 1 }
  2201. ]
  2202. },
  2203. "bone58": {
  2204. "rotate": [
  2205. { "time": 0, "angle": 0 },
  2206. { "time": 0.5667, "angle": 3.24 },
  2207. { "time": 1.1667, "angle": 0 },
  2208. { "time": 1.7333, "angle": 3.24 },
  2209. { "time": 2.3333, "angle": 0 },
  2210. { "time": 2.9, "angle": 3.24 },
  2211. { "time": 3.5, "angle": 0 }
  2212. ],
  2213. "translate": [
  2214. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2215. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2216. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2217. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2218. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2219. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2220. { "time": 3.5, "x": 0, "y": 0 }
  2221. ],
  2222. "scale": [
  2223. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2226. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2227. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2228. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 3.5, "x": 1, "y": 1 }
  2230. ]
  2231. },
  2232. "bone59": {
  2233. "rotate": [
  2234. { "time": 0, "angle": 0 },
  2235. { "time": 0.5667, "angle": 4.43 },
  2236. { "time": 1.1667, "angle": 0 },
  2237. { "time": 1.7333, "angle": 4.43 },
  2238. { "time": 2.3333, "angle": 0 },
  2239. { "time": 2.9, "angle": 4.43 },
  2240. { "time": 3.5, "angle": 0 }
  2241. ],
  2242. "translate": [
  2243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 3.5, "x": 0, "y": 0 }
  2250. ],
  2251. "scale": [
  2252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 3.5, "x": 1, "y": 1 }
  2259. ]
  2260. },
  2261. "bone48": {
  2262. "rotate": [
  2263. { "time": 0, "angle": 0, "curve": "stepped" },
  2264. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2265. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2266. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2267. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2268. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2269. { "time": 3.5, "angle": 0 }
  2270. ],
  2271. "translate": [
  2272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 3.5, "x": 0, "y": 0 }
  2279. ],
  2280. "scale": [
  2281. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 3.5, "x": 1, "y": 1 }
  2288. ]
  2289. },
  2290. "bone60": {
  2291. "rotate": [
  2292. { "time": 0, "angle": 0, "curve": "stepped" },
  2293. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2294. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2295. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  2296. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2297. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2298. { "time": 3.5, "angle": 0 }
  2299. ],
  2300. "translate": [
  2301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 3.5, "x": 0, "y": 0 }
  2308. ],
  2309. "scale": [
  2310. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2311. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2314. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2315. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  2316. { "time": 3.5, "x": 1, "y": 1 }
  2317. ]
  2318. },
  2319. "bone61": {
  2320. "rotate": [
  2321. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  2322. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2323. { "time": 2.9, "angle": 0, "curve": "stepped" },
  2324. { "time": 3, "angle": 0 }
  2325. ],
  2326. "translate": [
  2327. { "time": 0.7667, "x": 7.62, "y": -8.71 },
  2328. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 2.9, "x": 0, "y": 0 },
  2330. { "time": 3, "x": 7.62, "y": -8.71 }
  2331. ],
  2332. "scale": [
  2333. { "time": 0.7667, "x": 0.2, "y": 0.2 },
  2334. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 2.9, "x": 1, "y": 1 },
  2336. { "time": 3, "x": 0.2, "y": 0.2 }
  2337. ]
  2338. }
  2339. },
  2340. "deform": {
  2341. "default": {
  2342. "erji": {
  2343. "erji": [
  2344. { "time": 0 },
  2345. {
  2346. "time": 0.5667,
  2347. "offset": 8,
  2348. "vertices": [ -0.53481, 1.37687 ]
  2349. },
  2350. { "time": 1.1667 },
  2351. {
  2352. "time": 1.7333,
  2353. "offset": 8,
  2354. "vertices": [ -0.53481, 1.37687 ]
  2355. },
  2356. { "time": 2.3333 },
  2357. {
  2358. "time": 2.9,
  2359. "offset": 8,
  2360. "vertices": [ -0.53481, 1.37687 ]
  2361. },
  2362. { "time": 3.5 }
  2363. ]
  2364. },
  2365. "pinmu": {
  2366. "pinmu": [
  2367. {
  2368. "time": 0,
  2369. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ],
  2370. "curve": "stepped"
  2371. },
  2372. {
  2373. "time": 0.0667,
  2374. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
  2375. },
  2376. {
  2377. "time": 0.1667,
  2378. "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
  2379. },
  2380. { "time": 0.3667, "curve": "stepped" },
  2381. { "time": 2 },
  2382. {
  2383. "time": 2.0667,
  2384. "vertices": [ -24.59227, 2.70208, 0, 0, 0, 0, -19.76017, 2.26503 ]
  2385. },
  2386. {
  2387. "time": 2.1667,
  2388. "vertices": [ -43.03647, 4.72864, 0, 0, 0, 0, -35.84853, -1.42173 ]
  2389. }
  2390. ]
  2391. }
  2392. }
  2393. },
  2394. "drawOrder": [
  2395. {
  2396. "time": 1.5,
  2397. "offsets": [
  2398. { "slot": "diannao1", "offset": -28 }
  2399. ]
  2400. },
  2401. {
  2402. "time": 1.7333,
  2403. "offsets": [
  2404. { "slot": "diannao1", "offset": -28 }
  2405. ]
  2406. }
  2407. ]
  2408. },
  2409. "walk1": {
  2410. "slots": {
  2411. "biaoqing_1": {
  2412. "color": [
  2413. { "time": 0, "color": "ffffff00" }
  2414. ]
  2415. },
  2416. "biyan": {
  2417. "attachment": [
  2418. { "time": 0, "name": null },
  2419. { "time": 1, "name": null },
  2420. { "time": 1.1, "name": "biyan" },
  2421. { "time": 1.2, "name": null }
  2422. ]
  2423. },
  2424. "diannao1": {
  2425. "attachment": [
  2426. { "time": 0, "name": null },
  2427. { "time": 1, "name": null },
  2428. { "time": 2, "name": null }
  2429. ]
  2430. },
  2431. "diannao_x": {
  2432. "color": [
  2433. { "time": 0, "color": "ffffff00" }
  2434. ]
  2435. },
  2436. "dou": {
  2437. "attachment": [
  2438. { "time": 0, "name": null },
  2439. { "time": 1, "name": null },
  2440. { "time": 2, "name": null }
  2441. ]
  2442. },
  2443. "dou2": {
  2444. "attachment": [
  2445. { "time": 0, "name": null },
  2446. { "time": 1, "name": null },
  2447. { "time": 2, "name": null }
  2448. ]
  2449. },
  2450. "dou3": {
  2451. "attachment": [
  2452. { "time": 0, "name": null },
  2453. { "time": 1, "name": null },
  2454. { "time": 2, "name": null }
  2455. ]
  2456. },
  2457. "pinmu": {
  2458. "attachment": [
  2459. { "time": 0, "name": null },
  2460. { "time": 1, "name": null },
  2461. { "time": 2, "name": null }
  2462. ]
  2463. },
  2464. "youyan": {
  2465. "attachment": [
  2466. { "time": 1.1, "name": null },
  2467. { "time": 1.2, "name": "youyan" }
  2468. ]
  2469. },
  2470. "zuoyan": {
  2471. "attachment": [
  2472. { "time": 1.1, "name": null },
  2473. { "time": 1.2, "name": "zuoyan" }
  2474. ]
  2475. }
  2476. },
  2477. "bones": {
  2478. "root": {
  2479. "rotate": [
  2480. { "time": 0, "angle": 0 }
  2481. ],
  2482. "translate": [
  2483. { "time": 0, "x": 0, "y": 0 }
  2484. ],
  2485. "scale": [
  2486. { "time": 0, "x": 0.65, "y": 0.65 }
  2487. ]
  2488. },
  2489. "bone": {
  2490. "rotate": [
  2491. { "time": 0, "angle": 0, "curve": "stepped" },
  2492. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2493. { "time": 1, "angle": 0, "curve": "stepped" },
  2494. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2495. { "time": 2, "angle": 0 }
  2496. ],
  2497. "translate": [
  2498. { "time": 0, "x": 0, "y": 1.78 },
  2499. { "time": 0.1667, "x": 0, "y": -1.18 },
  2500. { "time": 0.5, "x": 0, "y": 1.78 },
  2501. { "time": 0.6667, "x": 0, "y": -1.18 },
  2502. { "time": 1, "x": 0, "y": 1.78 },
  2503. { "time": 1.1667, "x": 0, "y": -1.18 },
  2504. { "time": 1.5, "x": 0, "y": 1.78 },
  2505. { "time": 1.6667, "x": 0, "y": -1.18 },
  2506. { "time": 2, "x": 0, "y": 1.78 }
  2507. ],
  2508. "scale": [
  2509. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2510. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 2, "x": 1, "y": 1 }
  2514. ]
  2515. },
  2516. "bone2": {
  2517. "rotate": [
  2518. { "time": 0, "angle": 0, "curve": "stepped" },
  2519. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2520. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2521. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2522. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2523. { "time": 1, "angle": 0, "curve": "stepped" },
  2524. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2525. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2526. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2527. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2528. { "time": 2, "angle": 0 }
  2529. ],
  2530. "translate": [
  2531. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2533. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2539. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2541. { "time": 2, "x": 0, "y": 0 }
  2542. ],
  2543. "scale": [
  2544. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2545. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2551. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 2, "x": 1, "y": 1 }
  2553. ]
  2554. },
  2555. "bone3": {
  2556. "rotate": [
  2557. {
  2558. "time": 0,
  2559. "angle": 0,
  2560. "curve": [ 0.25, 0, 0.75, 1 ]
  2561. },
  2562. {
  2563. "time": 0.5,
  2564. "angle": 0.92,
  2565. "curve": [ 0.25, 0, 0.75, 1 ]
  2566. },
  2567. {
  2568. "time": 1,
  2569. "angle": 0,
  2570. "curve": [ 0.25, 0, 0.75, 1 ]
  2571. },
  2572. {
  2573. "time": 1.5,
  2574. "angle": 0.92,
  2575. "curve": [ 0.25, 0, 0.75, 1 ]
  2576. },
  2577. { "time": 2, "angle": 0 }
  2578. ]
  2579. },
  2580. "bone4": {
  2581. "rotate": [
  2582. {
  2583. "time": 0,
  2584. "angle": -318.1,
  2585. "curve": [ 0.25, 0, 0.75, 1 ]
  2586. },
  2587. {
  2588. "time": 0.5,
  2589. "angle": 3.29,
  2590. "curve": [ 0.25, 0, 0.75, 1 ]
  2591. },
  2592. {
  2593. "time": 1,
  2594. "angle": -318.1,
  2595. "curve": [ 0.25, 0, 0.75, 1 ]
  2596. },
  2597. {
  2598. "time": 1.5,
  2599. "angle": 3.29,
  2600. "curve": [ 0.25, 0, 0.75, 1 ]
  2601. },
  2602. { "time": 2, "angle": -318.1 }
  2603. ],
  2604. "translate": [
  2605. {
  2606. "time": 0,
  2607. "x": -1.79,
  2608. "y": -10.32,
  2609. "curve": [ 0.25, 0, 0.75, 1 ]
  2610. },
  2611. {
  2612. "time": 0.5,
  2613. "x": -3.24,
  2614. "y": -4.25,
  2615. "curve": [ 0.25, 0, 0.75, 1 ]
  2616. },
  2617. {
  2618. "time": 1,
  2619. "x": -1.79,
  2620. "y": -10.32,
  2621. "curve": [ 0.25, 0, 0.75, 1 ]
  2622. },
  2623. {
  2624. "time": 1.5,
  2625. "x": -3.24,
  2626. "y": -4.25,
  2627. "curve": [ 0.25, 0, 0.75, 1 ]
  2628. },
  2629. { "time": 2, "x": -1.79, "y": -10.32 }
  2630. ],
  2631. "scale": [
  2632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2633. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2634. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2635. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2636. { "time": 2, "x": 1, "y": 1 }
  2637. ]
  2638. },
  2639. "bone5": {
  2640. "rotate": [
  2641. {
  2642. "time": 0,
  2643. "angle": -4.23,
  2644. "curve": [ 0.25, 0, 0.75, 1 ]
  2645. },
  2646. {
  2647. "time": 0.5,
  2648. "angle": -19.53,
  2649. "curve": [ 0.25, 0, 0.75, 1 ]
  2650. },
  2651. {
  2652. "time": 1,
  2653. "angle": -4.23,
  2654. "curve": [ 0.25, 0, 0.75, 1 ]
  2655. },
  2656. {
  2657. "time": 1.5,
  2658. "angle": -19.53,
  2659. "curve": [ 0.25, 0, 0.75, 1 ]
  2660. },
  2661. { "time": 2, "angle": -4.23 }
  2662. ],
  2663. "translate": [
  2664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 2, "x": 0, "y": 0 }
  2669. ],
  2670. "scale": [
  2671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2672. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 2, "x": 1, "y": 1 }
  2676. ]
  2677. },
  2678. "bone6": {
  2679. "rotate": [
  2680. {
  2681. "time": 0,
  2682. "angle": -9.34,
  2683. "curve": [ 0.25, 0, 0.75, 1 ]
  2684. },
  2685. {
  2686. "time": 0.5,
  2687. "angle": -6.69,
  2688. "curve": [ 0.25, 0, 0.75, 1 ]
  2689. },
  2690. {
  2691. "time": 1,
  2692. "angle": -9.34,
  2693. "curve": [ 0.25, 0, 0.75, 1 ]
  2694. },
  2695. {
  2696. "time": 1.5,
  2697. "angle": -6.69,
  2698. "curve": [ 0.25, 0, 0.75, 1 ]
  2699. },
  2700. { "time": 2, "angle": -9.34 }
  2701. ],
  2702. "translate": [
  2703. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2704. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2705. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2706. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2707. { "time": 2, "x": 0, "y": 0 }
  2708. ],
  2709. "scale": [
  2710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 2, "x": 1, "y": 1 }
  2715. ]
  2716. },
  2717. "bone7": {
  2718. "rotate": [
  2719. {
  2720. "time": 0,
  2721. "angle": 325.16,
  2722. "curve": [ 0.25, 0, 0.75, 1 ]
  2723. },
  2724. {
  2725. "time": 0.5,
  2726. "angle": 5.29,
  2727. "curve": [ 0.25, 0, 0.75, 1 ]
  2728. },
  2729. {
  2730. "time": 1,
  2731. "angle": 325.16,
  2732. "curve": [ 0.25, 0, 0.75, 1 ]
  2733. },
  2734. {
  2735. "time": 1.5,
  2736. "angle": 5.29,
  2737. "curve": [ 0.25, 0, 0.75, 1 ]
  2738. },
  2739. { "time": 2, "angle": 325.16 }
  2740. ],
  2741. "translate": [
  2742. {
  2743. "time": 0,
  2744. "x": -0.92,
  2745. "y": 1.61,
  2746. "curve": [ 0.25, 0, 0.75, 1 ]
  2747. },
  2748. {
  2749. "time": 0.5,
  2750. "x": -2.55,
  2751. "y": -1.91,
  2752. "curve": [ 0.25, 0, 0.75, 1 ]
  2753. },
  2754. {
  2755. "time": 1,
  2756. "x": -0.92,
  2757. "y": 1.61,
  2758. "curve": [ 0.25, 0, 0.75, 1 ]
  2759. },
  2760. {
  2761. "time": 1.5,
  2762. "x": -2.55,
  2763. "y": -1.91,
  2764. "curve": [ 0.25, 0, 0.75, 1 ]
  2765. },
  2766. { "time": 2, "x": -0.92, "y": 1.61 }
  2767. ],
  2768. "scale": [
  2769. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2771. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2772. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2773. { "time": 2, "x": 1, "y": 1 }
  2774. ]
  2775. },
  2776. "bone8": {
  2777. "rotate": [
  2778. {
  2779. "time": 0,
  2780. "angle": -20.71,
  2781. "curve": [ 0.25, 0, 0.75, 1 ]
  2782. },
  2783. {
  2784. "time": 0.5,
  2785. "angle": -5.9,
  2786. "curve": [ 0.25, 0, 0.75, 1 ]
  2787. },
  2788. {
  2789. "time": 1,
  2790. "angle": -20.71,
  2791. "curve": [ 0.25, 0, 0.75, 1 ]
  2792. },
  2793. {
  2794. "time": 1.5,
  2795. "angle": -5.9,
  2796. "curve": [ 0.25, 0, 0.75, 1 ]
  2797. },
  2798. { "time": 2, "angle": -20.71 }
  2799. ],
  2800. "translate": [
  2801. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2804. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2805. { "time": 2, "x": 0, "y": 0 }
  2806. ],
  2807. "scale": [
  2808. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 2, "x": 1, "y": 1 }
  2813. ]
  2814. },
  2815. "bone9": {
  2816. "rotate": [
  2817. {
  2818. "time": 0,
  2819. "angle": -14.04,
  2820. "curve": [ 0.25, 0, 0.75, 1 ]
  2821. },
  2822. {
  2823. "time": 0.5,
  2824. "angle": -17.05,
  2825. "curve": [ 0.25, 0, 0.75, 1 ]
  2826. },
  2827. {
  2828. "time": 1,
  2829. "angle": -14.04,
  2830. "curve": [ 0.25, 0, 0.75, 1 ]
  2831. },
  2832. {
  2833. "time": 1.5,
  2834. "angle": -17.05,
  2835. "curve": [ 0.25, 0, 0.75, 1 ]
  2836. },
  2837. { "time": 2, "angle": -14.04 }
  2838. ],
  2839. "translate": [
  2840. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2842. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2843. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2844. { "time": 2, "x": 0, "y": 0 }
  2845. ],
  2846. "scale": [
  2847. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 2, "x": 1, "y": 1 }
  2852. ]
  2853. },
  2854. "bone11": {
  2855. "rotate": [
  2856. { "time": 0, "angle": -15.86 },
  2857. { "time": 0.1667, "angle": -0.53 },
  2858. { "time": 0.3333, "angle": 19.59 },
  2859. { "time": 0.5, "angle": 41.68 },
  2860. { "time": 0.6667, "angle": 22.5 },
  2861. { "time": 0.8333, "angle": -5.58 },
  2862. { "time": 1, "angle": -15.86 },
  2863. { "time": 1.1667, "angle": -0.53 },
  2864. { "time": 1.3333, "angle": 19.59 },
  2865. { "time": 1.5, "angle": 41.68 },
  2866. { "time": 1.6667, "angle": 22.5 },
  2867. { "time": 1.8333, "angle": -5.58 },
  2868. { "time": 2, "angle": -15.86 }
  2869. ],
  2870. "translate": [
  2871. { "time": 0, "x": 0, "y": 0 },
  2872. { "time": 0.1667, "x": 2.34, "y": 1.1 },
  2873. { "time": 0.3333, "x": 11.87, "y": 0.67 },
  2874. { "time": 0.5, "x": 20.79, "y": 0.35 },
  2875. { "time": 0.6667, "x": 13.56, "y": 0.17 },
  2876. { "time": 0.8333, "x": 1.28, "y": 0.83 },
  2877. { "time": 1, "x": 0, "y": 0 },
  2878. { "time": 1.1667, "x": 2.34, "y": 1.1 },
  2879. { "time": 1.3333, "x": 11.87, "y": 0.67 },
  2880. { "time": 1.5, "x": 20.79, "y": 0.35 },
  2881. { "time": 1.6667, "x": 13.56, "y": 0.17 },
  2882. { "time": 1.8333, "x": 1.28, "y": 0.83 },
  2883. { "time": 2, "x": 0, "y": 0 }
  2884. ],
  2885. "scale": [
  2886. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2887. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2888. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2889. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2890. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2891. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2893. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 2, "x": 1, "y": 1 }
  2897. ]
  2898. },
  2899. "bone12": {
  2900. "rotate": [
  2901. { "time": 0, "angle": -3.14 },
  2902. { "time": 0.1667, "angle": 12.11 },
  2903. { "time": 0.3333, "angle": -6.68 },
  2904. { "time": 0.5, "angle": -3.14 },
  2905. { "time": 0.6667, "angle": 30.59 },
  2906. { "time": 0.8333, "angle": 44 },
  2907. { "time": 1, "angle": -3.14 },
  2908. { "time": 1.1667, "angle": 12.11 },
  2909. { "time": 1.3333, "angle": -6.68 },
  2910. { "time": 1.5, "angle": -3.14 },
  2911. { "time": 1.6667, "angle": 30.59 },
  2912. { "time": 1.8333, "angle": 44 },
  2913. { "time": 2, "angle": -3.14 }
  2914. ],
  2915. "translate": [
  2916. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2917. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2918. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2919. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2920. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2921. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2922. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2923. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2924. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2925. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2926. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 2, "x": 0, "y": 0 }
  2929. ],
  2930. "scale": [
  2931. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2932. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2933. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 2, "x": 1, "y": 1 }
  2942. ]
  2943. },
  2944. "bone13": {
  2945. "rotate": [
  2946. { "time": 0, "angle": 0 },
  2947. { "time": 0.1667, "angle": -6.46 },
  2948. { "time": 0.3333, "angle": -11.41 },
  2949. { "time": 0.5, "angle": 3.59 },
  2950. { "time": 0.6667, "angle": -8.18 },
  2951. { "time": 0.8333, "angle": -9.36 },
  2952. { "time": 1, "angle": 0 },
  2953. { "time": 1.1667, "angle": -6.46 },
  2954. { "time": 1.3333, "angle": -11.41 },
  2955. { "time": 1.5, "angle": 3.59 },
  2956. { "time": 1.6667, "angle": -8.18 },
  2957. { "time": 1.8333, "angle": -9.36 },
  2958. { "time": 2, "angle": 0 }
  2959. ],
  2960. "translate": [
  2961. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2964. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2965. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2966. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2967. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2968. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2969. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2970. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 2, "x": 0, "y": 0 }
  2974. ],
  2975. "scale": [
  2976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2977. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2978. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2979. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2980. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2981. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 2, "x": 1, "y": 1 }
  2987. ]
  2988. },
  2989. "bone14": {
  2990. "rotate": [
  2991. { "time": 0, "angle": 22.22 },
  2992. { "time": 0.1667, "angle": 6.1 },
  2993. { "time": 0.3333, "angle": -30.91 },
  2994. { "time": 0.5, "angle": -26.13 },
  2995. { "time": 0.6667, "angle": -19.66 },
  2996. { "time": 0.8333, "angle": 6.1 },
  2997. { "time": 1, "angle": 22.22 },
  2998. { "time": 1.1667, "angle": 6.1 },
  2999. { "time": 1.3333, "angle": -30.91 },
  3000. { "time": 1.5, "angle": -26.13 },
  3001. { "time": 1.6667, "angle": -19.66 },
  3002. { "time": 1.8333, "angle": 6.1 },
  3003. { "time": 2, "angle": 22.22 }
  3004. ],
  3005. "translate": [
  3006. { "time": 0, "x": 0, "y": 0 },
  3007. { "time": 0.1667, "x": -9.71, "y": 3.49 },
  3008. { "time": 0.3333, "x": -19.49, "y": 4.16 },
  3009. { "time": 0.5, "x": -21.02, "y": -1.46 },
  3010. { "time": 0.6667, "x": -18.05, "y": 0.05 },
  3011. { "time": 0.8333, "x": -7.01, "y": -0.49 },
  3012. { "time": 1, "x": 0, "y": 0 },
  3013. { "time": 1.1667, "x": -9.71, "y": 3.49 },
  3014. { "time": 1.3333, "x": -19.49, "y": 4.16 },
  3015. { "time": 1.5, "x": -21.02, "y": -1.46 },
  3016. { "time": 1.6667, "x": -18.05, "y": 0.05 },
  3017. { "time": 1.8333, "x": -7.01, "y": -0.49 },
  3018. { "time": 2, "x": 0, "y": 0 }
  3019. ]
  3020. },
  3021. "bone15": {
  3022. "rotate": [
  3023. { "time": 0, "angle": 0 },
  3024. { "time": 0.1667, "angle": 29.76 },
  3025. { "time": 0.3333, "angle": 63.15 },
  3026. { "time": 0.5, "angle": 0 },
  3027. { "time": 0.6667, "angle": 14.51 },
  3028. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3029. { "time": 1, "angle": 0 },
  3030. { "time": 1.1667, "angle": 29.76 },
  3031. { "time": 1.3333, "angle": 63.15 },
  3032. { "time": 1.5, "angle": 0 },
  3033. { "time": 1.6667, "angle": 14.51 },
  3034. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3035. { "time": 2, "angle": 0 }
  3036. ],
  3037. "translate": [
  3038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3039. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3040. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3041. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3042. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3043. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3044. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3045. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3046. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3047. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3048. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3049. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3050. { "time": 2, "x": 0, "y": 0 }
  3051. ],
  3052. "scale": [
  3053. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3054. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3055. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3056. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3057. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3058. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3059. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3060. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3061. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3062. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3063. { "time": 2, "x": 1, "y": 1 }
  3064. ]
  3065. },
  3066. "bone16": {
  3067. "rotate": [
  3068. { "time": 0, "angle": 0, "curve": "stepped" },
  3069. { "time": 0.1667, "angle": 0 },
  3070. { "time": 0.3333, "angle": 4.62 },
  3071. { "time": 0.5, "angle": 0 },
  3072. { "time": 0.6667, "angle": 10.03 },
  3073. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3074. { "time": 1, "angle": 0, "curve": "stepped" },
  3075. { "time": 1.1667, "angle": 0 },
  3076. { "time": 1.3333, "angle": 4.62 },
  3077. { "time": 1.5, "angle": 0 },
  3078. { "time": 1.6667, "angle": 10.03 },
  3079. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3080. { "time": 2, "angle": 0 }
  3081. ]
  3082. },
  3083. "bone17": {
  3084. "translate": [
  3085. {
  3086. "time": 0,
  3087. "x": 1.23,
  3088. "y": 5.24,
  3089. "curve": [ 0.25, 0, 0.75, 1 ]
  3090. },
  3091. {
  3092. "time": 0.5,
  3093. "x": -0.96,
  3094. "y": 0.44,
  3095. "curve": [ 0.25, 0, 0.75, 1 ]
  3096. },
  3097. {
  3098. "time": 1,
  3099. "x": 1.23,
  3100. "y": 5.24,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. {
  3104. "time": 1.5,
  3105. "x": -0.96,
  3106. "y": 0.44,
  3107. "curve": [ 0.25, 0, 0.75, 1 ]
  3108. },
  3109. { "time": 2, "x": 1.23, "y": 5.24 }
  3110. ]
  3111. },
  3112. "bone18": {
  3113. "rotate": [
  3114. {
  3115. "time": 0,
  3116. "angle": 0,
  3117. "curve": [ 0.25, 0, 0.75, 1 ]
  3118. },
  3119. {
  3120. "time": 0.5,
  3121. "angle": -6.74,
  3122. "curve": [ 0.25, 0, 0.75, 1 ]
  3123. },
  3124. {
  3125. "time": 1,
  3126. "angle": 0,
  3127. "curve": [ 0.25, 0, 0.75, 1 ]
  3128. },
  3129. {
  3130. "time": 1.5,
  3131. "angle": -6.74,
  3132. "curve": [ 0.25, 0, 0.75, 1 ]
  3133. },
  3134. { "time": 2, "angle": 0 }
  3135. ],
  3136. "translate": [
  3137. {
  3138. "time": 0,
  3139. "x": 0.03,
  3140. "y": 0.5,
  3141. "curve": [ 0.25, 0, 0.75, 1 ]
  3142. },
  3143. {
  3144. "time": 0.5,
  3145. "x": -0.7,
  3146. "y": 1.91,
  3147. "curve": [ 0.25, 0, 0.75, 1 ]
  3148. },
  3149. {
  3150. "time": 1,
  3151. "x": 0.03,
  3152. "y": 0.5,
  3153. "curve": [ 0.25, 0, 0.75, 1 ]
  3154. },
  3155. {
  3156. "time": 1.5,
  3157. "x": -0.7,
  3158. "y": 1.91,
  3159. "curve": [ 0.25, 0, 0.75, 1 ]
  3160. },
  3161. { "time": 2, "x": 0.03, "y": 0.5 }
  3162. ],
  3163. "scale": [
  3164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3166. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 2, "x": 1, "y": 1 }
  3169. ]
  3170. },
  3171. "bone19": {
  3172. "rotate": [
  3173. {
  3174. "time": 0,
  3175. "angle": -5.24,
  3176. "curve": [ 0.25, 0, 0.75, 1 ]
  3177. },
  3178. {
  3179. "time": 0.5,
  3180. "angle": -15.64,
  3181. "curve": [ 0.25, 0, 0.75, 1 ]
  3182. },
  3183. {
  3184. "time": 1,
  3185. "angle": -5.24,
  3186. "curve": [ 0.25, 0, 0.75, 1 ]
  3187. },
  3188. {
  3189. "time": 1.5,
  3190. "angle": -15.64,
  3191. "curve": [ 0.25, 0, 0.75, 1 ]
  3192. },
  3193. { "time": 2, "angle": -5.24 }
  3194. ],
  3195. "translate": [
  3196. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3197. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3198. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3199. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3200. { "time": 2, "x": 0, "y": 0 }
  3201. ],
  3202. "scale": [
  3203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3204. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3205. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3206. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3207. { "time": 2, "x": 1, "y": 1 }
  3208. ]
  3209. },
  3210. "bone20": {
  3211. "rotate": [
  3212. {
  3213. "time": 0,
  3214. "angle": 3.77,
  3215. "curve": [ 0.25, 0, 0.75, 1 ]
  3216. },
  3217. {
  3218. "time": 0.5,
  3219. "angle": -5.43,
  3220. "curve": [ 0.25, 0, 0.75, 1 ]
  3221. },
  3222. {
  3223. "time": 1,
  3224. "angle": 3.77,
  3225. "curve": [ 0.25, 0, 0.75, 1 ]
  3226. },
  3227. {
  3228. "time": 1.5,
  3229. "angle": -5.43,
  3230. "curve": [ 0.25, 0, 0.75, 1 ]
  3231. },
  3232. { "time": 2, "angle": 3.77 }
  3233. ],
  3234. "translate": [
  3235. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3236. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3237. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3238. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3239. { "time": 2, "x": 0, "y": 0 }
  3240. ],
  3241. "scale": [
  3242. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3244. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3245. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 2, "x": 1, "y": 1 }
  3247. ]
  3248. },
  3249. "bone21": {
  3250. "rotate": [
  3251. {
  3252. "time": 0,
  3253. "angle": 9.74,
  3254. "curve": [ 0.25, 0, 0.75, 1 ]
  3255. },
  3256. {
  3257. "time": 0.5,
  3258. "angle": 3.27,
  3259. "curve": [ 0.25, 0, 0.75, 1 ]
  3260. },
  3261. {
  3262. "time": 1,
  3263. "angle": 9.74,
  3264. "curve": [ 0.25, 0, 0.75, 1 ]
  3265. },
  3266. {
  3267. "time": 1.5,
  3268. "angle": 3.27,
  3269. "curve": [ 0.25, 0, 0.75, 1 ]
  3270. },
  3271. { "time": 2, "angle": 9.74 }
  3272. ],
  3273. "translate": [
  3274. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3275. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3278. { "time": 2, "x": 0, "y": 0 }
  3279. ],
  3280. "scale": [
  3281. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3282. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3283. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3284. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3285. { "time": 2, "x": 1, "y": 1 }
  3286. ]
  3287. },
  3288. "bone22": {
  3289. "rotate": [
  3290. {
  3291. "time": 0,
  3292. "angle": 8.49,
  3293. "curve": [ 0.25, 0, 0.75, 1 ]
  3294. },
  3295. {
  3296. "time": 0.5,
  3297. "angle": -5.1,
  3298. "curve": [ 0.25, 0, 0.75, 1 ]
  3299. },
  3300. {
  3301. "time": 1,
  3302. "angle": 8.49,
  3303. "curve": [ 0.25, 0, 0.75, 1 ]
  3304. },
  3305. {
  3306. "time": 1.5,
  3307. "angle": -5.1,
  3308. "curve": [ 0.25, 0, 0.75, 1 ]
  3309. },
  3310. { "time": 2, "angle": 8.49 }
  3311. ],
  3312. "translate": [
  3313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3314. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3315. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3316. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3317. { "time": 2, "x": 0, "y": 0 }
  3318. ],
  3319. "scale": [
  3320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3322. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3324. { "time": 2, "x": 1, "y": 1 }
  3325. ]
  3326. },
  3327. "bone23": {
  3328. "rotate": [
  3329. {
  3330. "time": 0,
  3331. "angle": 4.74,
  3332. "curve": [ 0.25, 0, 0.75, 1 ]
  3333. },
  3334. {
  3335. "time": 0.5,
  3336. "angle": -8.55,
  3337. "curve": [ 0.25, 0, 0.75, 1 ]
  3338. },
  3339. {
  3340. "time": 1,
  3341. "angle": 4.74,
  3342. "curve": [ 0.25, 0, 0.75, 1 ]
  3343. },
  3344. {
  3345. "time": 1.5,
  3346. "angle": -8.55,
  3347. "curve": [ 0.25, 0, 0.75, 1 ]
  3348. },
  3349. { "time": 2, "angle": 4.74 }
  3350. ],
  3351. "translate": [
  3352. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3353. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3354. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3355. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 2, "x": 0, "y": 0 }
  3357. ],
  3358. "scale": [
  3359. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 2, "x": 1, "y": 1 }
  3364. ]
  3365. },
  3366. "bone24": {
  3367. "rotate": [
  3368. { "time": 0, "angle": 0, "curve": "stepped" },
  3369. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3370. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3371. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3372. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3373. { "time": 1, "angle": 0, "curve": "stepped" },
  3374. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3375. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3376. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3377. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3378. { "time": 2, "angle": 0 }
  3379. ],
  3380. "translate": [
  3381. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3382. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3388. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3391. { "time": 2, "x": 0, "y": 0 }
  3392. ],
  3393. "scale": [
  3394. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3395. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3396. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3397. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 2, "x": 1, "y": 1 }
  3403. ]
  3404. },
  3405. "bone25": {
  3406. "rotate": [
  3407. { "time": 0, "angle": 0, "curve": "stepped" },
  3408. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3409. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3410. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3411. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3412. { "time": 1, "angle": 0, "curve": "stepped" },
  3413. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3414. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3415. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3416. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3417. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3418. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3419. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3420. { "time": 2, "angle": 0 }
  3421. ],
  3422. "translate": [
  3423. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3424. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3427. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 2, "x": 0, "y": 0 }
  3437. ],
  3438. "scale": [
  3439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3442. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 1, "x": 1, "y": 1 },
  3444. { "time": 1.1, "x": 0.42, "y": 1, "curve": "stepped" },
  3445. { "time": 1.2, "x": 0.42, "y": 1 },
  3446. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 2, "x": 1, "y": 1 }
  3451. ]
  3452. },
  3453. "bone26": {
  3454. "rotate": [
  3455. { "time": 0, "angle": 0, "curve": "stepped" },
  3456. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3457. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3458. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3459. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3460. { "time": 1, "angle": 0, "curve": "stepped" },
  3461. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3462. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3463. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3464. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3465. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3466. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3467. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3468. { "time": 2, "angle": 0 }
  3469. ],
  3470. "translate": [
  3471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3475. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3476. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 2, "x": 0, "y": 0 }
  3485. ],
  3486. "scale": [
  3487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3488. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3490. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3491. { "time": 1, "x": 1, "y": 1 },
  3492. { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
  3493. { "time": 1.2, "x": 0.464, "y": 1 },
  3494. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 2, "x": 1, "y": 1 }
  3499. ]
  3500. },
  3501. "bone28": {
  3502. "rotate": [
  3503. { "time": 0, "angle": 0, "curve": "stepped" },
  3504. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3505. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3506. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3507. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3508. { "time": 1, "angle": 0, "curve": "stepped" },
  3509. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3510. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3511. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3512. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3513. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3514. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3515. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3516. { "time": 2, "angle": 0 }
  3517. ],
  3518. "translate": [
  3519. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 1, "x": 0, "y": 0 },
  3525. { "time": 1.1, "x": -1.59, "y": 0.05 },
  3526. { "time": 1.1667, "x": 0, "y": 0 },
  3527. { "time": 1.2, "x": -1.59, "y": 0.05 },
  3528. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 2, "x": 0, "y": 0 }
  3533. ],
  3534. "scale": [
  3535. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3536. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3542. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3543. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3544. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 2, "x": 1, "y": 1 }
  3546. ]
  3547. },
  3548. "bone29": {
  3549. "rotate": [
  3550. { "time": 0, "angle": 0, "curve": "stepped" },
  3551. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3552. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3553. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3554. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3555. { "time": 1, "angle": 0, "curve": "stepped" },
  3556. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3557. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3558. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3559. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3560. { "time": 2, "angle": 0 }
  3561. ],
  3562. "translate": [
  3563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3564. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3571. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 2, "x": 0, "y": 0 }
  3574. ],
  3575. "scale": [
  3576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3578. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3579. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3580. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3581. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3582. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3583. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3584. { "time": 2, "x": 1, "y": 1 }
  3585. ]
  3586. },
  3587. "bone31": {
  3588. "rotate": [
  3589. { "time": 0, "angle": 0 },
  3590. { "time": 0.5, "angle": -3.83 },
  3591. { "time": 1, "angle": 0 },
  3592. { "time": 1.5, "angle": -3.83 },
  3593. { "time": 2, "angle": 0 }
  3594. ],
  3595. "translate": [
  3596. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3599. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3600. { "time": 2, "x": 0, "y": 0 }
  3601. ],
  3602. "scale": [
  3603. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3607. { "time": 2, "x": 1, "y": 1 }
  3608. ]
  3609. },
  3610. "bone32": {
  3611. "rotate": [
  3612. { "time": 0, "angle": 0 },
  3613. { "time": 0.5, "angle": 0.95 },
  3614. { "time": 1, "angle": 0 },
  3615. { "time": 1.5, "angle": 0.95 },
  3616. { "time": 2, "angle": 0 }
  3617. ],
  3618. "translate": [
  3619. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3623. { "time": 2, "x": 0, "y": 0 }
  3624. ],
  3625. "scale": [
  3626. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3630. { "time": 2, "x": 1, "y": 1 }
  3631. ]
  3632. },
  3633. "bone33": {
  3634. "rotate": [
  3635. { "time": 0, "angle": 0 },
  3636. { "time": 0.5, "angle": -11.18 },
  3637. { "time": 1, "angle": 0 },
  3638. { "time": 1.5, "angle": -11.18 },
  3639. { "time": 2, "angle": 0 }
  3640. ],
  3641. "translate": [
  3642. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 2, "x": 0, "y": 0 }
  3647. ],
  3648. "scale": [
  3649. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3653. { "time": 2, "x": 1, "y": 1 }
  3654. ]
  3655. },
  3656. "bone34": {
  3657. "rotate": [
  3658. { "time": 0, "angle": 0 },
  3659. { "time": 0.5, "angle": -5.15 },
  3660. { "time": 1, "angle": 0 },
  3661. { "time": 1.5, "angle": -5.15 },
  3662. { "time": 2, "angle": 0 }
  3663. ],
  3664. "translate": [
  3665. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3668. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3669. { "time": 2, "x": 0, "y": 0 }
  3670. ],
  3671. "scale": [
  3672. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 2, "x": 1, "y": 1 }
  3677. ]
  3678. },
  3679. "bone36": {
  3680. "rotate": [
  3681. { "time": 0, "angle": 0 },
  3682. { "time": 0.5, "angle": 23.79 },
  3683. { "time": 1, "angle": 0 },
  3684. { "time": 1.5, "angle": 23.79 },
  3685. { "time": 2, "angle": 0 }
  3686. ],
  3687. "translate": [
  3688. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3689. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3691. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3692. { "time": 2, "x": 0, "y": 0 }
  3693. ],
  3694. "scale": [
  3695. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3697. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 2, "x": 1, "y": 1 }
  3700. ]
  3701. },
  3702. "bone37": {
  3703. "rotate": [
  3704. { "time": 0, "angle": 0 },
  3705. { "time": 0.5, "angle": 13.15 },
  3706. { "time": 1, "angle": 0 },
  3707. { "time": 1.5, "angle": 13.15 },
  3708. { "time": 2, "angle": 0 }
  3709. ],
  3710. "translate": [
  3711. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3715. { "time": 2, "x": 0, "y": 0 }
  3716. ],
  3717. "scale": [
  3718. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 2, "x": 1, "y": 1 }
  3723. ]
  3724. },
  3725. "bone38": {
  3726. "rotate": [
  3727. { "time": 0, "angle": 0, "curve": "stepped" },
  3728. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3729. { "time": 1, "angle": 0, "curve": "stepped" },
  3730. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3731. { "time": 2, "angle": 0 }
  3732. ],
  3733. "translate": [
  3734. { "time": 0, "x": 0.27, "y": 1.52 },
  3735. { "time": 0.5, "x": 0, "y": 0 },
  3736. { "time": 1, "x": 0.27, "y": 1.52 },
  3737. { "time": 1.5, "x": 0, "y": 0 },
  3738. { "time": 2, "x": 0.27, "y": 1.52 }
  3739. ],
  3740. "scale": [
  3741. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3742. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3743. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3744. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3745. { "time": 2, "x": 1, "y": 1 }
  3746. ]
  3747. },
  3748. "bone39": {
  3749. "rotate": [
  3750. { "time": 0, "angle": 0 },
  3751. { "time": 0.5, "angle": -13.87 },
  3752. { "time": 1, "angle": 0 },
  3753. { "time": 1.5, "angle": -13.87 },
  3754. { "time": 2, "angle": 0 }
  3755. ],
  3756. "translate": [
  3757. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3758. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3759. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3760. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3761. { "time": 2, "x": 0, "y": 0 }
  3762. ],
  3763. "scale": [
  3764. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3768. { "time": 2, "x": 1, "y": 1 }
  3769. ]
  3770. },
  3771. "bone40": {
  3772. "rotate": [
  3773. { "time": 0, "angle": 0, "curve": "stepped" },
  3774. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3775. { "time": 1, "angle": 0, "curve": "stepped" },
  3776. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3777. { "time": 2, "angle": 0 }
  3778. ],
  3779. "translate": [
  3780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3781. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3782. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3783. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3784. { "time": 2, "x": 0, "y": 0 }
  3785. ],
  3786. "scale": [
  3787. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 2, "x": 1, "y": 1 }
  3792. ]
  3793. },
  3794. "bone41": {
  3795. "rotate": [
  3796. { "time": 0, "angle": 0, "curve": "stepped" },
  3797. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3798. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3799. { "time": 1, "angle": 0, "curve": "stepped" },
  3800. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3801. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3802. { "time": 2, "angle": 0 }
  3803. ],
  3804. "translate": [
  3805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3806. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3807. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3808. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3809. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3810. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3811. { "time": 2, "x": 0, "y": 0 }
  3812. ],
  3813. "scale": [
  3814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3818. { "time": 2, "x": 1, "y": 1 }
  3819. ]
  3820. },
  3821. "bone42": {
  3822. "rotate": [
  3823. { "time": 0, "angle": 0 },
  3824. { "time": 0.5, "angle": 6.25 },
  3825. { "time": 1, "angle": 0 },
  3826. { "time": 1.5, "angle": 6.25 },
  3827. { "time": 2, "angle": 0 }
  3828. ],
  3829. "translate": [
  3830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3831. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3832. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3833. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3834. { "time": 2, "x": 0, "y": 0 }
  3835. ],
  3836. "scale": [
  3837. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3838. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3839. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3840. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3841. { "time": 2, "x": 1, "y": 1 }
  3842. ]
  3843. },
  3844. "bone43": {
  3845. "rotate": [
  3846. { "time": 0, "angle": 16.54 },
  3847. { "time": 0.5, "angle": 26.22 },
  3848. { "time": 1, "angle": 16.54 },
  3849. { "time": 1.5, "angle": 26.22 },
  3850. { "time": 2, "angle": 16.54 }
  3851. ],
  3852. "translate": [
  3853. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3854. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3855. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3856. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3857. { "time": 2, "x": 0, "y": 0 }
  3858. ],
  3859. "scale": [
  3860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 2, "x": 1, "y": 1 }
  3865. ]
  3866. },
  3867. "bone44": {
  3868. "rotate": [
  3869. { "time": 0, "angle": 0 },
  3870. { "time": 0.5, "angle": 14.09 },
  3871. { "time": 1, "angle": 0 },
  3872. { "time": 1.5, "angle": 14.09 },
  3873. { "time": 2, "angle": 0 }
  3874. ],
  3875. "translate": [
  3876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 2, "x": 0, "y": 0 }
  3881. ],
  3882. "scale": [
  3883. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3884. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 2, "x": 1, "y": 1 }
  3888. ]
  3889. },
  3890. "bone45": {
  3891. "rotate": [
  3892. { "time": 0, "angle": 0 },
  3893. { "time": 0.5, "angle": -3.92 },
  3894. { "time": 1, "angle": 0 },
  3895. { "time": 1.5, "angle": -3.92 },
  3896. { "time": 2, "angle": 0 }
  3897. ],
  3898. "translate": [
  3899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3900. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3901. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 2, "x": 0, "y": 0 }
  3904. ],
  3905. "scale": [
  3906. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3907. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 2, "x": 1, "y": 1 }
  3911. ]
  3912. },
  3913. "bone46": {
  3914. "rotate": [
  3915. { "time": 0, "angle": 0 },
  3916. { "time": 0.5, "angle": -28.31 },
  3917. { "time": 1, "angle": 0 },
  3918. { "time": 1.5, "angle": -28.31 },
  3919. { "time": 2, "angle": 0 }
  3920. ],
  3921. "translate": [
  3922. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3923. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3924. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 2, "x": 0, "y": 0 }
  3927. ],
  3928. "scale": [
  3929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 2, "x": 1, "y": 1 }
  3934. ]
  3935. },
  3936. "bone47": {
  3937. "rotate": [
  3938. { "time": 0, "angle": 0 },
  3939. { "time": 0.5, "angle": -8.82 },
  3940. { "time": 1, "angle": 0 },
  3941. { "time": 1.5, "angle": -8.82 },
  3942. { "time": 2, "angle": 0 }
  3943. ],
  3944. "translate": [
  3945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3947. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3948. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 2, "x": 0, "y": 0 }
  3950. ],
  3951. "scale": [
  3952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3955. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3956. { "time": 2, "x": 1, "y": 1 }
  3957. ]
  3958. },
  3959. "bone50": {
  3960. "rotate": [
  3961. { "time": 0, "angle": 0, "curve": "stepped" },
  3962. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3963. { "time": 1, "angle": 0, "curve": "stepped" },
  3964. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3965. { "time": 2, "angle": 0 }
  3966. ],
  3967. "translate": [
  3968. { "time": 0, "x": 0.77, "y": 1.53 },
  3969. { "time": 0.5, "x": 0, "y": 0 },
  3970. { "time": 1, "x": 0.77, "y": 1.53 },
  3971. { "time": 1.5, "x": 0, "y": 0 },
  3972. { "time": 2, "x": 0.77, "y": 1.53 }
  3973. ],
  3974. "scale": [
  3975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3978. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3979. { "time": 2, "x": 1, "y": 1 }
  3980. ]
  3981. },
  3982. "bone51": {
  3983. "rotate": [
  3984. { "time": 0, "angle": 0, "curve": "stepped" },
  3985. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3986. { "time": 1, "angle": 0, "curve": "stepped" },
  3987. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3988. { "time": 2, "angle": 0 }
  3989. ],
  3990. "translate": [
  3991. { "time": 0, "x": 1.36, "y": 0.3 },
  3992. { "time": 0.5, "x": 0, "y": 0 },
  3993. { "time": 1, "x": 1.36, "y": 0.3 },
  3994. { "time": 1.5, "x": 0, "y": 0 },
  3995. { "time": 2, "x": 1.36, "y": 0.3 }
  3996. ],
  3997. "scale": [
  3998. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 2, "x": 1, "y": 1 }
  4003. ]
  4004. },
  4005. "bone56": {
  4006. "rotate": [
  4007. { "time": 0, "angle": 0 },
  4008. { "time": 0.5, "angle": -4.91 },
  4009. { "time": 1, "angle": 0 },
  4010. { "time": 1.5, "angle": -4.91 },
  4011. { "time": 2, "angle": 0 }
  4012. ],
  4013. "translate": [
  4014. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4015. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4016. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4017. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4018. { "time": 2, "x": 0, "y": 0 }
  4019. ],
  4020. "scale": [
  4021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4022. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4023. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 2, "x": 1, "y": 1 }
  4026. ]
  4027. },
  4028. "bone57": {
  4029. "rotate": [
  4030. { "time": 0, "angle": 0 },
  4031. { "time": 0.5, "angle": -17.96 },
  4032. { "time": 1, "angle": 0 },
  4033. { "time": 1.5, "angle": -17.96 },
  4034. { "time": 2, "angle": 0 }
  4035. ],
  4036. "translate": [
  4037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4038. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4040. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4041. { "time": 2, "x": 0, "y": 0 }
  4042. ],
  4043. "scale": [
  4044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4045. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4046. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4047. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4048. { "time": 2, "x": 1, "y": 1 }
  4049. ]
  4050. },
  4051. "bone58": {
  4052. "rotate": [
  4053. { "time": 0, "angle": 0 },
  4054. { "time": 0.5, "angle": 5.29 },
  4055. { "time": 1, "angle": 0 },
  4056. { "time": 1.5, "angle": 5.29 },
  4057. { "time": 2, "angle": 0 }
  4058. ],
  4059. "translate": [
  4060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4062. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4063. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4064. { "time": 2, "x": 0, "y": 0 }
  4065. ],
  4066. "scale": [
  4067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4068. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4069. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4070. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4071. { "time": 2, "x": 1, "y": 1 }
  4072. ]
  4073. },
  4074. "bone59": {
  4075. "rotate": [
  4076. { "time": 0, "angle": 0 },
  4077. { "time": 0.5, "angle": 4.32 },
  4078. { "time": 1, "angle": 0 },
  4079. { "time": 1.5, "angle": 4.32 },
  4080. { "time": 2, "angle": 0 }
  4081. ],
  4082. "translate": [
  4083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 2, "x": 0, "y": 0 }
  4088. ],
  4089. "scale": [
  4090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4091. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4092. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 2, "x": 1, "y": 1 }
  4095. ]
  4096. },
  4097. "bone60": {
  4098. "rotate": [
  4099. { "time": 0, "angle": 0, "curve": "stepped" },
  4100. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4101. { "time": 1, "angle": 0, "curve": "stepped" },
  4102. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4103. { "time": 2, "angle": 0 }
  4104. ],
  4105. "translate": [
  4106. { "time": 0, "x": 1.41, "y": 5.14 },
  4107. { "time": 0.5, "x": 1.4, "y": 4.62 },
  4108. { "time": 1, "x": 1.41, "y": 5.14 },
  4109. { "time": 1.5, "x": 1.4, "y": 4.62 },
  4110. { "time": 2, "x": 1.41, "y": 5.14 }
  4111. ]
  4112. }
  4113. },
  4114. "deform": {
  4115. "default": {
  4116. "chenyi": {
  4117. "chenyi": [
  4118. { "time": 0 },
  4119. {
  4120. "time": 0.5,
  4121. "offset": 4,
  4122. "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
  4123. },
  4124. { "time": 1 },
  4125. {
  4126. "time": 1.5,
  4127. "offset": 4,
  4128. "vertices": [ -0.05714, 2.96745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.8751, 2.85822, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, 0, 0, 0, 0, -0.05714, 2.96745, -0.18232, 2.96239, -0.05714, 2.96745, -0.18232, 2.96239 ]
  4129. },
  4130. { "time": 2 }
  4131. ]
  4132. },
  4133. "erji": {
  4134. "erji": [
  4135. { "time": 0 },
  4136. {
  4137. "time": 0.5,
  4138. "offset": 6,
  4139. "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
  4140. },
  4141. { "time": 1 },
  4142. {
  4143. "time": 1.5,
  4144. "offset": 6,
  4145. "vertices": [ -2.7402, 2.05677, -1.45738, 2.97127 ]
  4146. },
  4147. { "time": 2 }
  4148. ]
  4149. },
  4150. "kuzi": {
  4151. "kuzi": [
  4152. { "time": 0 },
  4153. {
  4154. "time": 0.1667,
  4155. "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
  4156. },
  4157. {
  4158. "time": 0.5,
  4159. "offset": 2,
  4160. "vertices": [ -2.02086, -1.08708 ]
  4161. },
  4162. {
  4163. "time": 0.6667,
  4164. "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
  4165. },
  4166. {
  4167. "time": 0.7333,
  4168. "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
  4169. },
  4170. {
  4171. "time": 0.8333,
  4172. "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
  4173. },
  4174. { "time": 1 },
  4175. {
  4176. "time": 1.1667,
  4177. "vertices": [ 2.67648, -10.55238, -0.59724, 1.31546, -1.93564, 2.47198, -0.30416, -2.86979 ]
  4178. },
  4179. {
  4180. "time": 1.5,
  4181. "offset": 2,
  4182. "vertices": [ -2.02086, -1.08708 ]
  4183. },
  4184. {
  4185. "time": 1.6667,
  4186. "vertices": [ 2.67648, -10.55238, -0.19567, 2.8792, -3.61954, 0.3183, -0.30416, -2.86979 ]
  4187. },
  4188. {
  4189. "time": 1.7333,
  4190. "vertices": [ 2.14118, -8.4419, -0.06927, 6.92755, -2.89564, 0.25464, -0.24333, -2.29583 ]
  4191. },
  4192. {
  4193. "time": 1.8333,
  4194. "vertices": [ 1.33824, -5.27619, -0.09751, 1.45522, -1.80977, 0.15915, -0.15208, -1.43489 ]
  4195. },
  4196. { "time": 2 }
  4197. ]
  4198. },
  4199. "youjiao": {
  4200. "youjiao": [
  4201. {
  4202. "time": 0,
  4203. "offset": 76,
  4204. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  4205. "curve": "stepped"
  4206. },
  4207. {
  4208. "time": 0.5,
  4209. "offset": 76,
  4210. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  4211. "curve": "stepped"
  4212. },
  4213. {
  4214. "time": 1,
  4215. "offset": 76,
  4216. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  4217. "curve": "stepped"
  4218. },
  4219. {
  4220. "time": 1.5,
  4221. "offset": 76,
  4222. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ],
  4223. "curve": "stepped"
  4224. },
  4225. {
  4226. "time": 2,
  4227. "offset": 76,
  4228. "vertices": [ -9.20706, -0.42934, -4.97046, -1.93781, -3.895, -0.34762 ]
  4229. }
  4230. ]
  4231. },
  4232. "zuojiao": {
  4233. "zuojiao": [
  4234. {
  4235. "time": 0,
  4236. "offset": 66,
  4237. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
  4238. "curve": "stepped"
  4239. },
  4240. {
  4241. "time": 1,
  4242. "offset": 66,
  4243. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ],
  4244. "curve": "stepped"
  4245. },
  4246. {
  4247. "time": 2,
  4248. "offset": 66,
  4249. "vertices": [ -4.79021, -0.59816, -7.62909, 0.83472 ]
  4250. }
  4251. ]
  4252. }
  4253. }
  4254. }
  4255. }
  4256. }
  4257. }