60006.json 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939
  1. {
  2. "skeleton": { "hash": "JYbENvwLhcM3jO7WntADZCUYJag", "spine": "3.6.53", "width": 357.72, "height": 207.15, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -2.58, "y": 65.23 },
  6. { "name": "bone2", "parent": "bone", "length": 11.7, "rotation": 90, "x": -0.12, "y": 1.65 },
  7. { "name": "bone3", "parent": "bone2", "length": 29.71, "rotation": 1.39, "x": 11.7 },
  8. { "name": "bone4", "parent": "bone3", "length": 8.48, "rotation": 2.26, "x": 32.05, "y": 0.09 },
  9. { "name": "bone5", "parent": "bone4", "length": 35, "rotation": 1.3, "x": 7.29, "y": -0.13 },
  10. { "name": "bone6", "parent": "bone5", "length": 9.91, "rotation": -2.87, "x": 17.26, "y": 15.72 },
  11. { "name": "bone7", "parent": "bone5", "length": 8.1, "rotation": -4.95, "x": 16.48, "y": -10.05 },
  12. { "name": "bone8", "parent": "bone5", "x": 17.28, "y": 4.09 },
  13. { "name": "bone9", "parent": "bone5", "x": 28.13, "y": 3.66 },
  14. { "name": "bone13", "parent": "bone5", "rotation": -94.95, "x": 59.61, "y": -28.15 },
  15. { "name": "bone10", "parent": "bone13", "length": 13.14, "rotation": 113.43, "x": -41.41, "y": -6.63 },
  16. { "name": "bone11", "parent": "bone10", "length": 11.9, "rotation": -18.58, "x": 13.14 },
  17. { "name": "bone12", "parent": "bone11", "length": 6.94, "rotation": -14.85, "x": 11.9 },
  18. { "name": "bone14", "parent": "bone5", "x": 4.2, "y": 4.78 },
  19. { "name": "bone15", "parent": "bone3", "length": 22.68, "rotation": 156.51, "x": 29.27, "y": 10.63, "color": "baca29ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 17.57, "rotation": -0.09, "x": 22.83, "y": 0.06, "color": "baca29ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 12.98, "rotation": -9.38, "x": 17.57, "color": "baca29ff" },
  22. { "name": "bone18", "parent": "bone3", "length": 24.1, "rotation": -156.17, "x": 17.48, "y": -168.8, "color": "176e99ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 15.84, "rotation": -17.21, "x": 24.1, "color": "176e99ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 15.52, "rotation": -6.48, "x": 15.84, "color": "176e99ff" },
  25. { "name": "bone21", "parent": "bone", "length": 9.37, "rotation": -85.76, "x": -0.4, "y": -0.53 },
  26. { "name": "bone22", "parent": "bone", "length": 25.8, "rotation": -90.86, "x": -10.12, "y": -6.54, "color": "239b17ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 20, "rotation": -1.5, "x": 27.75, "y": -0.05, "color": "239b17ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 13.45, "rotation": -76.03, "x": 23.84, "y": 0.09, "color": "239b17ff" },
  29. { "name": "bone25", "parent": "bone", "length": 27.68, "rotation": -84.37, "x": 12.97, "y": -5.18, "color": "500baaff" },
  30. { "name": "bone26", "parent": "bone25", "length": 24.88, "rotation": 2.44, "x": 27.68, "color": "500baaff" },
  31. { "name": "bone27", "parent": "bone26", "length": 8.85, "rotation": -82.81, "x": 26.01, "y": -0.36, "color": "500baaff" },
  32. { "name": "bone28", "parent": "bone3", "length": 6.89, "rotation": 169.92, "x": 32.79, "y": -1.68, "color": "5935eeff" },
  33. { "name": "bone29", "parent": "bone28", "length": 6.46, "rotation": 5.1, "x": 7.65, "y": 0.08, "color": "5935eeff" },
  34. { "name": "bone30", "parent": "bone29", "length": 6.47, "rotation": -2.69, "x": 7.26, "y": -0.3, "color": "5935eeff" },
  35. { "name": "bone31", "parent": "bone30", "length": 5.07, "rotation": -2.78, "x": 7.43, "y": 0.17, "color": "5935eeff" },
  36. { "name": "bone32", "parent": "bone31", "length": 4.05, "rotation": 1.71, "x": 5.8, "y": -0.02, "color": "5935eeff" },
  37. { "name": "bone33", "parent": "bone3", "length": 22.87, "rotation": -144.69, "x": 30.31, "y": -12.35, "color": "322cb7ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 15.97, "rotation": -67.77, "x": 25.19, "y": 0.21, "color": "322cb7ff" },
  39. { "name": "bone35", "parent": "bone34", "length": 14.83, "rotation": -5.67, "x": 15.97, "color": "322cb7ff" },
  40. { "name": "bone36", "parent": "bone3", "length": 18, "rotation": 147.36, "x": 27.87, "y": 12.49, "color": "39b1eaff" },
  41. { "name": "bone37", "parent": "bone36", "length": 19.65, "rotation": -3.96, "x": 19.2, "y": 0.2, "color": "39b1eaff" },
  42. { "name": "bone38", "parent": "bone17", "length": 4.37, "rotation": -116.28, "x": 16.38, "y": 1.36, "color": "39b1eaff" },
  43. { "name": "bone39", "parent": "bone38", "length": 4.95, "rotation": -54.2, "x": 7.95, "y": 2.1 },
  44. { "name": "bone40", "parent": "bone38", "length": 4.8, "rotation": -52.4, "x": 6.26, "y": -0.01 },
  45. { "name": "bone41", "parent": "bone38", "length": 4.45, "rotation": -52.85, "x": 4.18, "y": -1.48 },
  46. { "name": "bone42", "parent": "bone38", "length": 4.15, "rotation": -52.71, "x": 2.16, "y": -3.39 },
  47. { "name": "bone43", "parent": "bone37", "length": 4.37, "rotation": -90.02, "x": 23.26, "y": 2.78, "color": "39b1eaff" },
  48. { "name": "bone44", "parent": "bone43", "length": 4.95, "rotation": -54.2, "x": 7.95, "y": 2.1 },
  49. { "name": "yinfu", "parent": "root", "x": -95.2, "y": 106.1 },
  50. { "name": "bone45", "parent": "yinfu", "length": 17.25, "rotation": 95.53, "x": -19.11, "y": 13.02 },
  51. { "name": "bone46", "parent": "yinfu", "length": 25.76, "rotation": 90, "x": -56.51, "y": 30.75 },
  52. { "name": "bone47", "parent": "yinfu", "length": 27.76, "rotation": 102.09, "x": -30.75, "y": 65.65 },
  53. { "name": "bone48", "parent": "bone43", "length": 4.8, "rotation": -52.4, "x": 6.26, "y": -0.01 },
  54. { "name": "bone49", "parent": "bone43", "length": 4.45, "rotation": -52.85, "x": 4.18, "y": -1.48 },
  55. { "name": "bone50", "parent": "bone43", "length": 4.15, "rotation": -52.71, "x": 2.16, "y": -3.39 },
  56. { "name": "jita", "parent": "bone38", "length": 15, "rotation": -141.5, "x": 3.91, "y": -4.02 },
  57. { "name": "jita2", "parent": "bone", "length": 50.65, "rotation": 158.48, "x": -16.12, "y": 1.39 }
  58. ],
  59. "slots": [
  60. { "name": "zuoshou", "bone": "bone15", "attachment": "zuoshou" },
  61. { "name": "jita", "bone": "jita", "attachment": "jita" },
  62. { "name": "teshuzuoshou3", "bone": "bone36", "attachment": "teshuzuoshou3" },
  63. { "name": "teshuozuoshou2", "bone": "bone37", "attachment": "teshuozuoshou2" },
  64. { "name": "teshuzuoshou1", "bone": "bone38", "attachment": "teshuzuoshou1" },
  65. { "name": "zuotui", "bone": "bone22", "attachment": "zuotui" },
  66. { "name": "kudang", "bone": "bone21", "attachment": "kudang" },
  67. { "name": "youtui", "bone": "bone25", "attachment": "youtui" },
  68. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  69. { "name": "xianglian", "bone": "bone28", "attachment": "xianglian" },
  70. { "name": "jita2", "bone": "jita2", "attachment": "jita" },
  71. { "name": "youshou", "bone": "bone18", "attachment": "youshou" },
  72. { "name": "teshuzuoshou2", "bone": "bone43", "attachment": "teshuzuoshou1" },
  73. { "name": "shouzhi4", "bone": "bone42", "attachment": "shouzhi4" },
  74. { "name": "shouzhi8", "bone": "bone50", "attachment": "shouzhi4" },
  75. { "name": "shouzhi3", "bone": "bone41", "attachment": "shouzhi3" },
  76. { "name": "shouzhi7", "bone": "bone49", "attachment": "shouzhi3" },
  77. { "name": "shouzhi2", "bone": "bone40", "attachment": "shouzhi2" },
  78. { "name": "shouzhi6", "bone": "bone48", "attachment": "shouzhi2" },
  79. { "name": "shouzhi1", "bone": "bone39", "attachment": "shouzhi1" },
  80. { "name": "shouzhi5", "bone": "bone44", "attachment": "shouzhi1" },
  81. { "name": "teshuyoushou2", "bone": "bone33", "attachment": "teshuyoushou2" },
  82. { "name": "teshuyoushou1", "bone": "bone34", "attachment": "teshuyoushou1" },
  83. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  84. { "name": "zuiba", "bone": "bone14", "attachment": "zuiba" },
  85. { "name": "meimaoyinying", "bone": "bone9", "attachment": "meimaoyinying" },
  86. { "name": "meimao", "bone": "bone9", "attachment": "meimao" },
  87. { "name": "zuoyan", "bone": "bone6", "attachment": "zuoyan" },
  88. { "name": "youyan", "bone": "bone7", "attachment": "youyan" },
  89. { "name": "biyan", "bone": "bone8" },
  90. { "name": "toufa1", "bone": "bone13", "attachment": "toufa1" },
  91. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  92. { "name": "yin3", "bone": "bone47", "attachment": "yin3" },
  93. { "name": "yin2", "bone": "bone46", "attachment": "yin2" },
  94. { "name": "yin1", "bone": "bone45", "attachment": "yin1" },
  95. { "name": "teshudongzuomeimao", "bone": "bone9", "attachment": "teshudongzuomeimao" },
  96. { "name": "zhangzui", "bone": "bone14", "attachment": "zhangzui" }
  97. ],
  98. "skins": {
  99. "default": {
  100. "biyan": {
  101. "biyan": { "x": 1, "y": -0.97, "rotation": -94.95, "width": 47, "height": 6 }
  102. },
  103. "erduo": {
  104. "erduo": { "x": 18.54, "y": -36.23, "rotation": -94.95, "width": 17, "height": 23 }
  105. },
  106. "jita": {
  107. "jita": { "x": 7.39, "y": -0.6, "rotation": -0.72, "width": 85, "height": 38 }
  108. },
  109. "jita2": {
  110. "jita": { "x": 18.91, "y": 0.32, "rotation": -178.55, "width": 85, "height": 38 }
  111. },
  112. "kudang": {
  113. "kudang": {
  114. "type": "mesh",
  115. "uvs": [ 1, 0.65894, 0.62073, 1, 0.38554, 1, 0, 0.50809, 0, 0, 0.37834, 0, 0.61593, 0, 1, 0 ],
  116. "triangles": [ 3, 4, 5, 6, 7, 0, 5, 2, 3, 5, 6, 2, 2, 6, 1, 0, 1, 6 ],
  117. "vertices": [ 9.54, 21.42, 13.18, 5.94, 12.49, -3.44, 4.48, -18.31, -2.61, -17.79, -1.5, -2.7, -0.79, 6.78, 0.34, 22.1 ],
  118. "hull": 8,
  119. "edges": [ 6, 8, 6, 4, 2, 4, 0, 14, 2, 0, 8, 10, 4, 10, 10, 12, 12, 14, 2, 12 ],
  120. "width": 40,
  121. "height": 14
  122. }
  123. },
  124. "lian": {
  125. "lian": { "x": 29.27, "y": -5.04, "rotation": -94.95, "width": 71, "height": 77 }
  126. },
  127. "meimao": {
  128. "meimao": { "x": 0.7, "y": -2.14, "rotation": -94.95, "width": 52, "height": 9 }
  129. },
  130. "meimaoyinying": {
  131. "meimaoyinying": { "x": -2.98, "y": 1.69, "rotation": -94.95, "width": 39, "height": 13 }
  132. },
  133. "shenti": {
  134. "shenti": {
  135. "type": "mesh",
  136. "uvs": [ 0.01081, 0.81973, 0.02439, 0.746, 0.11821, 0.23677, 0.30482, 0.21833, 0.3067, 0.1988, 0.30783, 0.18709, 0.31854, 0.07637, 0.44401, 0.07297, 0.65881, 0.06715, 0.6924, 0.16539, 0.69818, 0.18229, 0.70547, 0.20359, 0.8564, 0.20174, 0.98479, 0.73749, 1, 0.80096, 1, 0.87392, 1, 1, 0.453, 1, 0, 1, 0, 0.8784, 0.44539, 0.21503, 0.4452, 0.19536, 0.44506, 0.18125, 0.45056, 0.74878, 0.45181, 0.87748, 0.45121, 0.815 ],
  137. "triangles": [ 3, 20, 23, 23, 20, 11, 3, 4, 20, 20, 10, 11, 4, 21, 20, 20, 21, 10, 4, 5, 21, 21, 9, 10, 5, 22, 21, 21, 22, 9, 5, 6, 22, 6, 7, 22, 22, 8, 9, 22, 7, 8, 2, 3, 23, 11, 12, 13, 17, 15, 16, 18, 24, 17, 17, 24, 15, 18, 19, 24, 19, 0, 24, 0, 25, 24, 24, 25, 15, 25, 14, 15, 25, 1, 23, 25, 0, 1, 25, 13, 14, 25, 23, 13, 1, 2, 23, 23, 11, 13 ],
  138. "vertices": [ 2, 2, 6.65, 19.75, 0.78845, 3, -4.57, 19.86, 0.21155, 2, 2, 11.37, 19.16, 0.5962, 3, 0.14, 19.16, 0.4038, 2, 3, 32.62, 14.34, 0.71258, 4, 1.13, 14.21, 0.28742, 2, 3, 33.6, 6.29, 0.30997, 4, 1.8, 6.13, 0.69003, 2, 3, 34.85, 6.18, 0.15656, 4, 3.04, 5.97, 0.84344, 2, 3, 35.6, 6.11, 0.10026, 4, 3.79, 5.87, 0.89974, 1, 4, 10.83, 4.96, 1, 1, 4, 10.7, -0.43, 1, 2, 3, 42.91, -9.16, 0.01494, 4, 10.49, -9.68, 0.98506, 2, 3, 36.59, -10.45, 0.20712, 4, 4.12, -10.72, 0.79288, 2, 3, 35.5, -10.68, 0.29133, 4, 3.03, -10.9, 0.70867, 2, 3, 34.13, -10.96, 0.43316, 4, 1.65, -11.12, 0.56684, 2, 3, 34.09, -17.45, 0.66924, 4, 1.35, -17.61, 0.33076, 2, 2, 11.92, -22.14, 0.60596, 3, -0.32, -22.13, 0.39404, 2, 2, 7.85, -22.79, 0.74436, 3, -4.4, -22.69, 0.25564, 2, 2, 3.19, -22.79, 0.86452, 3, -9.06, -22.58, 0.13548, 2, 2, -4.88, -22.79, 0.95392, 3, -17.13, -22.38, 0.04608, 1, 2, -4.88, 0.73, 1, 2, 2, -4.88, 20.21, 0.97789, 3, -16.09, 20.61, 0.02211, 2, 2, 2.9, 20.21, 0.89298, 3, -8.31, 20.42, 0.10702, 2, 3, 33.67, 0.24, 4.0E-4, 4, 1.63, 0.09, 0.9996, 1, 4, 2.88, 0.01, 1, 1, 4, 3.79, -0.04, 1, 2, 2, 11.19, 0.84, 0.81204, 3, -0.49, 0.85, 0.18796, 1, 2, 2.96, 0.78, 1, 1, 2, 6.96, 0.81, 1 ],
  139. "hull": 20,
  140. "edges": [ 24, 22, 6, 4, 36, 38, 32, 34, 34, 36, 12, 14, 14, 16, 6, 40, 40, 22, 6, 8, 42, 40, 8, 42, 20, 22, 42, 20, 8, 10, 10, 12, 14, 44, 44, 42, 10, 44, 16, 18, 18, 20, 44, 18, 4, 2, 46, 40, 2, 46, 24, 26, 26, 28, 46, 26, 34, 48, 38, 48, 28, 30, 30, 32, 48, 30, 46, 50, 50, 48, 28, 50, 2, 0, 0, 38, 50, 0 ],
  141. "width": 43,
  142. "height": 64
  143. }
  144. },
  145. "shouzhi1": {
  146. "shouzhi1": { "x": 2.78, "y": -0.13, "rotation": -90.58, "width": 4, "height": 9 }
  147. },
  148. "shouzhi2": {
  149. "shouzhi2": { "x": 1.53, "y": -0.06, "rotation": -92.39, "width": 5, "height": 8 }
  150. },
  151. "shouzhi3": {
  152. "shouzhi3": { "x": 1.53, "rotation": -91.93, "width": 6, "height": 8 }
  153. },
  154. "shouzhi4": {
  155. "shouzhi4": { "x": 0.69, "y": 1.78, "rotation": -92.07, "width": 8, "height": 7 }
  156. },
  157. "shouzhi5": {
  158. "shouzhi1": { "x": 2.78, "y": -0.13, "rotation": -90.58, "width": 4, "height": 9 }
  159. },
  160. "shouzhi6": {
  161. "shouzhi2": { "x": 1.53, "y": -0.06, "rotation": -92.39, "width": 5, "height": 8 }
  162. },
  163. "shouzhi7": {
  164. "shouzhi3": { "x": 1.53, "rotation": -91.93, "width": 6, "height": 8 }
  165. },
  166. "shouzhi8": {
  167. "shouzhi4": { "x": 0.69, "y": 1.78, "rotation": -92.07, "width": 8, "height": 7 }
  168. },
  169. "teshudongzuomeimao": {
  170. "teshudongzuomeimao": { "x": 2.18, "y": -1.9, "rotation": -94.95, "width": 51, "height": 12 }
  171. },
  172. "teshuozuoshou2": {
  173. "teshuozuoshou2": {
  174. "type": "mesh",
  175. "uvs": [ 1, 0.51027, 0.83267, 1, 0, 1, 0, 0.42485, 0.5281, 0, 1, 0 ],
  176. "triangles": [ 4, 5, 0, 3, 1, 2, 0, 3, 4, 0, 1, 3 ],
  177. "vertices": [ 4.67, 8.49, 16.3, 12.39, 26.38, -1.9, 15.1, -9.85, 0.37, -6.67, -5.34, 1.43 ],
  178. "hull": 6,
  179. "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
  180. "width": 21,
  181. "height": 24
  182. }
  183. },
  184. "teshuyoushou1": {
  185. "teshuyoushou1": {
  186. "type": "mesh",
  187. "uvs": [ 1, 0.58023, 0.6686, 0.90756, 0.62097, 0.95461, 0.57502, 1, 0, 1, 0, 0.47933, 0.17971, 0.30268, 0.20908, 0.2749, 0.24354, 0.24229, 0.48763, 0, 1, 0, 0.48457, 0.62485, 0.41798, 0.67641, 0.45134, 0.65058, 0.28156, 0.78202 ],
  188. "triangles": [ 4, 14, 3, 2, 3, 12, 4, 5, 14, 3, 14, 12, 1, 2, 13, 13, 2, 12, 13, 11, 1, 14, 5, 12, 13, 12, 6, 7, 11, 13, 6, 12, 5, 13, 6, 7, 7, 8, 11, 1, 11, 0, 10, 0, 11, 11, 8, 9, 11, 9, 10 ],
  189. "vertices": [ 1, 34, 0.45, 11.15, 1, 2, 34, 15.53, 10.11, 0.69754, 35, -1.44, 10.01, 0.30246, 2, 34, 17.7, 9.96, 0.54642, 35, 0.74, 10.08, 0.45358, 2, 34, 19.79, 9.81, 0.42623, 35, 2.83, 10.14, 0.57377, 1, 35, 20.46, -1.77, 1, 2, 34, 27.17, -14.6, 0.04595, 35, 12.58, -13.42, 0.95405, 2, 34, 19, -14.02, 0.30455, 35, 4.4, -13.65, 0.69545, 2, 34, 17.69, -13.9, 0.38417, 35, 3.08, -13.66, 0.61583, 2, 34, 16.15, -13.76, 0.48662, 35, 1.53, -13.68, 0.51338, 2, 34, 5.02, -13.02, 0.96639, 35, -9.61, -14.04, 0.03361, 1, 34, -9.56, -0.9, 1, 2, 34, 15.89, -0.12, 0.60192, 35, -0.07, -0.12, 0.39808, 1, 35, 2.75, -0.35, 1, 2, 34, 17.28, -0.37, 0.013, 35, 1.34, -0.24, 0.987, 1, 35, 8.53, -0.82, 1 ],
  190. "hull": 11,
  191. "edges": [ 8, 10, 18, 20, 6, 8, 0, 20, 20, 22, 16, 18, 16, 22, 0, 2, 22, 2, 6, 24, 10, 12, 24, 12, 2, 4, 4, 6, 22, 26, 26, 24, 4, 26, 12, 14, 14, 16, 26, 14, 8, 28, 28, 24 ],
  192. "width": 37,
  193. "height": 27
  194. }
  195. },
  196. "teshuyoushou2": {
  197. "teshuyoushou2": {
  198. "type": "mesh",
  199. "uvs": [ 1, 0.57622, 1, 1, 0.42708, 1, 0, 0.53764, 0, 0, 0.31835, 0 ],
  200. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  201. "vertices": [ 24.68, 7.8, 35.21, -0.05, 27.68, -10.16, 10.57, -9.12, -2.79, 0.84, 1.39, 6.45 ],
  202. "hull": 6,
  203. "edges": [ 8, 10, 2, 0, 10, 0, 2, 4, 6, 8, 4, 6 ],
  204. "width": 22,
  205. "height": 31
  206. }
  207. },
  208. "teshuzuoshou1": {
  209. "teshuzuoshou1": { "x": 1.98, "y": -0.01, "rotation": -144.78, "width": 16, "height": 8 }
  210. },
  211. "teshuzuoshou2": {
  212. "teshuzuoshou1": { "x": 1.98, "y": -0.01, "rotation": -144.78, "width": 16, "height": 8 }
  213. },
  214. "teshuzuoshou3": {
  215. "teshuzuoshou3": {
  216. "type": "mesh",
  217. "uvs": [ 1, 0.37373, 0.66936, 1, 0, 1, 0, 0.72076, 0.54102, 0, 1, 0 ],
  218. "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
  219. "vertices": [ 4.05, 7.67, 22.99, 10.27, 30.98, -2.9, 24.29, -6.95, 0.58, -6.78, -4.89, 2.24 ],
  220. "hull": 6,
  221. "edges": [ 2, 4, 0, 10, 2, 0, 4, 6, 8, 10, 6, 8 ],
  222. "width": 23,
  223. "height": 28
  224. }
  225. },
  226. "toufa1": {
  227. "toufa1": {
  228. "type": "mesh",
  229. "uvs": [ 0.93189, 0.24476, 1, 0.32493, 1, 0.6426, 0.8848, 1, 0.75025, 1, 0.75025, 0.80499, 0.66953, 0.70838, 0.62075, 0.5871, 0.26084, 0.60355, 0.17507, 0.60355, 0.11789, 0.68988, 0.03097, 0.55938, 1.0E-5, 0.44527, 1.0E-5, 0.31579, 0, 0.1904, 0, 0, 0.16834, 0, 0.41893, 1.0E-5, 0.54002, 1.0E-5, 0.78557, 0, 0.21375, 0.32812, 0.16834, 0.12051, 0.23069, 0.45805, 0.19148, 0.22629 ],
  230. "triangles": [ 20, 18, 19, 0, 20, 19, 7, 22, 0, 7, 0, 1, 7, 1, 2, 6, 7, 2, 5, 6, 2, 3, 5, 2, 4, 5, 3, 21, 16, 17, 15, 16, 21, 14, 15, 21, 23, 21, 17, 14, 21, 23, 23, 17, 18, 13, 14, 23, 20, 23, 18, 13, 23, 20, 12, 13, 20, 0, 22, 20, 12, 20, 22, 11, 12, 22, 9, 11, 22, 9, 22, 8, 10, 11, 9, 8, 22, 7 ],
  231. "vertices": [ 2, 13, 2.12, -67.4, 0.00348, 10, 19.1, 7.66, 0.99652, 2, 13, -2.53, -74.3, 1.0E-5, 10, 25.1, 1.88, 0.99999, 1, 10, 25.1, -20.99, 1, 1, 10, 14.96, -46.72, 1, 2, 11, -54.49, -24.91, 0, 10, 3.12, -46.72, 1, 1, 10, 3.12, -32.68, 1, 1, 10, -3.99, -25.72, 1, 1, 10, -8.28, -16.99, 1, 1, 11, -11.17, 3.25, 1, 2, 11, -8.17, 10.18, 0.99946, 10, -47.5, -18.18, 5.4E-4, 1, 11, -11.87, 17.27, 1, 1, 11, -0.21, 20.55, 1, 2, 11, 8.41, 19.78, 0.86661, 12, -10.79, 17.24, 0.13339, 3, 11, 16.97, 16.08, 0.5483, 12, -1.5, 16.46, 0.44809, 13, -17.17, 12.47, 0.00361, 3, 11, 25.25, 12.49, 0.15965, 12, 7.5, 15.7, 0.71515, 13, -8.28, 14.04, 0.1252, 2, 12, 21.16, 14.54, 0.41305, 13, 5.22, 16.42, 0.58695, 2, 12, 19.9, -0.22, 2.9E-4, 13, 7.79, 1.84, 0.99971, 4, 11, 23.17, -26.79, 0.14526, 12, 18.04, -22.2, 0.01529, 13, 11.62, -19.88, 0.51047, 10, -26.04, 25.28, 0.32898, 4, 11, 18.93, -36.57, 0.10996, 12, 17.14, -32.81, 8.6E-4, 13, 13.48, -30.37, 0.29239, 10, -15.38, 25.28, 0.5968, 3, 11, 10.34, -56.39, 0.00444, 13, 17.23, -51.65, 0.07405, 10, 6.23, 25.28, 0.92151, 3, 11, 8.67, -0.83, 0.99451, 13, -14.78, -6.2, 0.00286, 10, -44.09, 1.65, 0.00262, 2, 12, 11.26, 0.51, 0.86922, 13, -0.75, 0.33, 0.13078, 1, 11, -0.5, 1.52, 1, 4, 11, 16.18, -1.94, 0.00974, 12, 3.5, -0.88, 0.98224, 13, -7.9, -3, 0.0061, 10, -46.05, 8.99, 0.00191 ],
  232. "hull": 20,
  233. "edges": [ 20, 18, 18, 16, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 38, 24, 40, 30, 32, 32, 34, 42, 32, 28, 30, 28, 42, 20, 22, 22, 24, 16, 44, 44, 40, 22, 44, 14, 16, 44, 0, 40, 38, 42, 34, 24, 26, 26, 28, 40, 46, 46, 42, 26, 46, 34, 36, 36, 38, 46, 36 ],
  234. "width": 88,
  235. "height": 72
  236. }
  237. },
  238. "xianglian": {
  239. "xianglian": {
  240. "type": "mesh",
  241. "uvs": [ 1, 0.33971, 0.92194, 0.42334, 0.845, 0.50578, 0.78003, 0.5754, 0.71346, 0.64672, 0.64332, 0.72188, 0.6405, 0.81478, 0.63863, 0.87621, 0.63644, 0.94848, 0.63487, 1, 0.30976, 1, 0.15777, 1, 0.16261, 0.94393, 0.16945, 0.86469, 0.17515, 0.79873, 0.1831, 0.70668, 0.1355, 0.63274, 0.09371, 0.56782, 0.05041, 0.50054, 0, 0.42222, 0, 0.32885, 0, 0, 0.46176, 0, 1, 0, 0.35491, 0.71016, 0.32924, 0.86486, 0.39799, 0.41956, 0.41069, 0.33603, 0.3753, 0.56882, 0.31757, 0.94586, 0.33951, 0.803, 0.3657, 0.6354, 0.38585, 0.49939 ],
  242. "triangles": [ 10, 29, 9, 9, 29, 8, 11, 12, 10, 10, 12, 29, 29, 25, 8, 8, 25, 7, 12, 13, 29, 29, 13, 25, 6, 5, 7, 7, 5, 8, 25, 30, 7, 7, 30, 6, 13, 14, 25, 25, 14, 30, 30, 24, 6, 6, 24, 5, 14, 15, 30, 30, 15, 24, 24, 31, 5, 5, 31, 4, 24, 15, 31, 15, 16, 31, 31, 28, 4, 4, 28, 3, 31, 16, 28, 16, 17, 28, 28, 32, 3, 3, 32, 2, 28, 17, 32, 17, 18, 32, 32, 18, 26, 32, 26, 2, 2, 26, 1, 26, 18, 19, 26, 27, 1, 1, 27, 0, 19, 20, 26, 26, 20, 27, 27, 22, 0, 27, 20, 21, 22, 23, 0, 22, 27, 21 ],
  243. "vertices": [ 3, 28, 7.84, 10.21, 0.39768, 29, 1.08, 10.07, 0.60147, 30, -6.65, 10.07, 8.5E-4, 3, 28, 10.94, 9.26, 0.20172, 29, 4.09, 8.85, 0.76715, 30, -3.59, 8.99, 0.03113, 4, 28, 14, 8.33, 0.05889, 29, 7.06, 7.65, 0.75686, 30, -0.57, 7.93, 0.17515, 31, -8.37, 7.37, 0.0091, 4, 28, 16.59, 7.54, 0.01014, 29, 9.56, 6.64, 0.52453, 30, 1.98, 7.04, 0.40606, 31, -5.78, 6.6, 0.05928, 4, 28, 19.24, 6.73, 1.0E-4, 29, 12.13, 5.6, 0.2285, 30, 4.59, 6.12, 0.54434, 31, -3.13, 5.81, 0.22706, 4, 29, 14.83, 4.5, 0.0456, 30, 7.34, 5.15, 0.30423, 31, -0.33, 4.97, 0.6461, 32, -5.98, 5.18, 0.00407, 4, 29, 18.08, 4.65, 0.00126, 30, 10.58, 5.45, 0.02178, 31, 2.89, 5.44, 0.83785, 32, -2.74, 5.54, 0.1391, 3, 30, 12.72, 5.66, 3.0E-5, 31, 5.02, 5.74, 0.61047, 32, -0.61, 5.79, 0.3895, 2, 31, 7.52, 6.1, 0.31221, 32, 1.91, 6.07, 0.68779, 2, 31, 9.31, 6.36, 0.23416, 32, 3.7, 6.27, 0.76584, 2, 31, 10.23, 0.58, 0.00272, 32, 4.45, 0.47, 0.99728, 1, 32, 4.8, -2.24, 1, 2, 31, 8.71, -2.35, 1.6E-4, 32, 2.84, -2.41, 0.99984, 2, 31, 5.95, -2.66, 0.34636, 32, 0.07, -2.64, 0.65364, 3, 30, 10.94, -2.93, 0.02124, 31, 3.65, -2.93, 0.89362, 32, -2.23, -2.84, 0.08515, 2, 30, 7.72, -3.14, 0.47845, 31, 0.45, -3.29, 0.52155, 3, 29, 12.29, -4.82, 0.00421, 30, 5.24, -4.28, 0.94322, 31, -1.97, -4.54, 0.05257, 3, 29, 10.07, -5.71, 0.07786, 30, 3.07, -5.27, 0.92193, 31, -4.1, -5.65, 2.1E-4, 3, 28, 15.98, -5.84, 0.00357, 29, 7.77, -6.64, 0.29156, 30, 0.81, -6.31, 0.70488, 3, 28, 13.41, -7.15, 0.04735, 29, 5.09, -7.71, 0.53513, 30, -1.82, -7.51, 0.41751, 3, 28, 10.18, -7.64, 0.22957, 29, 1.83, -7.92, 0.5959, 30, -5.06, -7.86, 0.17453, 1, 28, -1.2, -9.38, 1, 1, 28, -2.45, -1.17, 1, 1, 28, -3.92, 8.41, 1, 2, 30, 7.5, -0.06, 0.02478, 31, 0.08, -0.22, 0.97522, 2, 31, 5.5, 0.18, 0.41392, 32, -0.29, 0.21, 0.58608, 2, 29, 4.55, -0.57, 0.96988, 30, -2.69, -0.4, 0.03012, 2, 29, 1.62, -0.52, 0.99528, 30, -5.62, -0.49, 0.00472, 1, 30, 2.55, -0.23, 1, 2, 31, 8.33, 0.42, 0.00401, 32, 2.55, 0.37, 0.99599, 1, 31, 3.33, 0.02, 1, 1, 30, 4.88, -0.15, 1, 1, 30, 0.11, -0.31, 1 ],
  244. "hull": 24,
  245. "edges": [ 0, 46, 42, 44, 44, 46, 18, 20, 20, 22, 30, 48, 48, 10, 26, 50, 50, 14, 38, 52, 0, 2, 52, 2, 44, 54, 54, 52, 0, 54, 38, 40, 40, 42, 54, 40, 34, 56, 56, 6, 22, 24, 24, 26, 20, 58, 58, 50, 24, 58, 14, 16, 16, 18, 58, 16, 10, 12, 12, 14, 48, 60, 60, 50, 12, 60, 26, 28, 28, 30, 60, 28, 30, 32, 32, 34, 48, 62, 62, 56, 32, 62, 6, 8, 8, 10, 62, 8, 34, 36, 36, 38, 52, 64, 64, 56, 36, 64, 2, 4, 4, 6, 64, 4 ],
  246. "width": 18,
  247. "height": 35
  248. }
  249. },
  250. "yin1": {
  251. "yin1": { "x": 7.07, "y": -0.75, "rotation": -95.53, "width": 21, "height": 54 }
  252. },
  253. "yin2": {
  254. "yin2": { "x": 14.63, "y": -1.04, "rotation": -90, "width": 32, "height": 40 }
  255. },
  256. "yin3": {
  257. "yin3": { "x": 15.74, "y": 2.33, "rotation": -102.09, "width": 35, "height": 41 }
  258. },
  259. "youshou": {
  260. "youshou": {
  261. "type": "mesh",
  262. "uvs": [ 0.64782, 0.31545, 0.68425, 0.34135, 0.71307, 0.36184, 0.95877, 0.53652, 1, 0.56583, 1, 0.60833, 1, 1, 0.46874, 1, 0.35467, 0.83171, 0.32891, 0.79372, 0.30511, 0.75861, 0.1544, 0.53626, 0.1328, 0.50439, 0.10944, 0.46994, 0, 0.30848, 0, 0, 0.20411, 0, 0.67564, 0.67564, 0.7114, 0.7114, 0.64937, 0.64937, 0.42463, 0.42463, 0.44778, 0.44778, 0.39354, 0.39354 ],
  263. "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 8, 17, 18, 8, 9, 17, 9, 19, 17, 5, 18, 4, 4, 18, 17, 17, 3, 4, 9, 10, 19, 10, 21, 19, 10, 11, 21, 17, 19, 3, 19, 2, 3, 19, 21, 2, 11, 20, 21, 11, 12, 20, 21, 1, 2, 21, 20, 1, 20, 0, 1, 12, 22, 20, 12, 13, 22, 13, 14, 22, 20, 22, 0, 0, 22, 16, 16, 22, 15, 22, 14, 15 ],
  264. "vertices": [ 2, 18, 21.64, 10.02, 0.54753, 19, -1.87, 10.15, 0.45247, 2, 18, 23.52, 10.42, 0.38898, 19, 0.03, 10.44, 0.61102, 3, 18, 25, 10.74, 0.27665, 19, 1.54, 10.67, 0.72334, 20, -15.42, 8.99, 0, 2, 19, 14.35, 12.64, 0.73045, 20, -2.91, 12.39, 0.26955, 2, 19, 16.5, 12.97, 0.63896, 20, -0.81, 12.96, 0.36104, 2, 19, 18.7, 11.77, 0.51358, 20, 1.52, 12.01, 0.48642, 1, 20, 22.92, 3.31, 1, 2, 19, 30.85, -14.22, 6.2E-4, 20, 16.52, -12.44, 0.99938, 2, 19, 20.38, -12.67, 0.17984, 20, 5.95, -12.08, 0.82016, 2, 19, 18.02, -12.32, 0.31302, 20, 3.56, -12, 0.68698, 2, 19, 15.84, -12, 0.46824, 20, 1.35, -11.92, 0.53176, 3, 18, 26.7, -9.82, 0.25269, 19, 2.01, -9.95, 0.74615, 20, -12.62, -11.45, 0.00116, 2, 18, 24.7, -9.64, 0.41504, 19, 0.03, -9.66, 0.58496, 2, 18, 22.54, -9.45, 0.61347, 19, -2.11, -9.34, 0.38653, 2, 18, 12.43, -8.56, 0.99958, 19, -12.15, -7.86, 4.2E-4, 1, 18, -4.03, -0.8, 1, 1, 18, -1.25, 5.1, 1, 2, 19, 17.22, 0.75, 0.01756, 20, 1.28, 0.9, 0.98244, 2, 19, 19.62, 0.75, 0.00382, 20, 3.67, 1.17, 0.99618, 2, 19, 15.45, 0.76, 0.83113, 20, -0.47, 0.71, 0.16887, 2, 18, 24.42, 0.81, 0.21308, 19, 0.37, 0.79, 0.78692, 2, 18, 25.97, 0.9, 0.02502, 19, 1.92, 0.79, 0.97498, 2, 18, 22.34, 0.69, 0.95173, 19, -1.72, 0.8, 0.04827 ],
  265. "hull": 17,
  266. "edges": [ 30, 32, 28, 30, 12, 14, 18, 34, 34, 8, 14, 16, 16, 18, 12, 36, 36, 34, 16, 36, 8, 10, 10, 12, 36, 10, 18, 20, 38, 34, 20, 38, 8, 6, 38, 6, 24, 40, 40, 2, 20, 22, 22, 24, 38, 42, 42, 40, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 40, 26, 44, 2, 0, 0, 32, 44, 0 ],
  267. "width": 32,
  268. "height": 59
  269. }
  270. },
  271. "youtui": {
  272. "youtui": {
  273. "type": "mesh",
  274. "uvs": [ 0.92169, 0.44805, 0.92742, 0.47376, 0.93324, 0.49993, 1, 0.79966, 1, 0.83341, 1, 0.85512, 1, 1, 0, 1, 0, 0.96429, 0, 0.90216, 0.2139, 0.83966, 0.20565, 0.81333, 0.19981, 0.79469, 0.11727, 0.53132, 0.10971, 0.50722, 0.10201, 0.48263, 0, 0.15716, 0, 0, 0.38559, 0, 0.8219, 0, 0.65463, 0.84814, 0.64133, 0.8062, 0.64776, 0.82648, 0.54132, 0.49092, 0.55122, 0.52215, 0.53439, 0.4691 ],
  275. "triangles": [ 7, 20, 6, 7, 8, 20, 8, 10, 20, 8, 9, 10, 20, 5, 6, 20, 4, 5, 10, 22, 20, 20, 22, 4, 10, 11, 22, 22, 3, 4, 11, 21, 22, 22, 21, 3, 11, 12, 21, 12, 24, 21, 21, 2, 3, 21, 24, 2, 12, 13, 24, 13, 23, 24, 13, 14, 23, 24, 1, 2, 24, 23, 1, 14, 25, 23, 14, 15, 25, 23, 0, 1, 23, 25, 0, 25, 15, 18, 15, 16, 18, 25, 19, 0, 25, 18, 19, 16, 17, 18 ],
  276. "vertices": [ 2, 25, 25.86, 10.26, 0.62316, 26, -1.38, 10.32, 0.37684, 2, 25, 27.51, 10.24, 0.48846, 26, 0.27, 10.24, 0.51154, 2, 25, 29.19, 10.22, 0.35175, 26, 1.94, 10.14, 0.64825, 2, 26, 21.17, 9.1, 0.96199, 27, -9.99, -3.62, 0.03801, 2, 26, 23.31, 8.8, 0.88189, 27, -9.42, -1.53, 0.11811, 2, 26, 24.69, 8.61, 0.7958, 27, -9.06, -0.19, 0.2042, 2, 26, 33.87, 7.31, 0.17466, 27, -6.62, 8.75, 0.82534, 1, 27, 17.5, 2.18, 1, 1, 27, 16.9, -0.03, 1, 2, 26, 24.16, -16.57, 0.00785, 27, 15.85, -3.87, 0.99215, 2, 26, 20.95, -10.71, 0.29468, 27, 9.64, -6.32, 0.70532, 2, 26, 19.25, -10.68, 0.48827, 27, 9.4, -8, 0.51173, 2, 26, 18.05, -10.66, 0.59802, 27, 9.22, -9.19, 0.40198, 3, 25, 29.19, -10.28, 0.41294, 26, 1.07, -10.34, 0.58689, 27, 6.78, -25.99, 1.6E-4, 2, 25, 27.64, -10.32, 0.54201, 26, -0.48, -10.31, 0.45799, 2, 25, 26.05, -10.35, 0.67124, 26, -2.07, -10.28, 0.32876, 1, 25, 5.07, -10.85, 1, 1, 25, -4.94, -9.86, 1, 1, 25, -3.99, -0.27, 1, 1, 25, -2.92, 10.59, 1, 1, 26, 23.03, 0.12, 1, 1, 26, 20.33, 0.17, 1, 1, 26, 21.63, 0.15, 1, 2, 25, 27.66, 0.52, 0.48914, 26, 0, 0.52, 0.51086, 2, 25, 29.67, 0.57, 0.01022, 26, 2.01, 0.49, 0.98978, 2, 25, 26.25, 0.49, 0.99851, 26, -1.41, 0.55, 0.00149 ],
  277. "hull": 20,
  278. "edges": [ 12, 14, 32, 34, 20, 18, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 20, 40, 10, 12, 40, 10, 6, 42, 42, 24, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 28, 46, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 46, 30, 50, 2, 0, 0, 38, 50, 0 ],
  279. "width": 25,
  280. "height": 64
  281. }
  282. },
  283. "youyan": {
  284. "youyan": { "x": 4.32, "y": -1.91, "rotation": -90, "width": 25, "height": 15 }
  285. },
  286. "zhangzui": {
  287. "zhangzui": { "x": -0.18, "y": -1.13, "rotation": -94.95, "width": 15, "height": 10 }
  288. },
  289. "zuiba": {
  290. "zuiba": { "x": -0.36, "y": -2.1, "rotation": -94.95, "width": 18, "height": 7 }
  291. },
  292. "zuoshou": {
  293. "zuoshou": {
  294. "type": "mesh",
  295. "uvs": [ 1, 0.14536, 0.80012, 0.47345, 0.79059, 0.48909, 0.78188, 0.50338, 0.60611, 0.79191, 0.5955, 0.80931, 0.58785, 0.82188, 0.47933, 1, 0, 1, 0, 0.61838, 0.03681, 0.58662, 0.06497, 0.56232, 0.35829, 0.30926, 0.37337, 0.29625, 0.38935, 0.28246, 0.71673, 0, 0.83214, 0, 1, 0, 0.41009, 0.70613, 0.36433, 0.73892, 0.38951, 0.72088, 0.59036, 0.40452, 0.58315, 0.41659, 0.59991, 0.38854 ],
  296. "triangles": [ 8, 19, 7, 7, 19, 6, 8, 9, 19, 19, 20, 6, 6, 20, 5, 20, 18, 5, 5, 18, 4, 9, 10, 19, 19, 10, 20, 10, 11, 20, 20, 11, 18, 18, 22, 4, 4, 22, 3, 11, 12, 18, 18, 12, 22, 22, 21, 3, 3, 21, 2, 12, 13, 22, 21, 23, 2, 2, 23, 1, 0, 23, 16, 0, 1, 23, 22, 13, 21, 13, 14, 21, 21, 14, 23, 23, 15, 16, 23, 14, 15, 16, 17, 0 ],
  297. "vertices": [ 1, 15, 2.76, 8.81, 1, 2, 15, 22.87, 9, 0.30494, 16, 0.03, 8.94, 0.69506, 2, 15, 23.83, 9, 0.22426, 16, 0.99, 8.95, 0.77574, 2, 15, 24.71, 9.01, 0.16288, 16, 1.87, 8.96, 0.83712, 2, 16, 19.55, 9.14, 0.35437, 17, 0.46, 9.34, 0.64563, 2, 16, 20.62, 9.15, 0.26811, 17, 1.51, 9.53, 0.73189, 2, 16, 21.39, 9.16, 0.21355, 17, 2.27, 9.66, 0.78645, 1, 17, 13.02, 11.55, 1, 1, 17, 22.3, -3.56, 1, 2, 16, 18.86, -15.36, 0.35566, 17, 3.77, -14.94, 0.64434, 2, 16, 16.67, -14.78, 0.44171, 17, 1.51, -14.73, 0.55829, 3, 15, 37.8, -14.3, 5.3E-4, 16, 14.99, -14.34, 0.52924, 17, -0.21, -14.57, 0.47023, 3, 15, 20.35, -9.67, 0.69534, 16, -2.46, -9.74, 0.30437, 17, -18.18, -12.87, 2.9E-4, 3, 15, 19.45, -9.43, 0.76575, 16, -3.36, -9.5, 0.23421, 17, -19.11, -12.78, 4.0E-5, 2, 15, 18.5, -9.18, 0.83006, 16, -4.31, -9.25, 0.16994, 1, 15, -0.97, -4.02, 1, 1, 15, -2.58, -0.06, 1, 1, 15, -4.91, 5.7, 1, 2, 16, 17.76, 0.58, 0.42229, 17, 0.09, 0.6, 0.57771, 1, 17, 2.57, 0.14, 1, 1, 17, 1.2, 0.39, 1, 2, 15, 22.15, 0.33, 0.95982, 16, -0.68, 0.27, 0.04018, 1, 16, 0.06, 0.28, 1, 1, 15, 21.17, 0.31, 1 ],
  298. "hull": 18,
  299. "edges": [ 0, 34, 14, 16, 16, 18, 30, 32, 32, 34, 22, 36, 36, 8, 16, 38, 18, 38, 12, 14, 38, 12, 18, 20, 20, 22, 36, 40, 40, 38, 20, 40, 8, 10, 10, 12, 40, 10, 26, 42, 42, 4, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 4, 6, 6, 8, 44, 6, 26, 28, 28, 30, 32, 46, 46, 42, 28, 46, 0, 2, 2, 4, 46, 2 ],
  300. "width": 37,
  301. "height": 57
  302. }
  303. },
  304. "zuotui": {
  305. "zuotui": {
  306. "type": "mesh",
  307. "uvs": [ 1, 0.48469, 1, 0.51691, 1, 0.54358, 1, 0.82625, 1, 0.84135, 1, 0.86745, 1, 1, 0, 1, 0, 0.95062, 0, 0.87527, 0.2437, 0.82585, 0.24594, 0.8044, 0.24744, 0.79008, 0.27479, 0.52894, 0.27744, 0.50364, 0.28049, 0.47451, 0.33019, 0, 0.66384, 0, 1, 0, 0.62059, 0.84078, 0.6217, 0.81912, 0.62224, 0.80864, 0.6377, 0.50803, 0.63627, 0.5358, 0.63907, 0.48143 ],
  308. "triangles": [ 7, 19, 6, 19, 5, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 19, 4, 5, 19, 20, 4, 4, 20, 3, 20, 21, 3, 10, 11, 19, 19, 11, 20, 3, 21, 2, 21, 23, 2, 11, 12, 20, 20, 12, 21, 12, 13, 21, 21, 13, 23, 23, 22, 2, 22, 1, 2, 13, 14, 23, 23, 14, 22, 22, 24, 1, 14, 15, 22, 22, 15, 24, 24, 0, 1, 24, 17, 0, 17, 18, 0, 15, 16, 24, 24, 16, 17 ],
  309. "vertices": [ 2, 22, 26.08, 10.18, 0.56388, 23, -1.93, 10.18, 0.43612, 2, 22, 28.11, 10.21, 0.39556, 23, 0.09, 10.27, 0.60444, 2, 22, 29.79, 10.24, 0.26865, 23, 1.77, 10.34, 0.73135, 2, 23, 19.57, 11.07, 0.67285, 24, -11.69, -1.5, 0.32715, 2, 23, 20.52, 11.11, 0.60451, 24, -11.5, -0.56, 0.39549, 2, 23, 22.16, 11.18, 0.48098, 24, -11.17, 1.05, 0.51902, 2, 23, 30.5, 11.52, 0.10872, 24, -9.49, 9.23, 0.89128, 1, 24, 17.94, 3.6, 1, 1, 24, 17.31, 0.55, 1, 2, 23, 23.81, -16.78, 0.00179, 24, 16.36, -4.1, 0.99821, 2, 23, 20.42, -10.09, 0.28723, 24, 9.05, -5.78, 0.71277, 2, 23, 19.06, -10.08, 0.47184, 24, 8.71, -7.09, 0.52816, 2, 23, 18.16, -10.07, 0.56883, 24, 8.49, -7.97, 0.43117, 2, 22, 29.17, -10.08, 0.25935, 23, 1.69, -9.99, 0.74065, 2, 22, 27.58, -10.03, 0.38406, 23, 0.09, -9.98, 0.61594, 2, 22, 25.74, -9.97, 0.54209, 23, -1.74, -9.97, 0.45791, 1, 22, -4.17, -9.03, 1, 1, 22, -4.31, 0.31, 1, 1, 22, -4.45, 9.72, 1, 2, 23, 20.92, 0.5, 0.80421, 24, -1.1, -2.74, 0.19579, 2, 23, 19.55, 0.47, 0.99395, 24, -1.41, -4.07, 0.00605, 1, 23, 18.89, 0.46, 1, 2, 22, 27.7, 0.06, 0.00341, 23, -0.05, 0.11, 0.99659, 2, 22, 29.45, 0.05, 0.00115, 23, 1.7, 0.14, 0.99885, 2, 22, 26.03, 0.07, 0.93456, 23, -1.72, 0.08, 0.06544 ],
  310. "hull": 19,
  311. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  312. "width": 28,
  313. "height": 63
  314. }
  315. },
  316. "zuoyan": {
  317. "zuoyan": { "x": 4.34, "y": 2.19, "rotation": -92.08, "width": 21, "height": 14 }
  318. }
  319. }
  320. },
  321. "animations": {
  322. "stand1": {
  323. "slots": {
  324. "biyan": {
  325. "attachment": [
  326. { "time": 0.1, "name": "biyan" },
  327. { "time": 0.1667, "name": null }
  328. ]
  329. },
  330. "jita": {
  331. "attachment": [
  332. { "time": 0, "name": null }
  333. ]
  334. },
  335. "shouzhi1": {
  336. "attachment": [
  337. { "time": 0, "name": null }
  338. ]
  339. },
  340. "shouzhi2": {
  341. "attachment": [
  342. { "time": 0, "name": null }
  343. ]
  344. },
  345. "shouzhi3": {
  346. "attachment": [
  347. { "time": 0, "name": null }
  348. ]
  349. },
  350. "shouzhi4": {
  351. "attachment": [
  352. { "time": 0, "name": null }
  353. ]
  354. },
  355. "teshudongzuomeimao": {
  356. "attachment": [
  357. { "time": 0, "name": null }
  358. ]
  359. },
  360. "teshuzuoshou1": {
  361. "attachment": [
  362. { "time": 0, "name": null }
  363. ]
  364. },
  365. "yin1": {
  366. "color": [
  367. { "time": 0, "color": "ffffff00" },
  368. { "time": 0.4, "color": "ffffffff", "curve": "stepped" },
  369. { "time": 1.4, "color": "ffffffff" },
  370. { "time": 2, "color": "ffffff00" }
  371. ],
  372. "attachment": [
  373. { "time": 0, "name": "yin1" }
  374. ]
  375. },
  376. "yin2": {
  377. "color": [
  378. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  379. { "time": 0.7, "color": "ffffff00" },
  380. { "time": 1.0333, "color": "ffffffff", "curve": "stepped" },
  381. { "time": 1.9667, "color": "ffffffff" },
  382. { "time": 2.3, "color": "ffffff00", "curve": "stepped" },
  383. { "time": 2.6, "color": "ffffff00" },
  384. { "time": 2.8667, "color": "ffffffff", "curve": "stepped" },
  385. { "time": 3.6333, "color": "ffffffff" },
  386. { "time": 3.9, "color": "ffffff00" }
  387. ],
  388. "attachment": [
  389. { "time": 0, "name": "yin2" }
  390. ]
  391. },
  392. "yin3": {
  393. "color": [
  394. { "time": 0, "color": "ffffff00" },
  395. { "time": 0.3667, "color": "ffffffff", "curve": "stepped" },
  396. { "time": 1.4333, "color": "ffffffff" },
  397. { "time": 1.9667, "color": "ffffff00", "curve": "stepped" },
  398. { "time": 2.4333, "color": "ffffff00" },
  399. { "time": 2.8, "color": "ffffffff", "curve": "stepped" },
  400. { "time": 3.8667, "color": "ffffffff" },
  401. { "time": 4.4, "color": "ffffff00" }
  402. ],
  403. "attachment": [
  404. { "time": 0, "name": "yin3" }
  405. ]
  406. },
  407. "youshou": {
  408. "attachment": [
  409. { "time": 0, "name": null }
  410. ]
  411. },
  412. "youyan": {
  413. "attachment": [
  414. { "time": 0.1, "name": null },
  415. { "time": 0.1667, "name": "youyan" }
  416. ]
  417. },
  418. "zhangzui": {
  419. "attachment": [
  420. { "time": 0, "name": null },
  421. { "time": 0.1667, "name": "zhangzui" },
  422. { "time": 0.3, "name": null },
  423. { "time": 0.4333, "name": "zhangzui" },
  424. { "time": 0.6, "name": null },
  425. { "time": 0.8333, "name": "zhangzui" },
  426. { "time": 1.0333, "name": null },
  427. { "time": 1.2667, "name": "zhangzui" },
  428. { "time": 1.4, "name": null },
  429. { "time": 1.5333, "name": "zhangzui" },
  430. { "time": 1.7, "name": null },
  431. { "time": 1.9333, "name": "zhangzui" },
  432. { "time": 2.1333, "name": null },
  433. { "time": 2.3667, "name": "zhangzui" },
  434. { "time": 2.5, "name": null },
  435. { "time": 2.6333, "name": "zhangzui" },
  436. { "time": 2.8, "name": null },
  437. { "time": 3.0333, "name": "zhangzui" },
  438. { "time": 3.2333, "name": null },
  439. { "time": 3.4667, "name": "zhangzui" },
  440. { "time": 3.6, "name": null },
  441. { "time": 3.7333, "name": "zhangzui" },
  442. { "time": 3.9, "name": null },
  443. { "time": 4.1333, "name": "zhangzui" },
  444. { "time": 4.3333, "name": null },
  445. { "time": 4.5333, "name": "zhangzui" }
  446. ]
  447. },
  448. "zuiba": {
  449. "attachment": [
  450. { "time": 0.1667, "name": null },
  451. { "time": 0.3, "name": "zuiba" },
  452. { "time": 0.4333, "name": null },
  453. { "time": 0.6, "name": "zuiba" },
  454. { "time": 0.8333, "name": null },
  455. { "time": 1.0333, "name": "zuiba" },
  456. { "time": 1.2667, "name": null },
  457. { "time": 1.4, "name": "zuiba" },
  458. { "time": 1.5333, "name": null },
  459. { "time": 1.7, "name": "zuiba" },
  460. { "time": 1.9333, "name": null },
  461. { "time": 2.1333, "name": "zuiba" },
  462. { "time": 2.3667, "name": null },
  463. { "time": 2.5, "name": "zuiba" },
  464. { "time": 2.6333, "name": null },
  465. { "time": 2.8, "name": "zuiba" },
  466. { "time": 3.0333, "name": null },
  467. { "time": 3.2333, "name": "zuiba" },
  468. { "time": 3.4667, "name": null },
  469. { "time": 3.6, "name": "zuiba" },
  470. { "time": 3.7333, "name": null },
  471. { "time": 3.9, "name": "zuiba" },
  472. { "time": 4.1333, "name": null },
  473. { "time": 4.3333, "name": "zuiba" },
  474. { "time": 4.5333, "name": null }
  475. ]
  476. },
  477. "zuoshou": {
  478. "attachment": [
  479. { "time": 0, "name": null }
  480. ]
  481. },
  482. "zuoyan": {
  483. "attachment": [
  484. { "time": 0.1, "name": null },
  485. { "time": 0.1667, "name": "zuoyan" }
  486. ]
  487. }
  488. },
  489. "bones": {
  490. "bone15": {
  491. "translate": [
  492. { "time": 0, "x": 0.63, "y": 67.54 }
  493. ]
  494. },
  495. "bone37": {
  496. "rotate": [
  497. { "time": 0, "angle": 55.34 },
  498. { "time": 0.1667, "angle": 37.62 },
  499. { "time": 0.3333, "angle": 1.39, "curve": "stepped" },
  500. { "time": 0.5, "angle": 1.39 },
  501. { "time": 0.6333, "angle": 24.02 },
  502. { "time": 0.7333, "angle": 1.39 },
  503. { "time": 0.7667, "angle": 24.02 },
  504. { "time": 0.9, "angle": 1.39, "curve": "stepped" },
  505. { "time": 0.9333, "angle": 1.39, "curve": "stepped" },
  506. { "time": 1.0667, "angle": 1.39, "curve": "stepped" },
  507. { "time": 1.1333, "angle": 1.39 },
  508. { "time": 1.2, "angle": 24.02, "curve": "stepped" },
  509. { "time": 1.3333, "angle": 24.02, "curve": "stepped" },
  510. { "time": 1.3667, "angle": 24.02 },
  511. { "time": 1.5, "angle": 1.39, "curve": "stepped" },
  512. { "time": 1.5333, "angle": 1.39, "curve": "stepped" },
  513. { "time": 1.6667, "angle": 1.39 },
  514. { "time": 1.7333, "angle": 12.7 },
  515. { "time": 1.8, "angle": 24.02 },
  516. { "time": 1.9333, "angle": 1.39 },
  517. { "time": 1.9667, "angle": 24.02 },
  518. { "time": 2.1, "angle": 1.39, "curve": "stepped" },
  519. { "time": 2.1333, "angle": 1.39, "curve": "stepped" },
  520. { "time": 2.2667, "angle": 1.39, "curve": "stepped" },
  521. { "time": 2.3333, "angle": 1.39 },
  522. { "time": 2.4, "angle": 24.02, "curve": "stepped" },
  523. { "time": 2.5333, "angle": 24.02 },
  524. { "time": 2.8, "angle": 1.39 },
  525. { "time": 2.8333, "angle": 24.02 },
  526. { "time": 2.9667, "angle": 1.39, "curve": "stepped" },
  527. { "time": 3, "angle": 1.39, "curve": "stepped" },
  528. { "time": 3.1333, "angle": 1.39, "curve": "stepped" },
  529. { "time": 3.2, "angle": 1.39 },
  530. { "time": 3.2667, "angle": 24.02, "curve": "stepped" },
  531. { "time": 3.4, "angle": 24.02, "curve": "stepped" },
  532. { "time": 3.4333, "angle": 24.02 },
  533. { "time": 3.5667, "angle": 1.39, "curve": "stepped" },
  534. { "time": 3.6, "angle": 1.39, "curve": "stepped" },
  535. { "time": 3.7333, "angle": 1.39 },
  536. { "time": 3.8, "angle": 12.7 },
  537. { "time": 3.8667, "angle": 24.02 },
  538. { "time": 4, "angle": 1.39 },
  539. { "time": 4.0333, "angle": 24.02 },
  540. { "time": 4.1667, "angle": 1.39, "curve": "stepped" },
  541. { "time": 4.2, "angle": 1.39, "curve": "stepped" },
  542. { "time": 4.3333, "angle": 1.39, "curve": "stepped" },
  543. { "time": 4.4, "angle": 1.39 },
  544. { "time": 4.4667, "angle": 24.02, "curve": "stepped" },
  545. { "time": 4.6, "angle": 24.02 }
  546. ],
  547. "translate": [
  548. { "time": 0, "x": 1.98, "y": -3.15 },
  549. { "time": 0.1667, "x": 1.11, "y": -1.07 },
  550. { "time": 0.3333, "x": 0.25, "y": 1.01 },
  551. { "time": 0.5, "x": -4.17, "y": 2.01, "curve": "stepped" },
  552. { "time": 0.6333, "x": -4.17, "y": 2.01 },
  553. { "time": 0.7333, "x": 0.25, "y": 1.01 },
  554. { "time": 0.7667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  555. { "time": 0.9, "x": -4.17, "y": 2.01, "curve": "stepped" },
  556. { "time": 0.9333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  557. { "time": 1.0667, "x": -4.17, "y": 2.01 },
  558. { "time": 1.1333, "x": 0.25, "y": 1.01 },
  559. { "time": 1.2, "x": -4.17, "y": 2.01, "curve": "stepped" },
  560. { "time": 1.3333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  561. { "time": 1.3667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  562. { "time": 1.5, "x": -4.17, "y": 2.01 },
  563. { "time": 1.5333, "x": 0.25, "y": 1.01 },
  564. { "time": 1.6667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  565. { "time": 1.7333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  566. { "time": 1.8, "x": -4.17, "y": 2.01 },
  567. { "time": 1.9333, "x": 0.25, "y": 1.01 },
  568. { "time": 1.9667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  569. { "time": 2.1, "x": -4.17, "y": 2.01, "curve": "stepped" },
  570. { "time": 2.1333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  571. { "time": 2.2667, "x": -4.17, "y": 2.01 },
  572. { "time": 2.3333, "x": 0.25, "y": 1.01 },
  573. { "time": 2.4, "x": -4.17, "y": 2.01, "curve": "stepped" },
  574. { "time": 2.5333, "x": -4.17, "y": 2.01 },
  575. { "time": 2.8, "x": 0.25, "y": 1.01 },
  576. { "time": 2.8333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  577. { "time": 2.9667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  578. { "time": 3, "x": -4.17, "y": 2.01, "curve": "stepped" },
  579. { "time": 3.1333, "x": -4.17, "y": 2.01 },
  580. { "time": 3.2, "x": 0.25, "y": 1.01 },
  581. { "time": 3.2667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  582. { "time": 3.4, "x": -4.17, "y": 2.01, "curve": "stepped" },
  583. { "time": 3.4333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  584. { "time": 3.5667, "x": -4.17, "y": 2.01 },
  585. { "time": 3.6, "x": 0.25, "y": 1.01 },
  586. { "time": 3.7333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  587. { "time": 3.8, "x": -4.17, "y": 2.01, "curve": "stepped" },
  588. { "time": 3.8667, "x": -4.17, "y": 2.01 },
  589. { "time": 4, "x": 0.25, "y": 1.01 },
  590. { "time": 4.0333, "x": -4.17, "y": 2.01, "curve": "stepped" },
  591. { "time": 4.1667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  592. { "time": 4.2, "x": -4.17, "y": 2.01, "curve": "stepped" },
  593. { "time": 4.3333, "x": -4.17, "y": 2.01 },
  594. { "time": 4.4, "x": 0.25, "y": 1.01 },
  595. { "time": 4.4667, "x": -4.17, "y": 2.01, "curve": "stepped" },
  596. { "time": 4.6, "x": -4.17, "y": 2.01 }
  597. ]
  598. },
  599. "bone43": {
  600. "rotate": [
  601. { "time": 0, "angle": -42.69 }
  602. ],
  603. "translate": [
  604. { "time": 0, "x": -1.78, "y": -1.87 }
  605. ]
  606. },
  607. "bone36": {
  608. "rotate": [
  609. { "time": 0, "angle": -9.66 },
  610. { "time": 0.1667, "angle": -16.94 },
  611. { "time": 0.3333, "angle": -29.9, "curve": "stepped" },
  612. { "time": 0.5, "angle": -29.9 },
  613. { "time": 0.6333, "angle": -31.44 },
  614. { "time": 0.7333, "angle": -29.9 },
  615. { "time": 0.7667, "angle": -31.44 },
  616. { "time": 0.9, "angle": -29.9, "curve": "stepped" },
  617. { "time": 0.9333, "angle": -29.9, "curve": "stepped" },
  618. { "time": 1.0667, "angle": -29.9, "curve": "stepped" },
  619. { "time": 1.1333, "angle": -29.9 },
  620. { "time": 1.2, "angle": -31.44, "curve": "stepped" },
  621. { "time": 1.3333, "angle": -31.44, "curve": "stepped" },
  622. { "time": 1.3667, "angle": -31.44 },
  623. { "time": 1.5, "angle": -29.9, "curve": "stepped" },
  624. { "time": 1.5333, "angle": -29.9, "curve": "stepped" },
  625. { "time": 1.6667, "angle": -29.9 },
  626. { "time": 1.7333, "angle": -30.67 },
  627. { "time": 1.8, "angle": -31.44 },
  628. { "time": 1.9333, "angle": -29.9 },
  629. { "time": 1.9667, "angle": -31.44 },
  630. { "time": 2.1, "angle": -29.9, "curve": "stepped" },
  631. { "time": 2.1333, "angle": -29.9, "curve": "stepped" },
  632. { "time": 2.2667, "angle": -29.9, "curve": "stepped" },
  633. { "time": 2.3333, "angle": -29.9 },
  634. { "time": 2.4, "angle": -31.44, "curve": "stepped" },
  635. { "time": 2.5333, "angle": -31.44 },
  636. { "time": 2.8, "angle": -29.9 },
  637. { "time": 2.8333, "angle": -31.44 },
  638. { "time": 2.9667, "angle": -29.9, "curve": "stepped" },
  639. { "time": 3, "angle": -29.9, "curve": "stepped" },
  640. { "time": 3.1333, "angle": -29.9, "curve": "stepped" },
  641. { "time": 3.2, "angle": -29.9 },
  642. { "time": 3.2667, "angle": -31.44, "curve": "stepped" },
  643. { "time": 3.4, "angle": -31.44, "curve": "stepped" },
  644. { "time": 3.4333, "angle": -31.44 },
  645. { "time": 3.5667, "angle": -29.9, "curve": "stepped" },
  646. { "time": 3.6, "angle": -29.9, "curve": "stepped" },
  647. { "time": 3.7333, "angle": -29.9 },
  648. { "time": 3.8, "angle": -30.67 },
  649. { "time": 3.8667, "angle": -31.44 },
  650. { "time": 4, "angle": -29.9 },
  651. { "time": 4.0333, "angle": -31.44 },
  652. { "time": 4.1667, "angle": -29.9, "curve": "stepped" },
  653. { "time": 4.2, "angle": -29.9, "curve": "stepped" },
  654. { "time": 4.3333, "angle": -29.9, "curve": "stepped" },
  655. { "time": 4.4, "angle": -29.9 },
  656. { "time": 4.4667, "angle": -31.44, "curve": "stepped" },
  657. { "time": 4.6, "angle": -31.44 }
  658. ]
  659. },
  660. "jita2": {
  661. "rotate": [
  662. { "time": 0, "angle": 7.76 },
  663. { "time": 0.1667, "angle": 8.63 },
  664. { "time": 0.3333, "angle": -12.61 },
  665. { "time": 0.5, "angle": -4.68 },
  666. { "time": 0.7333, "angle": -6.59 },
  667. { "time": 0.9333, "angle": -2.3 },
  668. { "time": 1.1333, "angle": -9.25 },
  669. { "time": 1.3333, "angle": -11.72 },
  670. { "time": 1.5333, "angle": -9.25 },
  671. { "time": 1.7333, "angle": -1.95 },
  672. { "time": 1.9333, "angle": -9.25 },
  673. { "time": 2.1333, "angle": -2.3 },
  674. { "time": 2.3333, "angle": -9.25 },
  675. { "time": 2.5333, "angle": -11.72 },
  676. { "time": 2.8, "angle": -9.25 },
  677. { "time": 3, "angle": -2.3 },
  678. { "time": 3.2, "angle": -9.25 },
  679. { "time": 3.4, "angle": -11.72 },
  680. { "time": 3.6, "angle": -9.25 },
  681. { "time": 3.8, "angle": -1.95 },
  682. { "time": 4, "angle": -9.25 },
  683. { "time": 4.2, "angle": -2.3 },
  684. { "time": 4.4, "angle": -9.25 },
  685. { "time": 4.6, "angle": -11.72 }
  686. ],
  687. "translate": [
  688. { "time": 0, "x": 28.36, "y": 0.75 },
  689. { "time": 0.1667, "x": 13.89, "y": -0.35 },
  690. { "time": 0.3333, "x": 13.6, "y": 3.87 },
  691. { "time": 0.5, "x": 13.97, "y": 5.38 },
  692. { "time": 0.7333, "x": 13.6, "y": 3.87 },
  693. { "time": 0.9333, "x": 16.34, "y": 4.78 },
  694. { "time": 1.1333, "x": 13.6, "y": 3.87 },
  695. { "time": 1.3333, "x": 16.66, "y": 4.06 },
  696. { "time": 1.5333, "x": 13.6, "y": 3.87 },
  697. { "time": 1.7333, "x": 16.02, "y": 5.51 },
  698. { "time": 1.9333, "x": 13.6, "y": 3.87 },
  699. { "time": 2.1333, "x": 16.34, "y": 4.78 },
  700. { "time": 2.3333, "x": 13.6, "y": 3.87 },
  701. { "time": 2.5333, "x": 16.66, "y": 4.06 },
  702. { "time": 2.8, "x": 13.6, "y": 3.87 },
  703. { "time": 3, "x": 16.34, "y": 4.78 },
  704. { "time": 3.2, "x": 13.6, "y": 3.87 },
  705. { "time": 3.4, "x": 16.66, "y": 4.06 },
  706. { "time": 3.6, "x": 13.6, "y": 3.87 },
  707. { "time": 3.8, "x": 16.02, "y": 5.51 },
  708. { "time": 4, "x": 13.6, "y": 3.87 },
  709. { "time": 4.2, "x": 16.34, "y": 4.78 },
  710. { "time": 4.4, "x": 13.6, "y": 3.87 },
  711. { "time": 4.6, "x": 16.66, "y": 4.06 }
  712. ],
  713. "scale": [
  714. { "time": 0, "x": 1, "y": 1 }
  715. ]
  716. },
  717. "bone19": {
  718. "rotate": [
  719. { "time": 0, "angle": -51.04 }
  720. ]
  721. },
  722. "bone45": {
  723. "rotate": [
  724. { "time": 0, "angle": 0 },
  725. { "time": 0.7333, "angle": 29.24 },
  726. { "time": 2, "angle": -17.16 }
  727. ],
  728. "translate": [
  729. { "time": 0, "x": 142.53, "y": -12.82 },
  730. { "time": 0.7333, "x": 170.35, "y": 23.06 },
  731. { "time": 2, "x": 185.17, "y": 62.58 }
  732. ],
  733. "scale": [
  734. { "time": 0, "x": 1, "y": 1 }
  735. ]
  736. },
  737. "bone47": {
  738. "rotate": [
  739. { "time": 0, "angle": 0 },
  740. { "time": 0.7, "angle": 26.99 },
  741. { "time": 1.9667, "angle": 0.99, "curve": "stepped" },
  742. { "time": 2.4333, "angle": 0 },
  743. { "time": 3.1333, "angle": -47.04 },
  744. { "time": 4.4, "angle": 0.99 }
  745. ],
  746. "translate": [
  747. { "time": 0, "x": 83.46, "y": -66.3 },
  748. { "time": 0.7, "x": 65.22, "y": 1.3 },
  749. { "time": 1.9667, "x": 37.44, "y": 28.08, "curve": "stepped" },
  750. { "time": 2.4333, "x": 147.42, "y": -82.68 },
  751. { "time": 3.1333, "x": 186.12, "y": -33.8 },
  752. { "time": 4.4, "x": 224.64, "y": -10.14 }
  753. ]
  754. },
  755. "root": {
  756. "rotate": [
  757. { "time": 0, "angle": 0 }
  758. ],
  759. "scale": [
  760. { "time": 0, "x": 0.65, "y": 0.65 }
  761. ]
  762. },
  763. "bone": {
  764. "translate": [
  765. { "time": 0, "x": 0, "y": 0 },
  766. { "time": 0.1667, "x": -8.22, "y": 0 },
  767. { "time": 0.3333, "x": 0.29, "y": -1.45 },
  768. { "time": 0.5333, "x": -9.43, "y": 1.22 },
  769. { "time": 0.7333, "x": 0.29, "y": -1.45 },
  770. { "time": 0.9333, "x": -9.43, "y": 1.22 },
  771. { "time": 1.1333, "x": 0.29, "y": -1.45 },
  772. { "time": 1.3333, "x": -9.43, "y": 1.22 },
  773. { "time": 1.5333, "x": 0.29, "y": -1.45 },
  774. { "time": 1.7333, "x": -9.43, "y": 1.22 },
  775. { "time": 1.9333, "x": 0.29, "y": -1.45 },
  776. { "time": 2.1333, "x": -9.43, "y": 1.22 },
  777. { "time": 2.3333, "x": 0.29, "y": -1.45 },
  778. { "time": 2.5333, "x": -9.43, "y": 1.22 },
  779. { "time": 2.8, "x": 0.29, "y": -1.45 },
  780. { "time": 3, "x": -9.43, "y": 1.22 },
  781. { "time": 3.2, "x": 0.29, "y": -1.45 },
  782. { "time": 3.4, "x": -9.43, "y": 1.22 },
  783. { "time": 3.6, "x": 0.29, "y": -1.45 },
  784. { "time": 3.8, "x": -9.43, "y": 1.22 },
  785. { "time": 4, "x": 0.29, "y": -1.45 },
  786. { "time": 4.2, "x": -9.43, "y": 1.22 },
  787. { "time": 4.4, "x": 0.29, "y": -1.45 },
  788. { "time": 4.6, "x": -9.43, "y": 1.22 }
  789. ]
  790. },
  791. "bone2": {
  792. "rotate": [
  793. { "time": 0, "angle": 0 },
  794. { "time": 0.1667, "angle": 3.27, "curve": "stepped" },
  795. { "time": 0.3333, "angle": 3.27, "curve": "stepped" },
  796. { "time": 0.5, "angle": 3.27, "curve": "stepped" },
  797. { "time": 0.7333, "angle": 3.27, "curve": "stepped" },
  798. { "time": 0.9333, "angle": 3.27, "curve": "stepped" },
  799. { "time": 1.1333, "angle": 3.27, "curve": "stepped" },
  800. { "time": 1.3333, "angle": 3.27, "curve": "stepped" },
  801. { "time": 1.5333, "angle": 3.27, "curve": "stepped" },
  802. { "time": 1.7333, "angle": 3.27, "curve": "stepped" },
  803. { "time": 1.9333, "angle": 3.27, "curve": "stepped" },
  804. { "time": 2.1333, "angle": 3.27, "curve": "stepped" },
  805. { "time": 2.3333, "angle": 3.27, "curve": "stepped" },
  806. { "time": 2.5333, "angle": 3.27, "curve": "stepped" },
  807. { "time": 2.8, "angle": 3.27, "curve": "stepped" },
  808. { "time": 3, "angle": 3.27, "curve": "stepped" },
  809. { "time": 3.2, "angle": 3.27, "curve": "stepped" },
  810. { "time": 3.4, "angle": 3.27, "curve": "stepped" },
  811. { "time": 3.6, "angle": 3.27, "curve": "stepped" },
  812. { "time": 3.8, "angle": 3.27, "curve": "stepped" },
  813. { "time": 4, "angle": 3.27, "curve": "stepped" },
  814. { "time": 4.2, "angle": 3.27, "curve": "stepped" },
  815. { "time": 4.4, "angle": 3.27, "curve": "stepped" },
  816. { "time": 4.6, "angle": 3.27 }
  817. ]
  818. },
  819. "bone3": {
  820. "rotate": [
  821. { "time": 0, "angle": 0 },
  822. { "time": 0.0333, "angle": 11.72 },
  823. { "time": 0.1667, "angle": 10.63 },
  824. { "time": 0.3333, "angle": -2.12 },
  825. { "time": 0.5, "angle": 1.1 },
  826. { "time": 0.7333, "angle": -2.12 },
  827. { "time": 0.9333, "angle": 8.18 },
  828. { "time": 1.1333, "angle": -2.12 },
  829. { "time": 1.3333, "angle": -6.85 },
  830. { "time": 1.5333, "angle": -2.12 },
  831. { "time": 1.7333, "angle": 5.56 },
  832. { "time": 1.9333, "angle": -2.12 },
  833. { "time": 2.1333, "angle": 8.18 },
  834. { "time": 2.3333, "angle": -2.12 },
  835. { "time": 2.5333, "angle": -6.85 },
  836. { "time": 2.8, "angle": -2.12 },
  837. { "time": 3, "angle": 8.18 },
  838. { "time": 3.2, "angle": -2.12 },
  839. { "time": 3.4, "angle": -6.85 },
  840. { "time": 3.6, "angle": -2.12 },
  841. { "time": 3.8, "angle": 5.56 },
  842. { "time": 4, "angle": -2.12 },
  843. { "time": 4.2, "angle": 8.18 },
  844. { "time": 4.4, "angle": -2.12 },
  845. { "time": 4.6, "angle": -6.85 }
  846. ],
  847. "translate": [
  848. { "time": 0, "x": 0, "y": 0 },
  849. { "time": 0.1667, "x": 0.85, "y": 1.26 },
  850. { "time": 0.3333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  851. { "time": 0.7333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  852. { "time": 0.9333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  853. { "time": 1.1333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  854. { "time": 1.3333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  855. { "time": 1.5333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  856. { "time": 1.7333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  857. { "time": 1.9333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  858. { "time": 2.1333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  859. { "time": 2.3333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  860. { "time": 2.5333, "x": 0.48, "y": -0.72, "curve": "stepped" },
  861. { "time": 2.8, "x": 0.48, "y": -0.72, "curve": "stepped" },
  862. { "time": 3, "x": 0.48, "y": -0.72, "curve": "stepped" },
  863. { "time": 3.2, "x": 0.48, "y": -0.72, "curve": "stepped" },
  864. { "time": 3.4, "x": 0.48, "y": -0.72, "curve": "stepped" },
  865. { "time": 3.6, "x": 0.48, "y": -0.72, "curve": "stepped" },
  866. { "time": 3.8, "x": 0.48, "y": -0.72, "curve": "stepped" },
  867. { "time": 4, "x": 0.48, "y": -0.72, "curve": "stepped" },
  868. { "time": 4.2, "x": 0.48, "y": -0.72, "curve": "stepped" },
  869. { "time": 4.4, "x": 0.48, "y": -0.72, "curve": "stepped" },
  870. { "time": 4.6, "x": 0.48, "y": -0.72 }
  871. ],
  872. "scale": [
  873. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  874. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  875. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  876. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  877. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  878. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  879. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  880. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  881. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  882. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  892. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  893. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  894. { "time": 4.4, "x": 1, "y": 1, "curve": "stepped" },
  895. { "time": 4.6, "x": 1, "y": 1 }
  896. ]
  897. },
  898. "bone5": {
  899. "rotate": [
  900. { "time": 0, "angle": 0, "curve": "stepped" },
  901. { "time": 0.1667, "angle": 0 },
  902. { "time": 0.3333, "angle": 0.96 },
  903. { "time": 0.5, "angle": 4.37 },
  904. { "time": 0.7333, "angle": 0.96 },
  905. { "time": 0.9333, "angle": 4.82 },
  906. { "time": 1.1333, "angle": 0.96 },
  907. { "time": 1.3333, "angle": 7.53 },
  908. { "time": 1.5333, "angle": 0.96 },
  909. { "time": 1.7333, "angle": 7.53 },
  910. { "time": 1.9333, "angle": 0.96 },
  911. { "time": 2.1333, "angle": 4.82 },
  912. { "time": 2.3333, "angle": 0.96 },
  913. { "time": 2.5333, "angle": 7.53 },
  914. { "time": 2.8, "angle": 0.96 },
  915. { "time": 3, "angle": 4.82 },
  916. { "time": 3.2, "angle": 0.96 },
  917. { "time": 3.4, "angle": 7.53 },
  918. { "time": 3.6, "angle": 0.96 },
  919. { "time": 3.8, "angle": 7.53 },
  920. { "time": 4, "angle": 0.96 },
  921. { "time": 4.2, "angle": 4.82 },
  922. { "time": 4.4, "angle": 0.96 },
  923. { "time": 4.6, "angle": 7.53 }
  924. ],
  925. "translate": [
  926. { "time": 0, "x": 0, "y": 0 },
  927. { "time": 0.1667, "x": -1.83, "y": 2.41, "curve": "stepped" },
  928. { "time": 0.3333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  929. { "time": 0.5, "x": -1.83, "y": 2.41, "curve": "stepped" },
  930. { "time": 0.7333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  931. { "time": 0.9333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  932. { "time": 1.1333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  933. { "time": 1.3333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  934. { "time": 1.5333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  935. { "time": 1.7333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  936. { "time": 1.9333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  937. { "time": 2.1333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  938. { "time": 2.3333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  939. { "time": 2.5333, "x": -1.83, "y": 2.41, "curve": "stepped" },
  940. { "time": 2.8, "x": -1.83, "y": 2.41, "curve": "stepped" },
  941. { "time": 3, "x": -1.83, "y": 2.41, "curve": "stepped" },
  942. { "time": 3.2, "x": -1.83, "y": 2.41, "curve": "stepped" },
  943. { "time": 3.4, "x": -1.83, "y": 2.41, "curve": "stepped" },
  944. { "time": 3.6, "x": -1.83, "y": 2.41, "curve": "stepped" },
  945. { "time": 3.8, "x": -1.83, "y": 2.41, "curve": "stepped" },
  946. { "time": 4, "x": -1.83, "y": 2.41, "curve": "stepped" },
  947. { "time": 4.2, "x": -1.83, "y": 2.41, "curve": "stepped" },
  948. { "time": 4.4, "x": -1.83, "y": 2.41, "curve": "stepped" },
  949. { "time": 4.6, "x": -1.83, "y": 2.41 }
  950. ]
  951. },
  952. "bone22": {
  953. "rotate": [
  954. { "time": 0, "angle": 0 },
  955. { "time": 0.0667, "angle": -16.32 },
  956. { "time": 0.1667, "angle": -27.95, "curve": "stepped" },
  957. { "time": 0.2667, "angle": -27.95 },
  958. { "time": 0.3667, "angle": -37.75 },
  959. { "time": 0.5333, "angle": -27.95 },
  960. { "time": 0.6333, "angle": -37.75 },
  961. { "time": 0.7333, "angle": -31.87 },
  962. { "time": 0.8, "angle": -27.95 },
  963. { "time": 0.8667, "angle": -37.75 },
  964. { "time": 0.9333, "angle": -27.95, "curve": "stepped" },
  965. { "time": 1.0667, "angle": -27.95 },
  966. { "time": 1.1333, "angle": -34.49 },
  967. { "time": 1.1667, "angle": -37.75 },
  968. { "time": 1.3333, "angle": -27.95, "curve": "stepped" },
  969. { "time": 1.4, "angle": -27.95 },
  970. { "time": 1.5, "angle": -37.75 },
  971. { "time": 1.5333, "angle": -35.79 },
  972. { "time": 1.7333, "angle": -35.12 },
  973. { "time": 1.7667, "angle": -37.75 },
  974. { "time": 1.9333, "angle": -31.87 },
  975. { "time": 2, "angle": -27.95 },
  976. { "time": 2.1, "angle": -37.75 },
  977. { "time": 2.2667, "angle": -27.95 },
  978. { "time": 2.3333, "angle": -34.49 },
  979. { "time": 2.3667, "angle": -37.75 },
  980. { "time": 2.5333, "angle": -27.95 },
  981. { "time": 2.8, "angle": -31.87 },
  982. { "time": 2.8667, "angle": -27.95 },
  983. { "time": 2.9333, "angle": -37.75 },
  984. { "time": 3, "angle": -27.95, "curve": "stepped" },
  985. { "time": 3.1333, "angle": -27.95 },
  986. { "time": 3.2, "angle": -34.49 },
  987. { "time": 3.2333, "angle": -37.75 },
  988. { "time": 3.4, "angle": -27.95, "curve": "stepped" },
  989. { "time": 3.4667, "angle": -27.95 },
  990. { "time": 3.5667, "angle": -37.75 },
  991. { "time": 3.6, "angle": -35.79 },
  992. { "time": 3.8, "angle": -35.12 },
  993. { "time": 3.8333, "angle": -37.75 },
  994. { "time": 4, "angle": -31.87 },
  995. { "time": 4.0667, "angle": -27.95 },
  996. { "time": 4.1667, "angle": -37.75 },
  997. { "time": 4.3333, "angle": -27.95 },
  998. { "time": 4.4, "angle": -34.49 },
  999. { "time": 4.4333, "angle": -37.75 },
  1000. { "time": 4.6, "angle": -27.95 }
  1001. ],
  1002. "translate": [
  1003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1004. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1005. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  1006. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1007. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1008. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  1009. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  1038. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1041. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  1042. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1043. { "time": 4.0667, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  1046. { "time": 4.4, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 4.4333, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 4.6, "x": 0, "y": 0 }
  1049. ],
  1050. "scale": [
  1051. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1054. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1056. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  1057. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1058. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  1059. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1060. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1061. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1064. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1065. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1066. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1067. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1068. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1069. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1071. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1072. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1073. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  1074. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1075. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1076. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1089. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 4.0667, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 4.4, "x": 1, "y": 1, "curve": "stepped" },
  1095. { "time": 4.4333, "x": 1, "y": 1, "curve": "stepped" },
  1096. { "time": 4.6, "x": 1, "y": 1 }
  1097. ]
  1098. },
  1099. "bone23": {
  1100. "rotate": [
  1101. { "time": 0, "angle": 0 },
  1102. { "time": 0.0667, "angle": 36.9 },
  1103. { "time": 0.1667, "angle": 36.53, "curve": "stepped" },
  1104. { "time": 0.2667, "angle": 36.53 },
  1105. { "time": 0.3667, "angle": 66.77 },
  1106. { "time": 0.5333, "angle": 36.53 },
  1107. { "time": 0.6333, "angle": 66.77 },
  1108. { "time": 0.7333, "angle": 48.62 },
  1109. { "time": 0.8, "angle": 36.53 },
  1110. { "time": 0.8667, "angle": 66.77 },
  1111. { "time": 0.9333, "angle": 36.53, "curve": "stepped" },
  1112. { "time": 1.0667, "angle": 36.53 },
  1113. { "time": 1.1333, "angle": 56.69 },
  1114. { "time": 1.1667, "angle": 66.77 },
  1115. { "time": 1.3333, "angle": 36.53, "curve": "stepped" },
  1116. { "time": 1.4, "angle": 36.53 },
  1117. { "time": 1.5, "angle": 66.77 },
  1118. { "time": 1.5333, "angle": 60.72 },
  1119. { "time": 1.7333, "angle": 51.7 },
  1120. { "time": 1.7667, "angle": 66.77 },
  1121. { "time": 1.9333, "angle": 48.62 },
  1122. { "time": 2, "angle": 36.53 },
  1123. { "time": 2.1, "angle": 66.77 },
  1124. { "time": 2.2667, "angle": 36.53 },
  1125. { "time": 2.3333, "angle": 56.69 },
  1126. { "time": 2.3667, "angle": 66.77 },
  1127. { "time": 2.5333, "angle": 36.53 },
  1128. { "time": 2.8, "angle": 48.62 },
  1129. { "time": 2.8667, "angle": 36.53 },
  1130. { "time": 2.9333, "angle": 66.77 },
  1131. { "time": 3, "angle": 36.53, "curve": "stepped" },
  1132. { "time": 3.1333, "angle": 36.53 },
  1133. { "time": 3.2, "angle": 56.69 },
  1134. { "time": 3.2333, "angle": 66.77 },
  1135. { "time": 3.4, "angle": 36.53, "curve": "stepped" },
  1136. { "time": 3.4667, "angle": 36.53 },
  1137. { "time": 3.5667, "angle": 66.77 },
  1138. { "time": 3.6, "angle": 60.72 },
  1139. { "time": 3.8, "angle": 51.7 },
  1140. { "time": 3.8333, "angle": 66.77 },
  1141. { "time": 4, "angle": 48.62 },
  1142. { "time": 4.0667, "angle": 36.53 },
  1143. { "time": 4.1667, "angle": 66.77 },
  1144. { "time": 4.3333, "angle": 36.53 },
  1145. { "time": 4.4, "angle": 56.69 },
  1146. { "time": 4.4333, "angle": 66.77 },
  1147. { "time": 4.6, "angle": 36.53 }
  1148. ],
  1149. "translate": [
  1150. { "time": 0, "x": 0, "y": 0 }
  1151. ],
  1152. "scale": [
  1153. { "time": 0, "x": 1, "y": 1 }
  1154. ]
  1155. },
  1156. "bone24": {
  1157. "rotate": [
  1158. { "time": 0, "angle": 0 },
  1159. { "time": 0.1667, "angle": -10.27 },
  1160. { "time": 0.2667, "angle": -6.87 },
  1161. { "time": 1.7333, "angle": -6.1 },
  1162. { "time": 1.8, "angle": -6.87 },
  1163. { "time": 3.8, "angle": -6.1 },
  1164. { "time": 3.8667, "angle": -6.87 }
  1165. ]
  1166. },
  1167. "bone25": {
  1168. "rotate": [
  1169. { "time": 0, "angle": 0 },
  1170. { "time": 0.1667, "angle": 2.39 },
  1171. { "time": 0.3333, "angle": -14.74 },
  1172. { "time": 0.5333, "angle": 2.39 },
  1173. { "time": 0.7333, "angle": -14.74 },
  1174. { "time": 0.9333, "angle": 2.39 },
  1175. { "time": 1.1333, "angle": -14.74 },
  1176. { "time": 1.3333, "angle": 2.39 },
  1177. { "time": 1.5333, "angle": -14.74 },
  1178. { "time": 1.7333, "angle": 2.39 },
  1179. { "time": 1.9333, "angle": -14.74 },
  1180. { "time": 2.1333, "angle": 2.39 },
  1181. { "time": 2.3333, "angle": -14.74 },
  1182. { "time": 2.5333, "angle": 2.39 },
  1183. { "time": 2.8, "angle": -14.74 },
  1184. { "time": 3, "angle": 2.39 },
  1185. { "time": 3.2, "angle": -14.74 },
  1186. { "time": 3.4, "angle": 2.39 },
  1187. { "time": 3.6, "angle": -14.74 },
  1188. { "time": 3.8, "angle": 2.39 },
  1189. { "time": 4, "angle": -14.74 },
  1190. { "time": 4.2, "angle": 2.39 },
  1191. { "time": 4.4, "angle": -14.74 },
  1192. { "time": 4.6, "angle": 2.39 }
  1193. ]
  1194. },
  1195. "bone26": {
  1196. "rotate": [
  1197. { "time": 0, "angle": 0 },
  1198. { "time": 0.1667, "angle": 18 },
  1199. { "time": 0.3333, "angle": 39.57 },
  1200. { "time": 0.5333, "angle": 18 },
  1201. { "time": 0.7333, "angle": 39.57 },
  1202. { "time": 0.9333, "angle": 18 },
  1203. { "time": 1.1333, "angle": 39.57 },
  1204. { "time": 1.3333, "angle": 18 },
  1205. { "time": 1.5333, "angle": 39.57 },
  1206. { "time": 1.7333, "angle": 18 },
  1207. { "time": 1.9333, "angle": 39.57 },
  1208. { "time": 2.1333, "angle": 18 },
  1209. { "time": 2.3333, "angle": 39.57 },
  1210. { "time": 2.5333, "angle": 18 },
  1211. { "time": 2.8, "angle": 39.57 },
  1212. { "time": 3, "angle": 18 },
  1213. { "time": 3.2, "angle": 39.57 },
  1214. { "time": 3.4, "angle": 18 },
  1215. { "time": 3.6, "angle": 39.57 },
  1216. { "time": 3.8, "angle": 18 },
  1217. { "time": 4, "angle": 39.57 },
  1218. { "time": 4.2, "angle": 18 },
  1219. { "time": 4.4, "angle": 39.57 },
  1220. { "time": 4.6, "angle": 18 }
  1221. ]
  1222. },
  1223. "bone27": {
  1224. "rotate": [
  1225. { "time": 0, "angle": 0, "curve": "stepped" },
  1226. { "time": 0.1667, "angle": 0 },
  1227. { "time": 0.3333, "angle": -11.58 },
  1228. { "time": 0.5333, "angle": 11.42 },
  1229. { "time": 0.7333, "angle": -11.58 },
  1230. { "time": 0.9333, "angle": 11.42 },
  1231. { "time": 1.1333, "angle": -11.58 },
  1232. { "time": 1.3333, "angle": 11.42 },
  1233. { "time": 1.5333, "angle": -11.58 },
  1234. { "time": 1.7333, "angle": 11.42 },
  1235. { "time": 1.9333, "angle": -11.58 },
  1236. { "time": 2.1333, "angle": 11.42 },
  1237. { "time": 2.3333, "angle": -11.58 },
  1238. { "time": 2.5333, "angle": 11.42 },
  1239. { "time": 2.8, "angle": -11.58 },
  1240. { "time": 3, "angle": 11.42 },
  1241. { "time": 3.2, "angle": -11.58 },
  1242. { "time": 3.4, "angle": 11.42 },
  1243. { "time": 3.6, "angle": -11.58 },
  1244. { "time": 3.8, "angle": 11.42 },
  1245. { "time": 4, "angle": -11.58 },
  1246. { "time": 4.2, "angle": 11.42 },
  1247. { "time": 4.4, "angle": -11.58 },
  1248. { "time": 4.6, "angle": 11.42 }
  1249. ],
  1250. "translate": [
  1251. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1253. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1254. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1256. { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
  1257. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 2.8, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 3.4, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 3.6, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 3.8, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 4.4, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 4.6, "x": 0, "y": 0 }
  1275. ],
  1276. "scale": [
  1277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1281. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1285. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 2.8, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 3.4, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 3.6, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 3.8, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 4.4, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 4.6, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone28": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. { "time": 0.1667, "angle": 0 },
  1307. { "time": 0.3333, "angle": -8.61, "curve": "stepped" },
  1308. { "time": 0.5, "angle": -8.61, "curve": "stepped" },
  1309. { "time": 0.7333, "angle": -8.61, "curve": "stepped" },
  1310. { "time": 0.9333, "angle": -8.61, "curve": "stepped" },
  1311. { "time": 1.1333, "angle": -8.61, "curve": "stepped" },
  1312. { "time": 1.3333, "angle": -8.61, "curve": "stepped" },
  1313. { "time": 1.5333, "angle": -8.61, "curve": "stepped" },
  1314. { "time": 1.7333, "angle": -8.61, "curve": "stepped" },
  1315. { "time": 1.9333, "angle": -8.61, "curve": "stepped" },
  1316. { "time": 2.1333, "angle": -8.61, "curve": "stepped" },
  1317. { "time": 2.3333, "angle": -8.61, "curve": "stepped" },
  1318. { "time": 2.5333, "angle": -8.61, "curve": "stepped" },
  1319. { "time": 2.8, "angle": -8.61, "curve": "stepped" },
  1320. { "time": 3, "angle": -8.61, "curve": "stepped" },
  1321. { "time": 3.2, "angle": -8.61, "curve": "stepped" },
  1322. { "time": 3.4, "angle": -8.61, "curve": "stepped" },
  1323. { "time": 3.6, "angle": -8.61, "curve": "stepped" },
  1324. { "time": 3.8, "angle": -8.61, "curve": "stepped" },
  1325. { "time": 4, "angle": -8.61, "curve": "stepped" },
  1326. { "time": 4.2, "angle": -8.61, "curve": "stepped" },
  1327. { "time": 4.4, "angle": -8.61, "curve": "stepped" },
  1328. { "time": 4.6, "angle": -8.61 }
  1329. ]
  1330. },
  1331. "bone29": {
  1332. "rotate": [
  1333. { "time": 0, "angle": 0 },
  1334. { "time": 0.1667, "angle": -18.57 },
  1335. { "time": 0.3333, "angle": 0 },
  1336. { "time": 0.5, "angle": -14.71 },
  1337. { "time": 0.7333, "angle": 0 },
  1338. { "time": 0.9333, "angle": -16.96 },
  1339. { "time": 1.1333, "angle": 0 },
  1340. { "time": 1.3333, "angle": -23.34 },
  1341. { "time": 1.5333, "angle": 0 },
  1342. { "time": 1.7333, "angle": -15.67 },
  1343. { "time": 1.9333, "angle": 0 },
  1344. { "time": 2.1333, "angle": -11.17 },
  1345. { "time": 2.3333, "angle": 0 },
  1346. { "time": 2.5333, "angle": -26.08 },
  1347. { "time": 2.8, "angle": 0 },
  1348. { "time": 3, "angle": -9.33 },
  1349. { "time": 3.2, "angle": 0 },
  1350. { "time": 3.4, "angle": -16.21 },
  1351. { "time": 3.6, "angle": 0 },
  1352. { "time": 3.8, "angle": -15.58 },
  1353. { "time": 4, "angle": 0 },
  1354. { "time": 4.2, "angle": -11.28 },
  1355. { "time": 4.4, "angle": -14.47 },
  1356. { "time": 4.6, "angle": 0 }
  1357. ]
  1358. },
  1359. "bone30": {
  1360. "rotate": [
  1361. { "time": 0, "angle": 0 },
  1362. { "time": 0.1667, "angle": -18.57 },
  1363. { "time": 0.3333, "angle": 0 },
  1364. { "time": 0.5, "angle": -14.71 },
  1365. { "time": 0.7333, "angle": 0 },
  1366. { "time": 0.9333, "angle": -16.96 },
  1367. { "time": 1.1333, "angle": 0 },
  1368. { "time": 1.3333, "angle": -23.34 },
  1369. { "time": 1.5333, "angle": 0 },
  1370. { "time": 1.7333, "angle": -15.67 },
  1371. { "time": 1.9333, "angle": 0 },
  1372. { "time": 2.1333, "angle": -11.17 },
  1373. { "time": 2.3333, "angle": 0 },
  1374. { "time": 2.5333, "angle": -26.08 },
  1375. { "time": 2.8, "angle": 0 },
  1376. { "time": 3, "angle": -9.33 },
  1377. { "time": 3.2, "angle": 0 },
  1378. { "time": 3.4, "angle": -16.21 },
  1379. { "time": 3.6, "angle": 0 },
  1380. { "time": 3.8, "angle": -15.58 },
  1381. { "time": 4, "angle": 0 },
  1382. { "time": 4.2, "angle": -11.28 },
  1383. { "time": 4.4, "angle": -14.47 },
  1384. { "time": 4.6, "angle": 0 }
  1385. ]
  1386. },
  1387. "bone31": {
  1388. "rotate": [
  1389. { "time": 0, "angle": 0 },
  1390. { "time": 0.1667, "angle": -18.57 },
  1391. { "time": 0.3333, "angle": 0 },
  1392. { "time": 0.5, "angle": -14.71 },
  1393. { "time": 0.7333, "angle": 0 },
  1394. { "time": 0.9333, "angle": -16.96 },
  1395. { "time": 1.1333, "angle": 0 },
  1396. { "time": 1.3333, "angle": -23.34 },
  1397. { "time": 1.5333, "angle": 0 },
  1398. { "time": 1.7333, "angle": -15.67 },
  1399. { "time": 1.9333, "angle": 0 },
  1400. { "time": 2.1333, "angle": -11.17 },
  1401. { "time": 2.3333, "angle": 0 },
  1402. { "time": 2.5333, "angle": -26.08 },
  1403. { "time": 2.8, "angle": 0 },
  1404. { "time": 3, "angle": -9.33 },
  1405. { "time": 3.2, "angle": 0 },
  1406. { "time": 3.4, "angle": -16.21 },
  1407. { "time": 3.6, "angle": 0 },
  1408. { "time": 3.8, "angle": -15.58 },
  1409. { "time": 4, "angle": 0 },
  1410. { "time": 4.2, "angle": -11.28 },
  1411. { "time": 4.4, "angle": -14.47 },
  1412. { "time": 4.6, "angle": 0 }
  1413. ]
  1414. },
  1415. "bone32": {
  1416. "rotate": [
  1417. { "time": 0, "angle": 0 },
  1418. { "time": 0.1667, "angle": -18.57 },
  1419. { "time": 0.3333, "angle": 0 },
  1420. { "time": 0.5, "angle": -14.71 },
  1421. { "time": 0.7333, "angle": 0 },
  1422. { "time": 0.9333, "angle": -16.96 },
  1423. { "time": 1.1333, "angle": 0 },
  1424. { "time": 1.3333, "angle": -23.34 },
  1425. { "time": 1.5333, "angle": 0 },
  1426. { "time": 1.7333, "angle": -15.67 },
  1427. { "time": 1.9333, "angle": 0 },
  1428. { "time": 2.1333, "angle": -11.17 },
  1429. { "time": 2.3333, "angle": 0 },
  1430. { "time": 2.5333, "angle": -26.08 },
  1431. { "time": 2.8, "angle": 0 },
  1432. { "time": 3, "angle": -9.33 },
  1433. { "time": 3.2, "angle": 0 },
  1434. { "time": 3.4, "angle": -16.21 },
  1435. { "time": 3.6, "angle": 0 },
  1436. { "time": 3.8, "angle": -15.58 },
  1437. { "time": 4, "angle": 0 },
  1438. { "time": 4.2, "angle": -11.28 },
  1439. { "time": 4.4, "angle": -14.47 },
  1440. { "time": 4.6, "angle": 0 }
  1441. ]
  1442. },
  1443. "bone33": {
  1444. "rotate": [
  1445. { "time": 0, "angle": 0 },
  1446. { "time": 0.1667, "angle": -19.01 },
  1447. { "time": 0.3333, "angle": 320.64 },
  1448. { "time": 0.5, "angle": 307.48 },
  1449. { "time": 0.6667, "angle": 315.21 },
  1450. { "time": 0.8333, "angle": 318.1 },
  1451. { "time": 0.9333, "angle": 315.73 },
  1452. { "time": 1.0667, "angle": 307.48 },
  1453. { "time": 1.2333, "angle": 318.1 },
  1454. { "time": 1.3333, "angle": 315.73 },
  1455. { "time": 1.5, "angle": 307.48 },
  1456. { "time": 1.6667, "angle": 318.1 },
  1457. { "time": 1.7667, "angle": 315.73 },
  1458. { "time": 1.9333, "angle": 307.48 },
  1459. { "time": 2.1, "angle": 318.1 },
  1460. { "time": 2.2, "angle": 315.73 },
  1461. { "time": 2.3667, "angle": 307.48 },
  1462. { "time": 2.5333, "angle": 318.1 },
  1463. { "time": 2.6333, "angle": 315.73 },
  1464. { "time": 2.7667, "angle": 307.48 },
  1465. { "time": 2.9333, "angle": 318.1 },
  1466. { "time": 3.0333, "angle": 315.73 },
  1467. { "time": 3.2, "angle": 307.48 },
  1468. { "time": 3.3667, "angle": 318.1 },
  1469. { "time": 3.4667, "angle": 315.73 },
  1470. { "time": 3.6, "angle": 307.48 },
  1471. { "time": 3.7667, "angle": 318.1 },
  1472. { "time": 3.8667, "angle": 315.73 },
  1473. { "time": 4.0333, "angle": 307.48 },
  1474. { "time": 4.2, "angle": 318.1 },
  1475. { "time": 4.3, "angle": 315.73 },
  1476. { "time": 4.4333, "angle": 307.48 },
  1477. { "time": 4.6, "angle": 318.1 }
  1478. ]
  1479. },
  1480. "bone34": {
  1481. "rotate": [
  1482. { "time": 0, "angle": 0, "curve": "stepped" },
  1483. { "time": 0.1667, "angle": 0 },
  1484. { "time": 0.3333, "angle": 4.63 },
  1485. { "time": 0.5, "angle": -3.88 },
  1486. { "time": 0.6667, "angle": 16.24 },
  1487. { "time": 0.8333, "angle": 27.14 },
  1488. { "time": 0.9333, "angle": -3.88, "curve": "stepped" },
  1489. { "time": 1.0667, "angle": -3.88 },
  1490. { "time": 1.2333, "angle": 27.14 },
  1491. { "time": 1.3333, "angle": -3.88, "curve": "stepped" },
  1492. { "time": 1.5, "angle": -3.88 },
  1493. { "time": 1.6667, "angle": 27.14 },
  1494. { "time": 1.7667, "angle": -3.88, "curve": "stepped" },
  1495. { "time": 1.9333, "angle": -3.88 },
  1496. { "time": 2.1, "angle": 27.14 },
  1497. { "time": 2.2, "angle": -3.88, "curve": "stepped" },
  1498. { "time": 2.3667, "angle": -3.88 },
  1499. { "time": 2.5333, "angle": 27.14 },
  1500. { "time": 2.6333, "angle": -3.88, "curve": "stepped" },
  1501. { "time": 2.7667, "angle": -3.88 },
  1502. { "time": 2.9333, "angle": 27.14 },
  1503. { "time": 3.0333, "angle": -3.88, "curve": "stepped" },
  1504. { "time": 3.2, "angle": -3.88 },
  1505. { "time": 3.3667, "angle": 27.14 },
  1506. { "time": 3.4667, "angle": -3.88, "curve": "stepped" },
  1507. { "time": 3.6, "angle": -3.88 },
  1508. { "time": 3.7667, "angle": 27.14 },
  1509. { "time": 3.8667, "angle": -3.88, "curve": "stepped" },
  1510. { "time": 4.0333, "angle": -3.88 },
  1511. { "time": 4.2, "angle": 27.14 },
  1512. { "time": 4.3, "angle": -3.88, "curve": "stepped" },
  1513. { "time": 4.4333, "angle": -3.88 },
  1514. { "time": 4.6, "angle": 27.14 }
  1515. ]
  1516. },
  1517. "bone35": {
  1518. "rotate": [
  1519. { "time": 0, "angle": 0, "curve": "stepped" },
  1520. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1521. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1522. { "time": 0.5, "angle": 0 },
  1523. { "time": 0.6667, "angle": -18.05 },
  1524. { "time": 0.8333, "angle": -23.44 },
  1525. { "time": 0.9333, "angle": -16.47 },
  1526. { "time": 1.0667, "angle": 0 },
  1527. { "time": 1.2333, "angle": -23.44 },
  1528. { "time": 1.3333, "angle": -16.47 },
  1529. { "time": 1.5, "angle": 0 },
  1530. { "time": 1.6667, "angle": -23.44 },
  1531. { "time": 1.7667, "angle": -16.47 },
  1532. { "time": 1.9333, "angle": 0 },
  1533. { "time": 2.1, "angle": -23.44 },
  1534. { "time": 2.2, "angle": -16.47 },
  1535. { "time": 2.3667, "angle": 0 },
  1536. { "time": 2.5333, "angle": -23.44 },
  1537. { "time": 2.6333, "angle": -16.47 },
  1538. { "time": 2.7667, "angle": 0 },
  1539. { "time": 2.9333, "angle": -23.44 },
  1540. { "time": 3.0333, "angle": -16.47 },
  1541. { "time": 3.2, "angle": 0 },
  1542. { "time": 3.3667, "angle": -23.44 },
  1543. { "time": 3.4667, "angle": -16.47 },
  1544. { "time": 3.6, "angle": 0 },
  1545. { "time": 3.7667, "angle": -23.44 },
  1546. { "time": 3.8667, "angle": -16.47 },
  1547. { "time": 4.0333, "angle": 0 },
  1548. { "time": 4.2, "angle": -23.44 },
  1549. { "time": 4.3, "angle": -16.47 },
  1550. { "time": 4.4333, "angle": 0 },
  1551. { "time": 4.6, "angle": -23.44 }
  1552. ]
  1553. },
  1554. "bone44": {
  1555. "rotate": [
  1556. { "time": 0, "angle": 0, "curve": "stepped" },
  1557. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1558. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1559. { "time": 0.5, "angle": 0 },
  1560. { "time": 0.6333, "angle": 15.19 },
  1561. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1562. { "time": 0.7667, "angle": 0 },
  1563. { "time": 0.9, "angle": 15.19 },
  1564. { "time": 0.9333, "angle": 12.15 },
  1565. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1566. { "time": 1.1333, "angle": 0 },
  1567. { "time": 1.2, "angle": 15.19 },
  1568. { "time": 1.3333, "angle": 3.8 },
  1569. { "time": 1.3667, "angle": 0 },
  1570. { "time": 1.5, "angle": 15.19 },
  1571. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1572. { "time": 1.6667, "angle": 0 },
  1573. { "time": 1.7333, "angle": 7.6 },
  1574. { "time": 1.8, "angle": 15.19 },
  1575. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1576. { "time": 1.9667, "angle": 0 },
  1577. { "time": 2.1, "angle": 15.19 },
  1578. { "time": 2.1333, "angle": 12.15 },
  1579. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  1580. { "time": 2.3333, "angle": 0 },
  1581. { "time": 2.4, "angle": 15.19 },
  1582. { "time": 2.5333, "angle": 3.8 },
  1583. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1584. { "time": 2.8333, "angle": 0 },
  1585. { "time": 2.9667, "angle": 15.19 },
  1586. { "time": 3, "angle": 12.15 },
  1587. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1588. { "time": 3.2, "angle": 0 },
  1589. { "time": 3.2667, "angle": 15.19 },
  1590. { "time": 3.4, "angle": 3.8 },
  1591. { "time": 3.4333, "angle": 0 },
  1592. { "time": 3.5667, "angle": 15.19 },
  1593. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1594. { "time": 3.7333, "angle": 0 },
  1595. { "time": 3.8, "angle": 7.6 },
  1596. { "time": 3.8667, "angle": 15.19 },
  1597. { "time": 4, "angle": 0, "curve": "stepped" },
  1598. { "time": 4.0333, "angle": 0 },
  1599. { "time": 4.1667, "angle": 15.19 },
  1600. { "time": 4.2, "angle": 12.15 },
  1601. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  1602. { "time": 4.4, "angle": 0 },
  1603. { "time": 4.4667, "angle": 15.19 },
  1604. { "time": 4.6, "angle": 3.8 }
  1605. ]
  1606. },
  1607. "bone48": {
  1608. "rotate": [
  1609. { "time": 0, "angle": 0, "curve": "stepped" },
  1610. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1611. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1612. { "time": 0.5, "angle": 0 },
  1613. { "time": 0.6333, "angle": -8.86 },
  1614. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1615. { "time": 0.7667, "angle": 0 },
  1616. { "time": 0.9, "angle": -8.86 },
  1617. { "time": 0.9333, "angle": -7.09 },
  1618. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1619. { "time": 1.1333, "angle": 0 },
  1620. { "time": 1.2, "angle": -8.86 },
  1621. { "time": 1.3333, "angle": -2.21 },
  1622. { "time": 1.3667, "angle": 0 },
  1623. { "time": 1.5, "angle": -8.86 },
  1624. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1625. { "time": 1.6667, "angle": 0 },
  1626. { "time": 1.7333, "angle": -4.43 },
  1627. { "time": 1.8, "angle": -8.86 },
  1628. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1629. { "time": 1.9667, "angle": 0 },
  1630. { "time": 2.1, "angle": -8.86 },
  1631. { "time": 2.1333, "angle": -7.09 },
  1632. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  1633. { "time": 2.3333, "angle": 0 },
  1634. { "time": 2.4, "angle": -8.86 },
  1635. { "time": 2.5333, "angle": -2.21 },
  1636. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1637. { "time": 2.8333, "angle": 0 },
  1638. { "time": 2.9667, "angle": -8.86 },
  1639. { "time": 3, "angle": -7.09 },
  1640. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1641. { "time": 3.2, "angle": 0 },
  1642. { "time": 3.2667, "angle": -8.86 },
  1643. { "time": 3.4, "angle": -2.21 },
  1644. { "time": 3.4333, "angle": 0 },
  1645. { "time": 3.5667, "angle": -8.86 },
  1646. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1647. { "time": 3.7333, "angle": 0 },
  1648. { "time": 3.8, "angle": -4.43 },
  1649. { "time": 3.8667, "angle": -8.86 },
  1650. { "time": 4, "angle": 0, "curve": "stepped" },
  1651. { "time": 4.0333, "angle": 0 },
  1652. { "time": 4.1667, "angle": -8.86 },
  1653. { "time": 4.2, "angle": -7.09 },
  1654. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  1655. { "time": 4.4, "angle": 0 },
  1656. { "time": 4.4667, "angle": -8.86 },
  1657. { "time": 4.6, "angle": -2.21 }
  1658. ]
  1659. },
  1660. "bone49": {
  1661. "rotate": [
  1662. { "time": 0, "angle": 0, "curve": "stepped" },
  1663. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1664. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1665. { "time": 0.5, "angle": 0 },
  1666. { "time": 0.6333, "angle": 0.94 },
  1667. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1668. { "time": 0.7667, "angle": 0 },
  1669. { "time": 0.9, "angle": 0.94 },
  1670. { "time": 0.9333, "angle": 0.75 },
  1671. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1672. { "time": 1.1333, "angle": 0 },
  1673. { "time": 1.2, "angle": 0.94 },
  1674. { "time": 1.3333, "angle": 0.23 },
  1675. { "time": 1.3667, "angle": 0 },
  1676. { "time": 1.5, "angle": 0.94 },
  1677. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1678. { "time": 1.6667, "angle": 0 },
  1679. { "time": 1.7333, "angle": 0.47 },
  1680. { "time": 1.8, "angle": 0.94 },
  1681. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1682. { "time": 1.9667, "angle": 0 },
  1683. { "time": 2.1, "angle": 0.94 },
  1684. { "time": 2.1333, "angle": 0.75 },
  1685. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  1686. { "time": 2.3333, "angle": 0 },
  1687. { "time": 2.4, "angle": 0.94 },
  1688. { "time": 2.5333, "angle": 0.23 },
  1689. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1690. { "time": 2.8333, "angle": 0 },
  1691. { "time": 2.9667, "angle": 0.94 },
  1692. { "time": 3, "angle": 0.75 },
  1693. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1694. { "time": 3.2, "angle": 0 },
  1695. { "time": 3.2667, "angle": 0.94 },
  1696. { "time": 3.4, "angle": 0.23 },
  1697. { "time": 3.4333, "angle": 0 },
  1698. { "time": 3.5667, "angle": 0.94 },
  1699. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1700. { "time": 3.7333, "angle": 0 },
  1701. { "time": 3.8, "angle": 0.47 },
  1702. { "time": 3.8667, "angle": 0.94 },
  1703. { "time": 4, "angle": 0, "curve": "stepped" },
  1704. { "time": 4.0333, "angle": 0 },
  1705. { "time": 4.1667, "angle": 0.94 },
  1706. { "time": 4.2, "angle": 0.75 },
  1707. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  1708. { "time": 4.4, "angle": 0 },
  1709. { "time": 4.4667, "angle": 0.94 },
  1710. { "time": 4.6, "angle": 0.23 }
  1711. ]
  1712. },
  1713. "bone50": {
  1714. "rotate": [
  1715. { "time": 0, "angle": 0, "curve": "stepped" },
  1716. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1717. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1718. { "time": 0.5, "angle": 0 },
  1719. { "time": 0.6333, "angle": -27.41 },
  1720. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  1721. { "time": 0.7667, "angle": 0 },
  1722. { "time": 0.9, "angle": -27.41 },
  1723. { "time": 0.9333, "angle": -21.93 },
  1724. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1725. { "time": 1.1333, "angle": 0 },
  1726. { "time": 1.2, "angle": -27.41 },
  1727. { "time": 1.3333, "angle": -6.85 },
  1728. { "time": 1.3667, "angle": 0 },
  1729. { "time": 1.5, "angle": -27.41 },
  1730. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1731. { "time": 1.6667, "angle": 0 },
  1732. { "time": 1.7333, "angle": -13.71 },
  1733. { "time": 1.8, "angle": -27.41 },
  1734. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1735. { "time": 1.9667, "angle": 0 },
  1736. { "time": 2.1, "angle": -27.41 },
  1737. { "time": 2.1333, "angle": -21.93 },
  1738. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  1739. { "time": 2.3333, "angle": 0 },
  1740. { "time": 2.4, "angle": -27.41 },
  1741. { "time": 2.5333, "angle": -6.85 },
  1742. { "time": 2.8, "angle": 0, "curve": "stepped" },
  1743. { "time": 2.8333, "angle": 0 },
  1744. { "time": 2.9667, "angle": -27.41 },
  1745. { "time": 3, "angle": -21.93 },
  1746. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  1747. { "time": 3.2, "angle": 0 },
  1748. { "time": 3.2667, "angle": -27.41 },
  1749. { "time": 3.4, "angle": -6.85 },
  1750. { "time": 3.4333, "angle": 0 },
  1751. { "time": 3.5667, "angle": -27.41 },
  1752. { "time": 3.6, "angle": 0, "curve": "stepped" },
  1753. { "time": 3.7333, "angle": 0 },
  1754. { "time": 3.8, "angle": -13.71 },
  1755. { "time": 3.8667, "angle": -27.41 },
  1756. { "time": 4, "angle": 0, "curve": "stepped" },
  1757. { "time": 4.0333, "angle": 0 },
  1758. { "time": 4.1667, "angle": -27.41 },
  1759. { "time": 4.2, "angle": -21.93 },
  1760. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  1761. { "time": 4.4, "angle": 0 },
  1762. { "time": 4.4667, "angle": -27.41 },
  1763. { "time": 4.6, "angle": -6.85 }
  1764. ]
  1765. },
  1766. "bone46": {
  1767. "rotate": [
  1768. { "time": 0.7, "angle": 0 },
  1769. { "time": 1.3, "angle": 32.68 },
  1770. { "time": 2.3, "angle": 8.79, "curve": "stepped" },
  1771. { "time": 2.6, "angle": 0 },
  1772. { "time": 3.2, "angle": 32.68 },
  1773. { "time": 3.9, "angle": 8.79 }
  1774. ],
  1775. "translate": [
  1776. { "time": 0.7, "x": 90.48, "y": -35.88 },
  1777. { "time": 1.3, "x": 55.8, "y": 3.57 },
  1778. { "time": 2.3, "x": 30.88, "y": 39.72, "curve": "stepped" },
  1779. { "time": 2.6, "x": 90.48, "y": -35.88 },
  1780. { "time": 3.2, "x": 49.14, "y": -11.7 },
  1781. { "time": 3.9, "x": 21.06, "y": 24.96 }
  1782. ]
  1783. },
  1784. "bone7": {
  1785. "rotate": [
  1786. { "time": 0, "angle": 0, "curve": "stepped" },
  1787. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1788. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1789. { "time": 0.3, "angle": 0 }
  1790. ],
  1791. "translate": [
  1792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 0.3, "x": 0, "y": 0 }
  1796. ],
  1797. "scale": [
  1798. { "time": 0, "x": 1, "y": 1 },
  1799. { "time": 0.1, "x": 0.572, "y": 1, "curve": "stepped" },
  1800. { "time": 0.1667, "x": 0.572, "y": 1 },
  1801. { "time": 0.3, "x": 1, "y": 1 }
  1802. ]
  1803. },
  1804. "bone6": {
  1805. "rotate": [
  1806. { "time": 0, "angle": 0, "curve": "stepped" },
  1807. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1808. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1809. { "time": 0.3, "angle": 0 }
  1810. ],
  1811. "translate": [
  1812. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 0.3, "x": 0, "y": 0 }
  1816. ],
  1817. "scale": [
  1818. { "time": 0, "x": 1, "y": 1 },
  1819. { "time": 0.1, "x": 0.513, "y": 1, "curve": "stepped" },
  1820. { "time": 0.1667, "x": 0.513, "y": 1 },
  1821. { "time": 0.3, "x": 1, "y": 1 }
  1822. ]
  1823. },
  1824. "bone8": {
  1825. "rotate": [
  1826. { "time": 0, "angle": 0, "curve": "stepped" },
  1827. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1828. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1829. { "time": 0.3, "angle": 0 }
  1830. ],
  1831. "translate": [
  1832. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1833. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1834. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1835. { "time": 0.3, "x": 0, "y": 0 }
  1836. ],
  1837. "scale": [
  1838. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1839. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1840. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1841. { "time": 0.3, "x": 1, "y": 1 }
  1842. ]
  1843. },
  1844. "bone9": {
  1845. "rotate": [
  1846. { "time": 0, "angle": 0, "curve": "stepped" },
  1847. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1848. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1849. { "time": 0.3, "angle": 0 }
  1850. ],
  1851. "translate": [
  1852. { "time": 0, "x": 0, "y": 0 },
  1853. { "time": 0.1, "x": -0.67, "y": 0, "curve": "stepped" },
  1854. { "time": 0.1667, "x": -0.67, "y": 0 },
  1855. { "time": 0.3, "x": 0, "y": 0 }
  1856. ],
  1857. "scale": [
  1858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1859. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 0.3, "x": 1, "y": 1 }
  1862. ]
  1863. }
  1864. },
  1865. "deform": {
  1866. "default": {
  1867. "teshuyoushou1": {
  1868. "teshuyoushou1": [
  1869. { "time": 0.3333 },
  1870. {
  1871. "time": 0.5,
  1872. "offset": 48,
  1873. "vertices": [ 1.4693, -1.28728 ]
  1874. },
  1875. { "time": 0.6667 },
  1876. {
  1877. "time": 0.8333,
  1878. "offset": 48,
  1879. "vertices": [ 1.4693, -1.28728 ]
  1880. },
  1881. { "time": 1.0667 },
  1882. {
  1883. "time": 1.2333,
  1884. "offset": 48,
  1885. "vertices": [ 1.4693, -1.28728 ]
  1886. },
  1887. { "time": 1.3333, "curve": "stepped" },
  1888. { "time": 1.5 },
  1889. {
  1890. "time": 1.6667,
  1891. "offset": 48,
  1892. "vertices": [ 1.4693, -1.28728 ]
  1893. },
  1894. { "time": 1.7667, "curve": "stepped" },
  1895. { "time": 1.9333 },
  1896. {
  1897. "time": 2.1,
  1898. "offset": 48,
  1899. "vertices": [ 1.4693, -1.28728 ]
  1900. },
  1901. { "time": 2.2, "curve": "stepped" },
  1902. { "time": 2.3667 },
  1903. {
  1904. "time": 2.5333,
  1905. "offset": 48,
  1906. "vertices": [ 1.4693, -1.28728 ]
  1907. },
  1908. { "time": 2.6333, "curve": "stepped" },
  1909. { "time": 2.7667 },
  1910. {
  1911. "time": 2.9333,
  1912. "offset": 48,
  1913. "vertices": [ 1.4693, -1.28728 ]
  1914. },
  1915. { "time": 3.0333, "curve": "stepped" },
  1916. { "time": 3.2 },
  1917. {
  1918. "time": 3.3667,
  1919. "offset": 48,
  1920. "vertices": [ 1.4693, -1.28728 ]
  1921. },
  1922. { "time": 3.4667, "curve": "stepped" },
  1923. { "time": 3.6 },
  1924. {
  1925. "time": 3.7667,
  1926. "offset": 48,
  1927. "vertices": [ 1.4693, -1.28728 ]
  1928. },
  1929. { "time": 3.8667, "curve": "stepped" },
  1930. { "time": 4.0333 },
  1931. {
  1932. "time": 4.2,
  1933. "offset": 48,
  1934. "vertices": [ 1.4693, -1.28728 ]
  1935. },
  1936. { "time": 4.3, "curve": "stepped" },
  1937. { "time": 4.4333 },
  1938. {
  1939. "time": 4.6,
  1940. "offset": 48,
  1941. "vertices": [ 1.4693, -1.28728 ]
  1942. }
  1943. ]
  1944. },
  1945. "teshuzuoshou3": {
  1946. "teshuzuoshou3": [
  1947. { "time": 0.3333 },
  1948. {
  1949. "time": 0.5,
  1950. "offset": 2,
  1951. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  1952. },
  1953. {
  1954. "time": 0.6333,
  1955. "offset": 2,
  1956. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  1957. },
  1958. { "time": 0.7333 },
  1959. {
  1960. "time": 0.7667,
  1961. "offset": 2,
  1962. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  1963. },
  1964. {
  1965. "time": 0.9,
  1966. "offset": 2,
  1967. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ],
  1968. "curve": "stepped"
  1969. },
  1970. {
  1971. "time": 1.0667,
  1972. "offset": 2,
  1973. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  1974. },
  1975. { "time": 1.1333 },
  1976. {
  1977. "time": 1.2,
  1978. "offset": 2,
  1979. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ],
  1980. "curve": "stepped"
  1981. },
  1982. {
  1983. "time": 1.3667,
  1984. "offset": 2,
  1985. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  1986. },
  1987. {
  1988. "time": 1.5,
  1989. "offset": 2,
  1990. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  1991. },
  1992. { "time": 1.5333 },
  1993. {
  1994. "time": 1.6667,
  1995. "offset": 2,
  1996. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  1997. },
  1998. {
  1999. "time": 1.8,
  2000. "offset": 2,
  2001. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2002. },
  2003. { "time": 1.9333 },
  2004. {
  2005. "time": 1.9667,
  2006. "offset": 2,
  2007. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2008. },
  2009. {
  2010. "time": 2.1,
  2011. "offset": 2,
  2012. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ],
  2013. "curve": "stepped"
  2014. },
  2015. {
  2016. "time": 2.2667,
  2017. "offset": 2,
  2018. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  2019. },
  2020. { "time": 2.3333 },
  2021. {
  2022. "time": 2.4,
  2023. "offset": 2,
  2024. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2025. },
  2026. { "time": 2.8 },
  2027. {
  2028. "time": 2.8333,
  2029. "offset": 2,
  2030. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2031. },
  2032. {
  2033. "time": 2.9667,
  2034. "offset": 2,
  2035. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ],
  2036. "curve": "stepped"
  2037. },
  2038. {
  2039. "time": 3.1333,
  2040. "offset": 2,
  2041. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  2042. },
  2043. { "time": 3.2 },
  2044. {
  2045. "time": 3.2667,
  2046. "offset": 2,
  2047. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ],
  2048. "curve": "stepped"
  2049. },
  2050. {
  2051. "time": 3.4333,
  2052. "offset": 2,
  2053. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2054. },
  2055. {
  2056. "time": 3.5667,
  2057. "offset": 2,
  2058. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  2059. },
  2060. { "time": 3.6 },
  2061. {
  2062. "time": 3.7333,
  2063. "offset": 2,
  2064. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  2065. },
  2066. {
  2067. "time": 3.8667,
  2068. "offset": 2,
  2069. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2070. },
  2071. { "time": 4 },
  2072. {
  2073. "time": 4.0333,
  2074. "offset": 2,
  2075. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2076. },
  2077. {
  2078. "time": 4.1667,
  2079. "offset": 2,
  2080. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ],
  2081. "curve": "stepped"
  2082. },
  2083. {
  2084. "time": 4.3333,
  2085. "offset": 2,
  2086. "vertices": [ -2.18557, 1.95588, -5.19093, 3.60825, -5.60368, 0.83383 ]
  2087. },
  2088. { "time": 4.4 },
  2089. {
  2090. "time": 4.4667,
  2091. "offset": 2,
  2092. "vertices": [ -1.8677, 3.89148, -5.19093, 3.60825, -3.13467, 4.66595 ]
  2093. }
  2094. ]
  2095. },
  2096. "zuotui": {
  2097. "zuotui": [
  2098. { "time": 0.2667 },
  2099. {
  2100. "time": 0.3667,
  2101. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2102. },
  2103. { "time": 0.5333 },
  2104. {
  2105. "time": 0.6333,
  2106. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2107. },
  2108. { "time": 0.8 },
  2109. {
  2110. "time": 0.8667,
  2111. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2112. },
  2113. { "time": 0.9333, "curve": "stepped" },
  2114. { "time": 1.0667 },
  2115. {
  2116. "time": 1.1667,
  2117. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2118. },
  2119. { "time": 1.3333, "curve": "stepped" },
  2120. { "time": 1.4 },
  2121. {
  2122. "time": 1.5,
  2123. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2124. },
  2125. { "time": 1.7333 },
  2126. {
  2127. "time": 1.7667,
  2128. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2129. },
  2130. { "time": 1.9333, "curve": "stepped" },
  2131. { "time": 2 },
  2132. {
  2133. "time": 2.1,
  2134. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2135. },
  2136. { "time": 2.2667 },
  2137. {
  2138. "time": 2.3667,
  2139. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2140. },
  2141. { "time": 2.5333, "curve": "stepped" },
  2142. { "time": 2.8667 },
  2143. {
  2144. "time": 2.9333,
  2145. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2146. },
  2147. { "time": 3, "curve": "stepped" },
  2148. { "time": 3.1333 },
  2149. {
  2150. "time": 3.2333,
  2151. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2152. },
  2153. { "time": 3.4, "curve": "stepped" },
  2154. { "time": 3.4667 },
  2155. {
  2156. "time": 3.5667,
  2157. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2158. },
  2159. { "time": 3.8 },
  2160. {
  2161. "time": 3.8333,
  2162. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2163. },
  2164. { "time": 4, "curve": "stepped" },
  2165. { "time": 4.0667 },
  2166. {
  2167. "time": 4.1667,
  2168. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2169. },
  2170. { "time": 4.3333 },
  2171. {
  2172. "time": 4.4333,
  2173. "vertices": [ -1.46167, 0.16352, -0.46303, 1.39598, -0.72028, 0.58931, 0.23388, 0.90078, -0.34433, 1.05599, 0.81504, 0.7546 ]
  2174. },
  2175. { "time": 4.6 }
  2176. ]
  2177. }
  2178. }
  2179. }
  2180. },
  2181. "walk1": {
  2182. "slots": {
  2183. "biyan": {
  2184. "attachment": [
  2185. { "time": 1.3333, "name": "biyan" },
  2186. { "time": 1.4667, "name": null }
  2187. ]
  2188. },
  2189. "jita2": {
  2190. "attachment": [
  2191. { "time": 0, "name": null }
  2192. ]
  2193. },
  2194. "shouzhi1": {
  2195. "attachment": [
  2196. { "time": 0, "name": null },
  2197. { "time": 1, "name": null },
  2198. { "time": 2, "name": null }
  2199. ]
  2200. },
  2201. "shouzhi2": {
  2202. "attachment": [
  2203. { "time": 0, "name": null },
  2204. { "time": 1, "name": null },
  2205. { "time": 2, "name": null }
  2206. ]
  2207. },
  2208. "shouzhi3": {
  2209. "attachment": [
  2210. { "time": 0, "name": null },
  2211. { "time": 1, "name": null },
  2212. { "time": 2, "name": null }
  2213. ]
  2214. },
  2215. "shouzhi4": {
  2216. "attachment": [
  2217. { "time": 0, "name": null },
  2218. { "time": 1, "name": null },
  2219. { "time": 2, "name": null }
  2220. ]
  2221. },
  2222. "shouzhi5": {
  2223. "attachment": [
  2224. { "time": 0, "name": null }
  2225. ]
  2226. },
  2227. "shouzhi6": {
  2228. "attachment": [
  2229. { "time": 0, "name": null }
  2230. ]
  2231. },
  2232. "shouzhi7": {
  2233. "attachment": [
  2234. { "time": 0, "name": null }
  2235. ]
  2236. },
  2237. "shouzhi8": {
  2238. "attachment": [
  2239. { "time": 0, "name": null }
  2240. ]
  2241. },
  2242. "teshudongzuomeimao": {
  2243. "attachment": [
  2244. { "time": 0, "name": null }
  2245. ]
  2246. },
  2247. "teshuozuoshou2": {
  2248. "attachment": [
  2249. { "time": 0, "name": null }
  2250. ]
  2251. },
  2252. "teshuyoushou1": {
  2253. "attachment": [
  2254. { "time": 0, "name": null }
  2255. ]
  2256. },
  2257. "teshuyoushou2": {
  2258. "attachment": [
  2259. { "time": 0, "name": null }
  2260. ]
  2261. },
  2262. "teshuzuoshou1": {
  2263. "attachment": [
  2264. { "time": 0, "name": "teshuzuoshou1" },
  2265. { "time": 1, "name": "teshuzuoshou1" },
  2266. { "time": 2, "name": "teshuzuoshou1" }
  2267. ]
  2268. },
  2269. "teshuzuoshou2": {
  2270. "attachment": [
  2271. { "time": 0, "name": null }
  2272. ]
  2273. },
  2274. "teshuzuoshou3": {
  2275. "attachment": [
  2276. { "time": 0, "name": null }
  2277. ]
  2278. },
  2279. "yin1": {
  2280. "attachment": [
  2281. { "time": 0, "name": null }
  2282. ]
  2283. },
  2284. "yin2": {
  2285. "attachment": [
  2286. { "time": 0, "name": null }
  2287. ]
  2288. },
  2289. "yin3": {
  2290. "attachment": [
  2291. { "time": 0, "name": null }
  2292. ]
  2293. },
  2294. "youyan": {
  2295. "attachment": [
  2296. { "time": 1.3333, "name": null },
  2297. { "time": 1.4667, "name": "youyan" }
  2298. ]
  2299. },
  2300. "zhangzui": {
  2301. "attachment": [
  2302. { "time": 0, "name": null }
  2303. ]
  2304. },
  2305. "zuoyan": {
  2306. "attachment": [
  2307. { "time": 1.3333, "name": null },
  2308. { "time": 1.4667, "name": "zuoyan" }
  2309. ]
  2310. }
  2311. },
  2312. "bones": {
  2313. "jita": {
  2314. "rotate": [
  2315. {
  2316. "time": 0,
  2317. "angle": 0,
  2318. "curve": [ 0.25, 0, 0.75, 1 ]
  2319. },
  2320. {
  2321. "time": 0.5,
  2322. "angle": -9.28,
  2323. "curve": [ 0.25, 0, 0.75, 1 ]
  2324. },
  2325. {
  2326. "time": 1,
  2327. "angle": 0,
  2328. "curve": [ 0.25, 0, 0.75, 1 ]
  2329. },
  2330. {
  2331. "time": 1.5,
  2332. "angle": -9.28,
  2333. "curve": [ 0.25, 0, 0.75, 1 ]
  2334. },
  2335. { "time": 2, "angle": 0 }
  2336. ],
  2337. "translate": [
  2338. { "time": 0, "x": 1.19, "y": 1.88, "curve": "stepped" },
  2339. { "time": 0.5, "x": 1.19, "y": 1.88, "curve": "stepped" },
  2340. { "time": 1, "x": 1.19, "y": 1.88, "curve": "stepped" },
  2341. { "time": 1.5, "x": 1.19, "y": 1.88, "curve": "stepped" },
  2342. { "time": 2, "x": 1.19, "y": 1.88 }
  2343. ],
  2344. "scale": [
  2345. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2346. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2347. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2348. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2349. { "time": 2, "x": 1, "y": 1 }
  2350. ]
  2351. },
  2352. "bone38": {
  2353. "rotate": [
  2354. { "time": 0, "angle": 0, "curve": "stepped" },
  2355. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2356. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2357. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2358. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2359. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2360. { "time": 1, "angle": 0, "curve": "stepped" },
  2361. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2362. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2363. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2364. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2365. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2366. { "time": 2, "angle": 0 }
  2367. ],
  2368. "translate": [
  2369. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2379. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 2, "x": 0, "y": 0 }
  2382. ],
  2383. "scale": [
  2384. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 2, "x": 1, "y": 1 }
  2397. ]
  2398. },
  2399. "bone39": {
  2400. "rotate": [
  2401. { "time": 0, "angle": 0, "curve": "stepped" },
  2402. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2403. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2404. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2405. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2406. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2407. { "time": 1, "angle": 0, "curve": "stepped" },
  2408. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2409. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2410. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2411. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2412. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2413. { "time": 2, "angle": 0 }
  2414. ],
  2415. "translate": [
  2416. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2424. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2425. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2426. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 2, "x": 0, "y": 0 }
  2429. ],
  2430. "scale": [
  2431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 2, "x": 1, "y": 1 }
  2444. ]
  2445. },
  2446. "bone40": {
  2447. "rotate": [
  2448. { "time": 0, "angle": 0, "curve": "stepped" },
  2449. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2450. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2451. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2452. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2453. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2454. { "time": 1, "angle": 0, "curve": "stepped" },
  2455. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2456. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2457. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2458. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2459. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2460. { "time": 2, "angle": 0 }
  2461. ],
  2462. "translate": [
  2463. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2465. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2467. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2468. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2469. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2470. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2471. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2472. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2473. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2474. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2475. { "time": 2, "x": 0, "y": 0 }
  2476. ],
  2477. "scale": [
  2478. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2479. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2480. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2481. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2485. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2486. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2487. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2488. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2489. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2490. { "time": 2, "x": 1, "y": 1 }
  2491. ]
  2492. },
  2493. "bone41": {
  2494. "rotate": [
  2495. { "time": 0, "angle": 0, "curve": "stepped" },
  2496. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2497. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2498. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2499. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2500. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2501. { "time": 1, "angle": 0, "curve": "stepped" },
  2502. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2503. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2504. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2505. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2506. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2507. { "time": 2, "angle": 0 }
  2508. ],
  2509. "translate": [
  2510. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2518. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2519. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 2, "x": 0, "y": 0 }
  2523. ],
  2524. "scale": [
  2525. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2530. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2531. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2532. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2534. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2535. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2536. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2537. { "time": 2, "x": 1, "y": 1 }
  2538. ]
  2539. },
  2540. "bone42": {
  2541. "rotate": [
  2542. { "time": 0, "angle": 0, "curve": "stepped" },
  2543. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2544. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2545. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2546. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2547. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2548. { "time": 1, "angle": 0, "curve": "stepped" },
  2549. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2550. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2551. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2552. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2553. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2554. { "time": 2, "angle": 0 }
  2555. ],
  2556. "translate": [
  2557. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2558. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2559. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2560. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2563. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 2, "x": 0, "y": 0 }
  2570. ],
  2571. "scale": [
  2572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2573. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2574. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2575. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2584. { "time": 2, "x": 1, "y": 1 }
  2585. ]
  2586. },
  2587. "root": {
  2588. "rotate": [
  2589. { "time": 0, "angle": 0 }
  2590. ],
  2591. "translate": [
  2592. { "time": 0, "x": 0, "y": 0 }
  2593. ],
  2594. "scale": [
  2595. { "time": 0, "x": 0.65, "y": 0.65 }
  2596. ]
  2597. },
  2598. "bone": {
  2599. "rotate": [
  2600. { "time": 0, "angle": 0, "curve": "stepped" },
  2601. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2602. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2603. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2604. { "time": 1, "angle": 0, "curve": "stepped" },
  2605. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2606. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2607. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2608. { "time": 2, "angle": 0 }
  2609. ],
  2610. "translate": [
  2611. { "time": 0, "x": 0, "y": 0 },
  2612. { "time": 0.1667, "x": 0, "y": 1 },
  2613. { "time": 0.5, "x": 0, "y": 0 },
  2614. { "time": 0.6667, "x": 0, "y": 1 },
  2615. { "time": 1, "x": 0, "y": 0 },
  2616. { "time": 1.1667, "x": 0, "y": 1 },
  2617. { "time": 1.5, "x": 0, "y": 0 },
  2618. { "time": 1.6667, "x": 0, "y": 1 },
  2619. { "time": 2, "x": 0, "y": 0 }
  2620. ],
  2621. "scale": [
  2622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2626. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2627. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2628. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2629. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2630. { "time": 2, "x": 1, "y": 1 }
  2631. ]
  2632. },
  2633. "bone2": {
  2634. "rotate": [
  2635. { "time": 0, "angle": 0, "curve": "stepped" },
  2636. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2637. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2638. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2639. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2640. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2641. { "time": 1, "angle": 0, "curve": "stepped" },
  2642. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2643. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2644. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2645. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2646. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2647. { "time": 2, "angle": 0 }
  2648. ],
  2649. "translate": [
  2650. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2651. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2657. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2660. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 2, "x": 0, "y": 0 }
  2663. ],
  2664. "scale": [
  2665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2666. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2667. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2668. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2669. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2670. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2671. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2672. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2673. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2675. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2676. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2677. { "time": 2, "x": 1, "y": 1 }
  2678. ]
  2679. },
  2680. "bone3": {
  2681. "rotate": [
  2682. { "time": 0, "angle": 0, "curve": "stepped" },
  2683. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2684. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2685. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2686. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2687. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2688. { "time": 1, "angle": 0, "curve": "stepped" },
  2689. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2690. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2691. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2692. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2693. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2694. { "time": 2, "angle": 0 }
  2695. ],
  2696. "translate": [
  2697. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2698. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2701. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2702. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2703. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2704. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2705. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2706. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2707. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2708. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2709. { "time": 2, "x": 0, "y": 0 }
  2710. ],
  2711. "scale": [
  2712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2716. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2717. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2718. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2719. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2720. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2721. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2722. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2723. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2724. { "time": 2, "x": 1, "y": 1 }
  2725. ]
  2726. },
  2727. "bone4": {
  2728. "rotate": [
  2729. { "time": 0, "angle": 0, "curve": "stepped" },
  2730. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2731. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2732. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2733. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2734. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2735. { "time": 1, "angle": 0, "curve": "stepped" },
  2736. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2737. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2738. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2739. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2740. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2741. { "time": 2, "angle": 0 }
  2742. ],
  2743. "translate": [
  2744. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2745. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2746. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2747. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2748. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2749. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2750. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2751. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2752. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 2, "x": 0, "y": 0 }
  2757. ],
  2758. "scale": [
  2759. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2761. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2762. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2763. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2764. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2766. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2767. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2768. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2769. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2771. { "time": 2, "x": 1, "y": 1 }
  2772. ]
  2773. },
  2774. "bone5": {
  2775. "rotate": [
  2776. { "time": 0, "angle": 0, "curve": "stepped" },
  2777. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2778. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2779. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2780. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2781. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2782. { "time": 1, "angle": 0, "curve": "stepped" },
  2783. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2784. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2785. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2786. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2787. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2788. { "time": 2, "angle": 0 }
  2789. ],
  2790. "translate": [
  2791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2800. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 2, "x": 0, "y": 0 }
  2804. ],
  2805. "scale": [
  2806. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2814. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2815. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2818. { "time": 2, "x": 1, "y": 1 }
  2819. ]
  2820. },
  2821. "bone6": {
  2822. "rotate": [
  2823. { "time": 0, "angle": 0, "curve": "stepped" },
  2824. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2825. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2826. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2827. { "time": 1.6333, "angle": 0 }
  2828. ],
  2829. "translate": [
  2830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 1.6333, "x": 0, "y": 0 }
  2835. ],
  2836. "scale": [
  2837. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2838. { "time": 1.2333, "x": 1, "y": 1 },
  2839. { "time": 1.3333, "x": 0.484, "y": 1, "curve": "stepped" },
  2840. { "time": 1.4667, "x": 0.484, "y": 1 },
  2841. { "time": 1.6333, "x": 1, "y": 1 }
  2842. ]
  2843. },
  2844. "bone7": {
  2845. "rotate": [
  2846. { "time": 0, "angle": 0, "curve": "stepped" },
  2847. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2848. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2849. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2850. { "time": 1.6333, "angle": 0 }
  2851. ],
  2852. "translate": [
  2853. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 1.6333, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 1.2333, "x": 1, "y": 1 },
  2862. { "time": 1.3333, "x": 0.384, "y": 1, "curve": "stepped" },
  2863. { "time": 1.4667, "x": 0.384, "y": 1 },
  2864. { "time": 1.6333, "x": 1, "y": 1 }
  2865. ]
  2866. },
  2867. "bone8": {
  2868. "rotate": [
  2869. { "time": 0, "angle": 0, "curve": "stepped" },
  2870. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2871. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2872. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2873. { "time": 1.6333, "angle": 0 }
  2874. ],
  2875. "translate": [
  2876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2877. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2878. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2879. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2880. { "time": 1.6333, "x": 0, "y": 0 }
  2881. ],
  2882. "scale": [
  2883. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2884. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2885. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2886. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2887. { "time": 1.6333, "x": 1, "y": 1 }
  2888. ]
  2889. },
  2890. "bone9": {
  2891. "rotate": [
  2892. { "time": 0, "angle": 0, "curve": "stepped" },
  2893. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2894. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2895. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2896. { "time": 1.6333, "angle": 0 }
  2897. ],
  2898. "translate": [
  2899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2900. { "time": 1.2333, "x": 0, "y": 0 },
  2901. { "time": 1.3333, "x": -1.23, "y": 0, "curve": "stepped" },
  2902. { "time": 1.4667, "x": -1.23, "y": 0 },
  2903. { "time": 1.6333, "x": 0, "y": 0 }
  2904. ],
  2905. "scale": [
  2906. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 1.6333, "x": 1, "y": 1 }
  2911. ]
  2912. },
  2913. "bone13": {
  2914. "rotate": [
  2915. { "time": 0, "angle": 0, "curve": "stepped" },
  2916. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2917. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2918. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2919. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2920. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2921. { "time": 1, "angle": 0, "curve": "stepped" },
  2922. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2923. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2924. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2925. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2926. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2927. { "time": 2, "angle": 0 }
  2928. ],
  2929. "translate": [
  2930. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2940. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2941. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2942. { "time": 2, "x": 0, "y": 0 }
  2943. ],
  2944. "scale": [
  2945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2952. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2953. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2954. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2955. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 2, "x": 1, "y": 1 }
  2958. ]
  2959. },
  2960. "bone10": {
  2961. "rotate": [
  2962. { "time": 0, "angle": 0, "curve": "stepped" },
  2963. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2964. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2965. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2966. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2967. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2968. { "time": 1, "angle": 0, "curve": "stepped" },
  2969. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2970. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2971. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2972. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2973. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2974. { "time": 2, "angle": 0 }
  2975. ],
  2976. "translate": [
  2977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2978. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2979. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2982. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2983. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2984. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2985. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2986. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2987. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2988. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2989. { "time": 2, "x": 0, "y": 0 }
  2990. ],
  2991. "scale": [
  2992. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2994. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2995. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2996. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2997. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2998. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2999. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3000. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3001. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3002. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3003. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3004. { "time": 2, "x": 1, "y": 1 }
  3005. ]
  3006. },
  3007. "bone11": {
  3008. "rotate": [
  3009. {
  3010. "time": 0,
  3011. "angle": 0,
  3012. "curve": [ 0.25, 0, 0.75, 1 ]
  3013. },
  3014. {
  3015. "time": 0.5,
  3016. "angle": 11.88,
  3017. "curve": [ 0.25, 0, 0.75, 1 ]
  3018. },
  3019. {
  3020. "time": 1,
  3021. "angle": 0,
  3022. "curve": [ 0.25, 0, 0.75, 1 ]
  3023. },
  3024. {
  3025. "time": 1.5,
  3026. "angle": 11.88,
  3027. "curve": [ 0.25, 0, 0.75, 1 ]
  3028. },
  3029. { "time": 2, "angle": 0 }
  3030. ],
  3031. "translate": [
  3032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3034. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3035. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3036. { "time": 2, "x": 0, "y": 0 }
  3037. ],
  3038. "scale": [
  3039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3040. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3041. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3042. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3043. { "time": 2, "x": 1, "y": 1 }
  3044. ]
  3045. },
  3046. "bone12": {
  3047. "rotate": [
  3048. { "time": 0, "angle": 0, "curve": "stepped" },
  3049. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3050. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3051. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3052. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3053. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3054. { "time": 1, "angle": 0, "curve": "stepped" },
  3055. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3056. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3057. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3058. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3059. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3060. { "time": 2, "angle": 0 }
  3061. ],
  3062. "translate": [
  3063. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3064. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3065. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3066. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3067. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3068. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3069. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3070. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3071. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3072. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3073. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3074. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3075. { "time": 2, "x": 0, "y": 0 }
  3076. ],
  3077. "scale": [
  3078. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3081. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3082. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3083. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3084. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3085. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3086. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3087. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3088. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3089. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3090. { "time": 2, "x": 1, "y": 1 }
  3091. ]
  3092. },
  3093. "bone14": {
  3094. "rotate": [
  3095. { "time": 0, "angle": 0, "curve": "stepped" },
  3096. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3097. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3098. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3099. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3100. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3101. { "time": 1, "angle": 0, "curve": "stepped" },
  3102. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3103. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3104. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3105. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3106. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3107. { "time": 2, "angle": 0 }
  3108. ],
  3109. "translate": [
  3110. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3112. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3117. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3118. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3119. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3120. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3121. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3122. { "time": 2, "x": 0, "y": 0 }
  3123. ],
  3124. "scale": [
  3125. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3126. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3127. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3128. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3129. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3130. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3131. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3132. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3133. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3134. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3135. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3136. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3137. { "time": 2, "x": 1, "y": 1 }
  3138. ]
  3139. },
  3140. "bone15": {
  3141. "rotate": [
  3142. {
  3143. "time": 0,
  3144. "angle": 31.71,
  3145. "curve": [ 0.25, 0, 0.75, 1 ]
  3146. },
  3147. {
  3148. "time": 0.5,
  3149. "angle": 5.92,
  3150. "curve": [ 0.25, 0, 0.75, 1 ]
  3151. },
  3152. {
  3153. "time": 1,
  3154. "angle": 31.71,
  3155. "curve": [ 0.25, 0, 0.75, 1 ]
  3156. },
  3157. {
  3158. "time": 1.5,
  3159. "angle": 5.92,
  3160. "curve": [ 0.25, 0, 0.75, 1 ]
  3161. },
  3162. { "time": 2, "angle": 31.71 }
  3163. ],
  3164. "translate": [
  3165. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3166. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3168. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3169. { "time": 2, "x": 0, "y": 0 }
  3170. ],
  3171. "scale": [
  3172. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 2, "x": 1, "y": 1 }
  3177. ]
  3178. },
  3179. "bone16": {
  3180. "rotate": [
  3181. {
  3182. "time": 0,
  3183. "angle": -23.24,
  3184. "curve": [ 0.25, 0, 0.75, 1 ]
  3185. },
  3186. {
  3187. "time": 0.5,
  3188. "angle": -8.52,
  3189. "curve": [ 0.25, 0, 0.75, 1 ]
  3190. },
  3191. {
  3192. "time": 1,
  3193. "angle": -23.24,
  3194. "curve": [ 0.25, 0, 0.75, 1 ]
  3195. },
  3196. {
  3197. "time": 1.5,
  3198. "angle": -8.52,
  3199. "curve": [ 0.25, 0, 0.75, 1 ]
  3200. },
  3201. { "time": 2, "angle": -23.24 }
  3202. ],
  3203. "translate": [
  3204. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3206. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3208. { "time": 2, "x": 0, "y": 0 }
  3209. ],
  3210. "scale": [
  3211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 2, "x": 1, "y": 1 }
  3216. ]
  3217. },
  3218. "bone17": {
  3219. "rotate": [
  3220. { "time": 0, "angle": 0, "curve": "stepped" },
  3221. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3222. { "time": 1, "angle": 0, "curve": "stepped" },
  3223. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3224. { "time": 2, "angle": 0 }
  3225. ],
  3226. "translate": [
  3227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3228. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3230. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 2, "x": 0, "y": 0 }
  3232. ],
  3233. "scale": [
  3234. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 2, "x": 1, "y": 1 }
  3239. ]
  3240. },
  3241. "bone18": {
  3242. "rotate": [
  3243. {
  3244. "time": 0,
  3245. "angle": -26.9,
  3246. "curve": [ 0.25, 0, 0.75, 1 ]
  3247. },
  3248. {
  3249. "time": 0.5,
  3250. "angle": 2.88,
  3251. "curve": [ 0.25, 0, 0.75, 1 ]
  3252. },
  3253. {
  3254. "time": 1,
  3255. "angle": -26.9,
  3256. "curve": [ 0.25, 0, 0.75, 1 ]
  3257. },
  3258. {
  3259. "time": 1.5,
  3260. "angle": 2.88,
  3261. "curve": [ 0.25, 0, 0.75, 1 ]
  3262. },
  3263. { "time": 2, "angle": -26.9 }
  3264. ],
  3265. "translate": [
  3266. { "time": 0, "x": 12.1, "y": 156.46 }
  3267. ],
  3268. "scale": [
  3269. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 2, "x": 1, "y": 1 }
  3274. ]
  3275. },
  3276. "bone19": {
  3277. "rotate": [
  3278. {
  3279. "time": 0,
  3280. "angle": 0,
  3281. "curve": [ 0.25, 0, 0.75, 1 ]
  3282. },
  3283. {
  3284. "time": 0.5,
  3285. "angle": 11.56,
  3286. "curve": [ 0.25, 0, 0.75, 1 ]
  3287. },
  3288. {
  3289. "time": 1,
  3290. "angle": 0,
  3291. "curve": [ 0.25, 0, 0.75, 1 ]
  3292. },
  3293. {
  3294. "time": 1.5,
  3295. "angle": 11.56,
  3296. "curve": [ 0.25, 0, 0.75, 1 ]
  3297. },
  3298. { "time": 2, "angle": 0 }
  3299. ],
  3300. "translate": [
  3301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 2, "x": 0, "y": 0 }
  3306. ],
  3307. "scale": [
  3308. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3309. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 2, "x": 1, "y": 1 }
  3313. ]
  3314. },
  3315. "bone20": {
  3316. "rotate": [
  3317. { "time": 0, "angle": 0, "curve": "stepped" },
  3318. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3319. { "time": 1, "angle": 0, "curve": "stepped" },
  3320. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3321. { "time": 2, "angle": 0 }
  3322. ],
  3323. "translate": [
  3324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3325. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3326. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3327. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3328. { "time": 2, "x": 0, "y": 0 }
  3329. ],
  3330. "scale": [
  3331. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3333. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3335. { "time": 2, "x": 1, "y": 1 }
  3336. ]
  3337. },
  3338. "bone21": {
  3339. "rotate": [
  3340. { "time": 0, "angle": 0, "curve": "stepped" },
  3341. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3342. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3343. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3344. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3345. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3346. { "time": 1, "angle": 0, "curve": "stepped" },
  3347. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3348. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3349. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3350. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3351. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3352. { "time": 2, "angle": 0 }
  3353. ],
  3354. "translate": [
  3355. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3359. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3360. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3361. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3362. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3363. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3364. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3365. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3366. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3367. { "time": 2, "x": 0, "y": 0 }
  3368. ],
  3369. "scale": [
  3370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3373. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3374. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3375. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3376. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3377. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3378. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3379. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3380. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3381. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3382. { "time": 2, "x": 1, "y": 1 }
  3383. ]
  3384. },
  3385. "bone22": {
  3386. "rotate": [
  3387. { "time": 0, "angle": -13.45 },
  3388. { "time": 0.1667, "angle": 4.29 },
  3389. { "time": 0.3333, "angle": 30.47 },
  3390. { "time": 0.5, "angle": 47.53 },
  3391. { "time": 0.6667, "angle": 19.96 },
  3392. { "time": 0.8333, "angle": -4.45 },
  3393. { "time": 1, "angle": -13.45 },
  3394. { "time": 1.1667, "angle": 4.29 },
  3395. { "time": 1.3333, "angle": 30.47 },
  3396. { "time": 1.5, "angle": 47.53 },
  3397. { "time": 1.6667, "angle": 19.96 },
  3398. { "time": 1.8333, "angle": -4.45 },
  3399. { "time": 2, "angle": -13.45 }
  3400. ],
  3401. "translate": [
  3402. { "time": 0, "x": 0.25, "y": 0.97, "curve": "stepped" },
  3403. { "time": 1, "x": 0.25, "y": 0.97 }
  3404. ],
  3405. "scale": [
  3406. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 1, "x": 1, "y": 1 }
  3408. ]
  3409. },
  3410. "bone23": {
  3411. "rotate": [
  3412. { "time": 0, "angle": 0 },
  3413. { "time": 0.1667, "angle": 8.12 },
  3414. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3415. { "time": 0.5, "angle": 0 },
  3416. { "time": 0.6667, "angle": 35.09 },
  3417. { "time": 0.8333, "angle": 38.48 },
  3418. { "time": 1, "angle": 0 },
  3419. { "time": 1.1667, "angle": 8.12 },
  3420. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3421. { "time": 1.5, "angle": 0 },
  3422. { "time": 1.6667, "angle": 35.09 },
  3423. { "time": 1.8333, "angle": 38.48 },
  3424. { "time": 2, "angle": 0 }
  3425. ],
  3426. "translate": [
  3427. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3438. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3439. { "time": 2, "x": 0, "y": 0 }
  3440. ],
  3441. "scale": [
  3442. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3444. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3445. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3446. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3449. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3450. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3451. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3452. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3453. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 2, "x": 1, "y": 1 }
  3455. ]
  3456. },
  3457. "bone24": {
  3458. "rotate": [
  3459. { "time": 0, "angle": -9.31 },
  3460. { "time": 0.1667, "angle": -9.74 },
  3461. { "time": 0.3333, "angle": -25.77 },
  3462. { "time": 0.5, "angle": 0 },
  3463. { "time": 0.6667, "angle": -14.57 },
  3464. { "time": 0.8333, "angle": -16.64 },
  3465. { "time": 1, "angle": -9.31 },
  3466. { "time": 1.1667, "angle": -9.74 },
  3467. { "time": 1.3333, "angle": -25.77 },
  3468. { "time": 1.5, "angle": 0 },
  3469. { "time": 1.6667, "angle": -14.57 },
  3470. { "time": 1.8333, "angle": -16.64 },
  3471. { "time": 2, "angle": -9.31 }
  3472. ],
  3473. "translate": [
  3474. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3475. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3476. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3479. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3486. { "time": 2, "x": 0, "y": 0 }
  3487. ],
  3488. "scale": [
  3489. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3490. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3491. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3492. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3493. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3494. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3495. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3496. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3497. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3498. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3499. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3500. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3501. { "time": 2, "x": 1, "y": 1 }
  3502. ]
  3503. },
  3504. "bone25": {
  3505. "rotate": [
  3506. { "time": 0, "angle": 9.17 },
  3507. { "time": 0.1667, "angle": -13.57 },
  3508. { "time": 0.3333, "angle": -27.72 },
  3509. { "time": 0.5, "angle": -35.73 },
  3510. { "time": 0.6667, "angle": -22.63 },
  3511. { "time": 0.8333, "angle": -6.73 },
  3512. { "time": 1, "angle": 9.17 },
  3513. { "time": 1.1667, "angle": -13.57 },
  3514. { "time": 1.3333, "angle": -27.72 },
  3515. { "time": 1.5, "angle": -35.73 },
  3516. { "time": 1.6667, "angle": -22.63 },
  3517. { "time": 1.8333, "angle": -6.73 },
  3518. { "time": 2, "angle": 9.17 }
  3519. ],
  3520. "translate": [
  3521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3522. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3523. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3524. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3525. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3526. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3527. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3528. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 2, "x": 0, "y": 0 }
  3534. ],
  3535. "scale": [
  3536. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3541. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3542. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3543. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3544. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3545. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3546. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3547. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3548. { "time": 2, "x": 1, "y": 1 }
  3549. ]
  3550. },
  3551. "bone26": {
  3552. "rotate": [
  3553. { "time": 0, "angle": 15.29 },
  3554. { "time": 0.1667, "angle": 52.79 },
  3555. { "time": 0.3333, "angle": 35.48 },
  3556. { "time": 0.5, "angle": 1.64 },
  3557. { "time": 0.6667, "angle": 6.19 },
  3558. { "time": 0.8333, "angle": 10.74 },
  3559. { "time": 1, "angle": 15.29 },
  3560. { "time": 1.1667, "angle": 52.79 },
  3561. { "time": 1.3333, "angle": 35.48 },
  3562. { "time": 1.5, "angle": 1.64 },
  3563. { "time": 1.6667, "angle": 6.19 },
  3564. { "time": 1.8333, "angle": 10.74 },
  3565. { "time": 2, "angle": 15.29 }
  3566. ],
  3567. "translate": [
  3568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3571. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3574. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3575. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3576. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3577. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3578. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 2, "x": 0, "y": 0 }
  3581. ],
  3582. "scale": [
  3583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3584. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3585. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3588. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3589. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3590. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3591. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3593. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 2, "x": 1, "y": 1 }
  3596. ]
  3597. },
  3598. "bone27": {
  3599. "rotate": [
  3600. { "time": 0, "angle": 0 },
  3601. { "time": 0.1667, "angle": 5.27 },
  3602. { "time": 0.3333, "angle": -0.45 },
  3603. { "time": 0.5, "angle": 0 },
  3604. { "time": 0.6667, "angle": 16.27 },
  3605. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3606. { "time": 1, "angle": 0 },
  3607. { "time": 1.1667, "angle": 5.27 },
  3608. { "time": 1.3333, "angle": -0.45 },
  3609. { "time": 1.5, "angle": 0 },
  3610. { "time": 1.6667, "angle": 16.27 },
  3611. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3612. { "time": 2, "angle": 0 }
  3613. ],
  3614. "translate": [
  3615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3616. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3623. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3624. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3625. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3626. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3627. { "time": 2, "x": 0, "y": 0 }
  3628. ],
  3629. "scale": [
  3630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3632. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3633. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3634. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3635. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3636. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3637. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3638. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3639. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3640. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3641. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3642. { "time": 2, "x": 1, "y": 1 }
  3643. ]
  3644. },
  3645. "bone28": {
  3646. "rotate": [
  3647. { "time": 0, "angle": 0, "curve": "stepped" },
  3648. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3649. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3650. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3651. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3652. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3653. { "time": 1, "angle": 0, "curve": "stepped" },
  3654. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3655. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3656. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3657. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3658. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3659. { "time": 2, "angle": 0 }
  3660. ],
  3661. "translate": [
  3662. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3663. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3664. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3668. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3669. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3670. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3671. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3672. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3673. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3674. { "time": 2, "x": 0, "y": 0 }
  3675. ],
  3676. "scale": [
  3677. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3678. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3679. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 2, "x": 1, "y": 1 }
  3690. ]
  3691. },
  3692. "bone29": {
  3693. "rotate": [
  3694. {
  3695. "time": 0,
  3696. "angle": 0,
  3697. "curve": [ 0.25, 0, 0.75, 1 ]
  3698. },
  3699. {
  3700. "time": 0.5,
  3701. "angle": -13.55,
  3702. "curve": [ 0.25, 0, 0.75, 1 ]
  3703. },
  3704. {
  3705. "time": 1,
  3706. "angle": 0,
  3707. "curve": [ 0.25, 0, 0.75, 1 ]
  3708. },
  3709. {
  3710. "time": 1.5,
  3711. "angle": -13.55,
  3712. "curve": [ 0.25, 0, 0.75, 1 ]
  3713. },
  3714. { "time": 2, "angle": 0 }
  3715. ],
  3716. "translate": [
  3717. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3719. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3720. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3721. { "time": 2, "x": 0, "y": 0 }
  3722. ],
  3723. "scale": [
  3724. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 2, "x": 1, "y": 1 }
  3729. ]
  3730. },
  3731. "bone30": {
  3732. "rotate": [
  3733. {
  3734. "time": 0,
  3735. "angle": 0,
  3736. "curve": [ 0.25, 0, 0.75, 1 ]
  3737. },
  3738. {
  3739. "time": 0.5,
  3740. "angle": -7.27,
  3741. "curve": [ 0.25, 0, 0.75, 1 ]
  3742. },
  3743. {
  3744. "time": 1,
  3745. "angle": 0,
  3746. "curve": [ 0.25, 0, 0.75, 1 ]
  3747. },
  3748. {
  3749. "time": 1.5,
  3750. "angle": -7.27,
  3751. "curve": [ 0.25, 0, 0.75, 1 ]
  3752. },
  3753. { "time": 2, "angle": 0 }
  3754. ],
  3755. "translate": [
  3756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3757. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3758. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3759. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3760. { "time": 2, "x": 0, "y": 0 }
  3761. ],
  3762. "scale": [
  3763. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 2, "x": 1, "y": 1 }
  3768. ]
  3769. },
  3770. "bone31": {
  3771. "rotate": [
  3772. {
  3773. "time": 0,
  3774. "angle": 0,
  3775. "curve": [ 0.25, 0, 0.75, 1 ]
  3776. },
  3777. {
  3778. "time": 0.5,
  3779. "angle": -7.27,
  3780. "curve": [ 0.25, 0, 0.75, 1 ]
  3781. },
  3782. {
  3783. "time": 1,
  3784. "angle": 0,
  3785. "curve": [ 0.25, 0, 0.75, 1 ]
  3786. },
  3787. {
  3788. "time": 1.5,
  3789. "angle": -7.27,
  3790. "curve": [ 0.25, 0, 0.75, 1 ]
  3791. },
  3792. { "time": 2, "angle": 0 }
  3793. ],
  3794. "translate": [
  3795. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3797. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3798. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3799. { "time": 2, "x": 0, "y": 0 }
  3800. ],
  3801. "scale": [
  3802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3803. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3806. { "time": 2, "x": 1, "y": 1 }
  3807. ]
  3808. },
  3809. "bone32": {
  3810. "rotate": [
  3811. {
  3812. "time": 0,
  3813. "angle": 0,
  3814. "curve": [ 0.25, 0, 0.75, 1 ]
  3815. },
  3816. {
  3817. "time": 0.5,
  3818. "angle": -7.27,
  3819. "curve": [ 0.25, 0, 0.75, 1 ]
  3820. },
  3821. {
  3822. "time": 1,
  3823. "angle": 0,
  3824. "curve": [ 0.25, 0, 0.75, 1 ]
  3825. },
  3826. {
  3827. "time": 1.5,
  3828. "angle": -7.27,
  3829. "curve": [ 0.25, 0, 0.75, 1 ]
  3830. },
  3831. { "time": 2, "angle": 0 }
  3832. ],
  3833. "translate": [
  3834. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3835. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3836. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3837. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 2, "x": 0, "y": 0 }
  3839. ],
  3840. "scale": [
  3841. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3842. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3843. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3844. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3845. { "time": 2, "x": 1, "y": 1 }
  3846. ]
  3847. },
  3848. "jita2": {
  3849. "rotate": [
  3850. { "time": 0, "angle": 0 }
  3851. ],
  3852. "translate": [
  3853. { "time": 0, "x": 4.36, "y": -2.43 }
  3854. ],
  3855. "scale": [
  3856. { "time": 0, "x": 1, "y": 1 }
  3857. ]
  3858. }
  3859. },
  3860. "deform": {
  3861. "default": {
  3862. "shenti": {
  3863. "shenti": [
  3864. {
  3865. "time": 0,
  3866. "offset": 83,
  3867. "vertices": [ 1.566, 0.03797, 1.56554, 0, 1.566, 0, 1.566 ]
  3868. },
  3869. {
  3870. "time": 0.5,
  3871. "offset": 83,
  3872. "vertices": [ -2.784, -0.06742, -2.78319, 0, -2.784, 0, -2.784 ]
  3873. },
  3874. {
  3875. "time": 1,
  3876. "offset": 83,
  3877. "vertices": [ 1.566, 0.03797, 1.56554, 0, 1.566, 0, 1.566 ]
  3878. },
  3879. {
  3880. "time": 1.5,
  3881. "offset": 83,
  3882. "vertices": [ -2.784, -0.06742, -2.78319, 0, -2.784, 0, -2.784 ]
  3883. },
  3884. {
  3885. "time": 2,
  3886. "offset": 83,
  3887. "vertices": [ 1.566, 0.03797, 1.56554, 0, 1.566, 0, 1.566 ]
  3888. }
  3889. ]
  3890. },
  3891. "youtui": {
  3892. "youtui": [
  3893. { "time": 0 },
  3894. {
  3895. "time": 0.5,
  3896. "offset": 68,
  3897. "vertices": [ -1.38668, -0.76997 ]
  3898. },
  3899. { "time": 1 },
  3900. {
  3901. "time": 1.5,
  3902. "offset": 68,
  3903. "vertices": [ -1.38668, -0.76997 ]
  3904. },
  3905. { "time": 2 }
  3906. ]
  3907. },
  3908. "zuotui": {
  3909. "zuotui": [
  3910. { "time": 0 },
  3911. {
  3912. "time": 0.1667,
  3913. "offset": 62,
  3914. "vertices": [ -2.12732, -0.02722, 0.01905, 0.15361 ]
  3915. },
  3916. {
  3917. "time": 0.5,
  3918. "offset": 60,
  3919. "vertices": [ -3.45738, 2.54524, -0.69132, 2.6474, 0.01905, 0.15361 ]
  3920. },
  3921. { "time": 1 },
  3922. {
  3923. "time": 1.1667,
  3924. "offset": 62,
  3925. "vertices": [ -2.12732, -0.02722, 0.01905, 0.15361 ]
  3926. },
  3927. {
  3928. "time": 1.5,
  3929. "offset": 60,
  3930. "vertices": [ -3.45738, 2.54524, -0.69132, 2.6474, 0.01905, 0.15361 ]
  3931. },
  3932. { "time": 2 }
  3933. ]
  3934. }
  3935. }
  3936. }
  3937. }
  3938. }
  3939. }