60004.json 326 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725
  1. {
  2. "skeleton": { "hash": "pFvq+uV0gWkCNVg31Ob0mVczb1A", "spine": "3.6.53", "width": 477.96, "height": 210.84, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 1.69, "y": 52.11 },
  6. { "name": "bone2", "parent": "bone", "length": 16.31, "rotation": 90, "y": -0.23 },
  7. { "name": "bone3", "parent": "bone2", "length": 43.36, "rotation": -1.85, "x": 16.31 },
  8. { "name": "bone4", "parent": "bone3", "length": 7.93, "rotation": 0.16, "x": 43.36 },
  9. { "name": "bone5", "parent": "bone4", "length": 51.26, "rotation": 1.95, "x": 6.09, "y": -0.05 },
  10. { "name": "bone6", "parent": "bone5", "x": 42.68, "y": 4.54 },
  11. { "name": "bone7", "parent": "bone5", "x": 31.99, "y": 4.25 },
  12. { "name": "bone8", "parent": "bone5", "length": 8.19, "rotation": 2.08, "x": 29.88, "y": 17.29 },
  13. { "name": "bone9", "parent": "bone5", "length": 8.69, "rotation": 0.84, "x": 28.25, "y": -9.76 },
  14. { "name": "bone10", "parent": "bone5", "x": 9.44, "y": 4.35 },
  15. { "name": "bone11", "parent": "bone3", "length": 8.35, "rotation": -179.3, "x": 40.12, "y": 12.25, "color": "19c91dff" },
  16. { "name": "bone12", "parent": "bone11", "length": 11.54, "rotation": -2.17, "x": 8.35, "color": "19c91dff" },
  17. { "name": "bone13", "parent": "bone12", "length": 10.37, "rotation": 0.55, "x": 11.54, "color": "19c91dff" },
  18. { "name": "bone14", "parent": "bone13", "length": 12.21, "rotation": -0.37, "x": 10.37, "color": "19c91dff" },
  19. { "name": "bone15", "parent": "bone14", "length": 12.36, "rotation": 1.59, "x": 12.21, "color": "19c91dff" },
  20. { "name": "bone16", "parent": "bone3", "length": 5, "rotation": -178.15, "x": 41.79, "y": -8.08, "color": "cb22edff" },
  21. { "name": "bone17", "parent": "bone16", "length": 9.42, "rotation": 7.13, "x": 6.35, "color": "cb22edff" },
  22. { "name": "bone18", "parent": "bone17", "length": 8.88, "rotation": -2.81, "x": 10.42, "y": -0.12, "color": "cb22edff" },
  23. { "name": "bone19", "parent": "bone18", "length": 10.22, "rotation": 0.37, "x": 9.71, "y": -0.06, "color": "cb22edff" },
  24. { "name": "bone20", "parent": "bone19", "length": 10.21, "rotation": -0.93, "x": 10.55, "y": -0.03, "color": "cb22edff" },
  25. { "name": "bone21", "parent": "bone20", "length": 9.26, "rotation": 3.5, "x": 10.21, "color": "cb22edff" },
  26. { "name": "bone22", "parent": "bone3", "length": 22.1, "rotation": 148.88, "x": 37.36, "y": 15.17, "color": "dcdf19ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 22.65, "rotation": -0.6, "x": 22.1, "color": "dcdf19ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 13.9, "rotation": -5.09, "x": 22.65, "color": "dcdf19ff" },
  29. { "name": "bone25", "parent": "bone3", "length": 25.55, "rotation": -141.66, "x": 38.85, "y": -15.53, "color": "15b0dfff" },
  30. { "name": "bone26", "parent": "bone25", "length": 22.38, "rotation": 1.23, "x": 25.55, "color": "15b0dfff" },
  31. { "name": "bone27", "parent": "bone26", "length": 12.83, "rotation": -2.79, "x": 22.38, "color": "15b0dfff" },
  32. { "name": "bone28", "parent": "bone", "length": 11.69, "rotation": -89.18, "x": 0.24, "y": -1.23 },
  33. { "name": "bone29", "parent": "bone", "length": 21.44, "rotation": -94.47, "x": -12.95, "y": -4.4, "color": "ea4110ff" },
  34. { "name": "bone30", "parent": "bone29", "length": 20.22, "rotation": 2.1, "x": 21.44, "color": "ea4110ff" },
  35. { "name": "bone31", "parent": "bone30", "length": 12.56, "rotation": -73.78, "x": 20.22, "color": "ea4110ff" },
  36. { "name": "bone32", "parent": "bone", "length": 20.87, "rotation": -90, "x": 16.61, "y": -4.24, "color": "1b0999ff" },
  37. { "name": "bone33", "parent": "bone32", "length": 22.07, "rotation": 2.6, "x": 20.87, "color": "1b0999ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 11.73, "rotation": -81.93, "x": 22.07, "color": "1b0999ff" },
  39. { "name": "bone35", "parent": "root", "x": 306.01, "y": 50.01 },
  40. { "name": "bone36", "parent": "bone35", "x": -80.35, "y": 13.72 },
  41. { "name": "bone37", "parent": "bone35", "x": -48.05, "y": 11.75 },
  42. { "name": "bone38", "parent": "bone35", "x": -20.86, "y": 14.9 },
  43. { "name": "bone39", "parent": "bone35", "x": 11.45, "y": 14.9 },
  44. { "name": "bone40", "parent": "bone35", "x": 41.39, "y": 16.08 },
  45. { "name": "bone41", "parent": "bone35", "x": 70.55, "y": 12.93 },
  46. { "name": "bone42", "parent": "bone35", "x": 100.1, "y": 12.93 },
  47. { "name": "bone43", "parent": "bone35", "x": -46.86, "y": -19.77 },
  48. { "name": "bone44", "parent": "bone35", "x": -14.56, "y": -20.56 },
  49. { "name": "bone45", "parent": "bone35", "x": 10.66, "y": -23.32 },
  50. { "name": "bone46", "parent": "bone35", "x": 33.12, "y": -22.13 },
  51. { "name": "bone47", "parent": "bone35", "x": 59.91, "y": -22.13 },
  52. { "name": "bone48", "parent": "bone3", "length": 23.94, "rotation": -135.18, "x": 42.56, "y": -92.89, "color": "cb0e56ff" },
  53. { "name": "bone49", "parent": "bone48", "length": 20.96, "rotation": -63.06, "x": 24.47, "y": -0.49, "color": "cb0e56ff" },
  54. { "name": "bone50", "parent": "bone49", "length": 8.58, "rotation": 2.17, "x": 20.96, "color": "cb0e56ff" },
  55. { "name": "bone51", "parent": "bone3", "length": 22.85, "rotation": 145.82, "x": 99.36, "y": -114.11, "color": "0e911aff" },
  56. { "name": "bone52", "parent": "bone51", "length": 21.63, "rotation": -103.92, "x": 22.85, "color": "0e911aff" },
  57. { "name": "bone53", "parent": "bone52", "length": 14.36, "rotation": -1.84, "x": 21.63, "color": "0e911aff" },
  58. { "name": "bone54", "parent": "bone", "length": 26.88, "rotation": -82.82, "x": 90.04, "y": -0.25, "color": "99881aff" },
  59. { "name": "bone55", "parent": "bone54", "length": 21.78, "rotation": -0.54, "x": 26.91, "y": 0.21, "color": "99881aff" },
  60. { "name": "bone56", "parent": "bone55", "length": 12.33, "rotation": 74.53, "x": 21.78, "color": "99881aff" },
  61. { "name": "bone57", "parent": "bone8", "x": 2.91, "y": 2.73 },
  62. { "name": "bone58", "parent": "bone9", "x": 4.33, "y": 1.98 }
  63. ],
  64. "slots": [
  65. { "name": "zuoshou1", "bone": "bone51", "attachment": "zuoshou1" },
  66. { "name": "zuoshou2", "bone": "bone52", "attachment": "zuoshou2" },
  67. { "name": "zuoshou", "bone": "bone22", "attachment": "zuoshou" },
  68. { "name": "zuojiao", "bone": "bone29", "attachment": "zuojiao" },
  69. { "name": "dang", "bone": "bone28", "attachment": "dang" },
  70. { "name": "youjiao", "bone": "bone32", "attachment": "youjiao" },
  71. { "name": "shangyi", "bone": "bone2", "attachment": "shangyi" },
  72. { "name": "waitaoyou", "bone": "bone16", "attachment": "waitaoyou" },
  73. { "name": "waitaozuo", "bone": "bone11", "attachment": "waitaozuo" },
  74. { "name": "lingzi", "bone": "bone3", "attachment": "lingzi" },
  75. { "name": "youshou", "bone": "bone25", "attachment": "youshou" },
  76. { "name": "toufa", "bone": "bone5", "attachment": "toufa" },
  77. { "name": "meimao", "bone": "bone6", "attachment": "meimao" },
  78. { "name": "biyan", "bone": "bone7" },
  79. { "name": "youjiao1", "bone": "bone54", "attachment": "youjiao1" },
  80. { "name": "youshou1", "bone": "bone48", "attachment": "youshou1" },
  81. { "name": "youshou2", "bone": "bone49", "attachment": "youshou2" },
  82. { "name": "zuiba1", "bone": "bone10", "attachment": "zuiba1" },
  83. { "name": "zuiba2", "bone": "bone10", "attachment": "zuiba2" },
  84. { "name": "zi_1", "bone": "bone36", "attachment": "zi_1" },
  85. { "name": "zi_10", "bone": "bone45", "attachment": "zi_10" },
  86. { "name": "zi_11", "bone": "bone46", "attachment": "zi_11" },
  87. { "name": "zi_12", "bone": "bone47", "attachment": "zi_12" },
  88. { "name": "zi_2", "bone": "bone37", "attachment": "zi_2" },
  89. { "name": "zi_3", "bone": "bone38", "attachment": "zi_3" },
  90. { "name": "zi_4", "bone": "bone39", "attachment": "zi_4" },
  91. { "name": "zi_5", "bone": "bone40", "attachment": "zi_5" },
  92. { "name": "zi_6", "bone": "bone41", "attachment": "zi_6" },
  93. { "name": "zi_7", "bone": "bone42", "attachment": "zi_7" },
  94. { "name": "zi_8", "bone": "bone43", "attachment": "zi_8" },
  95. { "name": "zi_9", "bone": "bone44", "attachment": "zi_9" },
  96. { "name": "yanbai zuo", "bone": "bone8", "attachment": "yanbai zuo" },
  97. { "name": "yanbaiyou", "bone": "bone9", "attachment": "yanbaiyou" },
  98. { "name": "yanzhu you", "bone": "bone58", "attachment": "yanzhu you" },
  99. { "name": "yanzhu zuo", "bone": "bone57", "attachment": "yanzhu zuo" },
  100. { "name": "gaoguang zuo", "bone": "bone57", "attachment": "gaoguang zuo" },
  101. { "name": "gaoguangyou", "bone": "bone58", "attachment": "gaoguangyou" }
  102. ],
  103. "skins": {
  104. "default": {
  105. "biyan": {
  106. "biyan": { "x": -0.76, "y": -0.46, "rotation": -90.26, "width": 42, "height": 8 }
  107. },
  108. "dang": {
  109. "dang": {
  110. "type": "mesh",
  111. "uvs": [ 1, 0.77273, 0.65451, 1, 0.34741, 1, 0, 0.5894, 0, 0, 0.35684, 0, 1, 0, 0.62757, 0.06507 ],
  112. "triangles": [ 7, 5, 6, 3, 4, 5, 7, 6, 0, 5, 7, 2, 5, 2, 3, 1, 2, 7, 0, 1, 7 ],
  113. "vertices": [ 11.99, 26.52, 15.84, 9.53, 15.62, -5.51, 7.99, -22.43, -2.62, -22.28, -2.37, -4.79, -1.92, 26.72, -1.01, 8.45 ],
  114. "hull": 7,
  115. "edges": [ 6, 8, 4, 6, 8, 10, 10, 12, 10, 4, 2, 4, 14, 2, 0, 12, 2, 0 ],
  116. "width": 48,
  117. "height": 18
  118. }
  119. },
  120. "gaoguang zuo": {
  121. "gaoguang zuo": { "x": -0.09, "y": 1.58, "rotation": -92.34, "width": 3, "height": 3 }
  122. },
  123. "gaoguangyou": {
  124. "gaoguangyou": { "x": 0.24, "y": 2.15, "rotation": -91.1, "width": 4, "height": 4 }
  125. },
  126. "lingzi": {
  127. "lingzi": {
  128. "type": "mesh",
  129. "uvs": [ 1, 1, 0.33072, 1, 0, 1, 0, 0, 0.32332, 0, 1, 0 ],
  130. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  131. "vertices": [ 35.39, -11.79, 34.85, 4.93, 34.59, 13.19, 49.58, 13.68, 49.84, 5.6, 50.39, -11.31 ],
  132. "hull": 6,
  133. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  134. "width": 25,
  135. "height": 15
  136. }
  137. },
  138. "meimao": {
  139. "meimao": { "x": 0.9, "y": -1.53, "rotation": -90.26, "width": 55, "height": 11 }
  140. },
  141. "shangyi": {
  142. "shangyi": {
  143. "type": "mesh",
  144. "uvs": [ 0.73241, 0.06448, 0.73241, 0.07596, 0.73241, 0.08699, 0.87324, 0.09141, 0.99661, 0.68863, 0.99999, 0.77993, 0.99999, 0.87241, 1, 1, 0.71067, 1, 0.43182, 1, 0.3519, 1, 0, 1, 0, 0.86648, 1.0E-5, 0.79296, 0.01474, 0.68837, 0.14804, 0.08552, 0.29308, 0.06933, 0.2947, 0.06171, 0.29656, 0.05294, 0.3078, 0, 0.48016, 0, 0.73241, 0, 0.45284, 0.68586, 0.48227, 0.07375, 0.44504, 0.78261, 0.44144, 0.85622, 0.4817, 0.054, 0.48202, 0.06509, 0.36003, 0.85812, 0.70359, 0.86382 ],
  145. "triangles": [ 26, 20, 21, 19, 20, 26, 18, 19, 26, 0, 26, 21, 27, 26, 0, 18, 26, 27, 17, 18, 27, 1, 23, 27, 17, 27, 23, 16, 17, 23, 0, 1, 27, 23, 1, 2, 22, 16, 23, 22, 23, 2, 15, 16, 22, 14, 15, 22, 2, 3, 4, 22, 2, 4, 24, 14, 22, 5, 22, 4, 5, 24, 22, 13, 14, 24, 24, 28, 13, 25, 28, 24, 29, 24, 5, 25, 24, 29, 12, 13, 28, 29, 5, 6, 10, 11, 12, 28, 10, 12, 9, 28, 25, 10, 28, 9, 8, 29, 6, 9, 25, 29, 8, 9, 29, 8, 6, 7 ],
  146. "vertices": [ 2, 3, 44.9, -12.37, 0.54107, 4, 1.51, -12.38, 0.45893, 2, 3, 44.1, -12.4, 0.60208, 4, 0.7, -12.4, 0.39792, 2, 3, 43.33, -12.42, 0.67294, 4, -0.07, -12.42, 0.32706, 2, 3, 43.24, -19.33, 0.85603, 4, -0.17, -19.33, 0.14397, 2, 2, 17.1, -26.76, 0.52061, 3, 1.65, -26.72, 0.47939, 2, 2, 10.71, -26.93, 0.70606, 3, -4.73, -27.09, 0.29394, 2, 2, 4.24, -26.93, 0.85211, 3, -11.2, -27.3, 0.14789, 2, 2, -4.7, -26.93, 0.93081, 3, -20.13, -27.59, 0.06919, 2, 2, -4.7, -12.75, 0.96604, 3, -20.58, -13.42, 0.03396, 1, 2, -4.7, 0.91, 1, 2, 2, -4.7, 4.83, 0.9977, 3, -21.15, 4.15, 0.0023, 2, 2, -4.7, 22.07, 0.98757, 3, -21.71, 21.38, 0.01243, 2, 2, 4.65, 22.07, 0.89725, 3, -12.36, 21.69, 0.10275, 2, 2, 9.8, 22.07, 0.76579, 3, -7.22, 21.85, 0.23421, 2, 2, 17.12, 21.35, 0.48898, 3, 0.12, 21.37, 0.51102, 2, 3, 42.51, 16.2, 0.89805, 4, -0.81, 16.2, 0.10195, 2, 3, 43.87, 9.13, 0.59605, 4, 0.54, 9.13, 0.40395, 2, 3, 44.41, 9.07, 0.5169, 4, 1.07, 9.07, 0.4831, 2, 3, 45.02, 9, 0.43296, 4, 1.69, 8.99, 0.56704, 2, 3, 48.74, 8.57, 0.17865, 4, 5.41, 8.55, 0.82135, 1, 4, 5.66, 0.11, 1, 2, 3, 49.41, -12.23, 0.36739, 4, 6.02, -12.25, 0.63261, 2, 2, 17.29, -0.12, 0.00763, 3, 0.99, -0.08, 0.99237, 2, 3, 43.86, -0.14, 0.22664, 4, 0.5, -0.15, 0.77336, 1, 2, 10.52, 0.27, 1, 1, 2, 5.37, 0.44, 1, 1, 4, 1.88, -0.08, 1, 1, 4, 1.1, -0.12, 1, 2, 2, 5.24, 4.43, 0.98105, 3, -11.21, 4.07, 0.01895, 2, 2, 4.84, -12.4, 0.93059, 3, -11.07, -12.77, 0.06941 ],
  147. "hull": 22,
  148. "edges": [ 30, 32, 4, 6, 6, 8, 44, 46, 38, 40, 40, 42, 48, 44, 26, 48, 8, 10, 48, 10, 8, 44, 26, 28, 28, 30, 44, 28, 22, 24, 24, 26, 18, 50, 50, 48, 10, 12, 12, 14, 32, 46, 46, 4, 36, 38, 40, 52, 36, 52, 0, 42, 52, 0, 32, 34, 34, 36, 46, 54, 54, 52, 34, 54, 0, 2, 2, 4, 54, 2, 24, 56, 56, 50, 18, 20, 20, 22, 56, 20, 12, 58, 58, 50, 14, 16, 16, 18, 58, 16 ],
  149. "width": 49,
  150. "height": 69
  151. }
  152. },
  153. "toufa": {
  154. "toufa": { "x": 44.04, "y": -5.5, "rotation": -90.26, "width": 76, "height": 96 }
  155. },
  156. "waitaoyou": {
  157. "waitaoyou": {
  158. "type": "mesh",
  159. "uvs": [ 0.76132, 0.16109, 0.80204, 0.26398, 0.82861, 0.33114, 0.8571, 0.40313, 0.88468, 0.47283, 0.92299, 0.56965, 0.95178, 0.64241, 0.97474, 0.70043, 0.99999, 0.79883, 1, 0.88948, 1, 1, 0.41787, 1, 0, 1, 0, 0.92864, 0, 0.83683, 0, 0.7585, 0, 0.66779, 0, 0.59461, 0, 0.50493, 0, 0.43055, 0, 0.35814, 0, 0.28109, 0, 0.186, 0, 0, 0.20454, 0, 0.69758, 0, 0.2429, 0.1798, 0.27836, 0.34602, 0.30945, 0.49174, 0.34452, 0.65616, 0.37867, 0.82778, 0.36096, 0.73817, 0.32886, 0.58273, 0.39842, 0.9088, 0.29339, 0.41646, 0.26342, 0.27601 ],
  160. "triangles": [ 22, 23, 24, 26, 25, 0, 26, 24, 25, 11, 9, 10, 12, 33, 11, 11, 33, 9, 12, 13, 33, 13, 30, 33, 13, 14, 30, 9, 33, 8, 33, 30, 8, 14, 31, 30, 30, 7, 8, 30, 31, 7, 14, 15, 31, 15, 29, 31, 15, 16, 29, 31, 6, 7, 31, 29, 6, 16, 32, 29, 16, 17, 32, 29, 5, 6, 29, 32, 5, 17, 28, 32, 17, 18, 28, 32, 4, 5, 32, 28, 4, 18, 34, 28, 28, 3, 4, 18, 19, 34, 28, 34, 3, 19, 27, 34, 19, 20, 27, 34, 2, 3, 34, 27, 2, 27, 1, 2, 20, 35, 27, 20, 21, 35, 27, 35, 1, 21, 26, 35, 21, 22, 26, 35, 0, 1, 35, 26, 0, 22, 24, 26 ],
  161. "vertices": [ 3, 17, 0.39, 14.12, 0.36729, 18, -10.72, 13.73, 0.06226, 16, 4.98, 14.06, 0.57045, 4, 17, 7.16, 14.38, 0.49032, 18, -3.97, 14.33, 0.287, 19, -13.58, 14.48, 0.0163, 16, 11.67, 15.16, 0.20638, 4, 17, 11.58, 14.55, 0.36358, 18, 0.44, 14.71, 0.48243, 19, -9.17, 14.84, 0.07579, 16, 16.04, 15.87, 0.07819, 5, 17, 16.32, 14.73, 0.18463, 18, 5.16, 15.13, 0.575, 19, -4.45, 15.22, 0.22076, 21, -24.49, 16.53, 3.7E-4, 16, 20.72, 16.64, 0.01924, 6, 17, 20.91, 14.91, 0.07126, 18, 9.74, 15.53, 0.49452, 19, 0.13, 15.59, 0.42235, 20, -10.68, 15.45, 0.00192, 21, -19.9, 16.69, 0.00762, 16, 25.25, 17.39, 0.00232, 5, 17, 27.28, 15.16, 0.01042, 18, 16.09, 16.09, 0.27317, 19, 6.49, 16.11, 0.61132, 20, -4.33, 16.07, 0.0457, 21, -13.53, 16.93, 0.05939, 5, 17, 32.07, 15.34, 7.0E-4, 18, 20.86, 16.51, 0.14186, 19, 11.26, 16.5, 0.57142, 20, 0.44, 16.53, 0.12144, 21, -8.74, 17.1, 0.16457, 4, 18, 24.67, 16.84, 0.07596, 19, 15.07, 16.81, 0.45468, 20, 4.24, 16.91, 0.16604, 21, -4.92, 17.24, 0.30332, 4, 18, 31.1, 17.04, 0.01997, 19, 21.5, 16.96, 0.23667, 20, 10.67, 17.17, 0.13481, 21, 1.51, 17.11, 0.60855, 4, 18, 36.98, 16.6, 0.00302, 19, 27.37, 16.48, 0.1004, 20, 16.55, 16.78, 0.04745, 21, 7.35, 16.36, 0.84913, 3, 19, 34.53, 15.9, 0.04222, 20, 23.72, 16.31, 5.4E-4, 21, 14.48, 15.46, 0.95724, 2, 19, 33.25, 0.23, 1.2E-4, 21, 12.5, -0.13, 0.99988, 1, 21, 11.07, -11.33, 1, 2, 20, 17.32, -10.33, 0.0361, 21, 6.47, -10.74, 0.9639, 2, 20, 11.37, -9.94, 0.33363, 21, 0.55, -9.99, 0.66637, 3, 19, 16.68, -9.73, 0.00926, 20, 6.29, -9.6, 0.7406, 21, -4.5, -9.34, 0.25014, 3, 19, 10.81, -9.25, 0.26006, 20, 0.4, -9.22, 0.71755, 21, -10.35, -8.6, 0.02239, 3, 19, 6.07, -8.86, 0.703, 20, -4.34, -8.91, 0.29696, 21, -15.07, -8, 4.0E-5, 4, 17, 20.01, -9.05, 0.00887, 18, 10.02, -8.45, 0.0962, 19, 0.26, -8.38, 0.85636, 20, -10.16, -8.52, 0.03858, 4, 17, 15.22, -8.45, 0.11788, 18, 5.2, -8.08, 0.43848, 19, -4.56, -7.99, 0.44258, 20, -14.98, -8.21, 0.00106, 3, 17, 10.55, -7.87, 0.48133, 18, 0.51, -7.73, 0.40623, 19, -9.25, -7.6, 0.11244, 4, 17, 5.58, -7.25, 0.90782, 18, -4.49, -7.35, 0.07393, 19, -14.24, -7.2, 0.01054, 16, 12.78, -6.5, 0.0077, 2, 17, -0.56, -6.48, 0.59683, 16, 6.6, -6.5, 0.40317, 1, 16, -5.49, -6.5, 1, 1, 16, -5.49, -0.98, 1, 2, 17, -10.22, 13.71, 0.03737, 16, -5.49, 12.34, 0.96263, 2, 17, -0.14, 0.08, 0.93816, 16, 6.2, 0.06, 0.06184, 2, 18, 0.29, -0.17, 0.99931, 19, -9.42, -0.05, 6.9E-4, 1, 19, 0.08, 0.01, 1, 3, 18, 20.52, 0.09, 2.2E-4, 20, 0.26, 0.12, 0.99965, 21, -9.92, 0.72, 1.3E-4, 3, 18, 31.71, 0.17, 1.0E-5, 19, 22.01, 0.09, 7.4E-4, 21, 1.26, 0.23, 0.99925, 4, 18, 25.87, 0.13, 1.2E-4, 19, 16.16, 0.09, 0.0027, 20, 5.61, 0.21, 0.99569, 21, -4.58, 0.49, 0.00149, 3, 18, 15.73, 0.03, 5.6E-4, 19, 6.02, 0.05, 0.99942, 21, -14.71, 0.91, 1.0E-5, 2, 19, 27.3, 0.19, 5.0E-5, 21, 6.55, 0.09, 0.99995, 3, 17, 15.29, -0.48, 7.3E-4, 18, 4.88, -0.11, 0.99634, 19, -4.83, -0.02, 0.00293, 2, 17, 6.13, -0.15, 0.99995, 19, -13.99, -0.08, 5.0E-5 ],
  162. "hull": 26,
  163. "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 44, 46, 52, 48, 44, 52, 0, 50, 52, 0, 40, 54, 54, 4, 36, 56, 56, 8, 32, 58, 58, 12, 16, 60, 28, 60, 28, 30, 30, 32, 58, 62, 62, 60, 30, 62, 12, 14, 14, 16, 62, 14, 32, 34, 34, 36, 56, 64, 64, 58, 34, 64, 8, 10, 10, 12, 64, 10, 24, 26, 26, 28, 22, 66, 66, 60, 26, 66, 16, 18, 18, 20, 66, 18, 36, 38, 38, 40, 54, 68, 68, 56, 38, 68, 4, 6, 6, 8, 68, 6, 40, 42, 42, 44, 52, 70, 70, 54, 42, 70, 0, 2, 2, 4, 70, 2 ],
  164. "width": 26,
  165. "height": 64
  166. }
  167. },
  168. "waitaozuo": {
  169. "waitaozuo": {
  170. "type": "mesh",
  171. "uvs": [ 0.97727, 0.21943, 0.97727, 0.30135, 0.97727, 0.38996, 0.97727, 0.49027, 0.97726, 0.61799, 0.97727, 0.71931, 0.97727, 0.82966, 0.97727, 0.92328, 0.97727, 1, 0.51803, 1, 0.02273, 1, 0.02273, 0.91492, 0.02273, 0.81795, 0.06949, 0.70997, 0.11874, 0.60384, 0.16458, 0.49042, 0.20289, 0.40196, 0.23785, 0.32126, 0.27382, 0.23819, 0.37698, 0, 0.64934, 0, 0.97727, 0, 0.54127, 0.82303, 0.52822, 0.92237, 0.55535, 0.71579, 0.5695, 0.60782, 0.59736, 0.39582, 0.58581, 0.4838, 0.62016, 0.22224, 0.60846, 0.31135 ],
  172. "triangles": [ 9, 23, 8, 23, 7, 8, 23, 9, 11, 9, 10, 11, 23, 22, 7, 22, 6, 7, 22, 23, 12, 23, 11, 12, 22, 24, 6, 12, 13, 22, 24, 5, 6, 22, 13, 24, 24, 25, 5, 25, 4, 5, 13, 14, 24, 24, 14, 25, 25, 27, 4, 14, 15, 25, 4, 27, 3, 25, 15, 27, 15, 16, 27, 27, 26, 3, 26, 2, 3, 27, 16, 26, 16, 17, 26, 26, 29, 2, 26, 17, 29, 29, 1, 2, 17, 18, 29, 29, 28, 1, 29, 18, 28, 28, 0, 1, 18, 19, 28, 28, 20, 0, 28, 19, 20, 20, 21, 0 ],
  173. "vertices": [ 3, 11, 8.39, 8.05, 0.4932, 12, -0.27, 8.04, 0.50395, 13, -11.73, 8.15, 0.00284, 3, 11, 13.63, 8.15, 0.07772, 12, 4.97, 8.34, 0.83071, 13, -6.5, 8.41, 0.09157, 4, 11, 19.3, 8.26, 1.6E-4, 12, 10.63, 8.67, 0.50214, 13, -0.83, 8.68, 0.49614, 14, -11.25, 8.61, 0.00156, 3, 12, 17.04, 9.04, 0.05801, 13, 5.58, 8.99, 0.8063, 14, -4.84, 8.96, 0.13569, 3, 13, 13.75, 9.39, 0.2087, 14, 3.32, 9.41, 0.76207, 15, -8.63, 9.65, 0.02923, 3, 13, 20.22, 9.7, 0.00851, 14, 9.79, 9.76, 0.667, 15, -2.14, 9.83, 0.32449, 2, 14, 16.85, 10.15, 0.51, 15, 4.92, 10.02, 0.49, 2, 14, 22.83, 10.48, 0.35, 15, 10.91, 10.18, 0.65, 1, 15, 15.81, 10.31, 1, 2, 14, 28.28, 0.66, 0, 15, 16.09, 0.21, 1, 2, 14, 28.88, -10.22, 0, 15, 16.38, -10.68, 1, 2, 14, 23.44, -10.52, 0.38, 15, 10.94, -10.83, 0.62, 2, 14, 17.25, -10.86, 0.54, 15, 4.73, -11, 0.46, 3, 13, 20.59, -10.28, 0.00886, 14, 10.29, -10.21, 0.63269, 15, -2.2, -10.15, 0.35845, 3, 13, 13.75, -9.52, 0.21086, 14, 3.45, -9.5, 0.76254, 15, -9.02, -9.26, 0.0266, 3, 12, 18.08, -8.8, 0.02702, 13, 6.45, -8.87, 0.76368, 14, -3.85, -8.89, 0.2093, 3, 12, 12.38, -8.29, 0.35894, 13, 0.76, -8.3, 0.62725, 14, -9.55, -8.36, 0.01381, 3, 11, 15.23, -8.09, 0.01382, 12, 7.18, -7.82, 0.84367, 13, -4.44, -7.78, 0.1425, 3, 11, 9.9, -7.4, 0.2681, 12, 1.83, -7.34, 0.72946, 13, -9.79, -7.25, 0.00244, 1, 11, -5.39, -5.44, 1, 1, 11, -5.51, 0.55, 1, 1, 11, -5.65, 7.76, 1, 2, 14, 16.95, 0.55, 6.8E-4, 15, 4.75, 0.42, 0.99932, 1, 15, 11.11, 0.3, 1, 2, 14, 10.08, 0.48, 0.9828, 15, -2.12, 0.54, 0.0172, 1, 14, 3.16, 0.41, 1, 2, 12, 11.49, 0.35, 0.53127, 13, -0.05, 0.35, 0.46873, 2, 12, 17.12, 0.42, 9.0E-5, 13, 5.58, 0.37, 0.99991, 2, 11, 8.73, 0.19, 0.23464, 12, 0.37, 0.21, 0.76536, 2, 12, 6.07, 0.28, 0.99887, 13, -5.46, 0.33, 0.00113 ],
  174. "hull": 22,
  175. "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 24, 44, 44, 12, 20, 22, 22, 24, 18, 46, 46, 44, 22, 46, 12, 14, 14, 16, 46, 14, 24, 26, 48, 44, 26, 48, 12, 10, 48, 10, 26, 28, 50, 48, 28, 50, 10, 8, 50, 8, 32, 52, 52, 4, 28, 30, 30, 32, 50, 54, 54, 52, 30, 54, 4, 6, 6, 8, 54, 6, 36, 38, 40, 56, 36, 56, 0, 42, 56, 0, 32, 34, 34, 36, 52, 58, 58, 56, 34, 58, 0, 2, 2, 4, 58, 2 ],
  176. "width": 22,
  177. "height": 64
  178. }
  179. },
  180. "yanbai zuo": {
  181. "yanbai zuo": { "x": 1.54, "y": -0.29, "rotation": -92.34, "width": 19, "height": 10 }
  182. },
  183. "yanbaiyou": {
  184. "yanbaiyou": { "x": 3.4, "y": -0.52, "rotation": -91.1, "width": 21, "height": 10 }
  185. },
  186. "yanzhu you": {
  187. "yanzhu you": { "x": 0.24, "y": -0.25, "rotation": -91.1, "width": 9, "height": 6 }
  188. },
  189. "yanzhu zuo": {
  190. "yanzhu zuo": { "x": 0.13, "y": 0.04, "rotation": -92.34, "width": 8, "height": 6 }
  191. },
  192. "youjiao": {
  193. "youjiao": {
  194. "type": "mesh",
  195. "uvs": [ 1, 0.47196, 1, 0.49963, 1, 0.51928, 1, 0.85906, 1, 0.87888, 1, 0.89548, 1, 1, 0.21315, 1, 0.20849, 0.96087, 0.19997, 0.88938, 0.38527, 0.84938, 0.3833, 0.83407, 0.38101, 0.81629, 0.3437, 0.52583, 0.34132, 0.50727, 0.33771, 0.4792, 0.27615, 0, 0.6995, 0, 1, 0, 0.75538, 0.88139, 0.75421, 0.86291, 0.75301, 0.844, 0.73118, 0.49966, 0.73241, 0.51904, 0.72947, 0.47271 ],
  196. "triangles": [ 20, 10, 11, 8, 9, 10, 8, 10, 19, 7, 8, 19, 23, 22, 1, 23, 1, 2, 13, 22, 23, 12, 13, 23, 21, 11, 12, 21, 23, 2, 21, 12, 23, 21, 2, 3, 20, 21, 3, 20, 11, 21, 20, 3, 4, 19, 20, 4, 10, 20, 19, 19, 4, 5, 19, 5, 6, 7, 19, 6, 24, 17, 18, 0, 24, 18, 15, 16, 17, 15, 17, 24, 22, 24, 0, 1, 22, 0, 14, 15, 24, 14, 24, 22, 13, 14, 22 ],
  197. "vertices": [ 2, 32, 19.12, 9.32, 0.67023, 33, -1.33, 9.39, 0.32977, 2, 32, 20.67, 9.32, 0.53136, 33, 0.22, 9.32, 0.46864, 2, 32, 21.77, 9.32, 0.42935, 33, 1.32, 9.27, 0.57065, 2, 33, 20.33, 8.41, 0.97547, 34, -8.57, -0.54, 0.02453, 2, 33, 21.44, 8.36, 0.94909, 34, -8.36, 0.55, 0.05091, 2, 33, 22.36, 8.31, 0.91897, 34, -8.19, 1.46, 0.08103, 2, 33, 28.21, 8.05, 0.7451, 34, -7.11, 7.21, 0.2549, 1, 34, 19.18, 2.26, 1, 1, 34, 18.93, 0.08, 1, 2, 33, 20.79, -18.84, 1.8E-4, 34, 18.48, -3.91, 0.99982, 2, 33, 18.84, -12.45, 0.1607, 34, 11.87, -4.95, 0.8393, 3, 32, 39.4, -11.65, 1.3E-4, 33, 17.98, -12.48, 0.25526, 34, 11.78, -5.8, 0.74461, 3, 32, 38.4, -11.72, 7.4E-4, 33, 16.98, -12.51, 0.34866, 34, 11.67, -6.79, 0.65061, 3, 32, 22.14, -12.99, 0.46888, 33, 0.67, -13.04, 0.51299, 34, 9.91, -23.01, 0.01813, 3, 32, 21.1, -13.07, 0.5351, 33, -0.37, -13.07, 0.45256, 34, 9.79, -24.05, 0.01234, 3, 32, 19.53, -13.2, 0.63271, 33, -1.95, -13.12, 0.36094, 34, 9.62, -25.62, 0.00636, 1, 32, -7.31, -15.29, 1, 1, 32, -7.31, -0.9, 1, 1, 32, -7.31, 9.32, 1, 1, 33, 21.2, 0.04, 1, 1, 33, 20.16, 0.05, 1, 1, 33, 19.1, 0.06, 1, 2, 32, 20.67, 0.18, 0.66521, 33, -0.19, 0.19, 0.33479, 1, 33, 0.89, 0.18, 1, 1, 32, 19.16, 0.12, 1 ],
  198. "hull": 19,
  199. "edges": [ 20, 18, 12, 14, 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 ],
  200. "width": 34,
  201. "height": 55
  202. }
  203. },
  204. "youjiao1": {
  205. "youjiao1": {
  206. "type": "mesh",
  207. "uvs": [ 0.73868, 0.46934, 0.74379, 0.49776, 0.74878, 0.52555, 0.80299, 0.82721, 0.81622, 0.84839, 0.84256, 0.85684, 1, 0.87115, 1, 0.94723, 1, 1, 0.19993, 1, 0.1781, 0.89772, 0.17353, 0.87628, 0.16837, 0.85988, 0.07501, 0.56298, 0.06651, 0.53594, 0.05721, 0.50636, 0, 0.32443, 0, 0, 0.27253, 0, 0.65436, 0, 0.47516, 0.86986, 0.4726, 0.84784, 0.48043, 0.88928, 0.39448, 0.51678, 0.4009, 0.54399, 0.38855, 0.49167 ],
  208. "triangles": [ 22, 4, 5, 5, 6, 7, 22, 5, 7, 22, 7, 8, 16, 17, 18, 25, 18, 19, 25, 19, 0, 16, 18, 25, 15, 16, 25, 23, 25, 0, 23, 0, 1, 14, 15, 25, 14, 25, 23, 13, 14, 23, 13, 23, 24, 24, 23, 1, 24, 1, 2, 21, 24, 2, 21, 2, 3, 12, 13, 24, 12, 24, 21, 20, 21, 3, 20, 3, 4, 11, 12, 21, 11, 21, 20, 22, 20, 4, 10, 11, 20, 10, 20, 22, 9, 10, 22, 9, 22, 8 ],
  209. "vertices": [ 2, 55, -1.66, 10.26, 0.62305, 54, 25.34, 10.49, 0.37695, 3, 55, -0.09, 10.23, 0.74185, 54, 26.91, 10.44, 0.25809, 56, 4.03, 23.8, 6.0E-5, 3, 55, 1.45, 10.21, 0.83883, 54, 28.45, 10.4, 0.16038, 56, 4.41, 22.32, 7.9E-4, 2, 55, 18.11, 9.9, 0.36175, 56, 8.57, 6.17, 0.63825, 2, 55, 19.32, 10.16, 0.20395, 56, 9.14, 5.08, 0.79605, 2, 55, 19.87, 10.89, 0.11305, 56, 9.99, 4.74, 0.88695, 2, 55, 21.2, 15.49, 0.00169, 56, 14.78, 4.69, 0.99831, 1, 56, 15.42, 0.55, 1, 1, 56, 15.86, -2.31, 1, 2, 55, 25.46, -9.17, 0.96211, 56, -7.86, -6, 0.03789, 3, 55, 19.8, -9.17, 0.99802, 54, 46.62, -9.15, 0.00172, 56, -9.36, -0.54, 2.7E-4, 2, 55, 18.61, -9.17, 0.99556, 54, 45.43, -9.13, 0.00444, 2, 55, 17.7, -9.22, 0.99199, 54, 44.52, -9.17, 0.00801, 2, 55, 1.15, -10.11, 0.20418, 54, 27.96, -9.91, 0.79582, 2, 55, -0.35, -10.19, 0.11194, 54, 26.46, -9.98, 0.88806, 2, 55, -2, -10.28, 0.04502, 54, 24.81, -10.05, 0.95498, 1, 54, 14.67, -10.51, 1, 1, 54, -3.04, -8.27, 1, 1, 54, -2.02, -0.16, 1, 1, 54, -0.58, 11.2, 1, 1, 55, 19.31, -0.14, 1, 2, 55, 18.09, -0.08, 1, 54, 45, -0.04, 0, 1, 55, 20.38, -0.11, 1, 2, 55, -0.26, -0.3, 0.01465, 54, 26.64, -0.09, 0.98535, 2, 55, 1.25, -0.28, 0.94404, 54, 28.15, -0.08, 0.05596, 1, 54, 25.25, -0.09, 1 ],
  210. "hull": 20,
  211. "edges": [ 32, 34, 16, 18, 34, 36, 36, 38, 12, 14, 14, 16, 22, 40, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 18, 20, 20, 22, 14, 44, 44, 40, 20, 44, 8, 10, 10, 12, 44, 10, 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 ],
  212. "width": 30,
  213. "height": 55
  214. }
  215. },
  216. "youshou": {
  217. "youshou": {
  218. "type": "mesh",
  219. "uvs": [ 0.57873, 0.30598, 0.59673, 0.3209, 0.61938, 0.33968, 0.88778, 0.56219, 0.90861, 0.57946, 0.94287, 0.60786, 1, 0.65522, 1, 1, 0.68118, 1, 0.55821, 0.86571, 0.52383, 0.82817, 0.50573, 0.8084, 0.27503, 0.55648, 0.25309, 0.53252, 0.23517, 0.51295, 0, 0.25614, 0, 0, 0.20964, 0, 0.73331, 0.6939, 0.7659, 0.73129, 0.71424, 0.67585, 0.44082, 0.41713, 0.41849, 0.396, 0.46298, 0.4381 ],
  220. "triangles": [ 19, 18, 4, 19, 4, 5, 9, 10, 18, 9, 18, 19, 8, 9, 19, 19, 5, 6, 19, 6, 7, 8, 19, 7, 21, 0, 1, 23, 21, 1, 23, 1, 2, 13, 22, 21, 12, 13, 21, 12, 21, 23, 20, 2, 3, 23, 2, 20, 18, 20, 3, 18, 3, 4, 11, 23, 20, 12, 23, 11, 10, 11, 20, 10, 20, 18, 22, 15, 16, 17, 22, 16, 0, 22, 17, 21, 22, 0, 14, 15, 22, 13, 14, 22 ],
  221. "vertices": [ 2, 25, 24.45, 9, 0.54317, 26, -0.91, 9.02, 0.45683, 2, 25, 25.69, 9.11, 0.42115, 26, 0.33, 9.11, 0.57885, 2, 25, 27.24, 9.26, 0.27947, 26, 1.89, 9.22, 0.72053, 2, 26, 20.35, 10.54, 0.7781, 27, -2.54, 10.43, 0.2219, 2, 26, 21.79, 10.65, 0.67768, 27, -1.11, 10.61, 0.32232, 2, 26, 24.15, 10.82, 0.49772, 27, 1.24, 10.89, 0.50228, 2, 26, 28.08, 11.1, 0.27501, 27, 5.15, 11.36, 0.72499, 1, 27, 22.67, -0.88, 1, 2, 26, 36.01, -13.58, 0.00258, 27, 14.28, -12.9, 0.99742, 2, 26, 25.96, -12.96, 0.21573, 27, 4.21, -12.77, 0.78427, 2, 26, 23.16, -12.79, 0.383, 27, 1.4, -12.74, 0.617, 2, 26, 21.68, -12.7, 0.48374, 27, -0.08, -12.72, 0.51626, 2, 25, 28.63, -11.47, 0.21536, 26, 2.83, -11.53, 0.78464, 2, 25, 26.83, -11.4, 0.32892, 26, 1.04, -11.42, 0.67108, 2, 25, 25.37, -11.34, 0.4349, 26, -0.43, -11.33, 0.5651, 1, 25, 6.13, -10.57, 1, 1, 25, -6.63, -1.12, 1, 1, 25, -0.9, 6.63, 1, 2, 26, 22.47, -0.07, 0.43674, 27, 0.09, -0.07, 0.56326, 1, 27, 2.85, -0.17, 1, 1, 26, 21.04, -0.08, 1, 2, 25, 26.22, -0.2, 0.07119, 26, 0.66, -0.21, 0.92881, 1, 25, 24.55, -0.25, 1, 2, 25, 27.87, -0.15, 0.00176, 26, 2.31, -0.2, 0.99824 ],
  222. "hull": 18,
  223. "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 20, 36, 36, 8, 8, 10, 10, 12, 14, 38, 38, 36, 10, 38, 16, 18, 18, 20, 38, 18, 20, 22, 40, 36, 22, 40, 8, 6, 40, 6, 26, 42, 42, 2, 26, 28, 28, 30, 32, 44, 44, 42, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 40, 46, 46, 42, 24, 46, 2, 4, 4, 6, 46, 4 ],
  224. "width": 46,
  225. "height": 61
  226. }
  227. },
  228. "youshou1": {
  229. "youshou1": {
  230. "type": "mesh",
  231. "uvs": [ 1, 0.5322, 1, 1, 0.55099, 1, 0, 0.5144, 0, 0, 0.36179, 0 ],
  232. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  233. "vertices": [ 23.23, 7.38, 33.15, -1.87, 25.5, -10.08, 5.81, -10.56, -5.11, -0.4, 1.06, 6.22 ],
  234. "hull": 6,
  235. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  236. "width": 25,
  237. "height": 29
  238. }
  239. },
  240. "youshou2": {
  241. "youshou2": {
  242. "type": "mesh",
  243. "uvs": [ 0.02415, 0.74075, 0.36728, 0.33215, 0.68812, 0.35662, 0.94061, 0.37588, 0.84225, 0.85174, 0.83712, 0.87658, 0.83249, 0.89896, 0.81161, 1, 0.20603, 1, 0, 1, 0.00173, 0.78965, 0.00192, 0.76723, 0.33861, 0.8117, 0.32188, 0.83546, 0.35542, 0.78981 ],
  244. "triangles": [ 8, 13, 7, 7, 13, 6, 13, 8, 10, 8, 9, 10, 10, 11, 13, 13, 12, 6, 6, 12, 5, 12, 14, 5, 5, 14, 4, 14, 2, 4, 4, 2, 3, 13, 11, 12, 11, 0, 12, 12, 0, 14, 14, 1, 2, 14, 0, 1 ],
  245. "vertices": [ 2, 49, 18.94, -8.38, 0.79552, 50, -2.33, -8.3, 0.20448, 1, 49, -6.53, -8.93, 1, 1, 49, -7.82, -1.2, 1, 1, 49, -8.83, 4.88, 1, 2, 49, 18.35, 12.31, 0.69897, 50, -2.14, 12.4, 0.30103, 2, 49, 19.77, 12.7, 0.61519, 50, -0.71, 12.73, 0.38481, 2, 49, 21.04, 13.05, 0.54123, 50, 0.58, 13.03, 0.45877, 2, 49, 26.81, 14.62, 0.35414, 50, 6.41, 14.39, 0.64586, 2, 49, 31.81, 0.97, 9.9E-4, 50, 10.88, 0.56, 0.99901, 1, 50, 12.4, -4.14, 1, 2, 49, 21.84, -7.89, 0.53499, 50, 0.58, -7.92, 0.46501, 2, 49, 20.59, -8.34, 0.66314, 50, -0.68, -8.33, 0.33686, 1, 49, 20.28, 0.15, 1, 1, 50, 0.79, 0.22, 1, 2, 49, 18.93, 0.08, 0.99971, 50, -2.02, 0.16, 2.9E-4 ],
  246. "hull": 12,
  247. "edges": [ 2, 4, 4, 6, 14, 16, 16, 18, 22, 24, 24, 10, 18, 20, 20, 22, 16, 26, 26, 24, 20, 26, 10, 12, 12, 14, 26, 12, 2, 0, 0, 22, 4, 28, 28, 24, 0, 28, 6, 8, 8, 10, 28, 8 ],
  248. "width": 24,
  249. "height": 59
  250. }
  251. },
  252. "zi_1": {
  253. "zi_1": { "x": -0.32, "y": 0.94, "width": 29, "height": 29 }
  254. },
  255. "zi_10": {
  256. "zi_10": { "x": 1.23, "y": -0.48, "width": 21, "height": 20 }
  257. },
  258. "zi_11": {
  259. "zi_11": { "x": 1.38, "y": -1.66, "width": 23, "height": 20 }
  260. },
  261. "zi_12": {
  262. "zi_12": { "x": 1.89, "y": -1.66, "width": 24, "height": 20 }
  263. },
  264. "zi_2": {
  265. "zi_2": { "x": -2.62, "y": 1.69, "width": 29, "height": 29 }
  266. },
  267. "zi_3": {
  268. "zi_3": { "x": 0.72, "y": -0.35, "width": 28, "height": 30 }
  269. },
  270. "zi_4": {
  271. "zi_4": { "x": -1.75, "y": -1.62, "width": 30, "height": 27 }
  272. },
  273. "zi_5": {
  274. "zi_5": { "x": -0.52, "y": -1.76, "width": 28, "height": 30 }
  275. },
  276. "zi_6": {
  277. "zi_6": { "x": 0.02, "y": 0.78, "width": 29, "height": 28 }
  278. },
  279. "zi_7": {
  280. "zi_7": { "x": 2.47, "y": 0.78, "width": 30, "height": 29 }
  281. },
  282. "zi_8": {
  283. "zi_8": { "x": -0.09, "y": 0.28, "width": 31, "height": 30 }
  284. },
  285. "zi_9": {
  286. "zi_9": { "x": -1.89, "y": -0.56, "width": 30, "height": 30 }
  287. },
  288. "zuiba1": {
  289. "zuiba1": { "x": -1.74, "y": -0.77, "rotation": -90.26, "width": 18, "height": 16 }
  290. },
  291. "zuiba2": {
  292. "zuiba2": { "x": -1.26, "y": 0.42, "rotation": -90.26, "width": 18, "height": 16 }
  293. },
  294. "zuojiao": {
  295. "zuojiao": {
  296. "type": "mesh",
  297. "uvs": [ 1, 0.23736, 0.94686, 0.53639, 0.94425, 0.55103, 0.94051, 0.57208, 0.89101, 0.85064, 0.88805, 0.86729, 0.88296, 0.89591, 0.86446, 1, 0, 1, 0, 0.96268, 0, 0.87968, 0.19688, 0.83647, 0.19953, 0.8156, 0.20136, 0.80117, 0.23451, 0.54008, 0.23699, 0.52053, 0.2391, 0.50392, 0.30308, 0, 0.65049, 0, 1, 0, 0.54049, 0.8625, 0.5436, 0.83806, 0.54534, 0.82448, 0.58224, 0.53513, 0.58429, 0.51902, 0.57934, 0.55784 ],
  298. "triangles": [ 9, 10, 11, 9, 11, 20, 8, 9, 20, 25, 15, 23, 14, 15, 25, 3, 23, 2, 25, 23, 3, 22, 14, 25, 13, 14, 22, 21, 13, 22, 12, 13, 21, 4, 25, 3, 22, 25, 4, 20, 12, 21, 11, 12, 20, 5, 22, 4, 21, 22, 5, 6, 21, 5, 20, 21, 6, 7, 20, 6, 8, 20, 7, 18, 19, 0, 24, 17, 18, 24, 18, 0, 16, 17, 24, 23, 16, 24, 15, 16, 23, 1, 24, 0, 2, 24, 1, 23, 24, 2 ],
  299. "vertices": [ 1, 29, 3.95, 11.22, 1, 2, 29, 20.77, 10.99, 0.60255, 30, -0.27, 11.01, 0.39745, 2, 29, 21.59, 10.98, 0.53765, 30, 0.55, 10.97, 0.46235, 2, 29, 22.78, 10.96, 0.44438, 30, 1.74, 10.91, 0.55562, 2, 30, 17.38, 10.12, 0.94701, 31, -10.51, 0.1, 0.05299, 2, 30, 18.32, 10.07, 0.91915, 31, -10.2, 0.98, 0.08085, 2, 30, 19.92, 9.99, 0.85926, 31, -9.67, 2.5, 0.14074, 2, 30, 25.77, 9.69, 0.66499, 31, -7.76, 8.03, 0.33501, 1, 31, 16.58, 2.03, 1, 1, 31, 16.08, 0, 1, 2, 30, 20.07, -15.63, 0.00218, 31, 14.97, -4.51, 0.99782, 2, 30, 17.42, -10.03, 0.21497, 31, 8.85, -5.49, 0.78503, 2, 30, 16.25, -10, 0.35739, 31, 8.49, -6.61, 0.64261, 2, 30, 15.44, -9.98, 0.44379, 31, 8.25, -7.38, 0.55621, 3, 29, 22.58, -9.59, 0.40432, 30, 0.79, -9.62, 0.59144, 31, 3.81, -21.35, 0.00424, 3, 29, 21.49, -9.6, 0.50394, 30, -0.31, -9.6, 0.49423, 31, 3.48, -22.39, 0.00182, 3, 29, 20.56, -9.61, 0.589, 30, -1.24, -9.58, 0.41028, 31, 3.2, -23.28, 7.2E-4, 1, 29, -7.72, -9.96, 1, 1, 29, -8.51, 0.08, 1, 1, 29, -9.3, 10.19, 1, 1, 30, 18.46, -0.01, 1, 1, 30, 17.09, 0.02, 1, 1, 30, 16.33, 0.04, 1, 2, 29, 21.52, 0.44, 0.43247, 30, 0.1, 0.44, 0.56753, 2, 29, 20.62, 0.43, 0.958, 30, -0.81, 0.46, 0.042, 1, 30, 1.37, 0.41, 1 ],
  300. "hull": 20,
  301. "edges": [ 0, 38, 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 30, 32, 32, 34, 36, 48, 48, 46, 32, 48, 0, 2, 2, 4, 48, 2, 26, 28, 28, 30, 44, 50, 50, 46, 28, 50, 4, 6, 6, 8, 50, 6 ],
  302. "width": 28,
  303. "height": 56
  304. }
  305. },
  306. "zuoshou": {
  307. "zuoshou": {
  308. "type": "mesh",
  309. "uvs": [ 1, 0.24482, 0.79538, 0.49621, 0.77352, 0.52306, 0.75204, 0.54946, 0.54026, 0.80964, 0.51871, 0.83611, 0.50205, 0.85658, 0.38531, 1, 0, 1, 0, 0.73459, 0.14033, 0.60625, 0.16206, 0.58638, 0.18708, 0.5635, 0.44137, 0.33096, 0.46652, 0.30796, 0.48709, 0.28914, 0.80327, 0, 1, 0, 0.63299, 0.38913, 0.35435, 0.72147, 0.61873, 0.40614, 0.60105, 0.42722, 0.333, 0.73825, 0.37498, 0.69687 ],
  310. "triangles": [ 22, 11, 19, 10, 11, 22, 6, 19, 5, 22, 19, 6, 22, 8, 9, 22, 9, 10, 7, 22, 6, 8, 22, 7, 21, 14, 20, 13, 14, 21, 3, 20, 2, 21, 20, 3, 23, 12, 13, 23, 13, 21, 19, 12, 23, 11, 12, 19, 4, 23, 21, 4, 21, 3, 5, 23, 4, 19, 23, 5, 18, 16, 17, 18, 15, 16, 17, 0, 18, 20, 15, 18, 14, 15, 20, 1, 18, 0, 2, 18, 1, 20, 18, 2 ],
  311. "vertices": [ 1, 22, 3.49, 11.66, 1, 2, 22, 21.51, 11.15, 0.52364, 23, -0.71, 11.14, 0.47636, 2, 22, 23.43, 11.09, 0.36994, 23, 1.22, 11.11, 0.63006, 2, 22, 25.32, 11.04, 0.23467, 23, 3.11, 11.07, 0.76533, 2, 23, 21.75, 10.74, 0.57916, 24, -1.84, 10.62, 0.42084, 2, 23, 23.65, 10.71, 0.42908, 24, 0.05, 10.75, 0.57092, 2, 23, 25.12, 10.68, 0.318, 24, 1.51, 10.86, 0.682, 2, 23, 35.4, 10.5, 0.00215, 24, 11.77, 11.59, 0.99785, 1, 24, 23.8, -3.46, 1, 2, 23, 33, -14.22, 0.04254, 24, 11.57, -13.24, 0.95746, 2, 23, 22.81, -12.56, 0.44601, 24, 1.28, -12.49, 0.55399, 2, 23, 21.24, -12.3, 0.5552, 24, -0.32, -12.38, 0.4448, 2, 23, 19.42, -12, 0.67865, 24, -2.15, -12.24, 0.32135, 2, 22, 22.96, -9.01, 0.35034, 23, 0.96, -9, 0.64966, 2, 22, 21.13, -8.69, 0.5256, 23, -0.87, -8.7, 0.4744, 2, 22, 19.64, -8.43, 0.66973, 23, -2.36, -8.46, 0.33027, 1, 22, -3.27, -4.45, 1, 1, 22, -8.62, 3.8, 1, 2, 22, 20.62, 0.9, 0.93767, 23, -1.48, 0.88, 0.06233, 2, 23, 22.56, 0.12, 0.55906, 24, -0.1, 0.11, 0.44094, 2, 22, 21.85, 0.85, 0.61699, 23, -0.25, 0.84, 0.38301, 2, 22, 23.38, 0.78, 0.01307, 23, 1.27, 0.8, 0.98693, 1, 24, 1.34, -0.1, 1, 2, 23, 20.78, 0.18, 0.99433, 24, -1.88, 0.01, 0.00567 ],
  312. "hull": 18,
  313. "edges": [ 0, 34, 14, 16, 32, 34, 16, 18, 34, 36, 36, 40, 28, 40, 40, 4, 0, 2, 2, 4, 2, 36, 28, 30, 30, 32, 36, 30, 26, 28, 42, 40, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 18, 20, 20, 22, 16, 44, 44, 38, 20, 44, 10, 12, 12, 14, 44, 12, 22, 24, 24, 26, 38, 46, 46, 42, 24, 46, 6, 8, 8, 10, 46, 8 ],
  314. "width": 49,
  315. "height": 58
  316. }
  317. },
  318. "zuoshou1": {
  319. "zuoshou1": {
  320. "type": "mesh",
  321. "uvs": [ 1, 0.30852, 0.69096, 0.6704, 0.44296, 0.44264, 0.76941, 0, 1, 0 ],
  322. "triangles": [ 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
  323. "vertices": [ 8.02, 9.24, 31.27, 7.42, 29.39, -8.97, 2.44, -8.79, -4.2, 0.35 ],
  324. "hull": 5,
  325. "edges": [ 6, 8, 6, 4, 4, 2, 0, 8, 2, 0 ],
  326. "width": 49,
  327. "height": 49
  328. }
  329. },
  330. "zuoshou2": {
  331. "zuoshou2": {
  332. "type": "mesh",
  333. "uvs": [ 0.47932, 0.16559, 0.49878, 0.18979, 0.52071, 0.21707, 0.79257, 0.55518, 0.62262, 0.67779, 0.47844, 0.7818, 0.12944, 0.46522, 0.10149, 0.43986, 0.07469, 0.41556, 0, 0.3478, 0, 0, 0.34617, 0, 0.29001, 0.31571, 0.31389, 0.3417, 0.26624, 0.28983 ],
  334. "triangles": [ 9, 10, 14, 14, 11, 0, 14, 10, 11, 6, 13, 5, 5, 13, 4, 13, 2, 4, 4, 2, 3, 6, 12, 13, 6, 7, 12, 7, 14, 12, 7, 8, 14, 8, 9, 14, 13, 1, 2, 13, 12, 1, 12, 0, 1, 12, 14, 0 ],
  335. "vertices": [ 2, 52, 20.87, -12.77, 0.64183, 53, -0.35, -12.79, 0.35817, 2, 52, 19.23, -12.54, 0.74027, 53, -2, -12.61, 0.25973, 2, 52, 17.39, -12.28, 0.83548, 53, -3.85, -12.41, 0.16452, 1, 52, -5.5, -9.02, 1, 1, 52, -6.02, 1.41, 1, 1, 52, -6.46, 10.26, 1, 2, 52, 17.7, 10.46, 0.89817, 53, -4.27, 10.33, 0.10183, 2, 52, 19.63, 10.48, 0.79242, 53, -2.33, 10.41, 0.20758, 2, 52, 21.49, 10.5, 0.65557, 53, -0.48, 10.49, 0.34443, 2, 52, 26.66, 10.54, 0.29955, 53, 4.69, 10.7, 0.70045, 1, 53, 20.54, -1.78, 1, 2, 52, 32.08, -14.37, 0.13497, 53, 10.9, -14.02, 0.86503, 2, 52, 19.69, -0.65, 0.98795, 53, -1.92, -0.71, 0.01205, 2, 52, 17.84, -0.5, 0.99914, 53, -3.77, -0.62, 8.6E-4, 2, 52, 21.53, -0.8, 0.68388, 53, -0.08, -0.8, 0.31612 ],
  336. "hull": 12,
  337. "edges": [ 20, 22, 18, 20, 6, 8, 8, 10, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
  338. "width": 45,
  339. "height": 58
  340. }
  341. }
  342. }
  343. },
  344. "animations": {
  345. "stand1": {
  346. "slots": {
  347. "biyan": {
  348. "attachment": [
  349. { "time": 0.1, "name": "biyan" },
  350. { "time": 0.2, "name": null },
  351. { "time": 2.9, "name": "biyan" },
  352. { "time": 3.0333, "name": null }
  353. ]
  354. },
  355. "gaoguang zuo": {
  356. "attachment": [
  357. { "time": 0.1, "name": null },
  358. { "time": 0.2, "name": "gaoguang zuo" },
  359. { "time": 2.9, "name": null },
  360. { "time": 3.0333, "name": "gaoguang zuo" }
  361. ]
  362. },
  363. "gaoguangyou": {
  364. "attachment": [
  365. { "time": 0.1, "name": null },
  366. { "time": 0.2, "name": "gaoguangyou" },
  367. { "time": 2.9, "name": null },
  368. { "time": 3.0333, "name": "gaoguangyou" }
  369. ]
  370. },
  371. "yanbai zuo": {
  372. "attachment": [
  373. { "time": 0.1, "name": null },
  374. { "time": 0.2, "name": "yanbai zuo" },
  375. { "time": 2.9, "name": null },
  376. { "time": 3.0333, "name": "yanbai zuo" }
  377. ]
  378. },
  379. "yanbaiyou": {
  380. "attachment": [
  381. { "time": 0.1, "name": null },
  382. { "time": 0.2, "name": "yanbaiyou" },
  383. { "time": 2.9, "name": null },
  384. { "time": 3.0333, "name": "yanbaiyou" }
  385. ]
  386. },
  387. "yanzhu you": {
  388. "attachment": [
  389. { "time": 0.1, "name": null },
  390. { "time": 0.2, "name": "yanzhu you" },
  391. { "time": 2.9, "name": null },
  392. { "time": 3.0333, "name": "yanzhu you" }
  393. ]
  394. },
  395. "yanzhu zuo": {
  396. "attachment": [
  397. { "time": 0.1, "name": null },
  398. { "time": 0.2, "name": "yanzhu zuo" },
  399. { "time": 2.9, "name": null },
  400. { "time": 3.0333, "name": "yanzhu zuo" }
  401. ]
  402. },
  403. "youjiao": {
  404. "attachment": [
  405. { "time": 0, "name": null }
  406. ]
  407. },
  408. "youjiao1": {
  409. "attachment": [
  410. { "time": 0, "name": "youjiao1" }
  411. ]
  412. },
  413. "youshou": {
  414. "attachment": [
  415. { "time": 0.3333, "name": null }
  416. ]
  417. },
  418. "youshou1": {
  419. "attachment": [
  420. { "time": 0, "name": null },
  421. { "time": 0.3333, "name": "youshou1" }
  422. ]
  423. },
  424. "youshou2": {
  425. "attachment": [
  426. { "time": 0, "name": null },
  427. { "time": 0.3333, "name": "youshou2" }
  428. ]
  429. },
  430. "zi_1": {
  431. "color": [
  432. { "time": 0.1667, "color": "ffffff00" },
  433. { "time": 0.2667, "color": "ffffffff" }
  434. ],
  435. "attachment": [
  436. { "time": 0, "name": null },
  437. { "time": 0.1667, "name": "zi_1" }
  438. ]
  439. },
  440. "zi_2": {
  441. "color": [
  442. { "time": 0.5, "color": "ffffff00" },
  443. { "time": 0.6, "color": "ffffffff" }
  444. ],
  445. "attachment": [
  446. { "time": 0, "name": null },
  447. { "time": 0.5, "name": "zi_2" }
  448. ]
  449. },
  450. "zi_3": {
  451. "attachment": [
  452. { "time": 0, "name": null },
  453. { "time": 0.8333, "name": "zi_3" }
  454. ]
  455. },
  456. "zi_4": {
  457. "color": [
  458. { "time": 1.1, "color": "ffffff00" },
  459. { "time": 1.2, "color": "ffffffff" }
  460. ],
  461. "attachment": [
  462. { "time": 0, "name": null },
  463. { "time": 1.1, "name": "zi_4" }
  464. ]
  465. },
  466. "zi_5": {
  467. "color": [
  468. { "time": 1.3667, "color": "ffffff00" },
  469. { "time": 1.5, "color": "ffffffff" }
  470. ],
  471. "attachment": [
  472. { "time": 0, "name": null },
  473. { "time": 1.3667, "name": "zi_5" }
  474. ]
  475. },
  476. "zi_6": {
  477. "color": [
  478. { "time": 1.6333, "color": "ffffff00" },
  479. { "time": 1.7333, "color": "ffffffff" }
  480. ],
  481. "attachment": [
  482. { "time": 0, "name": null },
  483. { "time": 1.6333, "name": "zi_6" }
  484. ]
  485. },
  486. "zi_7": {
  487. "color": [
  488. { "time": 1.9667, "color": "ffffff00" },
  489. { "time": 2.0667, "color": "ffffffff" }
  490. ],
  491. "attachment": [
  492. { "time": 0, "name": null },
  493. { "time": 1.9667, "name": "zi_7" }
  494. ]
  495. },
  496. "zi_8": {
  497. "color": [
  498. { "time": 2.5, "color": "ffffff00" },
  499. { "time": 2.6, "color": "ffffffff" }
  500. ],
  501. "attachment": [
  502. { "time": 0, "name": null },
  503. { "time": 2.5, "name": "zi_8" }
  504. ]
  505. },
  506. "zi_9": {
  507. "color": [
  508. { "time": 2.8667, "color": "ffffff00" },
  509. { "time": 2.9667, "color": "ffffffff" }
  510. ],
  511. "attachment": [
  512. { "time": 0, "name": null },
  513. { "time": 2.8667, "name": "zi_9" }
  514. ]
  515. },
  516. "zi_10": {
  517. "color": [
  518. { "time": 3.3333, "color": "ffffff00" },
  519. { "time": 3.4333, "color": "ffffffff" }
  520. ],
  521. "attachment": [
  522. { "time": 0, "name": null },
  523. { "time": 3.3333, "name": "zi_10" }
  524. ]
  525. },
  526. "zi_11": {
  527. "color": [
  528. { "time": 3.8667, "color": "ffffff00" },
  529. { "time": 3.9667, "color": "ffffffff" }
  530. ],
  531. "attachment": [
  532. { "time": 0, "name": null },
  533. { "time": 3.8667, "name": "zi_11" }
  534. ]
  535. },
  536. "zi_12": {
  537. "color": [
  538. { "time": 4.3667, "color": "ffffff00" },
  539. { "time": 4.4667, "color": "ffffffff" }
  540. ],
  541. "attachment": [
  542. { "time": 0, "name": null },
  543. { "time": 4.3667, "name": "zi_12" }
  544. ]
  545. },
  546. "zuiba1": {
  547. "attachment": [
  548. { "time": 0, "name": "zuiba1" },
  549. { "time": 0.6, "name": "zuiba1" },
  550. { "time": 1.2, "name": "zuiba1" },
  551. { "time": 1.8667, "name": "zuiba1" },
  552. { "time": 2.4333, "name": "zuiba1" },
  553. { "time": 3.1, "name": "zuiba1" },
  554. { "time": 3.5667, "name": "zuiba1" },
  555. { "time": 4.1667, "name": "zuiba1" },
  556. { "time": 4.8333, "name": "zuiba1" }
  557. ]
  558. },
  559. "zuiba2": {
  560. "attachment": [
  561. { "time": 0, "name": null },
  562. { "time": 0.2333, "name": "zuiba2" },
  563. { "time": 0.6, "name": null },
  564. { "time": 0.8333, "name": "zuiba2" },
  565. { "time": 1.2, "name": null },
  566. { "time": 1.4333, "name": "zuiba2" },
  567. { "time": 1.8667, "name": null },
  568. { "time": 2.1, "name": "zuiba2" },
  569. { "time": 2.4333, "name": null },
  570. { "time": 2.8, "name": "zuiba2" },
  571. { "time": 3.1, "name": null },
  572. { "time": 3.2333, "name": "zuiba2" },
  573. { "time": 3.5667, "name": null },
  574. { "time": 3.8, "name": "zuiba2" },
  575. { "time": 4.1667, "name": null },
  576. { "time": 4.4, "name": "zuiba2" },
  577. { "time": 4.8333, "name": null }
  578. ]
  579. },
  580. "zuoshou": {
  581. "attachment": [
  582. { "time": 0.3333, "name": null }
  583. ]
  584. },
  585. "zuoshou1": {
  586. "attachment": [
  587. { "time": 0, "name": null },
  588. { "time": 0.3333, "name": "zuoshou1" }
  589. ]
  590. },
  591. "zuoshou2": {
  592. "attachment": [
  593. { "time": 0, "name": null },
  594. { "time": 0.3333, "name": "zuoshou2" }
  595. ]
  596. }
  597. },
  598. "bones": {
  599. "bone54": {
  600. "rotate": [
  601. { "time": 0, "angle": 0 },
  602. { "time": 0.1667, "angle": 4.63 },
  603. { "time": 0.3333, "angle": -3.47 },
  604. { "time": 0.5, "angle": 0.27 },
  605. { "time": 0.6667, "angle": -3.47 },
  606. { "time": 0.9667, "angle": 0.27 },
  607. { "time": 1.2667, "angle": -3.47 },
  608. { "time": 1.5667, "angle": 0.27 },
  609. { "time": 1.8667, "angle": -3.47 },
  610. { "time": 2.2, "angle": 0.27 },
  611. { "time": 2.5333, "angle": -3.47 },
  612. { "time": 2.9333, "angle": 0.27 },
  613. { "time": 3.2333, "angle": -3.47 },
  614. { "time": 3.5667, "angle": 0.27 },
  615. { "time": 3.9, "angle": -3.47 },
  616. { "time": 4.2333, "angle": 0.27 },
  617. { "time": 4.5333, "angle": -3.47 }
  618. ],
  619. "translate": [
  620. { "time": 0, "x": -75.4, "y": 0.21, "curve": "stepped" },
  621. { "time": 0.1667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  622. { "time": 0.3333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  623. { "time": 0.6667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  624. { "time": 1.2667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  625. { "time": 1.8667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  626. { "time": 2.5333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  627. { "time": 3.2333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  628. { "time": 3.9, "x": -75.4, "y": 0.21, "curve": "stepped" },
  629. { "time": 4.5333, "x": -75.4, "y": 0.21 }
  630. ],
  631. "scale": [
  632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  633. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  634. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  640. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  641. { "time": 4.5333, "x": 1, "y": 1 }
  642. ]
  643. },
  644. "bone48": {
  645. "rotate": [
  646. { "time": 0, "angle": 0, "curve": "stepped" },
  647. { "time": 0.1667, "angle": 0 },
  648. { "time": 0.3333, "angle": 4.91 },
  649. { "time": 0.5, "angle": 0 },
  650. { "time": 0.6667, "angle": -0.7 },
  651. { "time": 0.9667, "angle": 0 },
  652. { "time": 1.2667, "angle": -0.7 },
  653. { "time": 1.5667, "angle": 0 },
  654. { "time": 1.8667, "angle": -0.7 },
  655. { "time": 2.2, "angle": 0 },
  656. { "time": 2.5333, "angle": -0.7 },
  657. { "time": 2.9333, "angle": 0 },
  658. { "time": 3.2333, "angle": -0.7 },
  659. { "time": 3.5667, "angle": 0 },
  660. { "time": 3.9, "angle": -0.7 },
  661. { "time": 4.2333, "angle": 0 },
  662. { "time": 4.5333, "angle": -0.7 }
  663. ],
  664. "translate": [
  665. { "time": 0, "x": -2.84, "y": 77.77, "curve": "stepped" },
  666. { "time": 0.1667, "x": -2.84, "y": 77.77 },
  667. { "time": 0.3333, "x": -2.26, "y": 77.27 },
  668. { "time": 0.5, "x": -2.84, "y": 77.77, "curve": "stepped" },
  669. { "time": 0.6667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  670. { "time": 0.9667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  671. { "time": 1.2667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  672. { "time": 1.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  673. { "time": 1.8667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  674. { "time": 2.2, "x": -2.84, "y": 77.77, "curve": "stepped" },
  675. { "time": 2.5333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  676. { "time": 2.9333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  677. { "time": 3.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  678. { "time": 3.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  679. { "time": 3.9, "x": -2.84, "y": 77.77, "curve": "stepped" },
  680. { "time": 4.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  681. { "time": 4.5333, "x": -2.84, "y": 77.77 }
  682. ],
  683. "scale": [
  684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  685. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  695. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  696. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  697. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  698. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 4.5333, "x": 1, "y": 1 }
  701. ]
  702. },
  703. "bone51": {
  704. "rotate": [
  705. { "time": 0, "angle": 0, "curve": "stepped" },
  706. {
  707. "time": 0.1667,
  708. "angle": 0,
  709. "curve": [ 0.25, 0, 0.75, 1 ]
  710. },
  711. {
  712. "time": 0.3333,
  713. "angle": -6.46,
  714. "curve": [ 0.25, 0, 0.75, 1 ]
  715. },
  716. {
  717. "time": 0.5,
  718. "angle": -18.26,
  719. "curve": [ 0.25, 0, 0.75, 1 ]
  720. },
  721. {
  722. "time": 0.6667,
  723. "angle": -5.63,
  724. "curve": [ 0.25, 0, 0.75, 1 ]
  725. },
  726. {
  727. "time": 0.9667,
  728. "angle": -18.26,
  729. "curve": [ 0.25, 0, 0.75, 1 ]
  730. },
  731. {
  732. "time": 1.2667,
  733. "angle": -5.63,
  734. "curve": [ 0.25, 0, 0.75, 1 ]
  735. },
  736. {
  737. "time": 1.5667,
  738. "angle": -18.26,
  739. "curve": [ 0.25, 0, 0.75, 1 ]
  740. },
  741. {
  742. "time": 1.8667,
  743. "angle": -5.63,
  744. "curve": [ 0.25, 0, 0.75, 1 ]
  745. },
  746. {
  747. "time": 2.2,
  748. "angle": -18.26,
  749. "curve": [ 0.25, 0, 0.75, 1 ]
  750. },
  751. {
  752. "time": 2.5333,
  753. "angle": -5.63,
  754. "curve": [ 0.25, 0, 0.75, 1 ]
  755. },
  756. {
  757. "time": 2.9333,
  758. "angle": -18.26,
  759. "curve": [ 0.25, 0, 0.75, 1 ]
  760. },
  761. {
  762. "time": 3.2333,
  763. "angle": -5.63,
  764. "curve": [ 0.25, 0, 0.75, 1 ]
  765. },
  766. {
  767. "time": 3.5667,
  768. "angle": -18.26,
  769. "curve": [ 0.25, 0, 0.75, 1 ]
  770. },
  771. {
  772. "time": 3.9,
  773. "angle": -5.63,
  774. "curve": [ 0.25, 0, 0.75, 1 ]
  775. },
  776. {
  777. "time": 4.2333,
  778. "angle": -18.26,
  779. "curve": [ 0.25, 0, 0.75, 1 ]
  780. },
  781. { "time": 4.5333, "angle": -5.63 }
  782. ],
  783. "translate": [
  784. { "time": 0, "x": -60.19, "y": 125.38, "curve": "stepped" },
  785. {
  786. "time": 0.1667,
  787. "x": -60.19,
  788. "y": 125.38,
  789. "curve": [ 0.25, 0, 0.75, 1 ]
  790. },
  791. { "time": 0.3333, "x": -60.67, "y": 124.82 }
  792. ]
  793. },
  794. "root": {
  795. "rotate": [
  796. { "time": 0, "angle": 0 }
  797. ],
  798. "translate": [
  799. { "time": 0, "x": 0, "y": 0 }
  800. ],
  801. "scale": [
  802. { "time": 0, "x": 0.65, "y": 0.65 }
  803. ]
  804. },
  805. "bone": {
  806. "rotate": [
  807. { "time": 0, "angle": 0, "curve": "stepped" },
  808. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  809. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  810. { "time": 0.5, "angle": 0, "curve": "stepped" },
  811. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  812. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  813. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  814. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  815. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  816. { "time": 2.2, "angle": 0, "curve": "stepped" },
  817. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  818. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  819. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  820. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  821. { "time": 3.9, "angle": 0, "curve": "stepped" },
  822. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  823. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  824. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  825. { "time": 5.2, "angle": 0 }
  826. ],
  827. "translate": [
  828. { "time": 0, "x": 0, "y": 0 },
  829. { "time": 0.1667, "x": 0, "y": -1.05 },
  830. { "time": 0.3333, "x": 3.11, "y": 0, "curve": "stepped" },
  831. { "time": 0.5, "x": 3.11, "y": 0, "curve": "stepped" },
  832. { "time": 0.6667, "x": 3.11, "y": 0, "curve": "stepped" },
  833. { "time": 0.9667, "x": 3.11, "y": 0, "curve": "stepped" },
  834. { "time": 1.2667, "x": 3.11, "y": 0, "curve": "stepped" },
  835. { "time": 1.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  836. { "time": 1.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  837. { "time": 2.2, "x": 3.11, "y": 0, "curve": "stepped" },
  838. { "time": 2.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  839. { "time": 2.9333, "x": 3.11, "y": 0, "curve": "stepped" },
  840. { "time": 3.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  841. { "time": 3.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  842. { "time": 3.9, "x": 3.11, "y": 0, "curve": "stepped" },
  843. { "time": 4.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  844. { "time": 4.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  845. { "time": 4.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  846. { "time": 5.2, "x": 3.11, "y": 0 }
  847. ],
  848. "scale": [
  849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  851. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  852. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 5.2, "x": 1, "y": 1 }
  868. ]
  869. },
  870. "bone2": {
  871. "rotate": [
  872. { "time": 0, "angle": 0, "curve": "stepped" },
  873. { "time": 0.1667, "angle": 0 },
  874. { "time": 0.3333, "angle": -1.48, "curve": "stepped" },
  875. { "time": 0.5, "angle": -1.48, "curve": "stepped" },
  876. { "time": 0.6667, "angle": -1.48, "curve": "stepped" },
  877. { "time": 0.9667, "angle": -1.48, "curve": "stepped" },
  878. { "time": 1.2667, "angle": -1.48, "curve": "stepped" },
  879. { "time": 1.5667, "angle": -1.48, "curve": "stepped" },
  880. { "time": 1.8667, "angle": -1.48, "curve": "stepped" },
  881. { "time": 2.2, "angle": -1.48, "curve": "stepped" },
  882. { "time": 2.5333, "angle": -1.48, "curve": "stepped" },
  883. { "time": 2.9333, "angle": -1.48, "curve": "stepped" },
  884. { "time": 3.2333, "angle": -1.48, "curve": "stepped" },
  885. { "time": 3.5667, "angle": -1.48, "curve": "stepped" },
  886. { "time": 3.9, "angle": -1.48, "curve": "stepped" },
  887. { "time": 4.2333, "angle": -1.48, "curve": "stepped" },
  888. { "time": 4.5333, "angle": -1.48 }
  889. ],
  890. "translate": [
  891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 0.3333, "x": 0, "y": 0 },
  894. { "time": 0.5, "x": 0.94, "y": -0.02 },
  895. { "time": 0.6667, "x": 0, "y": 0 },
  896. { "time": 0.9667, "x": 0.94, "y": -0.02 },
  897. { "time": 1.2667, "x": 0, "y": 0 },
  898. { "time": 1.5667, "x": 0.94, "y": -0.02 },
  899. { "time": 1.8667, "x": 0, "y": 0 },
  900. { "time": 2.2, "x": 0.94, "y": -0.02 },
  901. { "time": 2.5333, "x": 0, "y": 0 },
  902. { "time": 2.9333, "x": 0.94, "y": -0.02 },
  903. { "time": 3.2333, "x": 0, "y": 0 },
  904. { "time": 3.5667, "x": 0.94, "y": -0.02 },
  905. { "time": 3.9, "x": 0, "y": 0 },
  906. { "time": 4.2333, "x": 0.94, "y": -0.02 },
  907. { "time": 4.5333, "x": 0, "y": 0 }
  908. ],
  909. "scale": [
  910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 4.5333, "x": 1, "y": 1 }
  927. ]
  928. },
  929. "bone3": {
  930. "rotate": [
  931. { "time": 0, "angle": 0, "curve": "stepped" },
  932. { "time": 0.1667, "angle": 0 },
  933. { "time": 0.3333, "angle": -0.24, "curve": "stepped" },
  934. { "time": 0.5, "angle": -0.24, "curve": "stepped" },
  935. { "time": 0.6667, "angle": -0.24, "curve": "stepped" },
  936. { "time": 0.9667, "angle": -0.24, "curve": "stepped" },
  937. { "time": 1.2667, "angle": -0.24, "curve": "stepped" },
  938. { "time": 1.5667, "angle": -0.24, "curve": "stepped" },
  939. { "time": 1.8667, "angle": -0.24, "curve": "stepped" },
  940. { "time": 2.2, "angle": -0.24, "curve": "stepped" },
  941. { "time": 2.5333, "angle": -0.24, "curve": "stepped" },
  942. { "time": 2.9333, "angle": -0.24, "curve": "stepped" },
  943. { "time": 3.2333, "angle": -0.24, "curve": "stepped" },
  944. { "time": 3.5667, "angle": -0.24, "curve": "stepped" },
  945. { "time": 3.9, "angle": -0.24, "curve": "stepped" },
  946. { "time": 4.2333, "angle": -0.24, "curve": "stepped" },
  947. { "time": 4.5333, "angle": -0.24 }
  948. ],
  949. "translate": [
  950. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 4.5333, "x": 0, "y": 0 }
  967. ],
  968. "scale": [
  969. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  972. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 4.5333, "x": 1, "y": 1 }
  986. ]
  987. },
  988. "bone4": {
  989. "rotate": [
  990. { "time": 0, "angle": 0, "curve": "stepped" },
  991. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  992. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  993. { "time": 0.5, "angle": 0, "curve": "stepped" },
  994. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  995. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  996. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  997. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  998. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  999. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1000. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1001. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1002. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1003. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1004. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1005. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1006. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1007. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1008. { "time": 5.2, "angle": 0 }
  1009. ],
  1010. "translate": [
  1011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 5.2, "x": 0, "y": 0 }
  1030. ],
  1031. "scale": [
  1032. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 5.2, "x": 1, "y": 1 }
  1051. ]
  1052. },
  1053. "bone5": {
  1054. "rotate": [
  1055. { "time": 0, "angle": 0, "curve": "stepped" },
  1056. { "time": 0.1667, "angle": 0 },
  1057. { "time": 0.5, "angle": -2.14 },
  1058. { "time": 0.6667, "angle": 0 },
  1059. { "time": 0.9667, "angle": -2.14 },
  1060. { "time": 1.2667, "angle": 0 },
  1061. { "time": 1.5667, "angle": -2.14 },
  1062. { "time": 1.8667, "angle": 0 },
  1063. { "time": 2.2, "angle": -2.14 },
  1064. { "time": 2.5333, "angle": 0 },
  1065. { "time": 2.9, "angle": -2.14 },
  1066. { "time": 3.2333, "angle": 0 },
  1067. { "time": 3.5667, "angle": -2.14 },
  1068. { "time": 3.9, "angle": 0 },
  1069. { "time": 4.2333, "angle": -2.14 },
  1070. { "time": 4.5333, "angle": 0 }
  1071. ],
  1072. "translate": [
  1073. { "time": 0, "x": 0, "y": 0 },
  1074. { "time": 0.1667, "x": -0.7, "y": -0.02 },
  1075. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1082. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1083. { "time": 2.5333, "x": 0, "y": 0 },
  1084. { "time": 2.9, "x": -0.86, "y": 0 },
  1085. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1088. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1089. { "time": 4.5333, "x": 0, "y": 0 }
  1090. ],
  1091. "scale": [
  1092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 0.1667, "x": 1, "y": 1 },
  1094. { "time": 0.3333, "x": 1.02, "y": 1 },
  1095. { "time": 0.6667, "x": 1, "y": 1 },
  1096. { "time": 0.9667, "x": 1.02, "y": 1 },
  1097. { "time": 1.2667, "x": 1, "y": 1 },
  1098. { "time": 1.5667, "x": 1.02, "y": 1 },
  1099. { "time": 1.8667, "x": 1, "y": 1 },
  1100. { "time": 2.2, "x": 1.02, "y": 1 },
  1101. { "time": 2.5333, "x": 1, "y": 1 },
  1102. { "time": 3.0333, "x": 1.02, "y": 1 },
  1103. { "time": 3.2333, "x": 1, "y": 1 },
  1104. { "time": 3.5667, "x": 1.02, "y": 1 },
  1105. { "time": 3.9, "x": 1, "y": 1 },
  1106. { "time": 4.2333, "x": 1.02, "y": 1 },
  1107. { "time": 4.5333, "x": 1, "y": 1 }
  1108. ]
  1109. },
  1110. "bone6": {
  1111. "rotate": [
  1112. { "time": 0, "angle": 0, "curve": "stepped" },
  1113. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1114. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1115. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1116. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1117. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1118. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1119. { "time": 3.2667, "angle": 0 }
  1120. ],
  1121. "translate": [
  1122. { "time": 0, "x": 0, "y": 0 },
  1123. { "time": 0.1, "x": -2.24, "y": 0, "curve": "stepped" },
  1124. { "time": 0.2, "x": -2.24, "y": 0 },
  1125. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 2.7667, "x": 0, "y": 0 },
  1127. { "time": 2.9, "x": -2.58, "y": 0, "curve": "stepped" },
  1128. { "time": 3.0333, "x": -2.58, "y": 0 },
  1129. { "time": 3.2667, "x": 0, "y": 0 }
  1130. ],
  1131. "scale": [
  1132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 3.2667, "x": 1, "y": 1 }
  1140. ]
  1141. },
  1142. "bone7": {
  1143. "rotate": [
  1144. { "time": 0, "angle": 0, "curve": "stepped" },
  1145. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1146. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1147. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1148. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1149. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1150. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1151. { "time": 3.2667, "angle": 0 }
  1152. ],
  1153. "translate": [
  1154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 2.7667, "x": 0, "y": 0 },
  1159. { "time": 2.9, "x": -0.84, "y": 0, "curve": "stepped" },
  1160. { "time": 3.0333, "x": -0.84, "y": 0 },
  1161. { "time": 3.2667, "x": 0, "y": 0 }
  1162. ],
  1163. "scale": [
  1164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1165. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1166. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1167. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1168. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1169. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 3.2667, "x": 1, "y": 1 }
  1172. ]
  1173. },
  1174. "bone8": {
  1175. "rotate": [
  1176. { "time": 0, "angle": 0, "curve": "stepped" },
  1177. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1178. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1179. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1180. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1181. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1182. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1183. { "time": 3.2667, "angle": 0 }
  1184. ],
  1185. "translate": [
  1186. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1187. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1188. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1190. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 3.2667, "x": 0, "y": 0 }
  1194. ],
  1195. "scale": [
  1196. { "time": 0, "x": 1, "y": 1 },
  1197. { "time": 0.1, "x": 0.514, "y": 1, "curve": "stepped" },
  1198. { "time": 0.2, "x": 0.514, "y": 1 },
  1199. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 2.7667, "x": 1, "y": 1 },
  1201. { "time": 2.9, "x": 0.514, "y": 1, "curve": "stepped" },
  1202. { "time": 3.0333, "x": 0.514, "y": 1 },
  1203. { "time": 3.2667, "x": 1, "y": 1 }
  1204. ]
  1205. },
  1206. "bone9": {
  1207. "rotate": [
  1208. { "time": 0, "angle": 0, "curve": "stepped" },
  1209. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1210. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1211. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1212. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1213. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1214. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1215. { "time": 3.2667, "angle": 0 }
  1216. ],
  1217. "translate": [
  1218. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 3.2667, "x": 0, "y": 0 }
  1226. ],
  1227. "scale": [
  1228. { "time": 0, "x": 1, "y": 1 },
  1229. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  1230. { "time": 0.2, "x": 0.504, "y": 1 },
  1231. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 2.7667, "x": 1, "y": 1 },
  1233. { "time": 2.9, "x": 0.504, "y": 1, "curve": "stepped" },
  1234. { "time": 3.0333, "x": 0.504, "y": 1 },
  1235. { "time": 3.2667, "x": 1, "y": 1 }
  1236. ]
  1237. },
  1238. "bone10": {
  1239. "rotate": [
  1240. { "time": 0, "angle": 0, "curve": "stepped" },
  1241. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1242. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1243. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1244. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1245. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  1246. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1247. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1248. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1249. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1250. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1251. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1252. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1253. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1254. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1255. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1256. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1257. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1258. { "time": 5.2, "angle": 0 }
  1259. ],
  1260. "translate": [
  1261. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1276. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1277. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  1278. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  1279. { "time": 5.2, "x": 0, "y": 0 }
  1280. ],
  1281. "scale": [
  1282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1285. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 5.2, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone11": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. {
  1307. "time": 0.1667,
  1308. "angle": 0,
  1309. "curve": [ 0.248, 0, 0.628, 0.52 ]
  1310. },
  1311. {
  1312. "time": 0.4333,
  1313. "angle": -0.64,
  1314. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1315. },
  1316. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1317. { "time": 1, "angle": 0, "curve": "stepped" },
  1318. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1319. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1320. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1321. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1322. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1323. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1324. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1325. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1326. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1327. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1328. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1329. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1330. { "time": 5.2, "angle": 0 }
  1331. ],
  1332. "translate": [
  1333. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1334. {
  1335. "time": 0.1667,
  1336. "x": 0,
  1337. "y": 0,
  1338. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1339. },
  1340. {
  1341. "time": 0.3333,
  1342. "x": 0.78,
  1343. "y": 0.01,
  1344. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1345. },
  1346. {
  1347. "time": 0.6667,
  1348. "x": 0.78,
  1349. "y": 0.01,
  1350. "curve": [ 0.25, 0, 0.75, 1 ]
  1351. },
  1352. {
  1353. "time": 1,
  1354. "x": 0.77,
  1355. "y": 0.95,
  1356. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1357. },
  1358. {
  1359. "time": 1.2667,
  1360. "x": 0,
  1361. "y": 0,
  1362. "curve": [ 0.25, 0, 0.75, 1 ]
  1363. },
  1364. {
  1365. "time": 1.5667,
  1366. "x": 0.77,
  1367. "y": 0.95,
  1368. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1369. },
  1370. {
  1371. "time": 1.8667,
  1372. "x": 0,
  1373. "y": 0,
  1374. "curve": [ 0.25, 0, 0.75, 1 ]
  1375. },
  1376. {
  1377. "time": 2.2,
  1378. "x": 0.77,
  1379. "y": 0.95,
  1380. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1381. },
  1382. {
  1383. "time": 2.5333,
  1384. "x": 0,
  1385. "y": 0,
  1386. "curve": [ 0.25, 0, 0.75, 1 ]
  1387. },
  1388. {
  1389. "time": 2.9333,
  1390. "x": 0.77,
  1391. "y": 0.95,
  1392. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1393. },
  1394. {
  1395. "time": 3.2333,
  1396. "x": 0,
  1397. "y": 0,
  1398. "curve": [ 0.25, 0, 0.75, 1 ]
  1399. },
  1400. {
  1401. "time": 3.5667,
  1402. "x": 0.77,
  1403. "y": 0.95,
  1404. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1405. },
  1406. {
  1407. "time": 3.9,
  1408. "x": 0,
  1409. "y": 0,
  1410. "curve": [ 0.25, 0, 0.75, 1 ]
  1411. },
  1412. {
  1413. "time": 4.2333,
  1414. "x": 0.77,
  1415. "y": 0.95,
  1416. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1417. },
  1418. {
  1419. "time": 4.5333,
  1420. "x": 0,
  1421. "y": 0,
  1422. "curve": [ 0.25, 0, 0.75, 1 ]
  1423. },
  1424. {
  1425. "time": 4.8667,
  1426. "x": 0.77,
  1427. "y": 0.95,
  1428. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1429. },
  1430. { "time": 5.2, "x": 0, "y": 0 }
  1431. ],
  1432. "scale": [
  1433. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1434. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1444. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1445. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1446. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1447. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1448. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1449. { "time": 5.2, "x": 1, "y": 1 }
  1450. ]
  1451. },
  1452. "bone12": {
  1453. "rotate": [
  1454. {
  1455. "time": 0,
  1456. "angle": 0,
  1457. "curve": [ 0.25, 0, 0.75, 1 ]
  1458. },
  1459. {
  1460. "time": 0.1667,
  1461. "angle": -5.39,
  1462. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1463. },
  1464. {
  1465. "time": 0.3333,
  1466. "angle": -15.7,
  1467. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1468. },
  1469. {
  1470. "time": 0.4333,
  1471. "angle": -8.33,
  1472. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1473. },
  1474. {
  1475. "time": 0.8333,
  1476. "angle": -6.1,
  1477. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1478. },
  1479. {
  1480. "time": 1.0667,
  1481. "angle": -21.44,
  1482. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1483. },
  1484. {
  1485. "time": 1.3,
  1486. "angle": -17.78,
  1487. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1488. },
  1489. {
  1490. "time": 1.9,
  1491. "angle": -6.1,
  1492. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1493. },
  1494. {
  1495. "time": 2.1667,
  1496. "angle": -21.44,
  1497. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1498. },
  1499. {
  1500. "time": 2.3667,
  1501. "angle": -17.78,
  1502. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1503. },
  1504. {
  1505. "time": 2.5667,
  1506. "angle": -6.1,
  1507. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1508. },
  1509. {
  1510. "time": 2.9,
  1511. "angle": -21.44,
  1512. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1513. },
  1514. {
  1515. "time": 3.0667,
  1516. "angle": -17.78,
  1517. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1518. },
  1519. {
  1520. "time": 3.2667,
  1521. "angle": -6.1,
  1522. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1523. },
  1524. {
  1525. "time": 3.5333,
  1526. "angle": -21.44,
  1527. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1528. },
  1529. {
  1530. "time": 3.6667,
  1531. "angle": -17.78,
  1532. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1533. },
  1534. {
  1535. "time": 3.9333,
  1536. "angle": -6.1,
  1537. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1538. },
  1539. {
  1540. "time": 4.2,
  1541. "angle": -21.44,
  1542. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1543. },
  1544. {
  1545. "time": 4.3667,
  1546. "angle": -17.78,
  1547. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1548. },
  1549. {
  1550. "time": 4.5667,
  1551. "angle": -6.1,
  1552. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1553. },
  1554. {
  1555. "time": 4.8333,
  1556. "angle": -21.44,
  1557. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1558. },
  1559. { "time": 5.0333, "angle": -17.78 }
  1560. ],
  1561. "translate": [
  1562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1564. {
  1565. "time": 0.8333,
  1566. "x": 0,
  1567. "y": 0,
  1568. "curve": [ 0.271, 0, 0.619, 0.41 ]
  1569. },
  1570. { "time": 0.9667, "x": 0.3, "y": 1.21 }
  1571. ],
  1572. "scale": [
  1573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1585. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 5.0333, "x": 1, "y": 1 }
  1587. ]
  1588. },
  1589. "bone13": {
  1590. "rotate": [
  1591. {
  1592. "time": 0,
  1593. "angle": 0,
  1594. "curve": [ 0.25, 0, 0.75, 1 ]
  1595. },
  1596. {
  1597. "time": 0.1667,
  1598. "angle": -5.39,
  1599. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1600. },
  1601. {
  1602. "time": 0.3333,
  1603. "angle": -4.58,
  1604. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1605. },
  1606. {
  1607. "time": 0.4333,
  1608. "angle": -13.27,
  1609. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1610. },
  1611. {
  1612. "time": 0.8333,
  1613. "angle": 0,
  1614. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1615. },
  1616. {
  1617. "time": 1.0667,
  1618. "angle": 1.04,
  1619. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1620. },
  1621. {
  1622. "time": 1.3,
  1623. "angle": -6.64,
  1624. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1625. },
  1626. {
  1627. "time": 1.9,
  1628. "angle": 0,
  1629. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1630. },
  1631. {
  1632. "time": 2.1667,
  1633. "angle": 1.04,
  1634. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1635. },
  1636. {
  1637. "time": 2.3667,
  1638. "angle": -6.64,
  1639. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1640. },
  1641. {
  1642. "time": 2.5667,
  1643. "angle": 0,
  1644. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1645. },
  1646. {
  1647. "time": 2.9,
  1648. "angle": 1.04,
  1649. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1650. },
  1651. {
  1652. "time": 3.0667,
  1653. "angle": -6.64,
  1654. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1655. },
  1656. {
  1657. "time": 3.2667,
  1658. "angle": 0,
  1659. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1660. },
  1661. {
  1662. "time": 3.5333,
  1663. "angle": 1.04,
  1664. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1665. },
  1666. {
  1667. "time": 3.6667,
  1668. "angle": -6.64,
  1669. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1670. },
  1671. {
  1672. "time": 3.9333,
  1673. "angle": 0,
  1674. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1675. },
  1676. {
  1677. "time": 4.2,
  1678. "angle": 1.04,
  1679. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1680. },
  1681. {
  1682. "time": 4.3667,
  1683. "angle": -6.64,
  1684. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1685. },
  1686. {
  1687. "time": 4.5667,
  1688. "angle": 0,
  1689. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1690. },
  1691. {
  1692. "time": 4.8333,
  1693. "angle": 1.04,
  1694. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1695. },
  1696. { "time": 5.0333, "angle": -6.64 }
  1697. ],
  1698. "translate": [
  1699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1709. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1710. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1711. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1712. { "time": 5.0333, "x": 0, "y": 0 }
  1713. ],
  1714. "scale": [
  1715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1717. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1718. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1719. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1720. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1721. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1722. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 5.0333, "x": 1, "y": 1 }
  1729. ]
  1730. },
  1731. "bone14": {
  1732. "rotate": [
  1733. {
  1734. "time": 0,
  1735. "angle": 0,
  1736. "curve": [ 0.25, 0, 0.75, 1 ]
  1737. },
  1738. {
  1739. "time": 0.1667,
  1740. "angle": 5.93,
  1741. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1742. },
  1743. {
  1744. "time": 0.3333,
  1745. "angle": 3.54,
  1746. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1747. },
  1748. {
  1749. "time": 0.4333,
  1750. "angle": -8.1,
  1751. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1752. },
  1753. {
  1754. "time": 0.8333,
  1755. "angle": -9.04,
  1756. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1757. },
  1758. {
  1759. "time": 1.0667,
  1760. "angle": 1.55,
  1761. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1762. },
  1763. {
  1764. "time": 1.3,
  1765. "angle": -4.95,
  1766. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1767. },
  1768. {
  1769. "time": 1.9,
  1770. "angle": -9.04,
  1771. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1772. },
  1773. {
  1774. "time": 2.1667,
  1775. "angle": 1.55,
  1776. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1777. },
  1778. {
  1779. "time": 2.3667,
  1780. "angle": -4.95,
  1781. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1782. },
  1783. {
  1784. "time": 2.5667,
  1785. "angle": -9.04,
  1786. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1787. },
  1788. {
  1789. "time": 2.9,
  1790. "angle": 1.55,
  1791. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1792. },
  1793. {
  1794. "time": 3.0667,
  1795. "angle": -4.95,
  1796. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1797. },
  1798. {
  1799. "time": 3.2667,
  1800. "angle": -9.04,
  1801. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1802. },
  1803. {
  1804. "time": 3.5333,
  1805. "angle": 1.55,
  1806. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1807. },
  1808. {
  1809. "time": 3.6667,
  1810. "angle": -4.95,
  1811. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1812. },
  1813. {
  1814. "time": 3.9333,
  1815. "angle": -9.04,
  1816. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1817. },
  1818. {
  1819. "time": 4.2,
  1820. "angle": 1.55,
  1821. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1822. },
  1823. {
  1824. "time": 4.3667,
  1825. "angle": -4.95,
  1826. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1827. },
  1828. {
  1829. "time": 4.5667,
  1830. "angle": -9.04,
  1831. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1832. },
  1833. {
  1834. "time": 4.8333,
  1835. "angle": 1.55,
  1836. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1837. },
  1838. { "time": 5.0333, "angle": -4.95 }
  1839. ],
  1840. "translate": [
  1841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1843. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1845. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1846. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1847. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1848. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1851. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1852. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1853. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1854. { "time": 5.0333, "x": 0, "y": 0 }
  1855. ],
  1856. "scale": [
  1857. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1858. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1859. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1870. { "time": 5.0333, "x": 1, "y": 1 }
  1871. ]
  1872. },
  1873. "bone15": {
  1874. "rotate": [
  1875. {
  1876. "time": 0,
  1877. "angle": 0,
  1878. "curve": [ 0.25, 0, 0.75, 1 ]
  1879. },
  1880. {
  1881. "time": 0.1667,
  1882. "angle": 5.93,
  1883. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1884. },
  1885. {
  1886. "time": 0.3333,
  1887. "angle": 3.54,
  1888. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1889. },
  1890. {
  1891. "time": 0.4333,
  1892. "angle": -8.1,
  1893. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1894. },
  1895. {
  1896. "time": 0.8333,
  1897. "angle": -0.32,
  1898. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1899. },
  1900. {
  1901. "time": 1.0667,
  1902. "angle": 7.24,
  1903. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1904. },
  1905. {
  1906. "time": 1.3,
  1907. "angle": -4.95,
  1908. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1909. },
  1910. {
  1911. "time": 1.9,
  1912. "angle": -0.32,
  1913. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1914. },
  1915. {
  1916. "time": 2.1667,
  1917. "angle": 7.24,
  1918. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1919. },
  1920. {
  1921. "time": 2.3667,
  1922. "angle": -4.95,
  1923. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1924. },
  1925. {
  1926. "time": 2.5667,
  1927. "angle": -0.32,
  1928. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1929. },
  1930. {
  1931. "time": 2.9,
  1932. "angle": 7.24,
  1933. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1934. },
  1935. {
  1936. "time": 3.0667,
  1937. "angle": -4.95,
  1938. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1939. },
  1940. {
  1941. "time": 3.2667,
  1942. "angle": -0.32,
  1943. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1944. },
  1945. {
  1946. "time": 3.5333,
  1947. "angle": 7.24,
  1948. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1949. },
  1950. {
  1951. "time": 3.6667,
  1952. "angle": -4.95,
  1953. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1954. },
  1955. {
  1956. "time": 3.9333,
  1957. "angle": -0.32,
  1958. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1959. },
  1960. {
  1961. "time": 4.2,
  1962. "angle": 7.24,
  1963. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1964. },
  1965. {
  1966. "time": 4.3667,
  1967. "angle": -4.95,
  1968. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1969. },
  1970. {
  1971. "time": 4.5667,
  1972. "angle": -0.32,
  1973. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1974. },
  1975. {
  1976. "time": 4.8333,
  1977. "angle": 7.24,
  1978. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1979. },
  1980. { "time": 5.0333, "angle": -4.95 }
  1981. ],
  1982. "translate": [
  1983. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1984. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 5.0333, "x": 0, "y": 0 }
  1997. ],
  1998. "scale": [
  1999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2009. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  2010. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2011. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 5.0333, "x": 1, "y": 1 }
  2013. ]
  2014. },
  2015. "bone16": {
  2016. "rotate": [
  2017. { "time": 0, "angle": 0, "curve": "stepped" },
  2018. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2019. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2020. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2021. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2022. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2023. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2024. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2025. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2026. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2027. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2028. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2029. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2030. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2031. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2032. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2033. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2034. { "time": 5.2, "angle": 0 }
  2035. ],
  2036. "translate": [
  2037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2052. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2053. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 5.2, "x": 0, "y": 0 }
  2055. ],
  2056. "scale": [
  2057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2059. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2060. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2061. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2062. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2063. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2064. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2065. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2068. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2069. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 5.2, "x": 1, "y": 1 }
  2075. ]
  2076. },
  2077. "bone17": {
  2078. "rotate": [
  2079. {
  2080. "time": 0,
  2081. "angle": 0,
  2082. "curve": [ 0.25, 0, 0.75, 1 ]
  2083. },
  2084. {
  2085. "time": 0.1667,
  2086. "angle": 1.58,
  2087. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2088. },
  2089. {
  2090. "time": 0.3333,
  2091. "angle": 1.54,
  2092. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2093. },
  2094. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2095. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2096. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2097. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2098. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2099. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2100. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2101. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2102. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2103. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2104. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2105. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2106. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2107. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2108. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2109. { "time": 5.2, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2117. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2121. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2125. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2129. { "time": 5.2, "x": 0, "y": 0 }
  2130. ],
  2131. "scale": [
  2132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 5.2, "x": 1, "y": 1 }
  2150. ]
  2151. },
  2152. "bone18": {
  2153. "rotate": [
  2154. {
  2155. "time": 0,
  2156. "angle": 0,
  2157. "curve": [ 0.25, 0, 0.75, 1 ]
  2158. },
  2159. {
  2160. "time": 0.1667,
  2161. "angle": 10.37,
  2162. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2163. },
  2164. {
  2165. "time": 0.3333,
  2166. "angle": 11.75,
  2167. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2168. },
  2169. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2170. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2171. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2172. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2173. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2174. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2175. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2176. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2177. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2178. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2179. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2180. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2181. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2182. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2183. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2184. { "time": 5.2, "angle": 6.96 }
  2185. ],
  2186. "translate": [
  2187. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2189. {
  2190. "time": 0.5,
  2191. "x": 0,
  2192. "y": 0,
  2193. "curve": [ 0.25, 0, 0.75, 1 ]
  2194. },
  2195. { "time": 0.6667, "x": 0.03, "y": -0.42 },
  2196. {
  2197. "time": 0.9667,
  2198. "x": 0,
  2199. "y": 0,
  2200. "curve": [ 0.25, 0, 0.75, 1 ]
  2201. },
  2202. { "time": 1.2667, "x": 0.03, "y": -0.42 },
  2203. {
  2204. "time": 1.5667,
  2205. "x": 0,
  2206. "y": 0,
  2207. "curve": [ 0.25, 0, 0.75, 1 ]
  2208. },
  2209. { "time": 1.8667, "x": 0.03, "y": -0.42 },
  2210. {
  2211. "time": 2.2,
  2212. "x": 0,
  2213. "y": 0,
  2214. "curve": [ 0.25, 0, 0.75, 1 ]
  2215. },
  2216. { "time": 2.5333, "x": 0.03, "y": -0.42 },
  2217. {
  2218. "time": 2.9333,
  2219. "x": 0,
  2220. "y": 0,
  2221. "curve": [ 0.25, 0, 0.75, 1 ]
  2222. },
  2223. { "time": 3.2333, "x": 0.03, "y": -0.42 },
  2224. {
  2225. "time": 3.5667,
  2226. "x": 0,
  2227. "y": 0,
  2228. "curve": [ 0.25, 0, 0.75, 1 ]
  2229. },
  2230. { "time": 3.9, "x": 0.03, "y": -0.42 },
  2231. {
  2232. "time": 4.2333,
  2233. "x": 0,
  2234. "y": 0,
  2235. "curve": [ 0.25, 0, 0.75, 1 ]
  2236. },
  2237. { "time": 4.5333, "x": 0.03, "y": -0.42 },
  2238. {
  2239. "time": 4.8667,
  2240. "x": 0,
  2241. "y": 0,
  2242. "curve": [ 0.25, 0, 0.75, 1 ]
  2243. },
  2244. { "time": 5.2, "x": 0.03, "y": -0.42 }
  2245. ],
  2246. "scale": [
  2247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2248. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2249. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 5.2, "x": 1, "y": 1 }
  2265. ]
  2266. },
  2267. "bone19": {
  2268. "rotate": [
  2269. {
  2270. "time": 0,
  2271. "angle": 0,
  2272. "curve": [ 0.25, 0, 0.75, 1 ]
  2273. },
  2274. {
  2275. "time": 0.1667,
  2276. "angle": -0.98,
  2277. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2278. },
  2279. {
  2280. "time": 0.3333,
  2281. "angle": 7.87,
  2282. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2283. },
  2284. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2285. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2286. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2287. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2288. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2289. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2290. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2291. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2292. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2293. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2294. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2295. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2296. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2297. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2298. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2299. { "time": 5.2, "angle": 6.96 }
  2300. ],
  2301. "translate": [
  2302. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2312. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2313. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2314. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2315. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 5.2, "x": 0, "y": 0 }
  2320. ],
  2321. "scale": [
  2322. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2323. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2324. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2325. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2326. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 5.2, "x": 1, "y": 1 }
  2340. ]
  2341. },
  2342. "bone20": {
  2343. "rotate": [
  2344. {
  2345. "time": 0,
  2346. "angle": 0,
  2347. "curve": [ 0.25, 0, 0.75, 1 ]
  2348. },
  2349. {
  2350. "time": 0.1667,
  2351. "angle": -0.98,
  2352. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2353. },
  2354. {
  2355. "time": 0.3333,
  2356. "angle": 7.87,
  2357. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2358. },
  2359. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2360. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2361. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2362. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2363. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2364. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2365. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2366. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2367. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2368. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2369. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2370. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2371. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2372. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2373. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2374. { "time": 5.2, "angle": 6.96 }
  2375. ],
  2376. "translate": [
  2377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2379. {
  2380. "time": 0.5,
  2381. "x": 0,
  2382. "y": 0,
  2383. "curve": [ 0.25, 0, 0.75, 1 ]
  2384. },
  2385. { "time": 0.6667, "x": 0.68, "y": -1.16 },
  2386. {
  2387. "time": 0.9667,
  2388. "x": 0,
  2389. "y": 0,
  2390. "curve": [ 0.25, 0, 0.75, 1 ]
  2391. },
  2392. { "time": 1.2667, "x": 0.68, "y": -1.16 },
  2393. {
  2394. "time": 1.5667,
  2395. "x": 0,
  2396. "y": 0,
  2397. "curve": [ 0.25, 0, 0.75, 1 ]
  2398. },
  2399. { "time": 1.8667, "x": 0.68, "y": -1.16 },
  2400. {
  2401. "time": 2.2,
  2402. "x": 0,
  2403. "y": 0,
  2404. "curve": [ 0.25, 0, 0.75, 1 ]
  2405. },
  2406. { "time": 2.5333, "x": 0.68, "y": -1.16 },
  2407. {
  2408. "time": 2.9333,
  2409. "x": 0,
  2410. "y": 0,
  2411. "curve": [ 0.25, 0, 0.75, 1 ]
  2412. },
  2413. { "time": 3.2333, "x": 0.68, "y": -1.16 },
  2414. {
  2415. "time": 3.5667,
  2416. "x": 0,
  2417. "y": 0,
  2418. "curve": [ 0.25, 0, 0.75, 1 ]
  2419. },
  2420. { "time": 3.9, "x": 0.68, "y": -1.16 },
  2421. {
  2422. "time": 4.2333,
  2423. "x": 0,
  2424. "y": 0,
  2425. "curve": [ 0.25, 0, 0.75, 1 ]
  2426. },
  2427. { "time": 4.5333, "x": 0.68, "y": -1.16 },
  2428. {
  2429. "time": 4.8667,
  2430. "x": 0,
  2431. "y": 0,
  2432. "curve": [ 0.25, 0, 0.75, 1 ]
  2433. },
  2434. { "time": 5.2, "x": 0.68, "y": -1.16 }
  2435. ],
  2436. "scale": [
  2437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2444. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2445. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2446. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 5.2, "x": 1, "y": 1 }
  2455. ]
  2456. },
  2457. "bone21": {
  2458. "rotate": [
  2459. {
  2460. "time": 0,
  2461. "angle": 0,
  2462. "curve": [ 0.25, 0, 0.75, 1 ]
  2463. },
  2464. {
  2465. "time": 0.1667,
  2466. "angle": -0.98,
  2467. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2468. },
  2469. {
  2470. "time": 0.3333,
  2471. "angle": 7.87,
  2472. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2473. },
  2474. { "time": 0.5, "angle": -3.24, "curve": "stepped" },
  2475. { "time": 0.6667, "angle": -3.24, "curve": "stepped" },
  2476. { "time": 0.9667, "angle": -3.24, "curve": "stepped" },
  2477. { "time": 1.2667, "angle": -3.24, "curve": "stepped" },
  2478. { "time": 1.5667, "angle": -3.24, "curve": "stepped" },
  2479. { "time": 1.8667, "angle": -3.24, "curve": "stepped" },
  2480. { "time": 2.2, "angle": -3.24, "curve": "stepped" },
  2481. { "time": 2.5333, "angle": -3.24, "curve": "stepped" },
  2482. { "time": 2.9333, "angle": -3.24, "curve": "stepped" },
  2483. { "time": 3.2333, "angle": -3.24, "curve": "stepped" },
  2484. { "time": 3.5667, "angle": -3.24, "curve": "stepped" },
  2485. { "time": 3.9, "angle": -3.24, "curve": "stepped" },
  2486. { "time": 4.2333, "angle": -3.24, "curve": "stepped" },
  2487. { "time": 4.5333, "angle": -3.24, "curve": "stepped" },
  2488. { "time": 4.8667, "angle": -3.24, "curve": "stepped" },
  2489. { "time": 5.2, "angle": -3.24 }
  2490. ],
  2491. "translate": [
  2492. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 5.2, "x": 0, "y": 0 }
  2510. ],
  2511. "scale": [
  2512. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 5.2, "x": 1, "y": 1 }
  2530. ]
  2531. },
  2532. "bone22": {
  2533. "rotate": [
  2534. { "time": 0, "angle": 0 },
  2535. { "time": 0.1667, "angle": 8.77 },
  2536. { "time": 0.3333, "angle": -3.46 }
  2537. ],
  2538. "translate": [
  2539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 0.1667, "x": 0, "y": 0 },
  2541. { "time": 0.3333, "x": 0.1, "y": -3.16, "curve": "stepped" },
  2542. { "time": 0.3667, "x": -17.34, "y": -116.72 }
  2543. ],
  2544. "scale": [
  2545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.3333, "x": 1, "y": 1 }
  2548. ]
  2549. },
  2550. "bone23": {
  2551. "rotate": [
  2552. { "time": 0, "angle": 0 },
  2553. { "time": 0.1667, "angle": 12.4 },
  2554. { "time": 0.3333, "angle": -82.61 }
  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 }
  2560. ],
  2561. "scale": [
  2562. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 0.3333, "x": 1, "y": 1 }
  2565. ]
  2566. },
  2567. "bone24": {
  2568. "rotate": [
  2569. { "time": 0, "angle": 0 },
  2570. { "time": 0.1667, "angle": 6.05 },
  2571. { "time": 0.3333, "angle": 18.34 }
  2572. ],
  2573. "translate": [
  2574. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 0.3333, "x": 0, "y": 0 }
  2577. ],
  2578. "scale": [
  2579. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 0.1667, "x": 1, "y": 1 },
  2581. { "time": 0.3333, "x": 0.8, "y": 1 }
  2582. ]
  2583. },
  2584. "bone25": {
  2585. "rotate": [
  2586. { "time": 0, "angle": 0 },
  2587. { "time": 0.1667, "angle": -4.88 },
  2588. { "time": 0.3333, "angle": 16.9 }
  2589. ],
  2590. "translate": [
  2591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2594. { "time": 0.3667, "x": -10.25, "y": -103.17 }
  2595. ],
  2596. "scale": [
  2597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 0.3333, "x": 1, "y": 1 }
  2600. ]
  2601. },
  2602. "bone26": {
  2603. "rotate": [
  2604. { "time": 0, "angle": 0 },
  2605. { "time": 0.1667, "angle": -11.29 },
  2606. { "time": 0.3333, "angle": -86.34 }
  2607. ],
  2608. "translate": [
  2609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2610. { "time": 0.1667, "x": 0, "y": 0 },
  2611. { "time": 0.3, "x": -1, "y": -2.13 },
  2612. { "time": 0.3333, "x": 0, "y": 0 }
  2613. ],
  2614. "scale": [
  2615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2616. { "time": 0.1667, "x": 1, "y": 1 },
  2617. { "time": 0.3333, "x": 0.8, "y": 1 }
  2618. ]
  2619. },
  2620. "bone27": {
  2621. "rotate": [
  2622. { "time": 0, "angle": 0 },
  2623. { "time": 0.1667, "angle": -4.69 },
  2624. { "time": 0.3333, "angle": 0 }
  2625. ],
  2626. "translate": [
  2627. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 0.3333, "x": 0, "y": 0 }
  2630. ],
  2631. "scale": [
  2632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2633. { "time": 0.1667, "x": 1, "y": 1 },
  2634. { "time": 0.3333, "x": 0.8, "y": 1 }
  2635. ]
  2636. },
  2637. "bone28": {
  2638. "rotate": [
  2639. { "time": 0, "angle": 0, "curve": "stepped" },
  2640. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2641. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2642. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2643. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2644. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2645. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2646. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2647. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2648. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2649. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2650. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2651. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2652. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2653. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2654. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2655. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2656. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2657. { "time": 5.2, "angle": 0 }
  2658. ],
  2659. "translate": [
  2660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2671. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2672. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2673. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 5.2, "x": 0, "y": 0 }
  2679. ],
  2680. "scale": [
  2681. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2682. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2683. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2685. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2686. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2696. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2697. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 5.2, "x": 1, "y": 1 }
  2700. ]
  2701. },
  2702. "bone29": {
  2703. "rotate": [
  2704. { "time": 0, "angle": 0 },
  2705. { "time": 0.1667, "angle": -10.45 },
  2706. { "time": 0.3333, "angle": 0 },
  2707. { "time": 0.5, "angle": -10.84 },
  2708. { "time": 0.6667, "angle": 0 },
  2709. { "time": 0.9667, "angle": -10.84 },
  2710. { "time": 1.2667, "angle": 0 },
  2711. { "time": 1.5667, "angle": -10.84 },
  2712. { "time": 1.8667, "angle": 0 },
  2713. { "time": 2.2, "angle": -10.84 },
  2714. { "time": 2.5333, "angle": 0 },
  2715. { "time": 2.9333, "angle": -10.84 },
  2716. { "time": 3.2333, "angle": 0 },
  2717. { "time": 3.5667, "angle": -10.84 },
  2718. { "time": 3.9, "angle": 0 },
  2719. { "time": 4.2333, "angle": -10.84 },
  2720. { "time": 4.5333, "angle": 0 }
  2721. ],
  2722. "translate": [
  2723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2724. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2725. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2729. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 4.5333, "x": 0, "y": 0 }
  2740. ],
  2741. "scale": [
  2742. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 4.5333, "x": 1, "y": 1 }
  2759. ]
  2760. },
  2761. "bone30": {
  2762. "rotate": [
  2763. { "time": 0, "angle": 0 },
  2764. { "time": 0.1667, "angle": 16.94 },
  2765. { "time": 0.3333, "angle": 0 },
  2766. { "time": 0.5, "angle": 24.75 },
  2767. { "time": 0.6667, "angle": 0 },
  2768. { "time": 0.9667, "angle": 24.75 },
  2769. { "time": 1.2667, "angle": 0 },
  2770. { "time": 1.5667, "angle": 24.75 },
  2771. { "time": 1.8667, "angle": 0 },
  2772. { "time": 2.2, "angle": 24.75 },
  2773. { "time": 2.5333, "angle": 0 },
  2774. { "time": 2.9333, "angle": 24.75 },
  2775. { "time": 3.2333, "angle": 0 },
  2776. { "time": 3.5667, "angle": 24.75 },
  2777. { "time": 3.9, "angle": 0 },
  2778. { "time": 4.2333, "angle": 24.75 },
  2779. { "time": 4.5333, "angle": 0 }
  2780. ],
  2781. "translate": [
  2782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2783. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2784. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 4.5333, "x": 0, "y": 0 }
  2799. ],
  2800. "scale": [
  2801. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2814. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2815. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 4.5333, "x": 1, "y": 1 }
  2818. ]
  2819. },
  2820. "bone31": {
  2821. "rotate": [
  2822. { "time": 0, "angle": 0, "curve": "stepped" },
  2823. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2824. { "time": 0.3333, "angle": 0 },
  2825. { "time": 0.5, "angle": -7.22 },
  2826. { "time": 0.6667, "angle": 0 },
  2827. { "time": 0.9667, "angle": -7.22 },
  2828. { "time": 1.2667, "angle": 0 },
  2829. { "time": 1.5667, "angle": -7.22 },
  2830. { "time": 1.8667, "angle": 0 },
  2831. { "time": 2.2, "angle": -7.22 },
  2832. { "time": 2.5333, "angle": 0 },
  2833. { "time": 2.9333, "angle": -7.22 },
  2834. { "time": 3.2333, "angle": 0 },
  2835. { "time": 3.5667, "angle": -7.22 },
  2836. { "time": 3.9, "angle": 0 },
  2837. { "time": 4.2333, "angle": -7.22 },
  2838. { "time": 4.5333, "angle": 0 }
  2839. ],
  2840. "translate": [
  2841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2843. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2844. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2845. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2846. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2847. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 4.5333, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 4.5333, "x": 1, "y": 1 }
  2877. ]
  2878. },
  2879. "bone32": {
  2880. "rotate": [
  2881. { "time": 0, "angle": 0 }
  2882. ],
  2883. "translate": [
  2884. { "time": 0, "x": 164.76, "y": 0 }
  2885. ],
  2886. "scale": [
  2887. { "time": 0, "x": 1, "y": 1 }
  2888. ]
  2889. },
  2890. "bone33": {
  2891. "rotate": [
  2892. { "time": 0, "angle": 0 }
  2893. ],
  2894. "translate": [
  2895. { "time": 0, "x": 0, "y": 0 }
  2896. ],
  2897. "scale": [
  2898. { "time": 0, "x": 1, "y": 1 }
  2899. ]
  2900. },
  2901. "bone34": {
  2902. "rotate": [
  2903. { "time": 0, "angle": 0 }
  2904. ],
  2905. "translate": [
  2906. { "time": 0, "x": 0, "y": 0 }
  2907. ],
  2908. "scale": [
  2909. { "time": 0, "x": 1, "y": 1 }
  2910. ]
  2911. },
  2912. "bone49": {
  2913. "rotate": [
  2914. { "time": 0, "angle": 0, "curve": "stepped" },
  2915. { "time": 0.1667, "angle": 0 },
  2916. { "time": 0.3333, "angle": -17.86 },
  2917. { "time": 0.5, "angle": -5.28 },
  2918. { "time": 0.6667, "angle": -5.85 },
  2919. { "time": 0.9667, "angle": -5.28 },
  2920. { "time": 1.2667, "angle": -5.85 },
  2921. { "time": 1.5667, "angle": -5.28 },
  2922. { "time": 1.8667, "angle": -5.85 },
  2923. { "time": 2.2, "angle": -5.28 },
  2924. { "time": 2.5333, "angle": -5.85 },
  2925. { "time": 2.9333, "angle": -5.28 },
  2926. { "time": 3.2333, "angle": -5.85 },
  2927. { "time": 3.5667, "angle": -5.28 },
  2928. { "time": 3.9, "angle": -5.85 },
  2929. { "time": 4.2333, "angle": -5.28 },
  2930. { "time": 4.5333, "angle": -5.85 }
  2931. ],
  2932. "translate": [
  2933. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2940. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2941. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2942. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2943. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2944. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2945. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2948. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2949. { "time": 4.5333, "x": 0, "y": 0 }
  2950. ],
  2951. "scale": [
  2952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2953. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2954. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2955. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2958. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2959. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2960. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2961. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2963. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2964. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2965. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2966. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2967. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 4.5333, "x": 1, "y": 1 }
  2969. ]
  2970. },
  2971. "bone50": {
  2972. "rotate": [
  2973. { "time": 0, "angle": 0, "curve": "stepped" },
  2974. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2975. { "time": 0.3333, "angle": 0 },
  2976. { "time": 0.5, "angle": -16.77 },
  2977. { "time": 0.6667, "angle": -26.69 },
  2978. { "time": 0.9667, "angle": -16.77 },
  2979. { "time": 1.2667, "angle": -26.69 },
  2980. { "time": 1.5667, "angle": -16.77 },
  2981. { "time": 1.8667, "angle": -26.69 },
  2982. { "time": 2.2, "angle": -16.77 },
  2983. { "time": 2.5333, "angle": -26.69 },
  2984. { "time": 2.9333, "angle": -16.77 },
  2985. { "time": 3.2333, "angle": -26.69 },
  2986. { "time": 3.5667, "angle": -16.77 },
  2987. { "time": 3.9, "angle": -26.69 },
  2988. { "time": 4.2333, "angle": -16.77 },
  2989. { "time": 4.5333, "angle": -26.69 }
  2990. ],
  2991. "translate": [
  2992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2993. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2994. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2995. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2996. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2997. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2999. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  3000. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3001. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  3002. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3003. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3005. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 4.5333, "x": 0, "y": 0 }
  3009. ],
  3010. "scale": [
  3011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3012. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3013. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3014. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3015. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3017. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3018. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3019. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3020. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3021. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3022. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3023. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3024. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 4.5333, "x": 1, "y": 1 }
  3028. ]
  3029. },
  3030. "bone52": {
  3031. "rotate": [
  3032. { "time": 0, "angle": 0, "curve": "stepped" },
  3033. {
  3034. "time": 0.1667,
  3035. "angle": 0,
  3036. "curve": [ 0.25, 0, 0.75, 1 ]
  3037. },
  3038. {
  3039. "time": 0.3333,
  3040. "angle": 31.86,
  3041. "curve": [ 0.25, 0, 0.75, 1 ]
  3042. },
  3043. {
  3044. "time": 0.5,
  3045. "angle": 28.62,
  3046. "curve": [ 0.25, 0, 0.75, 1 ]
  3047. },
  3048. {
  3049. "time": 0.6667,
  3050. "angle": 55.03,
  3051. "curve": [ 0.25, 0, 0.75, 1 ]
  3052. },
  3053. {
  3054. "time": 0.9667,
  3055. "angle": 28.62,
  3056. "curve": [ 0.25, 0, 0.75, 1 ]
  3057. },
  3058. {
  3059. "time": 1.2667,
  3060. "angle": 55.03,
  3061. "curve": [ 0.25, 0, 0.75, 1 ]
  3062. },
  3063. {
  3064. "time": 1.5667,
  3065. "angle": 28.62,
  3066. "curve": [ 0.25, 0, 0.75, 1 ]
  3067. },
  3068. {
  3069. "time": 1.8667,
  3070. "angle": 55.03,
  3071. "curve": [ 0.25, 0, 0.75, 1 ]
  3072. },
  3073. {
  3074. "time": 2.2,
  3075. "angle": 28.62,
  3076. "curve": [ 0.25, 0, 0.75, 1 ]
  3077. },
  3078. {
  3079. "time": 2.5333,
  3080. "angle": 55.03,
  3081. "curve": [ 0.25, 0, 0.75, 1 ]
  3082. },
  3083. {
  3084. "time": 2.9333,
  3085. "angle": 28.62,
  3086. "curve": [ 0.25, 0, 0.75, 1 ]
  3087. },
  3088. {
  3089. "time": 3.2333,
  3090. "angle": 55.03,
  3091. "curve": [ 0.25, 0, 0.75, 1 ]
  3092. },
  3093. {
  3094. "time": 3.5667,
  3095. "angle": 28.62,
  3096. "curve": [ 0.25, 0, 0.75, 1 ]
  3097. },
  3098. {
  3099. "time": 3.9,
  3100. "angle": 55.03,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. {
  3104. "time": 4.2333,
  3105. "angle": 28.62,
  3106. "curve": [ 0.25, 0, 0.75, 1 ]
  3107. },
  3108. { "time": 4.5333, "angle": 55.03 }
  3109. ]
  3110. },
  3111. "bone53": {
  3112. "rotate": [
  3113. { "time": 0, "angle": 0, "curve": "stepped" },
  3114. {
  3115. "time": 0.1667,
  3116. "angle": 0,
  3117. "curve": [ 0.25, 0, 0.75, 1 ]
  3118. },
  3119. {
  3120. "time": 0.3333,
  3121. "angle": 15.04,
  3122. "curve": [ 0.25, 0, 0.75, 1 ]
  3123. },
  3124. {
  3125. "time": 0.5,
  3126. "angle": -12.72,
  3127. "curve": [ 0.25, 0, 0.75, 1 ]
  3128. },
  3129. {
  3130. "time": 0.6667,
  3131. "angle": 8.84,
  3132. "curve": [ 0.25, 0, 0.75, 1 ]
  3133. },
  3134. {
  3135. "time": 0.9667,
  3136. "angle": -19.46,
  3137. "curve": [ 0.25, 0, 0.75, 1 ]
  3138. },
  3139. {
  3140. "time": 1.2667,
  3141. "angle": 8.84,
  3142. "curve": [ 0.25, 0, 0.75, 1 ]
  3143. },
  3144. {
  3145. "time": 1.5667,
  3146. "angle": -19.46,
  3147. "curve": [ 0.25, 0, 0.75, 1 ]
  3148. },
  3149. {
  3150. "time": 1.8667,
  3151. "angle": 8.84,
  3152. "curve": [ 0.25, 0, 0.75, 1 ]
  3153. },
  3154. {
  3155. "time": 2.2,
  3156. "angle": -19.46,
  3157. "curve": [ 0.25, 0, 0.75, 1 ]
  3158. },
  3159. {
  3160. "time": 2.5333,
  3161. "angle": 8.84,
  3162. "curve": [ 0.25, 0, 0.75, 1 ]
  3163. },
  3164. {
  3165. "time": 2.9333,
  3166. "angle": -19.46,
  3167. "curve": [ 0.25, 0, 0.75, 1 ]
  3168. },
  3169. {
  3170. "time": 3.2333,
  3171. "angle": 8.84,
  3172. "curve": [ 0.25, 0, 0.75, 1 ]
  3173. },
  3174. {
  3175. "time": 3.5667,
  3176. "angle": -19.46,
  3177. "curve": [ 0.25, 0, 0.75, 1 ]
  3178. },
  3179. {
  3180. "time": 3.9,
  3181. "angle": 8.84,
  3182. "curve": [ 0.25, 0, 0.75, 1 ]
  3183. },
  3184. {
  3185. "time": 4.2333,
  3186. "angle": -19.46,
  3187. "curve": [ 0.25, 0, 0.75, 1 ]
  3188. },
  3189. { "time": 4.5333, "angle": 8.84 }
  3190. ]
  3191. },
  3192. "bone55": {
  3193. "rotate": [
  3194. { "time": 0, "angle": 0 },
  3195. { "time": 0.1667, "angle": -10.08 },
  3196. { "time": 0.3333, "angle": 0 },
  3197. { "time": 0.5, "angle": -7.7 },
  3198. { "time": 0.6667, "angle": 0 },
  3199. { "time": 0.9667, "angle": -7.7 },
  3200. { "time": 1.2667, "angle": 0 },
  3201. { "time": 1.5667, "angle": -7.7 },
  3202. { "time": 1.8667, "angle": 0 },
  3203. { "time": 2.2, "angle": -7.7 },
  3204. { "time": 2.5333, "angle": 0 },
  3205. { "time": 2.9333, "angle": -7.7 },
  3206. { "time": 3.2333, "angle": 0 },
  3207. { "time": 3.5667, "angle": -7.7 },
  3208. { "time": 3.9, "angle": 0 },
  3209. { "time": 4.2333, "angle": -7.7 },
  3210. { "time": 4.5333, "angle": 0 }
  3211. ],
  3212. "translate": [
  3213. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 0.3333, "x": 0, "y": 0 },
  3216. { "time": 0.5, "x": 0.55, "y": -0.72 },
  3217. { "time": 0.6667, "x": 0, "y": 0 },
  3218. { "time": 0.9667, "x": 0.55, "y": -0.72 },
  3219. { "time": 1.2667, "x": 0, "y": 0 },
  3220. { "time": 1.5667, "x": 0.55, "y": -0.72 },
  3221. { "time": 1.8667, "x": 0, "y": 0 },
  3222. { "time": 2.2, "x": 0.55, "y": -0.72 },
  3223. { "time": 2.5333, "x": 0, "y": 0 },
  3224. { "time": 2.9333, "x": 0.55, "y": -0.72 },
  3225. { "time": 3.2333, "x": 0, "y": 0 },
  3226. { "time": 3.5667, "x": 0.55, "y": -0.72 },
  3227. { "time": 3.9, "x": 0, "y": 0 },
  3228. { "time": 4.2333, "x": 0.55, "y": -0.72 },
  3229. { "time": 4.5333, "x": 0, "y": 0 }
  3230. ],
  3231. "scale": [
  3232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3234. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3241. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3242. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3244. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3245. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3247. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 4.5333, "x": 1, "y": 1 }
  3249. ]
  3250. },
  3251. "bone56": {
  3252. "rotate": [
  3253. { "time": 0, "angle": 0 },
  3254. { "time": 0.1667, "angle": 4.51 },
  3255. { "time": 0.3333, "angle": 0 },
  3256. { "time": 0.5, "angle": 7.83 },
  3257. { "time": 0.6667, "angle": 0 },
  3258. { "time": 0.9667, "angle": 7.83 },
  3259. { "time": 1.2667, "angle": 0 },
  3260. { "time": 1.5667, "angle": 7.83 },
  3261. { "time": 1.8667, "angle": 0 },
  3262. { "time": 2.2, "angle": 7.83 },
  3263. { "time": 2.5333, "angle": 0 },
  3264. { "time": 2.9333, "angle": 7.83 },
  3265. { "time": 3.2333, "angle": 0 },
  3266. { "time": 3.5667, "angle": 7.83 },
  3267. { "time": 3.9, "angle": 0 },
  3268. { "time": 4.2333, "angle": 7.83 },
  3269. { "time": 4.5333, "angle": 0 }
  3270. ],
  3271. "translate": [
  3272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3273. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 0.3333, "x": 0, "y": 0 },
  3275. { "time": 0.5, "x": 0.1, "y": 0.77 },
  3276. { "time": 0.6667, "x": 0, "y": 0 },
  3277. { "time": 0.9667, "x": 0.1, "y": 0.77 },
  3278. { "time": 1.2667, "x": 0, "y": 0 },
  3279. { "time": 1.5667, "x": 0.1, "y": 0.77 },
  3280. { "time": 1.8667, "x": 0, "y": 0 },
  3281. { "time": 2.2, "x": 0.1, "y": 0.77 },
  3282. { "time": 2.5333, "x": 0, "y": 0 },
  3283. { "time": 2.9333, "x": 0.1, "y": 0.77 },
  3284. { "time": 3.2333, "x": 0, "y": 0 },
  3285. { "time": 3.5667, "x": 0.1, "y": 0.77 },
  3286. { "time": 3.9, "x": 0, "y": 0 },
  3287. { "time": 4.2333, "x": 0.1, "y": 0.77 },
  3288. { "time": 4.5333, "x": 0, "y": 0 }
  3289. ],
  3290. "scale": [
  3291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3292. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3293. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3303. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 4.5333, "x": 1, "y": 1 }
  3308. ]
  3309. },
  3310. "bone35": {
  3311. "translate": [
  3312. { "time": 0, "x": -309.38, "y": 1.15 }
  3313. ],
  3314. "scale": [
  3315. { "time": 0, "x": 1.1, "y": 1.1 }
  3316. ]
  3317. },
  3318. "bone58": {
  3319. "rotate": [
  3320. { "time": 0, "angle": 0, "curve": "stepped" },
  3321. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3322. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  3323. { "time": 3.2667, "angle": 0 }
  3324. ],
  3325. "translate": [
  3326. { "time": 0, "x": 0, "y": -1.13 },
  3327. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3328. { "time": 0.2, "x": 0, "y": 0 },
  3329. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  3330. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  3331. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3332. { "time": 3.0333, "x": 0, "y": 0 },
  3333. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  3334. ],
  3335. "scale": [
  3336. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3337. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3338. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3339. { "time": 3.2667, "x": 1, "y": 1 }
  3340. ]
  3341. },
  3342. "bone57": {
  3343. "rotate": [
  3344. { "time": 0, "angle": 0, "curve": "stepped" },
  3345. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3346. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  3347. { "time": 3.2667, "angle": 0 }
  3348. ],
  3349. "translate": [
  3350. { "time": 0, "x": 0, "y": -1.13 },
  3351. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 0.2, "x": 0, "y": 0 },
  3353. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  3354. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  3355. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 3.0333, "x": 0, "y": 0 },
  3357. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  3358. ],
  3359. "scale": [
  3360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 3.2667, "x": 1, "y": 1 }
  3364. ]
  3365. },
  3366. "bone36": {
  3367. "translate": [
  3368. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3369. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3370. { "time": 0.5, "x": 0, "y": 0 }
  3371. ],
  3372. "scale": [
  3373. { "time": 0.1667, "x": 1.5, "y": 1.5 },
  3374. { "time": 0.3333, "x": 0.9, "y": 0.9 },
  3375. { "time": 0.5, "x": 1, "y": 1 }
  3376. ]
  3377. },
  3378. "bone37": {
  3379. "translate": [
  3380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3381. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3382. { "time": 0.8, "x": 0, "y": 0 }
  3383. ],
  3384. "scale": [
  3385. { "time": 0.5, "x": 1.5, "y": 1.5 },
  3386. { "time": 0.6667, "x": 0.9, "y": 0.9 },
  3387. { "time": 0.8, "x": 1, "y": 1 }
  3388. ]
  3389. },
  3390. "bone38": {
  3391. "translate": [
  3392. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3393. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 1.1667, "x": 0, "y": 0 }
  3395. ],
  3396. "scale": [
  3397. { "time": 0.8333, "x": 1.5, "y": 1.5 },
  3398. { "time": 1, "x": 0.9, "y": 0.9 },
  3399. { "time": 1.1667, "x": 1, "y": 1 }
  3400. ]
  3401. },
  3402. "bone39": {
  3403. "translate": [
  3404. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3405. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3406. { "time": 1.4333, "x": 0, "y": 0 }
  3407. ],
  3408. "scale": [
  3409. { "time": 1.1, "x": 1.5, "y": 1.5 },
  3410. { "time": 1.2667, "x": 0.9, "y": 0.9 },
  3411. { "time": 1.4333, "x": 1, "y": 1 }
  3412. ]
  3413. },
  3414. "bone40": {
  3415. "translate": [
  3416. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  3417. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3418. { "time": 1.6667, "x": 0, "y": 0 }
  3419. ],
  3420. "scale": [
  3421. { "time": 1.3667, "x": 1.5, "y": 1.5 },
  3422. { "time": 1.5333, "x": 0.9, "y": 0.9 },
  3423. { "time": 1.6667, "x": 1, "y": 1 }
  3424. ]
  3425. },
  3426. "bone41": {
  3427. "translate": [
  3428. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 1.9667, "x": 0, "y": 0 }
  3431. ],
  3432. "scale": [
  3433. { "time": 1.6333, "x": 1.5, "y": 1.5 },
  3434. { "time": 1.8, "x": 0.9, "y": 0.9 },
  3435. { "time": 1.9667, "x": 1, "y": 1 }
  3436. ]
  3437. },
  3438. "bone42": {
  3439. "translate": [
  3440. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 2.3, "x": 0, "y": 0 }
  3443. ],
  3444. "scale": [
  3445. { "time": 1.9667, "x": 1.5, "y": 1.5 },
  3446. { "time": 2.1333, "x": 0.9, "y": 0.9 },
  3447. { "time": 2.3, "x": 1, "y": 1 }
  3448. ]
  3449. },
  3450. "bone43": {
  3451. "translate": [
  3452. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3453. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3454. { "time": 2.8333, "x": 0, "y": 0 }
  3455. ],
  3456. "scale": [
  3457. { "time": 2.5, "x": 1.5, "y": 1.5 },
  3458. { "time": 2.6667, "x": 0.9, "y": 0.9 },
  3459. { "time": 2.8333, "x": 1, "y": 1 }
  3460. ]
  3461. },
  3462. "bone44": {
  3463. "translate": [
  3464. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  3465. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  3466. { "time": 3.1667, "x": 0, "y": 0 }
  3467. ],
  3468. "scale": [
  3469. { "time": 2.8667, "x": 1.5, "y": 1.5 },
  3470. { "time": 3.0333, "x": 0.9, "y": 0.9 },
  3471. { "time": 3.1667, "x": 1, "y": 1 }
  3472. ]
  3473. },
  3474. "bone45": {
  3475. "translate": [
  3476. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 3.9667, "x": 0, "y": 0 }
  3479. ],
  3480. "scale": [
  3481. { "time": 3.3333, "x": 2, "y": 2 },
  3482. { "time": 3.5, "x": 0.9, "y": 0.9 },
  3483. { "time": 3.6667, "x": 1, "y": 1 }
  3484. ]
  3485. },
  3486. "bone46": {
  3487. "translate": [
  3488. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3489. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  3490. { "time": 4.2, "x": 0, "y": 0 }
  3491. ],
  3492. "scale": [
  3493. { "time": 3.8667, "x": 2, "y": 2 },
  3494. { "time": 4.0333, "x": 0.9, "y": 0.9 },
  3495. { "time": 4.2, "x": 1, "y": 1 }
  3496. ]
  3497. },
  3498. "bone47": {
  3499. "translate": [
  3500. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  3501. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  3502. { "time": 4.7, "x": 0, "y": 0 }
  3503. ],
  3504. "scale": [
  3505. { "time": 4.3667, "x": 2, "y": 2 },
  3506. { "time": 4.5333, "x": 0.9, "y": 0.9 },
  3507. { "time": 4.7, "x": 1, "y": 1 }
  3508. ]
  3509. }
  3510. },
  3511. "deform": {
  3512. "default": {
  3513. "dang": {
  3514. "dang": [
  3515. {
  3516. "time": 0,
  3517. "vertices": [ -0.01262, -0.88391 ]
  3518. },
  3519. {
  3520. "time": 0.1667,
  3521. "vertices": [ -0.01262, -0.88391, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643 ]
  3522. },
  3523. {
  3524. "time": 0.3333,
  3525. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3526. },
  3527. {
  3528. "time": 0.5,
  3529. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3530. },
  3531. {
  3532. "time": 0.6667,
  3533. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3534. },
  3535. {
  3536. "time": 0.9667,
  3537. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3538. },
  3539. {
  3540. "time": 1.2667,
  3541. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3542. },
  3543. {
  3544. "time": 1.5667,
  3545. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3546. },
  3547. {
  3548. "time": 1.8667,
  3549. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3550. },
  3551. {
  3552. "time": 2.2,
  3553. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3554. },
  3555. {
  3556. "time": 2.5333,
  3557. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3558. },
  3559. {
  3560. "time": 2.9333,
  3561. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3562. },
  3563. {
  3564. "time": 3.2333,
  3565. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3566. },
  3567. {
  3568. "time": 3.5667,
  3569. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3570. },
  3571. {
  3572. "time": 3.9,
  3573. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3574. },
  3575. {
  3576. "time": 4.2333,
  3577. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3578. },
  3579. {
  3580. "time": 4.5333,
  3581. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3582. },
  3583. {
  3584. "time": 4.8667,
  3585. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3586. },
  3587. {
  3588. "time": 5.2,
  3589. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3590. }
  3591. ]
  3592. },
  3593. "lingzi": {
  3594. "lingzi": [
  3595. { "time": 0.1667 },
  3596. {
  3597. "time": 0.4,
  3598. "offset": 2,
  3599. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3600. },
  3601. {
  3602. "time": 0.6667,
  3603. "offset": 6,
  3604. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3605. },
  3606. {
  3607. "time": 0.9667,
  3608. "offset": 2,
  3609. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3610. },
  3611. {
  3612. "time": 1.2667,
  3613. "offset": 6,
  3614. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3615. },
  3616. {
  3617. "time": 1.5667,
  3618. "offset": 2,
  3619. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3620. },
  3621. {
  3622. "time": 1.8667,
  3623. "offset": 6,
  3624. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3625. },
  3626. {
  3627. "time": 2.1667,
  3628. "offset": 2,
  3629. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3630. },
  3631. {
  3632. "time": 2.4667,
  3633. "offset": 6,
  3634. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3635. "curve": "stepped"
  3636. },
  3637. {
  3638. "time": 2.5333,
  3639. "offset": 6,
  3640. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3641. },
  3642. {
  3643. "time": 2.9,
  3644. "offset": 2,
  3645. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3646. },
  3647. {
  3648. "time": 3.1667,
  3649. "offset": 6,
  3650. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3651. "curve": "stepped"
  3652. },
  3653. {
  3654. "time": 3.2333,
  3655. "offset": 6,
  3656. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3657. },
  3658. {
  3659. "time": 3.5333,
  3660. "offset": 2,
  3661. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3662. },
  3663. {
  3664. "time": 3.7667,
  3665. "offset": 6,
  3666. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3667. "curve": "stepped"
  3668. },
  3669. {
  3670. "time": 3.9,
  3671. "offset": 6,
  3672. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3673. },
  3674. {
  3675. "time": 4.2,
  3676. "offset": 2,
  3677. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3678. },
  3679. {
  3680. "time": 4.4667,
  3681. "offset": 6,
  3682. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3683. "curve": "stepped"
  3684. },
  3685. {
  3686. "time": 4.5333,
  3687. "offset": 6,
  3688. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3689. }
  3690. ]
  3691. },
  3692. "shangyi": {
  3693. "shangyi": [
  3694. { "time": 0.1667 },
  3695. {
  3696. "time": 0.3333,
  3697. "offset": 46,
  3698. "vertices": [ 0.31957, 1.64477, 0.25944, 1.65532, -2.0E-5, -1.84968, 0.06747, -1.84845, -2.0E-5, -1.84968, 0.06747, -1.84845 ]
  3699. },
  3700. {
  3701. "time": 0.5,
  3702. "offset": 28,
  3703. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3704. },
  3705. {
  3706. "time": 0.6667,
  3707. "offset": 24,
  3708. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3709. },
  3710. {
  3711. "time": 0.9667,
  3712. "offset": 28,
  3713. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3714. },
  3715. {
  3716. "time": 1.2667,
  3717. "offset": 24,
  3718. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3719. },
  3720. {
  3721. "time": 1.5667,
  3722. "offset": 28,
  3723. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3724. },
  3725. {
  3726. "time": 1.8667,
  3727. "offset": 24,
  3728. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3729. },
  3730. {
  3731. "time": 2.2,
  3732. "offset": 28,
  3733. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3734. },
  3735. {
  3736. "time": 2.5333,
  3737. "offset": 24,
  3738. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3739. },
  3740. {
  3741. "time": 2.9333,
  3742. "offset": 28,
  3743. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3744. },
  3745. {
  3746. "time": 3.2333,
  3747. "offset": 24,
  3748. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3749. },
  3750. {
  3751. "time": 3.5667,
  3752. "offset": 28,
  3753. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3754. },
  3755. {
  3756. "time": 3.9,
  3757. "offset": 24,
  3758. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3759. },
  3760. {
  3761. "time": 4.2333,
  3762. "offset": 28,
  3763. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3764. },
  3765. {
  3766. "time": 4.5333,
  3767. "offset": 24,
  3768. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3769. }
  3770. ]
  3771. },
  3772. "youjiao1": {
  3773. "youjiao1": [
  3774. {
  3775. "time": 0,
  3776. "offset": 68,
  3777. "vertices": [ 6.47365, -1.54266, 4.9081, -0.96003, 3.85265, 0.07049 ]
  3778. }
  3779. ]
  3780. },
  3781. "youshou": {
  3782. "youshou": [
  3783. { "time": 0.1667 },
  3784. {
  3785. "time": 0.3,
  3786. "offset": 46,
  3787. "vertices": [ -0.72944, -4.27695, 4.49204, -2.14155, -2.00895, -3.63001, 3.24948, -3.12452, -3.24054, -2.56062, 1.55338, -3.91862 ]
  3788. }
  3789. ]
  3790. },
  3791. "zuoshou": {
  3792. "zuoshou": [
  3793. { "time": 0, "curve": "stepped" },
  3794. { "time": 0.1667 },
  3795. {
  3796. "time": 0.3,
  3797. "offset": 48,
  3798. "vertices": [ -4.09583, -4.81184, 2.40179, -5.84451, -5.10458, -4.55464, 1.71119, -6.62344, -5.71799, -4.02365, 0.95828, -6.92514, 2.08435, -2.25566 ]
  3799. }
  3800. ]
  3801. }
  3802. }
  3803. }
  3804. },
  3805. "stand2": {
  3806. "slots": {
  3807. "biyan": {
  3808. "attachment": [
  3809. { "time": 0.1, "name": "biyan" },
  3810. { "time": 0.2, "name": null },
  3811. { "time": 2.9, "name": "biyan" },
  3812. { "time": 3.0333, "name": null }
  3813. ]
  3814. },
  3815. "gaoguang zuo": {
  3816. "attachment": [
  3817. { "time": 0.1, "name": null },
  3818. { "time": 0.2, "name": "gaoguang zuo" },
  3819. { "time": 2.9, "name": null },
  3820. { "time": 3.0333, "name": "gaoguang zuo" }
  3821. ]
  3822. },
  3823. "gaoguangyou": {
  3824. "attachment": [
  3825. { "time": 0.1, "name": null },
  3826. { "time": 0.2, "name": "gaoguangyou" },
  3827. { "time": 2.9, "name": null },
  3828. { "time": 3.0333, "name": "gaoguangyou" }
  3829. ]
  3830. },
  3831. "yanbai zuo": {
  3832. "attachment": [
  3833. { "time": 0.1, "name": null },
  3834. { "time": 0.2, "name": "yanbai zuo" },
  3835. { "time": 2.9, "name": null },
  3836. { "time": 3.0333, "name": "yanbai zuo" }
  3837. ]
  3838. },
  3839. "yanbaiyou": {
  3840. "attachment": [
  3841. { "time": 0.1, "name": null },
  3842. { "time": 0.2, "name": "yanbaiyou" },
  3843. { "time": 2.9, "name": null },
  3844. { "time": 3.0333, "name": "yanbaiyou" }
  3845. ]
  3846. },
  3847. "yanzhu you": {
  3848. "attachment": [
  3849. { "time": 0.1, "name": null },
  3850. { "time": 0.2, "name": "yanzhu you" },
  3851. { "time": 2.9, "name": null },
  3852. { "time": 3.0333, "name": "yanzhu you" }
  3853. ]
  3854. },
  3855. "yanzhu zuo": {
  3856. "attachment": [
  3857. { "time": 0.1, "name": null },
  3858. { "time": 0.2, "name": "yanzhu zuo" },
  3859. { "time": 2.9, "name": null },
  3860. { "time": 3.0333, "name": "yanzhu zuo" }
  3861. ]
  3862. },
  3863. "youjiao": {
  3864. "attachment": [
  3865. { "time": 0, "name": null }
  3866. ]
  3867. },
  3868. "youjiao1": {
  3869. "attachment": [
  3870. { "time": 0, "name": "youjiao1" }
  3871. ]
  3872. },
  3873. "youshou": {
  3874. "attachment": [
  3875. { "time": 0.3333, "name": null }
  3876. ]
  3877. },
  3878. "youshou1": {
  3879. "attachment": [
  3880. { "time": 0, "name": null },
  3881. { "time": 0.3333, "name": "youshou1" }
  3882. ]
  3883. },
  3884. "youshou2": {
  3885. "attachment": [
  3886. { "time": 0, "name": null },
  3887. { "time": 0.3333, "name": "youshou2" }
  3888. ]
  3889. },
  3890. "zi_1": {
  3891. "color": [
  3892. { "time": 0.1667, "color": "ffffff00" },
  3893. { "time": 0.2667, "color": "ffffffff" }
  3894. ],
  3895. "attachment": [
  3896. { "time": 0, "name": null },
  3897. { "time": 0.1667, "name": "zi_1" }
  3898. ]
  3899. },
  3900. "zi_2": {
  3901. "color": [
  3902. { "time": 0.5, "color": "ffffff00" },
  3903. { "time": 0.6, "color": "ffffffff" }
  3904. ],
  3905. "attachment": [
  3906. { "time": 0, "name": null },
  3907. { "time": 0.5, "name": "zi_2" }
  3908. ]
  3909. },
  3910. "zi_3": {
  3911. "attachment": [
  3912. { "time": 0, "name": null },
  3913. { "time": 0.8333, "name": "zi_3" }
  3914. ]
  3915. },
  3916. "zi_4": {
  3917. "color": [
  3918. { "time": 1.1, "color": "ffffff00" },
  3919. { "time": 1.2, "color": "ffffffff" }
  3920. ],
  3921. "attachment": [
  3922. { "time": 0, "name": null },
  3923. { "time": 1.1, "name": "zi_4" }
  3924. ]
  3925. },
  3926. "zi_5": {
  3927. "color": [
  3928. { "time": 1.3667, "color": "ffffff00" },
  3929. { "time": 1.5, "color": "ffffffff" }
  3930. ],
  3931. "attachment": [
  3932. { "time": 0, "name": null },
  3933. { "time": 1.3667, "name": "zi_5" }
  3934. ]
  3935. },
  3936. "zi_6": {
  3937. "color": [
  3938. { "time": 1.6333, "color": "ffffff00" },
  3939. { "time": 1.7333, "color": "ffffffff" }
  3940. ],
  3941. "attachment": [
  3942. { "time": 0, "name": null },
  3943. { "time": 1.6333, "name": "zi_6" }
  3944. ]
  3945. },
  3946. "zi_7": {
  3947. "color": [
  3948. { "time": 1.9667, "color": "ffffff00" },
  3949. { "time": 2.0667, "color": "ffffffff" }
  3950. ],
  3951. "attachment": [
  3952. { "time": 0, "name": null },
  3953. { "time": 1.9667, "name": "zi_7" }
  3954. ]
  3955. },
  3956. "zi_8": {
  3957. "color": [
  3958. { "time": 2.5, "color": "ffffff00" },
  3959. { "time": 2.6, "color": "ffffffff" }
  3960. ],
  3961. "attachment": [
  3962. { "time": 0, "name": null },
  3963. { "time": 2.5, "name": "zi_8" }
  3964. ]
  3965. },
  3966. "zi_9": {
  3967. "color": [
  3968. { "time": 2.8667, "color": "ffffff00" },
  3969. { "time": 2.9667, "color": "ffffffff" }
  3970. ],
  3971. "attachment": [
  3972. { "time": 0, "name": null },
  3973. { "time": 2.8667, "name": "zi_9" }
  3974. ]
  3975. },
  3976. "zi_10": {
  3977. "color": [
  3978. { "time": 3.3333, "color": "ffffff00" },
  3979. { "time": 3.4333, "color": "ffffffff" }
  3980. ],
  3981. "attachment": [
  3982. { "time": 0, "name": null },
  3983. { "time": 3.3333, "name": "zi_10" }
  3984. ]
  3985. },
  3986. "zi_11": {
  3987. "color": [
  3988. { "time": 3.8667, "color": "ffffff00" },
  3989. { "time": 3.9667, "color": "ffffffff" }
  3990. ],
  3991. "attachment": [
  3992. { "time": 0, "name": null },
  3993. { "time": 3.8667, "name": "zi_11" }
  3994. ]
  3995. },
  3996. "zi_12": {
  3997. "color": [
  3998. { "time": 4.3667, "color": "ffffff00" },
  3999. { "time": 4.4667, "color": "ffffffff" }
  4000. ],
  4001. "attachment": [
  4002. { "time": 0, "name": null },
  4003. { "time": 4.3667, "name": "zi_12" }
  4004. ]
  4005. },
  4006. "zuiba1": {
  4007. "attachment": [
  4008. { "time": 0, "name": "zuiba1" },
  4009. { "time": 0.6, "name": "zuiba1" },
  4010. { "time": 1.2, "name": "zuiba1" },
  4011. { "time": 1.8667, "name": "zuiba1" },
  4012. { "time": 2.4333, "name": "zuiba1" },
  4013. { "time": 3.1, "name": "zuiba1" },
  4014. { "time": 3.5667, "name": "zuiba1" },
  4015. { "time": 4.1667, "name": "zuiba1" },
  4016. { "time": 4.8333, "name": "zuiba1" }
  4017. ]
  4018. },
  4019. "zuiba2": {
  4020. "attachment": [
  4021. { "time": 0, "name": null },
  4022. { "time": 0.2333, "name": "zuiba2" },
  4023. { "time": 0.6, "name": null },
  4024. { "time": 0.8333, "name": "zuiba2" },
  4025. { "time": 1.2, "name": null },
  4026. { "time": 1.4333, "name": "zuiba2" },
  4027. { "time": 1.8667, "name": null },
  4028. { "time": 2.1, "name": "zuiba2" },
  4029. { "time": 2.4333, "name": null },
  4030. { "time": 2.8, "name": "zuiba2" },
  4031. { "time": 3.1, "name": null },
  4032. { "time": 3.2333, "name": "zuiba2" },
  4033. { "time": 3.5667, "name": null },
  4034. { "time": 3.8, "name": "zuiba2" },
  4035. { "time": 4.1667, "name": null },
  4036. { "time": 4.4, "name": "zuiba2" },
  4037. { "time": 4.8333, "name": null }
  4038. ]
  4039. },
  4040. "zuoshou": {
  4041. "attachment": [
  4042. { "time": 0.3333, "name": null }
  4043. ]
  4044. },
  4045. "zuoshou1": {
  4046. "attachment": [
  4047. { "time": 0, "name": null },
  4048. { "time": 0.3333, "name": "zuoshou1" }
  4049. ]
  4050. },
  4051. "zuoshou2": {
  4052. "attachment": [
  4053. { "time": 0, "name": null },
  4054. { "time": 0.3333, "name": "zuoshou2" }
  4055. ]
  4056. }
  4057. },
  4058. "bones": {
  4059. "bone54": {
  4060. "rotate": [
  4061. { "time": 0, "angle": 0 },
  4062. { "time": 0.1667, "angle": 4.63 },
  4063. { "time": 0.3333, "angle": -3.47 },
  4064. { "time": 0.5, "angle": 0.27 },
  4065. { "time": 0.6667, "angle": -3.47 },
  4066. { "time": 0.9667, "angle": 0.27 },
  4067. { "time": 1.2667, "angle": -3.47 },
  4068. { "time": 1.5667, "angle": 0.27 },
  4069. { "time": 1.8667, "angle": -3.47 },
  4070. { "time": 2.2, "angle": 0.27 },
  4071. { "time": 2.5333, "angle": -3.47 },
  4072. { "time": 2.9333, "angle": 0.27 },
  4073. { "time": 3.2333, "angle": -3.47 },
  4074. { "time": 3.5667, "angle": 0.27 },
  4075. { "time": 3.9, "angle": -3.47 },
  4076. { "time": 4.2333, "angle": 0.27 },
  4077. { "time": 4.5333, "angle": -3.47 }
  4078. ],
  4079. "translate": [
  4080. { "time": 0, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4081. { "time": 0.1667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4082. { "time": 0.3333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4083. { "time": 0.6667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4084. { "time": 1.2667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4085. { "time": 1.8667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4086. { "time": 2.5333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4087. { "time": 3.2333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4088. { "time": 3.9, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4089. { "time": 4.5333, "x": -75.4, "y": 0.21 }
  4090. ],
  4091. "scale": [
  4092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4098. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4099. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 4.5333, "x": 1, "y": 1 }
  4102. ]
  4103. },
  4104. "bone48": {
  4105. "rotate": [
  4106. { "time": 0, "angle": 0, "curve": "stepped" },
  4107. { "time": 0.1667, "angle": 0 },
  4108. { "time": 0.3333, "angle": 4.91 },
  4109. { "time": 0.5, "angle": 0 },
  4110. { "time": 0.6667, "angle": -0.7 },
  4111. { "time": 0.9667, "angle": 0 },
  4112. { "time": 1.2667, "angle": -0.7 },
  4113. { "time": 1.5667, "angle": 0 },
  4114. { "time": 1.8667, "angle": -0.7 },
  4115. { "time": 2.2, "angle": 0 },
  4116. { "time": 2.5333, "angle": -0.7 },
  4117. { "time": 2.9333, "angle": 0 },
  4118. { "time": 3.2333, "angle": -0.7 },
  4119. { "time": 3.5667, "angle": 0 },
  4120. { "time": 3.9, "angle": -0.7 },
  4121. { "time": 4.2333, "angle": 0 },
  4122. { "time": 4.5333, "angle": -0.7 }
  4123. ],
  4124. "translate": [
  4125. { "time": 0, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4126. { "time": 0.1667, "x": -2.84, "y": 77.77 },
  4127. { "time": 0.3333, "x": -2.26, "y": 77.27 },
  4128. { "time": 0.5, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4129. { "time": 0.6667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4130. { "time": 0.9667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4131. { "time": 1.2667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4132. { "time": 1.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4133. { "time": 1.8667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4134. { "time": 2.2, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4135. { "time": 2.5333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4136. { "time": 2.9333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4137. { "time": 3.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4138. { "time": 3.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4139. { "time": 3.9, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4140. { "time": 4.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4141. { "time": 4.5333, "x": -2.84, "y": 77.77 }
  4142. ],
  4143. "scale": [
  4144. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4149. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4150. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4151. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4152. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4153. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4159. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4160. { "time": 4.5333, "x": 1, "y": 1 }
  4161. ]
  4162. },
  4163. "bone51": {
  4164. "rotate": [
  4165. { "time": 0, "angle": 0, "curve": "stepped" },
  4166. {
  4167. "time": 0.1667,
  4168. "angle": 0,
  4169. "curve": [ 0.25, 0, 0.75, 1 ]
  4170. },
  4171. {
  4172. "time": 0.3333,
  4173. "angle": -6.46,
  4174. "curve": [ 0.25, 0, 0.75, 1 ]
  4175. },
  4176. {
  4177. "time": 0.5,
  4178. "angle": -18.26,
  4179. "curve": [ 0.25, 0, 0.75, 1 ]
  4180. },
  4181. {
  4182. "time": 0.6667,
  4183. "angle": -5.63,
  4184. "curve": [ 0.25, 0, 0.75, 1 ]
  4185. },
  4186. {
  4187. "time": 0.9667,
  4188. "angle": -18.26,
  4189. "curve": [ 0.25, 0, 0.75, 1 ]
  4190. },
  4191. {
  4192. "time": 1.2667,
  4193. "angle": -5.63,
  4194. "curve": [ 0.25, 0, 0.75, 1 ]
  4195. },
  4196. {
  4197. "time": 1.5667,
  4198. "angle": -18.26,
  4199. "curve": [ 0.25, 0, 0.75, 1 ]
  4200. },
  4201. {
  4202. "time": 1.8667,
  4203. "angle": -5.63,
  4204. "curve": [ 0.25, 0, 0.75, 1 ]
  4205. },
  4206. {
  4207. "time": 2.2,
  4208. "angle": -18.26,
  4209. "curve": [ 0.25, 0, 0.75, 1 ]
  4210. },
  4211. {
  4212. "time": 2.5333,
  4213. "angle": -5.63,
  4214. "curve": [ 0.25, 0, 0.75, 1 ]
  4215. },
  4216. {
  4217. "time": 2.9333,
  4218. "angle": -18.26,
  4219. "curve": [ 0.25, 0, 0.75, 1 ]
  4220. },
  4221. {
  4222. "time": 3.2333,
  4223. "angle": -5.63,
  4224. "curve": [ 0.25, 0, 0.75, 1 ]
  4225. },
  4226. {
  4227. "time": 3.5667,
  4228. "angle": -18.26,
  4229. "curve": [ 0.25, 0, 0.75, 1 ]
  4230. },
  4231. {
  4232. "time": 3.9,
  4233. "angle": -5.63,
  4234. "curve": [ 0.25, 0, 0.75, 1 ]
  4235. },
  4236. {
  4237. "time": 4.2333,
  4238. "angle": -18.26,
  4239. "curve": [ 0.25, 0, 0.75, 1 ]
  4240. },
  4241. { "time": 4.5333, "angle": -5.63 }
  4242. ],
  4243. "translate": [
  4244. { "time": 0, "x": -60.19, "y": 125.38, "curve": "stepped" },
  4245. {
  4246. "time": 0.1667,
  4247. "x": -60.19,
  4248. "y": 125.38,
  4249. "curve": [ 0.25, 0, 0.75, 1 ]
  4250. },
  4251. { "time": 0.3333, "x": -60.67, "y": 124.82 }
  4252. ]
  4253. },
  4254. "root": {
  4255. "rotate": [
  4256. { "time": 0, "angle": 0 }
  4257. ],
  4258. "translate": [
  4259. { "time": 0, "x": 0, "y": 0 }
  4260. ],
  4261. "scale": [
  4262. { "time": 0, "x": -0.65, "y": 0.65 }
  4263. ]
  4264. },
  4265. "bone": {
  4266. "rotate": [
  4267. { "time": 0, "angle": 0, "curve": "stepped" },
  4268. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4269. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4270. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4271. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4272. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4273. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4274. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4275. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4276. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4277. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4278. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4279. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4280. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4281. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4282. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4283. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4284. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4285. { "time": 5.2, "angle": 0 }
  4286. ],
  4287. "translate": [
  4288. { "time": 0, "x": 0, "y": 0 },
  4289. { "time": 0.1667, "x": 0, "y": -1.05 },
  4290. { "time": 0.3333, "x": 3.11, "y": 0, "curve": "stepped" },
  4291. { "time": 0.5, "x": 3.11, "y": 0, "curve": "stepped" },
  4292. { "time": 0.6667, "x": 3.11, "y": 0, "curve": "stepped" },
  4293. { "time": 0.9667, "x": 3.11, "y": 0, "curve": "stepped" },
  4294. { "time": 1.2667, "x": 3.11, "y": 0, "curve": "stepped" },
  4295. { "time": 1.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  4296. { "time": 1.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  4297. { "time": 2.2, "x": 3.11, "y": 0, "curve": "stepped" },
  4298. { "time": 2.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  4299. { "time": 2.9333, "x": 3.11, "y": 0, "curve": "stepped" },
  4300. { "time": 3.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  4301. { "time": 3.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  4302. { "time": 3.9, "x": 3.11, "y": 0, "curve": "stepped" },
  4303. { "time": 4.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  4304. { "time": 4.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  4305. { "time": 4.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  4306. { "time": 5.2, "x": 3.11, "y": 0 }
  4307. ],
  4308. "scale": [
  4309. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4310. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4311. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4313. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4314. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4315. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4327. { "time": 5.2, "x": 1, "y": 1 }
  4328. ]
  4329. },
  4330. "bone2": {
  4331. "rotate": [
  4332. { "time": 0, "angle": 0, "curve": "stepped" },
  4333. { "time": 0.1667, "angle": 0 },
  4334. { "time": 0.3333, "angle": -1.48, "curve": "stepped" },
  4335. { "time": 0.5, "angle": -1.48, "curve": "stepped" },
  4336. { "time": 0.6667, "angle": -1.48, "curve": "stepped" },
  4337. { "time": 0.9667, "angle": -1.48, "curve": "stepped" },
  4338. { "time": 1.2667, "angle": -1.48, "curve": "stepped" },
  4339. { "time": 1.5667, "angle": -1.48, "curve": "stepped" },
  4340. { "time": 1.8667, "angle": -1.48, "curve": "stepped" },
  4341. { "time": 2.2, "angle": -1.48, "curve": "stepped" },
  4342. { "time": 2.5333, "angle": -1.48, "curve": "stepped" },
  4343. { "time": 2.9333, "angle": -1.48, "curve": "stepped" },
  4344. { "time": 3.2333, "angle": -1.48, "curve": "stepped" },
  4345. { "time": 3.5667, "angle": -1.48, "curve": "stepped" },
  4346. { "time": 3.9, "angle": -1.48, "curve": "stepped" },
  4347. { "time": 4.2333, "angle": -1.48, "curve": "stepped" },
  4348. { "time": 4.5333, "angle": -1.48 }
  4349. ],
  4350. "translate": [
  4351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 0.3333, "x": 0, "y": 0 },
  4354. { "time": 0.5, "x": 0.94, "y": -0.02 },
  4355. { "time": 0.6667, "x": 0, "y": 0 },
  4356. { "time": 0.9667, "x": 0.94, "y": -0.02 },
  4357. { "time": 1.2667, "x": 0, "y": 0 },
  4358. { "time": 1.5667, "x": 0.94, "y": -0.02 },
  4359. { "time": 1.8667, "x": 0, "y": 0 },
  4360. { "time": 2.2, "x": 0.94, "y": -0.02 },
  4361. { "time": 2.5333, "x": 0, "y": 0 },
  4362. { "time": 2.9333, "x": 0.94, "y": -0.02 },
  4363. { "time": 3.2333, "x": 0, "y": 0 },
  4364. { "time": 3.5667, "x": 0.94, "y": -0.02 },
  4365. { "time": 3.9, "x": 0, "y": 0 },
  4366. { "time": 4.2333, "x": 0.94, "y": -0.02 },
  4367. { "time": 4.5333, "x": 0, "y": 0 }
  4368. ],
  4369. "scale": [
  4370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4383. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 4.5333, "x": 1, "y": 1 }
  4387. ]
  4388. },
  4389. "bone3": {
  4390. "rotate": [
  4391. { "time": 0, "angle": 0, "curve": "stepped" },
  4392. { "time": 0.1667, "angle": 0 },
  4393. { "time": 0.3333, "angle": -0.24, "curve": "stepped" },
  4394. { "time": 0.5, "angle": -0.24, "curve": "stepped" },
  4395. { "time": 0.6667, "angle": -0.24, "curve": "stepped" },
  4396. { "time": 0.9667, "angle": -0.24, "curve": "stepped" },
  4397. { "time": 1.2667, "angle": -0.24, "curve": "stepped" },
  4398. { "time": 1.5667, "angle": -0.24, "curve": "stepped" },
  4399. { "time": 1.8667, "angle": -0.24, "curve": "stepped" },
  4400. { "time": 2.2, "angle": -0.24, "curve": "stepped" },
  4401. { "time": 2.5333, "angle": -0.24, "curve": "stepped" },
  4402. { "time": 2.9333, "angle": -0.24, "curve": "stepped" },
  4403. { "time": 3.2333, "angle": -0.24, "curve": "stepped" },
  4404. { "time": 3.5667, "angle": -0.24, "curve": "stepped" },
  4405. { "time": 3.9, "angle": -0.24, "curve": "stepped" },
  4406. { "time": 4.2333, "angle": -0.24, "curve": "stepped" },
  4407. { "time": 4.5333, "angle": -0.24 }
  4408. ],
  4409. "translate": [
  4410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4411. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4412. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4413. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4414. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4415. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4416. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4417. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4420. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4421. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4422. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 4.5333, "x": 0, "y": 0 }
  4427. ],
  4428. "scale": [
  4429. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4444. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4445. { "time": 4.5333, "x": 1, "y": 1 }
  4446. ]
  4447. },
  4448. "bone4": {
  4449. "rotate": [
  4450. { "time": 0, "angle": 0, "curve": "stepped" },
  4451. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4452. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4453. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4454. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4455. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4456. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4457. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4458. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4459. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4460. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4461. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4462. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4463. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4464. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4465. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4466. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4467. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4468. { "time": 5.2, "angle": 0 }
  4469. ],
  4470. "translate": [
  4471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4473. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4474. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4475. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4476. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4477. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4480. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4481. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4482. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4483. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4484. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4485. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 5.2, "x": 0, "y": 0 }
  4490. ],
  4491. "scale": [
  4492. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4493. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4494. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4495. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4496. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4503. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4504. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4505. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4506. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4507. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4508. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4509. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 5.2, "x": 1, "y": 1 }
  4511. ]
  4512. },
  4513. "bone5": {
  4514. "rotate": [
  4515. { "time": 0, "angle": 0, "curve": "stepped" },
  4516. { "time": 0.1667, "angle": 0 },
  4517. { "time": 0.5, "angle": -2.14 },
  4518. { "time": 0.6667, "angle": 0 },
  4519. { "time": 0.9667, "angle": -2.14 },
  4520. { "time": 1.2667, "angle": 0 },
  4521. { "time": 1.5667, "angle": -2.14 },
  4522. { "time": 1.8667, "angle": 0 },
  4523. { "time": 2.2, "angle": -2.14 },
  4524. { "time": 2.5333, "angle": 0 },
  4525. { "time": 2.9, "angle": -2.14 },
  4526. { "time": 3.2333, "angle": 0 },
  4527. { "time": 3.5667, "angle": -2.14 },
  4528. { "time": 3.9, "angle": 0 },
  4529. { "time": 4.2333, "angle": -2.14 },
  4530. { "time": 4.5333, "angle": 0 }
  4531. ],
  4532. "translate": [
  4533. { "time": 0, "x": 0, "y": 0 },
  4534. { "time": 0.1667, "x": -0.7, "y": -0.02 },
  4535. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4537. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4538. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4542. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4543. { "time": 2.5333, "x": 0, "y": 0 },
  4544. { "time": 2.9, "x": -0.86, "y": 0 },
  4545. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 4.5333, "x": 0, "y": 0 }
  4550. ],
  4551. "scale": [
  4552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4553. { "time": 0.1667, "x": 1, "y": 1 },
  4554. { "time": 0.3333, "x": 1.02, "y": 1 },
  4555. { "time": 0.6667, "x": 1, "y": 1 },
  4556. { "time": 0.9667, "x": 1.02, "y": 1 },
  4557. { "time": 1.2667, "x": 1, "y": 1 },
  4558. { "time": 1.5667, "x": 1.02, "y": 1 },
  4559. { "time": 1.8667, "x": 1, "y": 1 },
  4560. { "time": 2.2, "x": 1.02, "y": 1 },
  4561. { "time": 2.5333, "x": 1, "y": 1 },
  4562. { "time": 3.0333, "x": 1.02, "y": 1 },
  4563. { "time": 3.2333, "x": 1, "y": 1 },
  4564. { "time": 3.5667, "x": 1.02, "y": 1 },
  4565. { "time": 3.9, "x": 1, "y": 1 },
  4566. { "time": 4.2333, "x": 1.02, "y": 1 },
  4567. { "time": 4.5333, "x": 1, "y": 1 }
  4568. ]
  4569. },
  4570. "bone6": {
  4571. "rotate": [
  4572. { "time": 0, "angle": 0, "curve": "stepped" },
  4573. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4574. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4575. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4576. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4577. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4578. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4579. { "time": 3.2667, "angle": 0 }
  4580. ],
  4581. "translate": [
  4582. { "time": 0, "x": 0, "y": 0 },
  4583. { "time": 0.1, "x": -2.24, "y": 0, "curve": "stepped" },
  4584. { "time": 0.2, "x": -2.24, "y": 0 },
  4585. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 2.7667, "x": 0, "y": 0 },
  4587. { "time": 2.9, "x": -2.58, "y": 0, "curve": "stepped" },
  4588. { "time": 3.0333, "x": -2.58, "y": 0 },
  4589. { "time": 3.2667, "x": 0, "y": 0 }
  4590. ],
  4591. "scale": [
  4592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4598. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  4599. { "time": 3.2667, "x": 1, "y": 1 }
  4600. ]
  4601. },
  4602. "bone7": {
  4603. "rotate": [
  4604. { "time": 0, "angle": 0, "curve": "stepped" },
  4605. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4606. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4607. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4608. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4609. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4610. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4611. { "time": 3.2667, "angle": 0 }
  4612. ],
  4613. "translate": [
  4614. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4615. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4618. { "time": 2.7667, "x": 0, "y": 0 },
  4619. { "time": 2.9, "x": -0.84, "y": 0, "curve": "stepped" },
  4620. { "time": 3.0333, "x": -0.84, "y": 0 },
  4621. { "time": 3.2667, "x": 0, "y": 0 }
  4622. ],
  4623. "scale": [
  4624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4629. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4630. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 3.2667, "x": 1, "y": 1 }
  4632. ]
  4633. },
  4634. "bone8": {
  4635. "rotate": [
  4636. { "time": 0, "angle": 0, "curve": "stepped" },
  4637. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4638. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4639. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4640. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4641. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4642. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4643. { "time": 3.2667, "angle": 0 }
  4644. ],
  4645. "translate": [
  4646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4647. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4649. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4650. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 3.2667, "x": 0, "y": 0 }
  4654. ],
  4655. "scale": [
  4656. { "time": 0, "x": 1, "y": 1 },
  4657. { "time": 0.1, "x": 0.514, "y": 1, "curve": "stepped" },
  4658. { "time": 0.2, "x": 0.514, "y": 1 },
  4659. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4660. { "time": 2.7667, "x": 1, "y": 1 },
  4661. { "time": 2.9, "x": 0.514, "y": 1, "curve": "stepped" },
  4662. { "time": 3.0333, "x": 0.514, "y": 1 },
  4663. { "time": 3.2667, "x": 1, "y": 1 }
  4664. ]
  4665. },
  4666. "bone9": {
  4667. "rotate": [
  4668. { "time": 0, "angle": 0, "curve": "stepped" },
  4669. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4670. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4671. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4672. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4673. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4674. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4675. { "time": 3.2667, "angle": 0 }
  4676. ],
  4677. "translate": [
  4678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  4683. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 3.2667, "x": 0, "y": 0 }
  4686. ],
  4687. "scale": [
  4688. { "time": 0, "x": 1, "y": 1 },
  4689. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  4690. { "time": 0.2, "x": 0.504, "y": 1 },
  4691. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 2.7667, "x": 1, "y": 1 },
  4693. { "time": 2.9, "x": 0.504, "y": 1, "curve": "stepped" },
  4694. { "time": 3.0333, "x": 0.504, "y": 1 },
  4695. { "time": 3.2667, "x": 1, "y": 1 }
  4696. ]
  4697. },
  4698. "bone10": {
  4699. "rotate": [
  4700. { "time": 0, "angle": 0, "curve": "stepped" },
  4701. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4702. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4703. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4704. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4705. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4706. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4707. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4708. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4709. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4710. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4711. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4712. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4713. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4714. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4715. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4716. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4717. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4718. { "time": 5.2, "angle": 0 }
  4719. ],
  4720. "translate": [
  4721. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4722. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4723. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4724. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4725. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4726. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4727. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4732. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4733. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4734. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 5.2, "x": 0, "y": 0 }
  4740. ],
  4741. "scale": [
  4742. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4743. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4744. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4745. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4746. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4747. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4754. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4755. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 5.2, "x": 1, "y": 1 }
  4761. ]
  4762. },
  4763. "bone11": {
  4764. "rotate": [
  4765. { "time": 0, "angle": 0, "curve": "stepped" },
  4766. {
  4767. "time": 0.1667,
  4768. "angle": 0,
  4769. "curve": [ 0.248, 0, 0.628, 0.52 ]
  4770. },
  4771. {
  4772. "time": 0.4333,
  4773. "angle": -0.64,
  4774. "curve": [ 0.378, 0.52, 0.748, 1 ]
  4775. },
  4776. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4777. { "time": 1, "angle": 0, "curve": "stepped" },
  4778. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4779. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4780. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4781. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4782. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4783. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4784. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4785. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4786. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4787. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4788. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4789. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4790. { "time": 5.2, "angle": 0 }
  4791. ],
  4792. "translate": [
  4793. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4794. {
  4795. "time": 0.1667,
  4796. "x": 0,
  4797. "y": 0,
  4798. "curve": [ 0.265, 0, 0.618, 0.43 ]
  4799. },
  4800. {
  4801. "time": 0.3333,
  4802. "x": 0.78,
  4803. "y": 0.01,
  4804. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4805. },
  4806. {
  4807. "time": 0.6667,
  4808. "x": 0.78,
  4809. "y": 0.01,
  4810. "curve": [ 0.25, 0, 0.75, 1 ]
  4811. },
  4812. {
  4813. "time": 1,
  4814. "x": 0.77,
  4815. "y": 0.95,
  4816. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4817. },
  4818. {
  4819. "time": 1.2667,
  4820. "x": 0,
  4821. "y": 0,
  4822. "curve": [ 0.25, 0, 0.75, 1 ]
  4823. },
  4824. {
  4825. "time": 1.5667,
  4826. "x": 0.77,
  4827. "y": 0.95,
  4828. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4829. },
  4830. {
  4831. "time": 1.8667,
  4832. "x": 0,
  4833. "y": 0,
  4834. "curve": [ 0.25, 0, 0.75, 1 ]
  4835. },
  4836. {
  4837. "time": 2.2,
  4838. "x": 0.77,
  4839. "y": 0.95,
  4840. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4841. },
  4842. {
  4843. "time": 2.5333,
  4844. "x": 0,
  4845. "y": 0,
  4846. "curve": [ 0.25, 0, 0.75, 1 ]
  4847. },
  4848. {
  4849. "time": 2.9333,
  4850. "x": 0.77,
  4851. "y": 0.95,
  4852. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4853. },
  4854. {
  4855. "time": 3.2333,
  4856. "x": 0,
  4857. "y": 0,
  4858. "curve": [ 0.25, 0, 0.75, 1 ]
  4859. },
  4860. {
  4861. "time": 3.5667,
  4862. "x": 0.77,
  4863. "y": 0.95,
  4864. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4865. },
  4866. {
  4867. "time": 3.9,
  4868. "x": 0,
  4869. "y": 0,
  4870. "curve": [ 0.25, 0, 0.75, 1 ]
  4871. },
  4872. {
  4873. "time": 4.2333,
  4874. "x": 0.77,
  4875. "y": 0.95,
  4876. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4877. },
  4878. {
  4879. "time": 4.5333,
  4880. "x": 0,
  4881. "y": 0,
  4882. "curve": [ 0.25, 0, 0.75, 1 ]
  4883. },
  4884. {
  4885. "time": 4.8667,
  4886. "x": 0.77,
  4887. "y": 0.95,
  4888. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4889. },
  4890. { "time": 5.2, "x": 0, "y": 0 }
  4891. ],
  4892. "scale": [
  4893. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4902. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4903. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4904. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4905. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4906. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 5.2, "x": 1, "y": 1 }
  4910. ]
  4911. },
  4912. "bone12": {
  4913. "rotate": [
  4914. {
  4915. "time": 0,
  4916. "angle": 0,
  4917. "curve": [ 0.25, 0, 0.75, 1 ]
  4918. },
  4919. {
  4920. "time": 0.1667,
  4921. "angle": -5.39,
  4922. "curve": [ 0.265, 0, 0.618, 0.43 ]
  4923. },
  4924. {
  4925. "time": 0.3333,
  4926. "angle": -15.7,
  4927. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  4928. },
  4929. {
  4930. "time": 0.4333,
  4931. "angle": -8.33,
  4932. "curve": [ 0.378, 0.52, 0.748, 1 ]
  4933. },
  4934. {
  4935. "time": 0.8333,
  4936. "angle": -6.1,
  4937. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4938. },
  4939. {
  4940. "time": 1.0667,
  4941. "angle": -21.44,
  4942. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4943. },
  4944. {
  4945. "time": 1.3,
  4946. "angle": -17.78,
  4947. "curve": [ 0.25, 0, 0.625, 0.5 ]
  4948. },
  4949. {
  4950. "time": 1.9,
  4951. "angle": -6.1,
  4952. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4953. },
  4954. {
  4955. "time": 2.1667,
  4956. "angle": -21.44,
  4957. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4958. },
  4959. {
  4960. "time": 2.3667,
  4961. "angle": -17.78,
  4962. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4963. },
  4964. {
  4965. "time": 2.5667,
  4966. "angle": -6.1,
  4967. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4968. },
  4969. {
  4970. "time": 2.9,
  4971. "angle": -21.44,
  4972. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4973. },
  4974. {
  4975. "time": 3.0667,
  4976. "angle": -17.78,
  4977. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4978. },
  4979. {
  4980. "time": 3.2667,
  4981. "angle": -6.1,
  4982. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4983. },
  4984. {
  4985. "time": 3.5333,
  4986. "angle": -21.44,
  4987. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4988. },
  4989. {
  4990. "time": 3.6667,
  4991. "angle": -17.78,
  4992. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4993. },
  4994. {
  4995. "time": 3.9333,
  4996. "angle": -6.1,
  4997. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4998. },
  4999. {
  5000. "time": 4.2,
  5001. "angle": -21.44,
  5002. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5003. },
  5004. {
  5005. "time": 4.3667,
  5006. "angle": -17.78,
  5007. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5008. },
  5009. {
  5010. "time": 4.5667,
  5011. "angle": -6.1,
  5012. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5013. },
  5014. {
  5015. "time": 4.8333,
  5016. "angle": -21.44,
  5017. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5018. },
  5019. { "time": 5.0333, "angle": -17.78 }
  5020. ],
  5021. "translate": [
  5022. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5023. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5024. {
  5025. "time": 0.8333,
  5026. "x": 0,
  5027. "y": 0,
  5028. "curve": [ 0.271, 0, 0.619, 0.41 ]
  5029. },
  5030. { "time": 0.9667, "x": 0.3, "y": 1.21 }
  5031. ],
  5032. "scale": [
  5033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5034. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5035. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5036. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5037. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5038. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5039. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5040. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5041. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5042. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5043. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5044. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5045. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 5.0333, "x": 1, "y": 1 }
  5047. ]
  5048. },
  5049. "bone13": {
  5050. "rotate": [
  5051. {
  5052. "time": 0,
  5053. "angle": 0,
  5054. "curve": [ 0.25, 0, 0.75, 1 ]
  5055. },
  5056. {
  5057. "time": 0.1667,
  5058. "angle": -5.39,
  5059. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5060. },
  5061. {
  5062. "time": 0.3333,
  5063. "angle": -4.58,
  5064. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5065. },
  5066. {
  5067. "time": 0.4333,
  5068. "angle": -13.27,
  5069. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5070. },
  5071. {
  5072. "time": 0.8333,
  5073. "angle": 0,
  5074. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5075. },
  5076. {
  5077. "time": 1.0667,
  5078. "angle": 1.04,
  5079. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5080. },
  5081. {
  5082. "time": 1.3,
  5083. "angle": -6.64,
  5084. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5085. },
  5086. {
  5087. "time": 1.9,
  5088. "angle": 0,
  5089. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5090. },
  5091. {
  5092. "time": 2.1667,
  5093. "angle": 1.04,
  5094. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5095. },
  5096. {
  5097. "time": 2.3667,
  5098. "angle": -6.64,
  5099. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5100. },
  5101. {
  5102. "time": 2.5667,
  5103. "angle": 0,
  5104. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5105. },
  5106. {
  5107. "time": 2.9,
  5108. "angle": 1.04,
  5109. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5110. },
  5111. {
  5112. "time": 3.0667,
  5113. "angle": -6.64,
  5114. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5115. },
  5116. {
  5117. "time": 3.2667,
  5118. "angle": 0,
  5119. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5120. },
  5121. {
  5122. "time": 3.5333,
  5123. "angle": 1.04,
  5124. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5125. },
  5126. {
  5127. "time": 3.6667,
  5128. "angle": -6.64,
  5129. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5130. },
  5131. {
  5132. "time": 3.9333,
  5133. "angle": 0,
  5134. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5135. },
  5136. {
  5137. "time": 4.2,
  5138. "angle": 1.04,
  5139. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5140. },
  5141. {
  5142. "time": 4.3667,
  5143. "angle": -6.64,
  5144. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5145. },
  5146. {
  5147. "time": 4.5667,
  5148. "angle": 0,
  5149. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5150. },
  5151. {
  5152. "time": 4.8333,
  5153. "angle": 1.04,
  5154. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5155. },
  5156. { "time": 5.0333, "angle": -6.64 }
  5157. ],
  5158. "translate": [
  5159. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5160. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5161. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5162. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5163. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5164. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5165. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5166. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5167. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5168. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5169. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5170. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5171. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 5.0333, "x": 0, "y": 0 }
  5173. ],
  5174. "scale": [
  5175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5176. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5181. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5182. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5183. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5184. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 5.0333, "x": 1, "y": 1 }
  5189. ]
  5190. },
  5191. "bone14": {
  5192. "rotate": [
  5193. {
  5194. "time": 0,
  5195. "angle": 0,
  5196. "curve": [ 0.25, 0, 0.75, 1 ]
  5197. },
  5198. {
  5199. "time": 0.1667,
  5200. "angle": 5.93,
  5201. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5202. },
  5203. {
  5204. "time": 0.3333,
  5205. "angle": 3.54,
  5206. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5207. },
  5208. {
  5209. "time": 0.4333,
  5210. "angle": -8.1,
  5211. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5212. },
  5213. {
  5214. "time": 0.8333,
  5215. "angle": -9.04,
  5216. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5217. },
  5218. {
  5219. "time": 1.0667,
  5220. "angle": 1.55,
  5221. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5222. },
  5223. {
  5224. "time": 1.3,
  5225. "angle": -4.95,
  5226. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5227. },
  5228. {
  5229. "time": 1.9,
  5230. "angle": -9.04,
  5231. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5232. },
  5233. {
  5234. "time": 2.1667,
  5235. "angle": 1.55,
  5236. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5237. },
  5238. {
  5239. "time": 2.3667,
  5240. "angle": -4.95,
  5241. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5242. },
  5243. {
  5244. "time": 2.5667,
  5245. "angle": -9.04,
  5246. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5247. },
  5248. {
  5249. "time": 2.9,
  5250. "angle": 1.55,
  5251. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5252. },
  5253. {
  5254. "time": 3.0667,
  5255. "angle": -4.95,
  5256. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5257. },
  5258. {
  5259. "time": 3.2667,
  5260. "angle": -9.04,
  5261. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5262. },
  5263. {
  5264. "time": 3.5333,
  5265. "angle": 1.55,
  5266. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5267. },
  5268. {
  5269. "time": 3.6667,
  5270. "angle": -4.95,
  5271. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5272. },
  5273. {
  5274. "time": 3.9333,
  5275. "angle": -9.04,
  5276. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5277. },
  5278. {
  5279. "time": 4.2,
  5280. "angle": 1.55,
  5281. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5282. },
  5283. {
  5284. "time": 4.3667,
  5285. "angle": -4.95,
  5286. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5287. },
  5288. {
  5289. "time": 4.5667,
  5290. "angle": -9.04,
  5291. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5292. },
  5293. {
  5294. "time": 4.8333,
  5295. "angle": 1.55,
  5296. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5297. },
  5298. { "time": 5.0333, "angle": -4.95 }
  5299. ],
  5300. "translate": [
  5301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5302. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5303. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5304. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5305. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5306. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5307. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5308. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5309. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5310. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5311. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5312. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5313. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5314. { "time": 5.0333, "x": 0, "y": 0 }
  5315. ],
  5316. "scale": [
  5317. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5320. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5321. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5322. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5323. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5324. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5325. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5326. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5328. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5329. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5330. { "time": 5.0333, "x": 1, "y": 1 }
  5331. ]
  5332. },
  5333. "bone15": {
  5334. "rotate": [
  5335. {
  5336. "time": 0,
  5337. "angle": 0,
  5338. "curve": [ 0.25, 0, 0.75, 1 ]
  5339. },
  5340. {
  5341. "time": 0.1667,
  5342. "angle": 5.93,
  5343. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5344. },
  5345. {
  5346. "time": 0.3333,
  5347. "angle": 3.54,
  5348. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5349. },
  5350. {
  5351. "time": 0.4333,
  5352. "angle": -8.1,
  5353. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5354. },
  5355. {
  5356. "time": 0.8333,
  5357. "angle": -0.32,
  5358. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5359. },
  5360. {
  5361. "time": 1.0667,
  5362. "angle": 7.24,
  5363. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5364. },
  5365. {
  5366. "time": 1.3,
  5367. "angle": -4.95,
  5368. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5369. },
  5370. {
  5371. "time": 1.9,
  5372. "angle": -0.32,
  5373. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5374. },
  5375. {
  5376. "time": 2.1667,
  5377. "angle": 7.24,
  5378. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5379. },
  5380. {
  5381. "time": 2.3667,
  5382. "angle": -4.95,
  5383. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5384. },
  5385. {
  5386. "time": 2.5667,
  5387. "angle": -0.32,
  5388. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5389. },
  5390. {
  5391. "time": 2.9,
  5392. "angle": 7.24,
  5393. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5394. },
  5395. {
  5396. "time": 3.0667,
  5397. "angle": -4.95,
  5398. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5399. },
  5400. {
  5401. "time": 3.2667,
  5402. "angle": -0.32,
  5403. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5404. },
  5405. {
  5406. "time": 3.5333,
  5407. "angle": 7.24,
  5408. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5409. },
  5410. {
  5411. "time": 3.6667,
  5412. "angle": -4.95,
  5413. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5414. },
  5415. {
  5416. "time": 3.9333,
  5417. "angle": -0.32,
  5418. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5419. },
  5420. {
  5421. "time": 4.2,
  5422. "angle": 7.24,
  5423. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5424. },
  5425. {
  5426. "time": 4.3667,
  5427. "angle": -4.95,
  5428. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5429. },
  5430. {
  5431. "time": 4.5667,
  5432. "angle": -0.32,
  5433. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5434. },
  5435. {
  5436. "time": 4.8333,
  5437. "angle": 7.24,
  5438. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5439. },
  5440. { "time": 5.0333, "angle": -4.95 }
  5441. ],
  5442. "translate": [
  5443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5444. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5445. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5446. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5447. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5451. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5452. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5453. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5454. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5455. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5456. { "time": 5.0333, "x": 0, "y": 0 }
  5457. ],
  5458. "scale": [
  5459. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5460. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5461. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5462. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5463. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5464. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5465. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5466. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5467. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5468. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5469. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5470. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5471. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5472. { "time": 5.0333, "x": 1, "y": 1 }
  5473. ]
  5474. },
  5475. "bone16": {
  5476. "rotate": [
  5477. { "time": 0, "angle": 0, "curve": "stepped" },
  5478. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5479. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5480. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5481. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5482. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5483. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  5484. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5485. { "time": 2.2, "angle": 0, "curve": "stepped" },
  5486. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5487. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  5488. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  5489. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5490. { "time": 3.9, "angle": 0, "curve": "stepped" },
  5491. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  5492. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  5493. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  5494. { "time": 5.2, "angle": 0 }
  5495. ],
  5496. "translate": [
  5497. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5498. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5499. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5500. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5502. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5509. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 5.2, "x": 0, "y": 0 }
  5515. ],
  5516. "scale": [
  5517. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5518. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5519. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5520. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5521. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5522. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5523. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5524. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5527. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5528. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5529. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5530. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5531. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5532. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5533. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 5.2, "x": 1, "y": 1 }
  5535. ]
  5536. },
  5537. "bone17": {
  5538. "rotate": [
  5539. {
  5540. "time": 0,
  5541. "angle": 0,
  5542. "curve": [ 0.25, 0, 0.75, 1 ]
  5543. },
  5544. {
  5545. "time": 0.1667,
  5546. "angle": 1.58,
  5547. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5548. },
  5549. {
  5550. "time": 0.3333,
  5551. "angle": 1.54,
  5552. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5553. },
  5554. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5555. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5556. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5557. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5558. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  5559. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5560. { "time": 2.2, "angle": 0, "curve": "stepped" },
  5561. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5562. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  5563. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  5564. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5565. { "time": 3.9, "angle": 0, "curve": "stepped" },
  5566. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  5567. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  5568. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  5569. { "time": 5.2, "angle": 0 }
  5570. ],
  5571. "translate": [
  5572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5573. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5574. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5575. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5576. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5577. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5578. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5579. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5580. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5581. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5582. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5583. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5584. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5585. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5586. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5587. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5588. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5589. { "time": 5.2, "x": 0, "y": 0 }
  5590. ],
  5591. "scale": [
  5592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5597. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5598. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5599. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5600. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5601. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5602. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5603. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5604. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5605. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5606. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5607. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5608. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5609. { "time": 5.2, "x": 1, "y": 1 }
  5610. ]
  5611. },
  5612. "bone18": {
  5613. "rotate": [
  5614. {
  5615. "time": 0,
  5616. "angle": 0,
  5617. "curve": [ 0.25, 0, 0.75, 1 ]
  5618. },
  5619. {
  5620. "time": 0.1667,
  5621. "angle": 10.37,
  5622. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5623. },
  5624. {
  5625. "time": 0.3333,
  5626. "angle": 11.75,
  5627. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5628. },
  5629. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5630. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5631. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5632. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5633. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5634. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5635. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5636. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5637. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5638. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5639. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5640. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5641. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5642. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5643. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5644. { "time": 5.2, "angle": 6.96 }
  5645. ],
  5646. "translate": [
  5647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5648. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5649. {
  5650. "time": 0.5,
  5651. "x": 0,
  5652. "y": 0,
  5653. "curve": [ 0.25, 0, 0.75, 1 ]
  5654. },
  5655. { "time": 0.6667, "x": 0.03, "y": -0.42 },
  5656. {
  5657. "time": 0.9667,
  5658. "x": 0,
  5659. "y": 0,
  5660. "curve": [ 0.25, 0, 0.75, 1 ]
  5661. },
  5662. { "time": 1.2667, "x": 0.03, "y": -0.42 },
  5663. {
  5664. "time": 1.5667,
  5665. "x": 0,
  5666. "y": 0,
  5667. "curve": [ 0.25, 0, 0.75, 1 ]
  5668. },
  5669. { "time": 1.8667, "x": 0.03, "y": -0.42 },
  5670. {
  5671. "time": 2.2,
  5672. "x": 0,
  5673. "y": 0,
  5674. "curve": [ 0.25, 0, 0.75, 1 ]
  5675. },
  5676. { "time": 2.5333, "x": 0.03, "y": -0.42 },
  5677. {
  5678. "time": 2.9333,
  5679. "x": 0,
  5680. "y": 0,
  5681. "curve": [ 0.25, 0, 0.75, 1 ]
  5682. },
  5683. { "time": 3.2333, "x": 0.03, "y": -0.42 },
  5684. {
  5685. "time": 3.5667,
  5686. "x": 0,
  5687. "y": 0,
  5688. "curve": [ 0.25, 0, 0.75, 1 ]
  5689. },
  5690. { "time": 3.9, "x": 0.03, "y": -0.42 },
  5691. {
  5692. "time": 4.2333,
  5693. "x": 0,
  5694. "y": 0,
  5695. "curve": [ 0.25, 0, 0.75, 1 ]
  5696. },
  5697. { "time": 4.5333, "x": 0.03, "y": -0.42 },
  5698. {
  5699. "time": 4.8667,
  5700. "x": 0,
  5701. "y": 0,
  5702. "curve": [ 0.25, 0, 0.75, 1 ]
  5703. },
  5704. { "time": 5.2, "x": 0.03, "y": -0.42 }
  5705. ],
  5706. "scale": [
  5707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5708. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5710. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5711. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5712. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5715. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5717. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5718. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5719. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5720. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5721. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5723. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5724. { "time": 5.2, "x": 1, "y": 1 }
  5725. ]
  5726. },
  5727. "bone19": {
  5728. "rotate": [
  5729. {
  5730. "time": 0,
  5731. "angle": 0,
  5732. "curve": [ 0.25, 0, 0.75, 1 ]
  5733. },
  5734. {
  5735. "time": 0.1667,
  5736. "angle": -0.98,
  5737. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5738. },
  5739. {
  5740. "time": 0.3333,
  5741. "angle": 7.87,
  5742. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5743. },
  5744. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5745. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5746. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5747. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5748. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5749. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5750. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5751. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5752. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5753. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5754. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5755. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5756. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5757. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5758. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5759. { "time": 5.2, "angle": 6.96 }
  5760. ],
  5761. "translate": [
  5762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5763. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5765. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5766. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5767. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5768. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5769. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5770. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5771. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5772. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5773. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5774. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5775. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5776. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5777. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5778. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5779. { "time": 5.2, "x": 0, "y": 0 }
  5780. ],
  5781. "scale": [
  5782. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5783. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5784. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5785. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5786. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5787. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5788. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5789. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5790. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5791. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5792. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5793. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5794. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5795. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5796. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5797. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5798. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5799. { "time": 5.2, "x": 1, "y": 1 }
  5800. ]
  5801. },
  5802. "bone20": {
  5803. "rotate": [
  5804. {
  5805. "time": 0,
  5806. "angle": 0,
  5807. "curve": [ 0.25, 0, 0.75, 1 ]
  5808. },
  5809. {
  5810. "time": 0.1667,
  5811. "angle": -0.98,
  5812. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5813. },
  5814. {
  5815. "time": 0.3333,
  5816. "angle": 7.87,
  5817. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5818. },
  5819. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5820. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5821. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5822. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5823. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5824. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5825. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5826. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5827. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5828. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5829. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5830. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5831. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5832. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5833. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5834. { "time": 5.2, "angle": 6.96 }
  5835. ],
  5836. "translate": [
  5837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5838. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5839. {
  5840. "time": 0.5,
  5841. "x": 0,
  5842. "y": 0,
  5843. "curve": [ 0.25, 0, 0.75, 1 ]
  5844. },
  5845. { "time": 0.6667, "x": 0.68, "y": -1.16 },
  5846. {
  5847. "time": 0.9667,
  5848. "x": 0,
  5849. "y": 0,
  5850. "curve": [ 0.25, 0, 0.75, 1 ]
  5851. },
  5852. { "time": 1.2667, "x": 0.68, "y": -1.16 },
  5853. {
  5854. "time": 1.5667,
  5855. "x": 0,
  5856. "y": 0,
  5857. "curve": [ 0.25, 0, 0.75, 1 ]
  5858. },
  5859. { "time": 1.8667, "x": 0.68, "y": -1.16 },
  5860. {
  5861. "time": 2.2,
  5862. "x": 0,
  5863. "y": 0,
  5864. "curve": [ 0.25, 0, 0.75, 1 ]
  5865. },
  5866. { "time": 2.5333, "x": 0.68, "y": -1.16 },
  5867. {
  5868. "time": 2.9333,
  5869. "x": 0,
  5870. "y": 0,
  5871. "curve": [ 0.25, 0, 0.75, 1 ]
  5872. },
  5873. { "time": 3.2333, "x": 0.68, "y": -1.16 },
  5874. {
  5875. "time": 3.5667,
  5876. "x": 0,
  5877. "y": 0,
  5878. "curve": [ 0.25, 0, 0.75, 1 ]
  5879. },
  5880. { "time": 3.9, "x": 0.68, "y": -1.16 },
  5881. {
  5882. "time": 4.2333,
  5883. "x": 0,
  5884. "y": 0,
  5885. "curve": [ 0.25, 0, 0.75, 1 ]
  5886. },
  5887. { "time": 4.5333, "x": 0.68, "y": -1.16 },
  5888. {
  5889. "time": 4.8667,
  5890. "x": 0,
  5891. "y": 0,
  5892. "curve": [ 0.25, 0, 0.75, 1 ]
  5893. },
  5894. { "time": 5.2, "x": 0.68, "y": -1.16 }
  5895. ],
  5896. "scale": [
  5897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5898. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5899. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5900. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5901. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5902. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5903. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5904. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5905. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5907. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5909. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5910. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5911. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5912. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5913. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 5.2, "x": 1, "y": 1 }
  5915. ]
  5916. },
  5917. "bone21": {
  5918. "rotate": [
  5919. {
  5920. "time": 0,
  5921. "angle": 0,
  5922. "curve": [ 0.25, 0, 0.75, 1 ]
  5923. },
  5924. {
  5925. "time": 0.1667,
  5926. "angle": -0.98,
  5927. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5928. },
  5929. {
  5930. "time": 0.3333,
  5931. "angle": 7.87,
  5932. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5933. },
  5934. { "time": 0.5, "angle": -3.24, "curve": "stepped" },
  5935. { "time": 0.6667, "angle": -3.24, "curve": "stepped" },
  5936. { "time": 0.9667, "angle": -3.24, "curve": "stepped" },
  5937. { "time": 1.2667, "angle": -3.24, "curve": "stepped" },
  5938. { "time": 1.5667, "angle": -3.24, "curve": "stepped" },
  5939. { "time": 1.8667, "angle": -3.24, "curve": "stepped" },
  5940. { "time": 2.2, "angle": -3.24, "curve": "stepped" },
  5941. { "time": 2.5333, "angle": -3.24, "curve": "stepped" },
  5942. { "time": 2.9333, "angle": -3.24, "curve": "stepped" },
  5943. { "time": 3.2333, "angle": -3.24, "curve": "stepped" },
  5944. { "time": 3.5667, "angle": -3.24, "curve": "stepped" },
  5945. { "time": 3.9, "angle": -3.24, "curve": "stepped" },
  5946. { "time": 4.2333, "angle": -3.24, "curve": "stepped" },
  5947. { "time": 4.5333, "angle": -3.24, "curve": "stepped" },
  5948. { "time": 4.8667, "angle": -3.24, "curve": "stepped" },
  5949. { "time": 5.2, "angle": -3.24 }
  5950. ],
  5951. "translate": [
  5952. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5953. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5954. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5955. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5956. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5957. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5958. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5959. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5960. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5961. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5962. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5963. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5964. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5965. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5966. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5967. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5968. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5969. { "time": 5.2, "x": 0, "y": 0 }
  5970. ],
  5971. "scale": [
  5972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5973. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5983. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5984. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5985. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5986. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5987. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5988. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5989. { "time": 5.2, "x": 1, "y": 1 }
  5990. ]
  5991. },
  5992. "bone22": {
  5993. "rotate": [
  5994. { "time": 0, "angle": 0 },
  5995. { "time": 0.1667, "angle": 8.77 },
  5996. { "time": 0.3333, "angle": -3.46 }
  5997. ],
  5998. "translate": [
  5999. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6000. { "time": 0.1667, "x": 0, "y": 0 },
  6001. { "time": 0.3333, "x": 0.1, "y": -3.16, "curve": "stepped" },
  6002. { "time": 0.3667, "x": -17.34, "y": -116.72 }
  6003. ],
  6004. "scale": [
  6005. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6006. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6007. { "time": 0.3333, "x": 1, "y": 1 }
  6008. ]
  6009. },
  6010. "bone23": {
  6011. "rotate": [
  6012. { "time": 0, "angle": 0 },
  6013. { "time": 0.1667, "angle": 12.4 },
  6014. { "time": 0.3333, "angle": -82.61 }
  6015. ],
  6016. "translate": [
  6017. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6018. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6019. { "time": 0.3333, "x": 0, "y": 0 }
  6020. ],
  6021. "scale": [
  6022. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6024. { "time": 0.3333, "x": 1, "y": 1 }
  6025. ]
  6026. },
  6027. "bone24": {
  6028. "rotate": [
  6029. { "time": 0, "angle": 0 },
  6030. { "time": 0.1667, "angle": 6.05 },
  6031. { "time": 0.3333, "angle": 18.34 }
  6032. ],
  6033. "translate": [
  6034. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6035. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6036. { "time": 0.3333, "x": 0, "y": 0 }
  6037. ],
  6038. "scale": [
  6039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 0.1667, "x": 1, "y": 1 },
  6041. { "time": 0.3333, "x": 0.8, "y": 1 }
  6042. ]
  6043. },
  6044. "bone25": {
  6045. "rotate": [
  6046. { "time": 0, "angle": 0 },
  6047. { "time": 0.1667, "angle": -4.88 },
  6048. { "time": 0.3333, "angle": 16.9 }
  6049. ],
  6050. "translate": [
  6051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6052. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6053. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6054. { "time": 0.3667, "x": -10.25, "y": -103.17 }
  6055. ],
  6056. "scale": [
  6057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6058. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6059. { "time": 0.3333, "x": 1, "y": 1 }
  6060. ]
  6061. },
  6062. "bone26": {
  6063. "rotate": [
  6064. { "time": 0, "angle": 0 },
  6065. { "time": 0.1667, "angle": -11.29 },
  6066. { "time": 0.3333, "angle": -86.34 }
  6067. ],
  6068. "translate": [
  6069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6070. { "time": 0.1667, "x": 0, "y": 0 },
  6071. { "time": 0.3, "x": -1, "y": -2.13 },
  6072. { "time": 0.3333, "x": 0, "y": 0 }
  6073. ],
  6074. "scale": [
  6075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6076. { "time": 0.1667, "x": 1, "y": 1 },
  6077. { "time": 0.3333, "x": 0.8, "y": 1 }
  6078. ]
  6079. },
  6080. "bone27": {
  6081. "rotate": [
  6082. { "time": 0, "angle": 0 },
  6083. { "time": 0.1667, "angle": -4.69 },
  6084. { "time": 0.3333, "angle": 0 }
  6085. ],
  6086. "translate": [
  6087. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6088. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6089. { "time": 0.3333, "x": 0, "y": 0 }
  6090. ],
  6091. "scale": [
  6092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6093. { "time": 0.1667, "x": 1, "y": 1 },
  6094. { "time": 0.3333, "x": 0.8, "y": 1 }
  6095. ]
  6096. },
  6097. "bone28": {
  6098. "rotate": [
  6099. { "time": 0, "angle": 0, "curve": "stepped" },
  6100. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6101. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6102. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6103. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6104. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6105. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  6106. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  6107. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  6108. { "time": 2.2, "angle": 0, "curve": "stepped" },
  6109. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  6110. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  6111. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  6112. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6113. { "time": 3.9, "angle": 0, "curve": "stepped" },
  6114. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  6115. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  6116. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  6117. { "time": 5.2, "angle": 0 }
  6118. ],
  6119. "translate": [
  6120. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6121. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6122. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6123. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6124. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6125. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6126. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6127. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6128. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6129. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6130. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6131. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6132. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6133. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6134. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6135. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6136. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  6137. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  6138. { "time": 5.2, "x": 0, "y": 0 }
  6139. ],
  6140. "scale": [
  6141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6142. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6143. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6144. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6145. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6146. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6147. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6148. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6149. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6150. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6151. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6152. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6153. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6154. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6155. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6156. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 5.2, "x": 1, "y": 1 }
  6160. ]
  6161. },
  6162. "bone29": {
  6163. "rotate": [
  6164. { "time": 0, "angle": 0 },
  6165. { "time": 0.1667, "angle": -10.45 },
  6166. { "time": 0.3333, "angle": 0 },
  6167. { "time": 0.5, "angle": -10.84 },
  6168. { "time": 0.6667, "angle": 0 },
  6169. { "time": 0.9667, "angle": -10.84 },
  6170. { "time": 1.2667, "angle": 0 },
  6171. { "time": 1.5667, "angle": -10.84 },
  6172. { "time": 1.8667, "angle": 0 },
  6173. { "time": 2.2, "angle": -10.84 },
  6174. { "time": 2.5333, "angle": 0 },
  6175. { "time": 2.9333, "angle": -10.84 },
  6176. { "time": 3.2333, "angle": 0 },
  6177. { "time": 3.5667, "angle": -10.84 },
  6178. { "time": 3.9, "angle": 0 },
  6179. { "time": 4.2333, "angle": -10.84 },
  6180. { "time": 4.5333, "angle": 0 }
  6181. ],
  6182. "translate": [
  6183. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6184. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6185. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6186. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6187. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6188. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6189. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6190. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6191. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6192. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6193. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6194. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6195. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6196. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6197. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6198. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6199. { "time": 4.5333, "x": 0, "y": 0 }
  6200. ],
  6201. "scale": [
  6202. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6203. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6204. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6205. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6206. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6210. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6211. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6212. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6213. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6214. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6215. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6216. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6217. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6218. { "time": 4.5333, "x": 1, "y": 1 }
  6219. ]
  6220. },
  6221. "bone30": {
  6222. "rotate": [
  6223. { "time": 0, "angle": 0 },
  6224. { "time": 0.1667, "angle": 16.94 },
  6225. { "time": 0.3333, "angle": 0 },
  6226. { "time": 0.5, "angle": 24.75 },
  6227. { "time": 0.6667, "angle": 0 },
  6228. { "time": 0.9667, "angle": 24.75 },
  6229. { "time": 1.2667, "angle": 0 },
  6230. { "time": 1.5667, "angle": 24.75 },
  6231. { "time": 1.8667, "angle": 0 },
  6232. { "time": 2.2, "angle": 24.75 },
  6233. { "time": 2.5333, "angle": 0 },
  6234. { "time": 2.9333, "angle": 24.75 },
  6235. { "time": 3.2333, "angle": 0 },
  6236. { "time": 3.5667, "angle": 24.75 },
  6237. { "time": 3.9, "angle": 0 },
  6238. { "time": 4.2333, "angle": 24.75 },
  6239. { "time": 4.5333, "angle": 0 }
  6240. ],
  6241. "translate": [
  6242. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6243. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6244. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6245. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6246. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6247. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6248. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6249. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6252. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6253. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6254. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6257. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6258. { "time": 4.5333, "x": 0, "y": 0 }
  6259. ],
  6260. "scale": [
  6261. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6268. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6269. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6270. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6271. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6272. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6273. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6274. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6275. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6276. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6277. { "time": 4.5333, "x": 1, "y": 1 }
  6278. ]
  6279. },
  6280. "bone31": {
  6281. "rotate": [
  6282. { "time": 0, "angle": 0, "curve": "stepped" },
  6283. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6284. { "time": 0.3333, "angle": 0 },
  6285. { "time": 0.5, "angle": -7.22 },
  6286. { "time": 0.6667, "angle": 0 },
  6287. { "time": 0.9667, "angle": -7.22 },
  6288. { "time": 1.2667, "angle": 0 },
  6289. { "time": 1.5667, "angle": -7.22 },
  6290. { "time": 1.8667, "angle": 0 },
  6291. { "time": 2.2, "angle": -7.22 },
  6292. { "time": 2.5333, "angle": 0 },
  6293. { "time": 2.9333, "angle": -7.22 },
  6294. { "time": 3.2333, "angle": 0 },
  6295. { "time": 3.5667, "angle": -7.22 },
  6296. { "time": 3.9, "angle": 0 },
  6297. { "time": 4.2333, "angle": -7.22 },
  6298. { "time": 4.5333, "angle": 0 }
  6299. ],
  6300. "translate": [
  6301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6302. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6303. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6304. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6305. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6306. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6307. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6308. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6309. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6310. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6311. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6312. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6313. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6314. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6315. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6316. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6317. { "time": 4.5333, "x": 0, "y": 0 }
  6318. ],
  6319. "scale": [
  6320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6321. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6322. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6323. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6324. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6325. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6326. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6327. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6328. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6329. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6330. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6331. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6332. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6333. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6334. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6335. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6336. { "time": 4.5333, "x": 1, "y": 1 }
  6337. ]
  6338. },
  6339. "bone32": {
  6340. "rotate": [
  6341. { "time": 0, "angle": 0 }
  6342. ],
  6343. "translate": [
  6344. { "time": 0, "x": 164.76, "y": 0 }
  6345. ],
  6346. "scale": [
  6347. { "time": 0, "x": 1, "y": 1 }
  6348. ]
  6349. },
  6350. "bone33": {
  6351. "rotate": [
  6352. { "time": 0, "angle": 0 }
  6353. ],
  6354. "translate": [
  6355. { "time": 0, "x": 0, "y": 0 }
  6356. ],
  6357. "scale": [
  6358. { "time": 0, "x": 1, "y": 1 }
  6359. ]
  6360. },
  6361. "bone34": {
  6362. "rotate": [
  6363. { "time": 0, "angle": 0 }
  6364. ],
  6365. "translate": [
  6366. { "time": 0, "x": 0, "y": 0 }
  6367. ],
  6368. "scale": [
  6369. { "time": 0, "x": 1, "y": 1 }
  6370. ]
  6371. },
  6372. "bone49": {
  6373. "rotate": [
  6374. { "time": 0, "angle": 0, "curve": "stepped" },
  6375. { "time": 0.1667, "angle": 0 },
  6376. { "time": 0.3333, "angle": -17.86 },
  6377. { "time": 0.5, "angle": -5.28 },
  6378. { "time": 0.6667, "angle": -5.85 },
  6379. { "time": 0.9667, "angle": -5.28 },
  6380. { "time": 1.2667, "angle": -5.85 },
  6381. { "time": 1.5667, "angle": -5.28 },
  6382. { "time": 1.8667, "angle": -5.85 },
  6383. { "time": 2.2, "angle": -5.28 },
  6384. { "time": 2.5333, "angle": -5.85 },
  6385. { "time": 2.9333, "angle": -5.28 },
  6386. { "time": 3.2333, "angle": -5.85 },
  6387. { "time": 3.5667, "angle": -5.28 },
  6388. { "time": 3.9, "angle": -5.85 },
  6389. { "time": 4.2333, "angle": -5.28 },
  6390. { "time": 4.5333, "angle": -5.85 }
  6391. ],
  6392. "translate": [
  6393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6394. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6395. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6397. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6398. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6399. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6400. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6401. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6402. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6403. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6404. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6405. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6406. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6407. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6408. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6409. { "time": 4.5333, "x": 0, "y": 0 }
  6410. ],
  6411. "scale": [
  6412. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6413. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6414. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6415. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6416. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6417. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6418. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6419. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6420. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6421. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6422. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6423. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6424. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6425. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6426. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6427. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6428. { "time": 4.5333, "x": 1, "y": 1 }
  6429. ]
  6430. },
  6431. "bone50": {
  6432. "rotate": [
  6433. { "time": 0, "angle": 0, "curve": "stepped" },
  6434. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6435. { "time": 0.3333, "angle": 0 },
  6436. { "time": 0.5, "angle": -16.77 },
  6437. { "time": 0.6667, "angle": -26.69 },
  6438. { "time": 0.9667, "angle": -16.77 },
  6439. { "time": 1.2667, "angle": -26.69 },
  6440. { "time": 1.5667, "angle": -16.77 },
  6441. { "time": 1.8667, "angle": -26.69 },
  6442. { "time": 2.2, "angle": -16.77 },
  6443. { "time": 2.5333, "angle": -26.69 },
  6444. { "time": 2.9333, "angle": -16.77 },
  6445. { "time": 3.2333, "angle": -26.69 },
  6446. { "time": 3.5667, "angle": -16.77 },
  6447. { "time": 3.9, "angle": -26.69 },
  6448. { "time": 4.2333, "angle": -16.77 },
  6449. { "time": 4.5333, "angle": -26.69 }
  6450. ],
  6451. "translate": [
  6452. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6453. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6454. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6455. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6456. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6457. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6458. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6459. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6460. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6461. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6462. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6463. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6464. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6465. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6466. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6467. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6468. { "time": 4.5333, "x": 0, "y": 0 }
  6469. ],
  6470. "scale": [
  6471. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6472. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6473. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6474. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6475. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6476. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6477. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6478. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6479. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6480. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6481. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6482. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6483. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6484. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6485. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6486. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6487. { "time": 4.5333, "x": 1, "y": 1 }
  6488. ]
  6489. },
  6490. "bone52": {
  6491. "rotate": [
  6492. { "time": 0, "angle": 0, "curve": "stepped" },
  6493. {
  6494. "time": 0.1667,
  6495. "angle": 0,
  6496. "curve": [ 0.25, 0, 0.75, 1 ]
  6497. },
  6498. {
  6499. "time": 0.3333,
  6500. "angle": 31.86,
  6501. "curve": [ 0.25, 0, 0.75, 1 ]
  6502. },
  6503. {
  6504. "time": 0.5,
  6505. "angle": 28.62,
  6506. "curve": [ 0.25, 0, 0.75, 1 ]
  6507. },
  6508. {
  6509. "time": 0.6667,
  6510. "angle": 55.03,
  6511. "curve": [ 0.25, 0, 0.75, 1 ]
  6512. },
  6513. {
  6514. "time": 0.9667,
  6515. "angle": 28.62,
  6516. "curve": [ 0.25, 0, 0.75, 1 ]
  6517. },
  6518. {
  6519. "time": 1.2667,
  6520. "angle": 55.03,
  6521. "curve": [ 0.25, 0, 0.75, 1 ]
  6522. },
  6523. {
  6524. "time": 1.5667,
  6525. "angle": 28.62,
  6526. "curve": [ 0.25, 0, 0.75, 1 ]
  6527. },
  6528. {
  6529. "time": 1.8667,
  6530. "angle": 55.03,
  6531. "curve": [ 0.25, 0, 0.75, 1 ]
  6532. },
  6533. {
  6534. "time": 2.2,
  6535. "angle": 28.62,
  6536. "curve": [ 0.25, 0, 0.75, 1 ]
  6537. },
  6538. {
  6539. "time": 2.5333,
  6540. "angle": 55.03,
  6541. "curve": [ 0.25, 0, 0.75, 1 ]
  6542. },
  6543. {
  6544. "time": 2.9333,
  6545. "angle": 28.62,
  6546. "curve": [ 0.25, 0, 0.75, 1 ]
  6547. },
  6548. {
  6549. "time": 3.2333,
  6550. "angle": 55.03,
  6551. "curve": [ 0.25, 0, 0.75, 1 ]
  6552. },
  6553. {
  6554. "time": 3.5667,
  6555. "angle": 28.62,
  6556. "curve": [ 0.25, 0, 0.75, 1 ]
  6557. },
  6558. {
  6559. "time": 3.9,
  6560. "angle": 55.03,
  6561. "curve": [ 0.25, 0, 0.75, 1 ]
  6562. },
  6563. {
  6564. "time": 4.2333,
  6565. "angle": 28.62,
  6566. "curve": [ 0.25, 0, 0.75, 1 ]
  6567. },
  6568. { "time": 4.5333, "angle": 55.03 }
  6569. ]
  6570. },
  6571. "bone53": {
  6572. "rotate": [
  6573. { "time": 0, "angle": 0, "curve": "stepped" },
  6574. {
  6575. "time": 0.1667,
  6576. "angle": 0,
  6577. "curve": [ 0.25, 0, 0.75, 1 ]
  6578. },
  6579. {
  6580. "time": 0.3333,
  6581. "angle": 15.04,
  6582. "curve": [ 0.25, 0, 0.75, 1 ]
  6583. },
  6584. {
  6585. "time": 0.5,
  6586. "angle": -12.72,
  6587. "curve": [ 0.25, 0, 0.75, 1 ]
  6588. },
  6589. {
  6590. "time": 0.6667,
  6591. "angle": 8.84,
  6592. "curve": [ 0.25, 0, 0.75, 1 ]
  6593. },
  6594. {
  6595. "time": 0.9667,
  6596. "angle": -19.46,
  6597. "curve": [ 0.25, 0, 0.75, 1 ]
  6598. },
  6599. {
  6600. "time": 1.2667,
  6601. "angle": 8.84,
  6602. "curve": [ 0.25, 0, 0.75, 1 ]
  6603. },
  6604. {
  6605. "time": 1.5667,
  6606. "angle": -19.46,
  6607. "curve": [ 0.25, 0, 0.75, 1 ]
  6608. },
  6609. {
  6610. "time": 1.8667,
  6611. "angle": 8.84,
  6612. "curve": [ 0.25, 0, 0.75, 1 ]
  6613. },
  6614. {
  6615. "time": 2.2,
  6616. "angle": -19.46,
  6617. "curve": [ 0.25, 0, 0.75, 1 ]
  6618. },
  6619. {
  6620. "time": 2.5333,
  6621. "angle": 8.84,
  6622. "curve": [ 0.25, 0, 0.75, 1 ]
  6623. },
  6624. {
  6625. "time": 2.9333,
  6626. "angle": -19.46,
  6627. "curve": [ 0.25, 0, 0.75, 1 ]
  6628. },
  6629. {
  6630. "time": 3.2333,
  6631. "angle": 8.84,
  6632. "curve": [ 0.25, 0, 0.75, 1 ]
  6633. },
  6634. {
  6635. "time": 3.5667,
  6636. "angle": -19.46,
  6637. "curve": [ 0.25, 0, 0.75, 1 ]
  6638. },
  6639. {
  6640. "time": 3.9,
  6641. "angle": 8.84,
  6642. "curve": [ 0.25, 0, 0.75, 1 ]
  6643. },
  6644. {
  6645. "time": 4.2333,
  6646. "angle": -19.46,
  6647. "curve": [ 0.25, 0, 0.75, 1 ]
  6648. },
  6649. { "time": 4.5333, "angle": 8.84 }
  6650. ]
  6651. },
  6652. "bone55": {
  6653. "rotate": [
  6654. { "time": 0, "angle": 0 },
  6655. { "time": 0.1667, "angle": -10.08 },
  6656. { "time": 0.3333, "angle": 0 },
  6657. { "time": 0.5, "angle": -7.7 },
  6658. { "time": 0.6667, "angle": 0 },
  6659. { "time": 0.9667, "angle": -7.7 },
  6660. { "time": 1.2667, "angle": 0 },
  6661. { "time": 1.5667, "angle": -7.7 },
  6662. { "time": 1.8667, "angle": 0 },
  6663. { "time": 2.2, "angle": -7.7 },
  6664. { "time": 2.5333, "angle": 0 },
  6665. { "time": 2.9333, "angle": -7.7 },
  6666. { "time": 3.2333, "angle": 0 },
  6667. { "time": 3.5667, "angle": -7.7 },
  6668. { "time": 3.9, "angle": 0 },
  6669. { "time": 4.2333, "angle": -7.7 },
  6670. { "time": 4.5333, "angle": 0 }
  6671. ],
  6672. "translate": [
  6673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6674. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6675. { "time": 0.3333, "x": 0, "y": 0 },
  6676. { "time": 0.5, "x": 0.55, "y": -0.72 },
  6677. { "time": 0.6667, "x": 0, "y": 0 },
  6678. { "time": 0.9667, "x": 0.55, "y": -0.72 },
  6679. { "time": 1.2667, "x": 0, "y": 0 },
  6680. { "time": 1.5667, "x": 0.55, "y": -0.72 },
  6681. { "time": 1.8667, "x": 0, "y": 0 },
  6682. { "time": 2.2, "x": 0.55, "y": -0.72 },
  6683. { "time": 2.5333, "x": 0, "y": 0 },
  6684. { "time": 2.9333, "x": 0.55, "y": -0.72 },
  6685. { "time": 3.2333, "x": 0, "y": 0 },
  6686. { "time": 3.5667, "x": 0.55, "y": -0.72 },
  6687. { "time": 3.9, "x": 0, "y": 0 },
  6688. { "time": 4.2333, "x": 0.55, "y": -0.72 },
  6689. { "time": 4.5333, "x": 0, "y": 0 }
  6690. ],
  6691. "scale": [
  6692. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6693. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6694. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6695. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6696. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6697. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6698. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6699. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6700. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6701. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6702. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6703. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6704. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6705. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6706. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6707. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6708. { "time": 4.5333, "x": 1, "y": 1 }
  6709. ]
  6710. },
  6711. "bone56": {
  6712. "rotate": [
  6713. { "time": 0, "angle": 0 },
  6714. { "time": 0.1667, "angle": 4.51 },
  6715. { "time": 0.3333, "angle": 0 },
  6716. { "time": 0.5, "angle": 7.83 },
  6717. { "time": 0.6667, "angle": 0 },
  6718. { "time": 0.9667, "angle": 7.83 },
  6719. { "time": 1.2667, "angle": 0 },
  6720. { "time": 1.5667, "angle": 7.83 },
  6721. { "time": 1.8667, "angle": 0 },
  6722. { "time": 2.2, "angle": 7.83 },
  6723. { "time": 2.5333, "angle": 0 },
  6724. { "time": 2.9333, "angle": 7.83 },
  6725. { "time": 3.2333, "angle": 0 },
  6726. { "time": 3.5667, "angle": 7.83 },
  6727. { "time": 3.9, "angle": 0 },
  6728. { "time": 4.2333, "angle": 7.83 },
  6729. { "time": 4.5333, "angle": 0 }
  6730. ],
  6731. "translate": [
  6732. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6733. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6734. { "time": 0.3333, "x": 0, "y": 0 },
  6735. { "time": 0.5, "x": 0.1, "y": 0.77 },
  6736. { "time": 0.6667, "x": 0, "y": 0 },
  6737. { "time": 0.9667, "x": 0.1, "y": 0.77 },
  6738. { "time": 1.2667, "x": 0, "y": 0 },
  6739. { "time": 1.5667, "x": 0.1, "y": 0.77 },
  6740. { "time": 1.8667, "x": 0, "y": 0 },
  6741. { "time": 2.2, "x": 0.1, "y": 0.77 },
  6742. { "time": 2.5333, "x": 0, "y": 0 },
  6743. { "time": 2.9333, "x": 0.1, "y": 0.77 },
  6744. { "time": 3.2333, "x": 0, "y": 0 },
  6745. { "time": 3.5667, "x": 0.1, "y": 0.77 },
  6746. { "time": 3.9, "x": 0, "y": 0 },
  6747. { "time": 4.2333, "x": 0.1, "y": 0.77 },
  6748. { "time": 4.5333, "x": 0, "y": 0 }
  6749. ],
  6750. "scale": [
  6751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6752. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6753. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6754. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6755. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6756. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6757. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6758. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6759. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6760. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6761. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6762. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6763. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6764. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6765. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6766. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6767. { "time": 4.5333, "x": 1, "y": 1 }
  6768. ]
  6769. },
  6770. "bone35": {
  6771. "translate": [
  6772. { "time": 0, "x": -310.31, "y": 1.15 }
  6773. ],
  6774. "scale": [
  6775. { "time": 0, "x": -1.1, "y": 1.1 }
  6776. ]
  6777. },
  6778. "bone58": {
  6779. "rotate": [
  6780. { "time": 0, "angle": 0, "curve": "stepped" },
  6781. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6782. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  6783. { "time": 3.2667, "angle": 0 }
  6784. ],
  6785. "translate": [
  6786. { "time": 0, "x": 0, "y": -1.13 },
  6787. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 0.2, "x": 0, "y": 0 },
  6789. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  6790. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  6791. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6792. { "time": 3.0333, "x": 0, "y": 0 },
  6793. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  6794. ],
  6795. "scale": [
  6796. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6797. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6798. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  6799. { "time": 3.2667, "x": 1, "y": 1 }
  6800. ]
  6801. },
  6802. "bone57": {
  6803. "rotate": [
  6804. { "time": 0, "angle": 0, "curve": "stepped" },
  6805. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6806. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  6807. { "time": 3.2667, "angle": 0 }
  6808. ],
  6809. "translate": [
  6810. { "time": 0, "x": 0, "y": -1.13 },
  6811. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6812. { "time": 0.2, "x": 0, "y": 0 },
  6813. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  6814. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  6815. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6816. { "time": 3.0333, "x": 0, "y": 0 },
  6817. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  6818. ],
  6819. "scale": [
  6820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6821. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6822. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  6823. { "time": 3.2667, "x": 1, "y": 1 }
  6824. ]
  6825. },
  6826. "bone36": {
  6827. "translate": [
  6828. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6829. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6830. { "time": 0.5, "x": 0, "y": 0 }
  6831. ],
  6832. "scale": [
  6833. { "time": 0.1667, "x": 1.5, "y": 1.5 },
  6834. { "time": 0.3333, "x": 0.9, "y": 0.9 },
  6835. { "time": 0.5, "x": 1, "y": 1 }
  6836. ]
  6837. },
  6838. "bone37": {
  6839. "translate": [
  6840. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6841. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6842. { "time": 0.8, "x": 0, "y": 0 }
  6843. ],
  6844. "scale": [
  6845. { "time": 0.5, "x": 1.5, "y": 1.5 },
  6846. { "time": 0.6667, "x": 0.9, "y": 0.9 },
  6847. { "time": 0.8, "x": 1, "y": 1 }
  6848. ]
  6849. },
  6850. "bone38": {
  6851. "translate": [
  6852. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6854. { "time": 1.1667, "x": 0, "y": 0 }
  6855. ],
  6856. "scale": [
  6857. { "time": 0.8333, "x": 1.5, "y": 1.5 },
  6858. { "time": 1, "x": 0.9, "y": 0.9 },
  6859. { "time": 1.1667, "x": 1, "y": 1 }
  6860. ]
  6861. },
  6862. "bone39": {
  6863. "translate": [
  6864. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6865. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6866. { "time": 1.4333, "x": 0, "y": 0 }
  6867. ],
  6868. "scale": [
  6869. { "time": 1.1, "x": 1.5, "y": 1.5 },
  6870. { "time": 1.2667, "x": 0.9, "y": 0.9 },
  6871. { "time": 1.4333, "x": 1, "y": 1 }
  6872. ]
  6873. },
  6874. "bone40": {
  6875. "translate": [
  6876. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6877. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6878. { "time": 1.6667, "x": 0, "y": 0 }
  6879. ],
  6880. "scale": [
  6881. { "time": 1.3667, "x": 1.5, "y": 1.5 },
  6882. { "time": 1.5333, "x": 0.9, "y": 0.9 },
  6883. { "time": 1.6667, "x": 1, "y": 1 }
  6884. ]
  6885. },
  6886. "bone41": {
  6887. "translate": [
  6888. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6889. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  6890. { "time": 1.9667, "x": 0, "y": 0 }
  6891. ],
  6892. "scale": [
  6893. { "time": 1.6333, "x": 1.5, "y": 1.5 },
  6894. { "time": 1.8, "x": 0.9, "y": 0.9 },
  6895. { "time": 1.9667, "x": 1, "y": 1 }
  6896. ]
  6897. },
  6898. "bone42": {
  6899. "translate": [
  6900. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  6901. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6902. { "time": 2.3, "x": 0, "y": 0 }
  6903. ],
  6904. "scale": [
  6905. { "time": 1.9667, "x": 1.5, "y": 1.5 },
  6906. { "time": 2.1333, "x": 0.9, "y": 0.9 },
  6907. { "time": 2.3, "x": 1, "y": 1 }
  6908. ]
  6909. },
  6910. "bone43": {
  6911. "translate": [
  6912. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  6913. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6914. { "time": 2.8333, "x": 0, "y": 0 }
  6915. ],
  6916. "scale": [
  6917. { "time": 2.5, "x": 1.5, "y": 1.5 },
  6918. { "time": 2.6667, "x": 0.9, "y": 0.9 },
  6919. { "time": 2.8333, "x": 1, "y": 1 }
  6920. ]
  6921. },
  6922. "bone44": {
  6923. "translate": [
  6924. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  6925. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  6926. { "time": 3.1667, "x": 0, "y": 0 }
  6927. ],
  6928. "scale": [
  6929. { "time": 2.8667, "x": 1.5, "y": 1.5 },
  6930. { "time": 3.0333, "x": 0.9, "y": 0.9 },
  6931. { "time": 3.1667, "x": 1, "y": 1 }
  6932. ]
  6933. },
  6934. "bone45": {
  6935. "translate": [
  6936. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6937. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6938. { "time": 3.9667, "x": 0, "y": 0 }
  6939. ],
  6940. "scale": [
  6941. { "time": 3.3333, "x": 2, "y": 2 },
  6942. { "time": 3.5, "x": 0.9, "y": 0.9 },
  6943. { "time": 3.6667, "x": 1, "y": 1 }
  6944. ]
  6945. },
  6946. "bone46": {
  6947. "translate": [
  6948. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  6949. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  6950. { "time": 4.2, "x": 0, "y": 0 }
  6951. ],
  6952. "scale": [
  6953. { "time": 3.8667, "x": 2, "y": 2 },
  6954. { "time": 4.0333, "x": 0.9, "y": 0.9 },
  6955. { "time": 4.2, "x": 1, "y": 1 }
  6956. ]
  6957. },
  6958. "bone47": {
  6959. "translate": [
  6960. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 4.7, "x": 0, "y": 0 }
  6963. ],
  6964. "scale": [
  6965. { "time": 4.3667, "x": 2, "y": 2 },
  6966. { "time": 4.5333, "x": 0.9, "y": 0.9 },
  6967. { "time": 4.7, "x": 1, "y": 1 }
  6968. ]
  6969. }
  6970. },
  6971. "deform": {
  6972. "default": {
  6973. "dang": {
  6974. "dang": [
  6975. {
  6976. "time": 0,
  6977. "vertices": [ -0.01262, -0.88391 ]
  6978. },
  6979. {
  6980. "time": 0.1667,
  6981. "vertices": [ -0.01262, -0.88391, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643 ]
  6982. },
  6983. {
  6984. "time": 0.3333,
  6985. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6986. },
  6987. {
  6988. "time": 0.5,
  6989. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6990. },
  6991. {
  6992. "time": 0.6667,
  6993. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6994. },
  6995. {
  6996. "time": 0.9667,
  6997. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6998. },
  6999. {
  7000. "time": 1.2667,
  7001. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7002. },
  7003. {
  7004. "time": 1.5667,
  7005. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7006. },
  7007. {
  7008. "time": 1.8667,
  7009. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7010. },
  7011. {
  7012. "time": 2.2,
  7013. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7014. },
  7015. {
  7016. "time": 2.5333,
  7017. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7018. },
  7019. {
  7020. "time": 2.9333,
  7021. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7022. },
  7023. {
  7024. "time": 3.2333,
  7025. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7026. },
  7027. {
  7028. "time": 3.5667,
  7029. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7030. },
  7031. {
  7032. "time": 3.9,
  7033. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7034. },
  7035. {
  7036. "time": 4.2333,
  7037. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7038. },
  7039. {
  7040. "time": 4.5333,
  7041. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7042. },
  7043. {
  7044. "time": 4.8667,
  7045. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7046. },
  7047. {
  7048. "time": 5.2,
  7049. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7050. }
  7051. ]
  7052. },
  7053. "lingzi": {
  7054. "lingzi": [
  7055. { "time": 0.1667 },
  7056. {
  7057. "time": 0.4,
  7058. "offset": 2,
  7059. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7060. },
  7061. {
  7062. "time": 0.6667,
  7063. "offset": 6,
  7064. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7065. },
  7066. {
  7067. "time": 0.9667,
  7068. "offset": 2,
  7069. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7070. },
  7071. {
  7072. "time": 1.2667,
  7073. "offset": 6,
  7074. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7075. },
  7076. {
  7077. "time": 1.5667,
  7078. "offset": 2,
  7079. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7080. },
  7081. {
  7082. "time": 1.8667,
  7083. "offset": 6,
  7084. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7085. },
  7086. {
  7087. "time": 2.1667,
  7088. "offset": 2,
  7089. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7090. },
  7091. {
  7092. "time": 2.4667,
  7093. "offset": 6,
  7094. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7095. "curve": "stepped"
  7096. },
  7097. {
  7098. "time": 2.5333,
  7099. "offset": 6,
  7100. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7101. },
  7102. {
  7103. "time": 2.9,
  7104. "offset": 2,
  7105. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7106. },
  7107. {
  7108. "time": 3.1667,
  7109. "offset": 6,
  7110. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7111. "curve": "stepped"
  7112. },
  7113. {
  7114. "time": 3.2333,
  7115. "offset": 6,
  7116. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7117. },
  7118. {
  7119. "time": 3.5333,
  7120. "offset": 2,
  7121. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7122. },
  7123. {
  7124. "time": 3.7667,
  7125. "offset": 6,
  7126. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7127. "curve": "stepped"
  7128. },
  7129. {
  7130. "time": 3.9,
  7131. "offset": 6,
  7132. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7133. },
  7134. {
  7135. "time": 4.2,
  7136. "offset": 2,
  7137. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7138. },
  7139. {
  7140. "time": 4.4667,
  7141. "offset": 6,
  7142. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7143. "curve": "stepped"
  7144. },
  7145. {
  7146. "time": 4.5333,
  7147. "offset": 6,
  7148. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7149. }
  7150. ]
  7151. },
  7152. "shangyi": {
  7153. "shangyi": [
  7154. { "time": 0.1667 },
  7155. {
  7156. "time": 0.3333,
  7157. "offset": 46,
  7158. "vertices": [ 0.31957, 1.64477, 0.25944, 1.65532, -2.0E-5, -1.84968, 0.06747, -1.84845, -2.0E-5, -1.84968, 0.06747, -1.84845 ]
  7159. },
  7160. {
  7161. "time": 0.5,
  7162. "offset": 28,
  7163. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7164. },
  7165. {
  7166. "time": 0.6667,
  7167. "offset": 24,
  7168. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7169. },
  7170. {
  7171. "time": 0.9667,
  7172. "offset": 28,
  7173. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7174. },
  7175. {
  7176. "time": 1.2667,
  7177. "offset": 24,
  7178. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7179. },
  7180. {
  7181. "time": 1.5667,
  7182. "offset": 28,
  7183. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7184. },
  7185. {
  7186. "time": 1.8667,
  7187. "offset": 24,
  7188. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7189. },
  7190. {
  7191. "time": 2.2,
  7192. "offset": 28,
  7193. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7194. },
  7195. {
  7196. "time": 2.5333,
  7197. "offset": 24,
  7198. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7199. },
  7200. {
  7201. "time": 2.9333,
  7202. "offset": 28,
  7203. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7204. },
  7205. {
  7206. "time": 3.2333,
  7207. "offset": 24,
  7208. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7209. },
  7210. {
  7211. "time": 3.5667,
  7212. "offset": 28,
  7213. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7214. },
  7215. {
  7216. "time": 3.9,
  7217. "offset": 24,
  7218. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7219. },
  7220. {
  7221. "time": 4.2333,
  7222. "offset": 28,
  7223. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7224. },
  7225. {
  7226. "time": 4.5333,
  7227. "offset": 24,
  7228. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7229. }
  7230. ]
  7231. },
  7232. "youjiao1": {
  7233. "youjiao1": [
  7234. {
  7235. "time": 0,
  7236. "offset": 68,
  7237. "vertices": [ 6.47365, -1.54266, 4.9081, -0.96003, 3.85265, 0.07049 ]
  7238. }
  7239. ]
  7240. },
  7241. "youshou": {
  7242. "youshou": [
  7243. { "time": 0.1667 },
  7244. {
  7245. "time": 0.3,
  7246. "offset": 46,
  7247. "vertices": [ -0.72944, -4.27695, 4.49204, -2.14155, -2.00895, -3.63001, 3.24948, -3.12452, -3.24054, -2.56062, 1.55338, -3.91862 ]
  7248. }
  7249. ]
  7250. },
  7251. "zuoshou": {
  7252. "zuoshou": [
  7253. { "time": 0, "curve": "stepped" },
  7254. { "time": 0.1667 },
  7255. {
  7256. "time": 0.3,
  7257. "offset": 48,
  7258. "vertices": [ -4.09583, -4.81184, 2.40179, -5.84451, -5.10458, -4.55464, 1.71119, -6.62344, -5.71799, -4.02365, 0.95828, -6.92514, 2.08435, -2.25566 ]
  7259. }
  7260. ]
  7261. }
  7262. }
  7263. }
  7264. },
  7265. "walk1": {
  7266. "slots": {
  7267. "biyan": {
  7268. "attachment": [
  7269. { "time": 1.1, "name": "biyan" },
  7270. { "time": 1.2, "name": null }
  7271. ]
  7272. },
  7273. "gaoguang zuo": {
  7274. "attachment": [
  7275. { "time": 1.1, "name": null },
  7276. { "time": 1.2, "name": "gaoguang zuo" }
  7277. ]
  7278. },
  7279. "gaoguangyou": {
  7280. "attachment": [
  7281. { "time": 1.1, "name": null },
  7282. { "time": 1.2, "name": "gaoguangyou" }
  7283. ]
  7284. },
  7285. "yanbai zuo": {
  7286. "attachment": [
  7287. { "time": 1.1, "name": null },
  7288. { "time": 1.2, "name": "yanbai zuo" }
  7289. ]
  7290. },
  7291. "yanbaiyou": {
  7292. "attachment": [
  7293. { "time": 1.1, "name": null },
  7294. { "time": 1.2, "name": "yanbaiyou" }
  7295. ]
  7296. },
  7297. "yanzhu you": {
  7298. "attachment": [
  7299. { "time": 1.1, "name": null },
  7300. { "time": 1.2, "name": "yanzhu you" }
  7301. ]
  7302. },
  7303. "yanzhu zuo": {
  7304. "attachment": [
  7305. { "time": 1.1, "name": null },
  7306. { "time": 1.2, "name": "yanzhu zuo" }
  7307. ]
  7308. },
  7309. "youjiao1": {
  7310. "attachment": [
  7311. { "time": 0, "name": null }
  7312. ]
  7313. },
  7314. "youshou1": {
  7315. "attachment": [
  7316. { "time": 0, "name": null }
  7317. ]
  7318. },
  7319. "youshou2": {
  7320. "attachment": [
  7321. { "time": 0, "name": null }
  7322. ]
  7323. },
  7324. "zi_1": {
  7325. "attachment": [
  7326. { "time": 0, "name": null }
  7327. ]
  7328. },
  7329. "zi_2": {
  7330. "attachment": [
  7331. { "time": 0, "name": null }
  7332. ]
  7333. },
  7334. "zi_3": {
  7335. "attachment": [
  7336. { "time": 0, "name": null }
  7337. ]
  7338. },
  7339. "zi_4": {
  7340. "attachment": [
  7341. { "time": 0, "name": null }
  7342. ]
  7343. },
  7344. "zi_5": {
  7345. "attachment": [
  7346. { "time": 0, "name": null }
  7347. ]
  7348. },
  7349. "zi_6": {
  7350. "attachment": [
  7351. { "time": 0, "name": null }
  7352. ]
  7353. },
  7354. "zi_7": {
  7355. "attachment": [
  7356. { "time": 0, "name": null }
  7357. ]
  7358. },
  7359. "zi_8": {
  7360. "attachment": [
  7361. { "time": 0, "name": null }
  7362. ]
  7363. },
  7364. "zi_9": {
  7365. "attachment": [
  7366. { "time": 0, "name": null }
  7367. ]
  7368. },
  7369. "zi_10": {
  7370. "attachment": [
  7371. { "time": 0, "name": null }
  7372. ]
  7373. },
  7374. "zi_11": {
  7375. "attachment": [
  7376. { "time": 0, "name": null }
  7377. ]
  7378. },
  7379. "zi_12": {
  7380. "attachment": [
  7381. { "time": 0, "name": null }
  7382. ]
  7383. },
  7384. "zuiba2": {
  7385. "attachment": [
  7386. { "time": 0, "name": null },
  7387. { "time": 1, "name": null },
  7388. { "time": 2, "name": null }
  7389. ]
  7390. },
  7391. "zuoshou1": {
  7392. "attachment": [
  7393. { "time": 0, "name": null }
  7394. ]
  7395. },
  7396. "zuoshou2": {
  7397. "attachment": [
  7398. { "time": 0, "name": null }
  7399. ]
  7400. }
  7401. },
  7402. "bones": {
  7403. "root": {
  7404. "rotate": [
  7405. { "time": 0, "angle": 0 }
  7406. ],
  7407. "translate": [
  7408. { "time": 0, "x": 0, "y": 0 }
  7409. ],
  7410. "scale": [
  7411. { "time": 0, "x": 0.65, "y": 0.65 }
  7412. ]
  7413. },
  7414. "bone": {
  7415. "rotate": [
  7416. { "time": 0, "angle": 0, "curve": "stepped" },
  7417. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7418. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7419. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7420. { "time": 1, "angle": 0, "curve": "stepped" },
  7421. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7422. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7423. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7424. { "time": 2, "angle": 0 }
  7425. ],
  7426. "translate": [
  7427. { "time": 0, "x": 0, "y": 0 },
  7428. { "time": 0.1667, "x": 0, "y": 1 },
  7429. { "time": 0.5, "x": 0, "y": 0 },
  7430. { "time": 0.6667, "x": 0, "y": 1 },
  7431. { "time": 1, "x": 0, "y": 0 },
  7432. { "time": 1.1667, "x": 0, "y": 1 },
  7433. { "time": 1.5, "x": 0, "y": 0 },
  7434. { "time": 1.6667, "x": 0, "y": 1 },
  7435. { "time": 2, "x": 0, "y": 0 }
  7436. ],
  7437. "scale": [
  7438. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7439. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7441. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7442. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7443. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7444. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7445. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7446. { "time": 2, "x": 1, "y": 1 }
  7447. ]
  7448. },
  7449. "bone2": {
  7450. "rotate": [
  7451. { "time": 0, "angle": 0, "curve": "stepped" },
  7452. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7453. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7454. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7455. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7456. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7457. { "time": 1, "angle": 0, "curve": "stepped" },
  7458. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7459. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7460. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7461. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7462. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7463. { "time": 2, "angle": 0 }
  7464. ],
  7465. "translate": [
  7466. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7467. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7468. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7469. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7470. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7471. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7472. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7473. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7474. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7475. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7476. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7477. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7478. { "time": 2, "x": 0, "y": 0 }
  7479. ],
  7480. "scale": [
  7481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7482. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7483. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7484. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7485. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7486. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7487. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7488. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7489. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7490. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7491. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7492. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7493. { "time": 2, "x": 1, "y": 1 }
  7494. ]
  7495. },
  7496. "bone3": {
  7497. "rotate": [
  7498. { "time": 0, "angle": -0.31, "curve": "stepped" },
  7499. { "time": 1, "angle": -0.31, "curve": "stepped" },
  7500. { "time": 2, "angle": -0.31 }
  7501. ],
  7502. "translate": [
  7503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7504. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7505. { "time": 2, "x": 0, "y": 0 }
  7506. ],
  7507. "scale": [
  7508. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7509. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7510. { "time": 2, "x": 1, "y": 1 }
  7511. ]
  7512. },
  7513. "bone4": {
  7514. "rotate": [
  7515. { "time": 0, "angle": 0, "curve": "stepped" },
  7516. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7517. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7518. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7519. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7520. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7521. { "time": 1, "angle": 0, "curve": "stepped" },
  7522. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7523. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7524. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7525. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7526. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7527. { "time": 2, "angle": 0 }
  7528. ],
  7529. "translate": [
  7530. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7531. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7532. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7533. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7534. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7535. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7536. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7537. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7538. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7539. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7540. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7541. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7542. { "time": 2, "x": 0, "y": 0 }
  7543. ],
  7544. "scale": [
  7545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7546. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7547. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7548. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7549. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7550. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7551. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7552. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7553. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7554. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7555. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7556. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7557. { "time": 2, "x": 1, "y": 1 }
  7558. ]
  7559. },
  7560. "bone5": {
  7561. "rotate": [
  7562. { "time": 0, "angle": 0, "curve": "stepped" },
  7563. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7564. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7565. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7566. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7567. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7568. { "time": 1, "angle": 0, "curve": "stepped" },
  7569. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7570. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7571. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7572. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7573. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7574. { "time": 2, "angle": 0 }
  7575. ],
  7576. "translate": [
  7577. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7578. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7579. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7580. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7581. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7582. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7583. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7584. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7585. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7586. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7587. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7588. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7589. { "time": 2, "x": 0, "y": 0 }
  7590. ],
  7591. "scale": [
  7592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7593. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7596. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7597. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7598. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7599. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7600. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7601. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7602. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7603. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7604. { "time": 2, "x": 1, "y": 1 }
  7605. ]
  7606. },
  7607. "bone6": {
  7608. "rotate": [
  7609. { "time": 0, "angle": 0, "curve": "stepped" },
  7610. { "time": 1, "angle": 0, "curve": "stepped" },
  7611. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7612. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7613. { "time": 1.3333, "angle": 0 }
  7614. ],
  7615. "translate": [
  7616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7617. { "time": 1, "x": 0, "y": 0 },
  7618. { "time": 1.1, "x": -1.44, "y": 0, "curve": "stepped" },
  7619. { "time": 1.2, "x": -1.44, "y": 0 },
  7620. { "time": 1.3333, "x": 0, "y": 0 }
  7621. ],
  7622. "scale": [
  7623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7624. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7625. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7626. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  7627. { "time": 1.3333, "x": 1, "y": 1 }
  7628. ]
  7629. },
  7630. "bone7": {
  7631. "rotate": [
  7632. { "time": 0, "angle": 0, "curve": "stepped" },
  7633. { "time": 1, "angle": 0, "curve": "stepped" },
  7634. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7635. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7636. { "time": 1.3333, "angle": 0 }
  7637. ],
  7638. "translate": [
  7639. { "time": 0, "x": -1.44, "y": -0.52 }
  7640. ],
  7641. "scale": [
  7642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7643. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7644. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7645. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  7646. { "time": 1.3333, "x": 1, "y": 1 }
  7647. ]
  7648. },
  7649. "bone8": {
  7650. "rotate": [
  7651. { "time": 0, "angle": 0, "curve": "stepped" },
  7652. { "time": 1, "angle": 0, "curve": "stepped" },
  7653. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7654. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7655. { "time": 1.3333, "angle": 0 }
  7656. ],
  7657. "translate": [
  7658. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7659. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7660. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7661. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  7662. { "time": 1.3333, "x": 0, "y": 0 }
  7663. ],
  7664. "scale": [
  7665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7666. { "time": 1, "x": 1, "y": 1 },
  7667. { "time": 1.1, "x": 0.383, "y": 1, "curve": "stepped" },
  7668. { "time": 1.2, "x": 0.383, "y": 1 },
  7669. { "time": 1.3333, "x": 1, "y": 1 }
  7670. ]
  7671. },
  7672. "bone9": {
  7673. "rotate": [
  7674. { "time": 0, "angle": 0, "curve": "stepped" },
  7675. { "time": 1, "angle": 0, "curve": "stepped" },
  7676. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7677. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7678. { "time": 1.3333, "angle": 0 }
  7679. ],
  7680. "translate": [
  7681. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7682. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7683. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7684. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  7685. { "time": 1.3333, "x": 0, "y": 0 }
  7686. ],
  7687. "scale": [
  7688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7689. { "time": 1, "x": 1, "y": 1 },
  7690. { "time": 1.1, "x": 0.415, "y": 1, "curve": "stepped" },
  7691. { "time": 1.2, "x": 0.415, "y": 1 },
  7692. { "time": 1.3333, "x": 1, "y": 1 }
  7693. ]
  7694. },
  7695. "bone10": {
  7696. "rotate": [
  7697. { "time": 0, "angle": 0, "curve": "stepped" },
  7698. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7699. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7700. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7701. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7702. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7703. { "time": 1, "angle": 0, "curve": "stepped" },
  7704. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7705. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7706. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7707. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7708. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7709. { "time": 2, "angle": 0 }
  7710. ],
  7711. "translate": [
  7712. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7713. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7714. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7715. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7716. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7717. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7718. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7719. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7720. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7721. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7722. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7723. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7724. { "time": 2, "x": 0, "y": 0 }
  7725. ],
  7726. "scale": [
  7727. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7728. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7729. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7730. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7731. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7732. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7733. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7734. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7735. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7736. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7737. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7738. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7739. { "time": 2, "x": 1, "y": 1 }
  7740. ]
  7741. },
  7742. "bone11": {
  7743. "rotate": [
  7744. { "time": 0, "angle": 0, "curve": "stepped" },
  7745. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7746. { "time": 1, "angle": 0, "curve": "stepped" },
  7747. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7748. { "time": 2, "angle": 0 }
  7749. ],
  7750. "translate": [
  7751. {
  7752. "time": 0,
  7753. "x": 0.33,
  7754. "y": 0.18,
  7755. "curve": [ 0.25, 0, 0.75, 1 ]
  7756. },
  7757. {
  7758. "time": 0.5,
  7759. "x": 0.01,
  7760. "y": -0.52,
  7761. "curve": [ 0.25, 0, 0.75, 1 ]
  7762. },
  7763. {
  7764. "time": 1,
  7765. "x": 0.33,
  7766. "y": 0.18,
  7767. "curve": [ 0.25, 0, 0.75, 1 ]
  7768. },
  7769. {
  7770. "time": 1.5,
  7771. "x": 0.01,
  7772. "y": -0.52,
  7773. "curve": [ 0.25, 0, 0.75, 1 ]
  7774. },
  7775. { "time": 2, "x": 0.33, "y": 0.18 }
  7776. ],
  7777. "scale": [
  7778. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7780. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7781. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7782. { "time": 2, "x": 1, "y": 1 }
  7783. ]
  7784. },
  7785. "bone12": {
  7786. "rotate": [
  7787. { "time": 0, "angle": -5.51 },
  7788. { "time": 0.5, "angle": 0 },
  7789. { "time": 0.7667, "angle": -8.39 },
  7790. { "time": 1, "angle": -5.51 },
  7791. { "time": 1.5, "angle": 0 },
  7792. { "time": 1.7667, "angle": -8.39 },
  7793. { "time": 2, "angle": -5.51 }
  7794. ],
  7795. "translate": [
  7796. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7797. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7798. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7799. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7800. { "time": 2, "x": 0, "y": 0 }
  7801. ],
  7802. "scale": [
  7803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7805. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7806. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7807. { "time": 2, "x": 1, "y": 1 }
  7808. ]
  7809. },
  7810. "bone13": {
  7811. "rotate": [
  7812. { "time": 0, "angle": -5.51 },
  7813. { "time": 0.5, "angle": 0 },
  7814. { "time": 1, "angle": -5.51 },
  7815. { "time": 1.5, "angle": 0 },
  7816. { "time": 2, "angle": -5.51 }
  7817. ],
  7818. "translate": [
  7819. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7820. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7822. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7823. { "time": 2, "x": 0, "y": 0 }
  7824. ],
  7825. "scale": [
  7826. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7827. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7828. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7829. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7830. { "time": 2, "x": 1, "y": 1 }
  7831. ]
  7832. },
  7833. "bone14": {
  7834. "rotate": [
  7835. { "time": 0, "angle": -5.51 },
  7836. { "time": 0.5, "angle": 0 },
  7837. { "time": 1, "angle": -5.51 },
  7838. { "time": 1.5, "angle": 0 },
  7839. { "time": 2, "angle": -5.51 }
  7840. ],
  7841. "translate": [
  7842. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7843. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7844. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7845. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7846. { "time": 2, "x": 0, "y": 0 }
  7847. ],
  7848. "scale": [
  7849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7850. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7851. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7852. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7853. { "time": 2, "x": 1, "y": 1 }
  7854. ]
  7855. },
  7856. "bone15": {
  7857. "rotate": [
  7858. { "time": 0, "angle": -5.51 },
  7859. { "time": 0.5, "angle": 0 },
  7860. { "time": 0.7667, "angle": 6.61 },
  7861. { "time": 1, "angle": -5.51 },
  7862. { "time": 1.5, "angle": 0 },
  7863. { "time": 1.7667, "angle": 6.61 },
  7864. { "time": 2, "angle": -5.51 }
  7865. ],
  7866. "translate": [
  7867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7868. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7869. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7870. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7871. { "time": 2, "x": 0, "y": 0 }
  7872. ],
  7873. "scale": [
  7874. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7875. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7876. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7877. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7878. { "time": 2, "x": 1, "y": 1 }
  7879. ]
  7880. },
  7881. "bone16": {
  7882. "rotate": [
  7883. { "time": 0, "angle": 0, "curve": "stepped" },
  7884. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7885. { "time": 1, "angle": 0, "curve": "stepped" },
  7886. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7887. { "time": 2, "angle": 0 }
  7888. ],
  7889. "translate": [
  7890. {
  7891. "time": 0,
  7892. "x": 0.01,
  7893. "y": -0.25,
  7894. "curve": [ 0.25, 0, 0.75, 1 ]
  7895. },
  7896. {
  7897. "time": 0.5,
  7898. "x": 0,
  7899. "y": 0,
  7900. "curve": [ 0.25, 0, 0.75, 1 ]
  7901. },
  7902. {
  7903. "time": 1,
  7904. "x": 0.01,
  7905. "y": -0.25,
  7906. "curve": [ 0.25, 0, 0.75, 1 ]
  7907. },
  7908. {
  7909. "time": 1.5,
  7910. "x": 0,
  7911. "y": 0,
  7912. "curve": [ 0.25, 0, 0.75, 1 ]
  7913. },
  7914. { "time": 2, "x": 0.01, "y": -0.25 }
  7915. ],
  7916. "scale": [
  7917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7918. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7919. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7920. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7921. { "time": 2, "x": 1, "y": 1 }
  7922. ]
  7923. },
  7924. "bone17": {
  7925. "rotate": [
  7926. { "time": 0, "angle": 6.41 },
  7927. { "time": 0.5, "angle": 0 },
  7928. { "time": 1, "angle": 6.41 },
  7929. { "time": 1.5, "angle": 0 },
  7930. { "time": 2, "angle": 6.41 }
  7931. ],
  7932. "translate": [
  7933. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7934. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7935. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7936. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7937. { "time": 2, "x": 0, "y": 0 }
  7938. ],
  7939. "scale": [
  7940. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7941. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7942. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7943. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7944. { "time": 2, "x": 1, "y": 1 }
  7945. ]
  7946. },
  7947. "bone18": {
  7948. "rotate": [
  7949. { "time": 0, "angle": 6.41 },
  7950. { "time": 0.5, "angle": 0 },
  7951. { "time": 1, "angle": 6.41 },
  7952. { "time": 1.5, "angle": 0 },
  7953. { "time": 2, "angle": 6.41 }
  7954. ],
  7955. "translate": [
  7956. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7957. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7958. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7959. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7960. { "time": 2, "x": 0, "y": 0 }
  7961. ],
  7962. "scale": [
  7963. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7965. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7966. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7967. { "time": 2, "x": 1, "y": 1 }
  7968. ]
  7969. },
  7970. "bone19": {
  7971. "rotate": [
  7972. { "time": 0, "angle": 6.41 },
  7973. { "time": 0.5, "angle": 0 },
  7974. { "time": 1, "angle": 6.41 },
  7975. { "time": 1.5, "angle": 0 },
  7976. { "time": 2, "angle": 6.41 }
  7977. ],
  7978. "translate": [
  7979. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7980. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7981. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7982. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7983. { "time": 2, "x": 0, "y": 0 }
  7984. ],
  7985. "scale": [
  7986. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7987. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7988. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7989. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7990. { "time": 2, "x": 1, "y": 1 }
  7991. ]
  7992. },
  7993. "bone20": {
  7994. "rotate": [
  7995. { "time": 0, "angle": 6.41 },
  7996. { "time": 0.5, "angle": 0 },
  7997. { "time": 1, "angle": 6.41 },
  7998. { "time": 1.5, "angle": 0 },
  7999. { "time": 2, "angle": 6.41 }
  8000. ],
  8001. "translate": [
  8002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8003. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8004. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8005. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8006. { "time": 2, "x": 0, "y": 0 }
  8007. ],
  8008. "scale": [
  8009. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8010. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8011. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8012. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8013. { "time": 2, "x": 1, "y": 1 }
  8014. ]
  8015. },
  8016. "bone21": {
  8017. "rotate": [
  8018. { "time": 0, "angle": 6.41 },
  8019. { "time": 0.5, "angle": 0 },
  8020. { "time": 0.7667, "angle": -13.89 },
  8021. { "time": 1, "angle": 6.41 },
  8022. { "time": 1.5, "angle": 0 },
  8023. { "time": 1.7667, "angle": -13.89 },
  8024. { "time": 2, "angle": 6.41 }
  8025. ],
  8026. "translate": [
  8027. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8028. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8029. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8030. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8031. { "time": 2, "x": 0, "y": 0 }
  8032. ],
  8033. "scale": [
  8034. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8035. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8036. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8037. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8038. { "time": 2, "x": 1, "y": 1 }
  8039. ]
  8040. },
  8041. "bone22": {
  8042. "rotate": [
  8043. {
  8044. "time": 0,
  8045. "angle": -294.02,
  8046. "curve": [ 0.25, 0, 0.75, 1 ]
  8047. },
  8048. {
  8049. "time": 0.5,
  8050. "angle": 16.14,
  8051. "curve": [ 0.25, 0, 0.75, 1 ]
  8052. },
  8053. {
  8054. "time": 1,
  8055. "angle": -294.02,
  8056. "curve": [ 0.25, 0, 0.75, 1 ]
  8057. },
  8058. {
  8059. "time": 1.5,
  8060. "angle": 16.14,
  8061. "curve": [ 0.25, 0, 0.75, 1 ]
  8062. },
  8063. { "time": 2, "angle": -294.02 }
  8064. ],
  8065. "translate": [
  8066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8067. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8068. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8069. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8070. { "time": 2, "x": 0, "y": 0 }
  8071. ],
  8072. "scale": [
  8073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8074. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8075. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8076. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8077. { "time": 2, "x": 1, "y": 1 }
  8078. ]
  8079. },
  8080. "bone23": {
  8081. "rotate": [
  8082. {
  8083. "time": 0,
  8084. "angle": -22.1,
  8085. "curve": [ 0.25, 0, 0.75, 1 ]
  8086. },
  8087. {
  8088. "time": 0.5,
  8089. "angle": -20.43,
  8090. "curve": [ 0.25, 0, 0.75, 1 ]
  8091. },
  8092. {
  8093. "time": 1,
  8094. "angle": -22.1,
  8095. "curve": [ 0.25, 0, 0.75, 1 ]
  8096. },
  8097. {
  8098. "time": 1.5,
  8099. "angle": -20.43,
  8100. "curve": [ 0.25, 0, 0.75, 1 ]
  8101. },
  8102. { "time": 2, "angle": -22.1 }
  8103. ],
  8104. "translate": [
  8105. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8106. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8107. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8108. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8109. { "time": 2, "x": 0, "y": 0 }
  8110. ],
  8111. "scale": [
  8112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8113. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8114. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8115. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8116. { "time": 2, "x": 1, "y": 1 }
  8117. ]
  8118. },
  8119. "bone24": {
  8120. "rotate": [
  8121. { "time": 0, "angle": 0, "curve": "stepped" },
  8122. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8123. { "time": 1, "angle": 0, "curve": "stepped" },
  8124. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8125. { "time": 2, "angle": 0 }
  8126. ],
  8127. "translate": [
  8128. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8129. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8130. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8131. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8132. { "time": 2, "x": 0, "y": 0 }
  8133. ],
  8134. "scale": [
  8135. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8136. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8137. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8138. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8139. { "time": 2, "x": 1, "y": 1 }
  8140. ]
  8141. },
  8142. "bone25": {
  8143. "rotate": [
  8144. {
  8145. "time": 0,
  8146. "angle": 309.38,
  8147. "curve": [ 0.25, 0, 0.75, 1 ]
  8148. },
  8149. {
  8150. "time": 0.5,
  8151. "angle": -5.95,
  8152. "curve": [ 0.25, 0, 0.75, 1 ]
  8153. },
  8154. {
  8155. "time": 1,
  8156. "angle": 309.38,
  8157. "curve": [ 0.25, 0, 0.75, 1 ]
  8158. },
  8159. {
  8160. "time": 1.5,
  8161. "angle": -5.95,
  8162. "curve": [ 0.25, 0, 0.75, 1 ]
  8163. },
  8164. { "time": 2, "angle": 309.38 }
  8165. ],
  8166. "translate": [
  8167. {
  8168. "time": 0,
  8169. "x": -0.32,
  8170. "y": -1.49,
  8171. "curve": [ 0.25, 0, 0.75, 1 ]
  8172. },
  8173. {
  8174. "time": 0.5,
  8175. "x": 0,
  8176. "y": 0,
  8177. "curve": [ 0.25, 0, 0.75, 1 ]
  8178. },
  8179. {
  8180. "time": 1,
  8181. "x": -0.32,
  8182. "y": -1.49,
  8183. "curve": [ 0.25, 0, 0.75, 1 ]
  8184. },
  8185. {
  8186. "time": 1.5,
  8187. "x": 0,
  8188. "y": 0,
  8189. "curve": [ 0.25, 0, 0.75, 1 ]
  8190. },
  8191. { "time": 2, "x": -0.32, "y": -1.49 }
  8192. ],
  8193. "scale": [
  8194. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8195. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8196. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8197. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8198. { "time": 2, "x": 1, "y": 1 }
  8199. ]
  8200. },
  8201. "bone26": {
  8202. "rotate": [
  8203. {
  8204. "time": 0,
  8205. "angle": -25.37,
  8206. "curve": [ 0.25, 0, 0.75, 1 ]
  8207. },
  8208. {
  8209. "time": 0.5,
  8210. "angle": -12.41,
  8211. "curve": [ 0.25, 0, 0.75, 1 ]
  8212. },
  8213. {
  8214. "time": 1,
  8215. "angle": -25.37,
  8216. "curve": [ 0.25, 0, 0.75, 1 ]
  8217. },
  8218. {
  8219. "time": 1.5,
  8220. "angle": -12.41,
  8221. "curve": [ 0.25, 0, 0.75, 1 ]
  8222. },
  8223. { "time": 2, "angle": -25.37 }
  8224. ],
  8225. "translate": [
  8226. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8227. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8228. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8229. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8230. { "time": 2, "x": 0, "y": 0 }
  8231. ],
  8232. "scale": [
  8233. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8234. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8235. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8236. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8237. { "time": 2, "x": 1, "y": 1 }
  8238. ]
  8239. },
  8240. "bone27": {
  8241. "rotate": [
  8242. { "time": 0, "angle": 0, "curve": "stepped" },
  8243. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8244. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8245. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8246. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8247. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8248. { "time": 1, "angle": 0, "curve": "stepped" },
  8249. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8250. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8251. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8252. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8253. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8254. { "time": 2, "angle": 0 }
  8255. ],
  8256. "translate": [
  8257. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8258. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8259. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8260. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8261. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8262. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8263. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8264. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8265. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8266. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8267. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8268. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8269. { "time": 2, "x": 0, "y": 0 }
  8270. ],
  8271. "scale": [
  8272. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8273. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8274. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8275. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8276. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8277. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8278. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8279. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8280. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8281. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8282. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8283. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8284. { "time": 2, "x": 1, "y": 1 }
  8285. ]
  8286. },
  8287. "bone28": {
  8288. "rotate": [
  8289. { "time": 0, "angle": 0, "curve": "stepped" },
  8290. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8291. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8292. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8293. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8294. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8295. { "time": 1, "angle": 0, "curve": "stepped" },
  8296. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8297. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8298. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8299. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8300. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8301. { "time": 2, "angle": 0 }
  8302. ],
  8303. "translate": [
  8304. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8305. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8306. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8307. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8308. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8309. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8310. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8311. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8312. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8313. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8314. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8315. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8316. { "time": 2, "x": 0, "y": 0 }
  8317. ],
  8318. "scale": [
  8319. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8320. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8321. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8322. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8323. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8324. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8325. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8326. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8327. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8328. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8329. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8330. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8331. { "time": 2, "x": 1, "y": 1 }
  8332. ]
  8333. },
  8334. "bone29": {
  8335. "rotate": [
  8336. { "time": 0, "angle": -12.27 },
  8337. { "time": 0.1667, "angle": 6.58 },
  8338. { "time": 0.3333, "angle": 29.39 },
  8339. { "time": 0.5, "angle": 43.85 },
  8340. { "time": 0.6667, "angle": 22.88 },
  8341. { "time": 0.8333, "angle": -5.18 },
  8342. { "time": 1, "angle": -12.27 },
  8343. { "time": 1.1667, "angle": 6.58 },
  8344. { "time": 1.3333, "angle": 29.39 },
  8345. { "time": 1.5, "angle": 43.85 },
  8346. { "time": 1.6667, "angle": 22.88 },
  8347. { "time": 1.8333, "angle": -5.18 },
  8348. { "time": 2, "angle": -12.27 }
  8349. ],
  8350. "translate": [
  8351. { "time": 0, "x": 0.52, "y": 1.74 },
  8352. { "time": 0.1667, "x": 0.47, "y": 0.52 },
  8353. { "time": 0.3333, "x": 0.93, "y": 1.04 },
  8354. { "time": 0.5, "x": 1.4, "y": 1.56 },
  8355. { "time": 0.6667, "x": 0.93, "y": 1.04 },
  8356. { "time": 0.8333, "x": 0.47, "y": 0.52 },
  8357. { "time": 1, "x": 0.52, "y": 1.74 },
  8358. { "time": 1.1667, "x": 0.47, "y": 0.52 },
  8359. { "time": 1.3333, "x": 0.93, "y": 1.04 },
  8360. { "time": 1.5, "x": 1.4, "y": 1.56 },
  8361. { "time": 1.6667, "x": 0.93, "y": 1.04 },
  8362. { "time": 1.8333, "x": 0.47, "y": 0.52 },
  8363. { "time": 2, "x": 0.52, "y": 1.74 }
  8364. ],
  8365. "scale": [
  8366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8367. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8368. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8369. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8370. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8371. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8372. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8373. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8374. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8375. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8376. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8377. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8378. { "time": 2, "x": 1, "y": 1 }
  8379. ]
  8380. },
  8381. "bone30": {
  8382. "rotate": [
  8383. { "time": 0, "angle": 0, "curve": "stepped" },
  8384. { "time": 0.1667, "angle": 0 },
  8385. { "time": 0.3333, "angle": 5.69 },
  8386. { "time": 0.5, "angle": 0 },
  8387. { "time": 0.6667, "angle": 42.08 },
  8388. { "time": 0.8333, "angle": 19.21 },
  8389. { "time": 1, "angle": 0, "curve": "stepped" },
  8390. { "time": 1.1667, "angle": 0 },
  8391. { "time": 1.3333, "angle": 5.69 },
  8392. { "time": 1.5, "angle": 0 },
  8393. { "time": 1.6667, "angle": 42.08 },
  8394. { "time": 1.8333, "angle": 19.21 },
  8395. { "time": 2, "angle": 0 }
  8396. ],
  8397. "translate": [
  8398. { "time": 0, "x": 0, "y": 0 },
  8399. { "time": 0.1667, "x": -0.06, "y": 0 },
  8400. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8401. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8402. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8403. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8404. { "time": 1, "x": 0, "y": 0 },
  8405. { "time": 1.1667, "x": -0.06, "y": 0 },
  8406. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8407. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8408. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8409. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8410. { "time": 2, "x": 0, "y": 0 }
  8411. ],
  8412. "scale": [
  8413. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8414. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8415. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8416. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8417. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8418. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8419. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8420. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8421. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8422. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8423. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8424. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8425. { "time": 2, "x": 1, "y": 1 }
  8426. ]
  8427. },
  8428. "bone31": {
  8429. "rotate": [
  8430. { "time": 0, "angle": -14.4 },
  8431. { "time": 0.1667, "angle": -7.2 },
  8432. { "time": 0.3333, "angle": -12.21 },
  8433. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8434. { "time": 0.6667, "angle": 0 },
  8435. { "time": 0.8333, "angle": -9.78 },
  8436. { "time": 1, "angle": -14.4 },
  8437. { "time": 1.1667, "angle": -7.2 },
  8438. { "time": 1.3333, "angle": -12.21 },
  8439. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8440. { "time": 1.6667, "angle": 0 },
  8441. { "time": 1.8333, "angle": -9.78 },
  8442. { "time": 2, "angle": -14.4 }
  8443. ],
  8444. "translate": [
  8445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8446. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8447. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8448. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8449. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8450. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8451. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8452. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8453. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8454. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8455. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8456. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8457. { "time": 2, "x": 0, "y": 0 }
  8458. ],
  8459. "scale": [
  8460. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8461. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8462. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8463. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8464. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8465. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8466. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8467. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8468. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8469. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8470. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8471. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8472. { "time": 2, "x": 1, "y": 1 }
  8473. ]
  8474. },
  8475. "bone32": {
  8476. "rotate": [
  8477. { "time": 0, "angle": 24.31 },
  8478. { "time": 0.1667, "angle": -3.65 },
  8479. { "time": 0.3333, "angle": -16.78 },
  8480. { "time": 0.5, "angle": -19.35 },
  8481. { "time": 0.6667, "angle": -3.92 },
  8482. { "time": 0.8333, "angle": 12.06 },
  8483. { "time": 1, "angle": 24.31 },
  8484. { "time": 1.1667, "angle": -3.65 },
  8485. { "time": 1.3333, "angle": -16.78 },
  8486. { "time": 1.5, "angle": -19.35 },
  8487. { "time": 1.6667, "angle": -3.92 },
  8488. { "time": 1.8333, "angle": 12.06 },
  8489. { "time": 2, "angle": 24.31 }
  8490. ],
  8491. "translate": [
  8492. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8493. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8494. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8495. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8496. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8497. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8499. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8500. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8501. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8502. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8503. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8504. { "time": 2, "x": 0, "y": 0 }
  8505. ],
  8506. "scale": [
  8507. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8508. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8509. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8510. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8511. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8512. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8513. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8514. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8515. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8516. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8517. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8518. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8519. { "time": 2, "x": 1, "y": 1 }
  8520. ]
  8521. },
  8522. "bone33": {
  8523. "rotate": [
  8524. { "time": 0, "angle": 0 },
  8525. { "time": 0.1667, "angle": 64.81 },
  8526. { "time": 0.3333, "angle": 29.11 },
  8527. { "time": 0.5, "angle": -4.93 },
  8528. { "time": 0.6667, "angle": 1.74 },
  8529. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8530. { "time": 1, "angle": 0 },
  8531. { "time": 1.1667, "angle": 51.43 },
  8532. { "time": 1.3333, "angle": 29.11 },
  8533. { "time": 1.5, "angle": -4.93 },
  8534. { "time": 1.6667, "angle": 1.74 },
  8535. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8536. { "time": 2, "angle": 0 }
  8537. ],
  8538. "translate": [
  8539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8540. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8541. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8542. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8543. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8544. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8545. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8546. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8547. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8548. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8549. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8550. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8551. { "time": 2, "x": 0, "y": 0 }
  8552. ],
  8553. "scale": [
  8554. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8555. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8556. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8557. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8558. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8559. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8560. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8561. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8562. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8563. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8564. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8565. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8566. { "time": 2, "x": 1, "y": 1 }
  8567. ]
  8568. },
  8569. "bone34": {
  8570. "rotate": [
  8571. { "time": 0, "angle": 0 },
  8572. { "time": 0.1667, "angle": -9.94 },
  8573. { "time": 0.3333, "angle": 0 },
  8574. { "time": 0.5, "angle": -12.9 },
  8575. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8576. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8577. { "time": 1, "angle": 0 },
  8578. { "time": 1.1667, "angle": -9.94 },
  8579. { "time": 1.3333, "angle": 0 },
  8580. { "time": 1.5, "angle": -12.9 },
  8581. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8582. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8583. { "time": 2, "angle": 0 }
  8584. ],
  8585. "translate": [
  8586. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8587. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8588. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8589. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8590. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8591. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8592. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8593. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8594. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8595. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8596. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8597. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8598. { "time": 2, "x": 0, "y": 0 }
  8599. ],
  8600. "scale": [
  8601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8602. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8603. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8604. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8605. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8606. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8607. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8608. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8609. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8610. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8611. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8612. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8613. { "time": 2, "x": 1, "y": 1 }
  8614. ]
  8615. }
  8616. },
  8617. "deform": {
  8618. "default": {
  8619. "dang": {
  8620. "dang": [
  8621. {
  8622. "time": 0,
  8623. "offset": 2,
  8624. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8625. },
  8626. {
  8627. "time": 0.5,
  8628. "vertices": [ 0.96135, -5.86631, 0, 0, 0, 0, 0.89266, 3.95865, 0, 0, 0, 0, -0.1878, -1.03541 ]
  8629. },
  8630. {
  8631. "time": 1,
  8632. "offset": 2,
  8633. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8634. },
  8635. {
  8636. "time": 1.5,
  8637. "vertices": [ 0.96135, -5.86631, 0, 0, 0, 0, 0.89266, 3.95865, 0, 0, 0, 0, -0.1878, -1.03541 ]
  8638. },
  8639. {
  8640. "time": 2,
  8641. "offset": 2,
  8642. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8643. }
  8644. ]
  8645. },
  8646. "shangyi": {
  8647. "shangyi": [
  8648. {
  8649. "time": 0,
  8650. "offset": 33,
  8651. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8652. },
  8653. {
  8654. "time": 0.5,
  8655. "offset": 29,
  8656. "vertices": [ 0.80999, -0.03592, 0.80919, 0, 0, 0, 0, 0.40199, 1.89999, 0, 0, 0, 0, -0.71999, -0.62999, -0.69149, -0.66127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.06799, -0.06748, 3.06698, -0.01997, 1.80789, -0.01488, 1.80794, 0, 3.06799, 0, 3.06799 ]
  8657. },
  8658. {
  8659. "time": 1,
  8660. "offset": 33,
  8661. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8662. },
  8663. {
  8664. "time": 1.5,
  8665. "offset": 29,
  8666. "vertices": [ 0.80999, -0.03592, 0.80919, 0, 0, 0, 0, 0.40199, 1.89999, 0, 0, 0, 0, -0.71999, -0.62999, -0.69149, -0.66127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.06799, -0.06748, 3.06698, -0.01997, 1.80789, -0.01488, 1.80794, 0, 3.06799, 0, 3.06799 ]
  8667. },
  8668. {
  8669. "time": 2,
  8670. "offset": 33,
  8671. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8672. }
  8673. ]
  8674. },
  8675. "waitaoyou": {
  8676. "waitaoyou": [
  8677. {
  8678. "time": 0,
  8679. "offset": 168,
  8680. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8681. },
  8682. { "time": 0.5 },
  8683. {
  8684. "time": 1,
  8685. "offset": 168,
  8686. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8687. },
  8688. { "time": 1.5 },
  8689. {
  8690. "time": 2,
  8691. "offset": 168,
  8692. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8693. }
  8694. ]
  8695. },
  8696. "youjiao": {
  8697. "youjiao": [
  8698. { "time": 0 },
  8699. {
  8700. "time": 0.1667,
  8701. "vertices": [ -1.22946, 0.42257, -0.08203, 1.29738, -0.48162, 0.95128, 0.69334, 0.80991, -0.15329, 1.77386, 1.57892, 0.82273 ]
  8702. },
  8703. { "time": 0.5, "curve": "stepped" },
  8704. { "time": 1 },
  8705. {
  8706. "time": 1.1667,
  8707. "vertices": [ -1.22946, 0.42257, -0.08203, 1.29738, -0.48162, 0.95128, 0.69334, 0.80991, -0.15329, 1.77386, 1.57892, 0.82273 ]
  8708. },
  8709. { "time": 1.5 }
  8710. ]
  8711. },
  8712. "zuoshou": {
  8713. "zuoshou": [
  8714. {
  8715. "time": 0,
  8716. "offset": 60,
  8717. "vertices": [ 1.06564, 1.17688, 3.41656, 3.3894 ]
  8718. }
  8719. ]
  8720. }
  8721. }
  8722. }
  8723. }
  8724. }
  8725. }